This file is indexed.

/usr/lib/ruby/vendor_ruby/wikicloth/namespaces.rb is in ruby-wikicloth 0.8.1+dfsg-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
module WikiCloth

  class WikiNamespaces
  class << self

    NAMESPACE_TYPES = [:file,:category,:template,:special,:language,:help,:talk,:media]

    def language_namespace_names
      I18n.available_locales.collect { |l| l.to_s.gsub(/[_]+/,'-') }
    end

    def language_name(ns, locale=nil)
      return nil unless language_namespace_names.include?(ns)
      locale ||= I18n.locale
      I18n.with_locale(locale) do
        I18n.t("languages.#{ns}")
      end
    end

    def localise_ns(name, locale=nil)
      locale ||= I18n.locale
      ns_type = namespace_type(name)
      unless ns_type.nil? || ns_type == :language
        I18n.with_locale(locale) do
          I18n.t("namespaces.#{ns_type.to_s}").split(",").first
        end
      else
        name
      end
    end

    def namespace_type(name)
      return :language if language_namespace_names.include?(name)
      NAMESPACE_TYPES.each { |ns| return ns if send("#{ns}_namespace_names").include?(name.downcase) }
      nil
    end

    def method_missing(method, *args)
      if method.to_s =~ /^([a-z]+)_namespace_names$/
        @@ns_cache ||= {}
        @@ns_cache[$1] ||= get_namespace_names_for($1) 
      elsif method.to_s =~ /^([a-z]+)_namespace\?$/
        namespace_type(args.first) == $1.to_sym ? true : false
      else
        super(method, *args)
      end
    end

    def get_namespace_names_for(name)
      ret = []
      I18n.available_locales.each do |locale|
        I18n.with_locale(locale) do
          I18n.t("namespaces.#{name}").split(",").each { |ns| ret << ns.downcase unless ret.include?(ns.downcase) }
        end
      end
      ret
    end

  end
  end

end