Patch by Mischa The Evil.
git-svn-id: http://svn.redmine.org/redmine/trunk@16624
e93f8b46-1217-0410-a6f0-
8f06a7374b81
end
private_class_method :retrieve_supported_languages
+ SUPPORTED_LANGUAGES = retrieve_supported_languages
+
class << self
# Highlights +text+ as the content of +filename+
# Should not return line numbers nor outer pre tag
end
def language_supported?(language)
- supported_languages = retrieve_supported_languages
- supported_languages.include?(language.to_s.downcase.to_sym)
+ SUPPORTED_LANGUAGES.include?(language.to_s.downcase.to_sym)
rescue
false
end