1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 19:47:14 +00:00

Add current theme and whether it includes JavaScript to Redmine::Info (#32116).

Contributed by Mischa The Evil.


git-svn-id: http://svn.redmine.org/redmine/trunk@21308 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2021-12-12 04:15:42 +00:00
parent 11d88cb7c4
commit 8b452eb341

View File

@ -20,6 +20,22 @@ module Redmine
["Mailer delivery", ActionMailer::Base.delivery_method]
].map {|info| " %-30s %s" % info}.join("\n") + "\n"
theme = Setting.ui_theme.blank? ? 'Default' : Setting.ui_theme.capitalize
unless Setting.ui_theme.blank?
theme_js = (if Redmine::Themes.theme(Setting.ui_theme).javascripts.include?('theme')
' (includes JavaScript)'
else
''
end
)
end
theme_string = (theme + theme_js.to_s).to_s
s << "Redmine settings:\n"
s << [
["Redmine theme", theme_string]
].map {|settings| " %-30s %s" % settings}.join("\n") + "\n"
s << "SCM:\n"
Redmine::Scm::Base.all.each do |scm|
scm_class = "Repository::#{scm}".constantize