54 lines
2.3 KiB
Ruby
54 lines
2.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# Redmine plugin for Document Management System "Features"
|
|
#
|
|
# Karel Pičman <karel.picman@kontron.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
module RedmineDmsf
|
|
module Patches
|
|
# Formatting helper
|
|
module FormattingHelperPatch
|
|
def heads_for_wiki_formatter
|
|
super
|
|
return if @dmsf_macro_list
|
|
|
|
@dmsf_macro_list = []
|
|
Redmine::WikiFormatting::Macros.available_macros.each_key do |key|
|
|
@dmsf_macro_list << key.to_s if key.to_s.match?(/^dmsf/)
|
|
end
|
|
# If localized files for the current language are not available, switch to English
|
|
lang = current_language.to_s.downcase
|
|
path = File.join(File.dirname(__FILE__),
|
|
'..', '..', '..', 'assets', 'help', lang, 'wiki_syntax.html')
|
|
@dmsf_macro_list << (File.exist?(path) ? "#{lang};#{l(:label_help)}" : "en;#{l(:label_help)}")
|
|
path = File.join(File.dirname(__FILE__),
|
|
'..', '..', '..', 'assets', 'javascripts', 'lang', "dmsf_button-#{lang}.js")
|
|
lang = 'en' unless File.exist?(path)
|
|
content_for :header_tags do
|
|
javascript_include_tag("lang/dmsf_button-#{lang}", plugin: 'redmine_dmsf') +
|
|
javascript_include_tag('dmsf_button', plugin: 'redmine_dmsf') +
|
|
javascript_tag("jsToolBar.prototype.dmsfList = #{@dmsf_macro_list.to_json};")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
# Apply the patch
|
|
Redmine::WikiFormatting::Textile::Helper.prepend RedmineDmsf::Patches::FormattingHelperPatch
|
|
Redmine::WikiFormatting::CommonMark::Helper.prepend RedmineDmsf::Patches::FormattingHelperPatch
|