mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 06:48:58 +08:00
Instead of listing the redundant commit hash, this now shows "preinstalled" for the relevant components and links to https://meta.discourse.org/t/bundling-more-popular-plugins-with-discourse-core/373574. This is accomplished by checking the URL of the plugin for `"/discourse/discourse/tree/main/plugins/"` which indicates it's part of the core Discourse repo. I've also removed the `hide_plugin` flag from existing preinstalled plugins. Now Discourse admins will have more clarity into what's included. I also made some minor layout adjustments: * Larger click area for "how to install a plugin" banner * Moved "Learn more" into a separate line for consistent positioning Before: <img width="2182" height="1192" alt="image" src="https://github.com/user-attachments/assets/b2943a7f-5212-4abd-8b80-d0d071378f06" /> After: <img width="2226" height="1184" alt="image" src="https://github.com/user-attachments/assets/0846a2c9-fc1b-435c-b51f-b966af5ade09" />
44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# name: discourse-details
|
|
# about: HTML5.1 Details polyfill for Discourse
|
|
# version: 0.4
|
|
# authors: Régis Hanol
|
|
# url: https://github.com/discourse/discourse/tree/main/plugins/discourse-details
|
|
|
|
enabled_site_setting :details_enabled
|
|
|
|
register_asset "stylesheets/details.scss"
|
|
|
|
after_initialize do
|
|
Email::Styles.register_plugin_style do |fragment|
|
|
# remove all elided content
|
|
fragment.css("details.elided").each(&:remove)
|
|
|
|
# replace all details with their summary in emails
|
|
fragment
|
|
.css("details")
|
|
.each do |details|
|
|
summary = details.css("summary")
|
|
if summary && summary[0]
|
|
summary = summary[0]
|
|
if summary && summary.respond_to?(:name)
|
|
summary.name = "p"
|
|
details.replace(summary)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
on(:reduce_cooked) do |fragment, post|
|
|
fragment
|
|
.css("details")
|
|
.each do |el|
|
|
text = el.css("summary").text
|
|
link = fragment.document.create_element("a")
|
|
link["href"] = post&.url.presence || Discourse.base_url
|
|
link.content = I18n.t("details.excerpt_details")
|
|
el.replace CGI.escapeHTML(text) + " " + link.to_html
|
|
end
|
|
end
|
|
end
|