FATAL -- : ActionController::RoutingError (No route matches [GET] '/plugin_assets/redmine_dmsf/javascripts/jquery.dataTables/zh.json') type:bug #582

This commit is contained in:
Karel Picman 2016-10-24 12:27:57 +02:00
parent 84b162761d
commit de2ad3f1a6

View File

@ -68,11 +68,13 @@ module DmsfHelper
end
def json_url
if I18n.locale && !I18n.locale.to_s.match(/^en.*/)
"jquery.dataTables/#{I18n.locale.to_s.downcase}.json"
else
'jquery.dataTables/en.json'
if I18n.locale
ret = "jquery.dataTables/#{I18n.locale.to_s.downcase}.json"
path = "#{File.dirname(__FILE__)}/../../assets/javascripts/#{ret}"
return ret if File.exist?(path)
Rails.logger.warn "#{path} not found"
end
'jquery.dataTables/en.json'
end
def self.all_children_sorted(parent, pos, ident)