This file is indexed.

/usr/lib/ruby/1.9.1/htree/gencode.rb is in libhtree-ruby1.9.1 0.7-5.

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
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
require 'htree/encoder'
require 'htree/output'

# :stopdoc:

module HTree
  module Node
    def generate_xml_output_code(outvar='out', contextvar='top_context')
      namespaces = HTree::Context::DefaultNamespaces.dup
      namespaces.default = nil
      context = Context.new(namespaces)
      gen = HTree::GenCode.new(outvar, contextvar)
      output(gen, context)
      gen.finish
    end
  end

  class GenCode
    def initialize(outvar, contextvar, internal_encoding=Encoder.internal_charset)
      @outvar = outvar
      @contextvar = contextvar
      @state = :none
      @buffer = ''
      @internal_encoding = internal_encoding
      @code = ''
      @html_output = nil
    end
    attr_reader :outvar, :contextvar

    def html_output?
      @html_output
    end

    def html_output=(flag)
      @html_output = flag
    end

    class CDATABuffer
      def initialize
        @buf = ''
      end

      def html_output?
        true
      end

      def not_valid_for_html_cdata(*args)
        raise ArgumentError, "CDATA content only accept texts."
      end
      alias output_slash_if_xml not_valid_for_html_cdata
      alias output_cdata_content not_valid_for_html_cdata
      alias output_dynamic_attvalue not_valid_for_html_cdata

      def output_string(string)
        @buf << string
      end

      def output_text(string)
        @buf << string
      end

      ChRef = {
        '&' => '&amp;',
        '<' => '&lt;',
        '>' => '&gt;',
        '"' => '&quot;',
      }

      def output_dynamic_text(string)
        if string.respond_to? :rcdata
          @buf << string.rcdata.gsub(/[<>]/) { ChRef[$&] }
        else
          @buf << string.to_s.gsub(/[&<>]/) { ChRef[$&] }
        end
      end

      def result
        if %r{[<>]} =~ @buf
          raise ArgumentError, "cdata contains non-text : #{@buf.inspect}"
        end
        str = HTree::Text.parse_pcdata(@buf).to_s
        if %r{</} =~ str
          raise ArgumentError, "cdata contains '</' : #{str.inspect}"
        end
        str
      end
    end

    def output_cdata_content(content, context)
      tmp_outvar = @outvar + '_tmp'
      output_logic_line "#{@outvar} = #{@outvar}.output_cdata_content_do(#{@outvar},"
      output_logic_line "lambda { #{@outvar} = HTree::GenCode::CDATABuffer.new },"
      output_logic_line "lambda {"
      content.each {|n| n.output(self, context) }
      output_logic_line "},"
      output_logic_line "lambda {|#{tmp_outvar}| #{tmp_outvar}.output_string(#{@outvar}.result) })"
    end

    def output_slash_if_xml
      output_logic_line "#{@outvar}.output_slash_if_xml"
    end

    def output_dynamic_text(expr)
      flush_buffer
      @code << "#{@outvar}.output_dynamic_text((#{expr}))\n"
    end

    def output_dynamic_tree(expr, context_expr)
      flush_buffer
      @code << "(#{expr}).output(#{@outvar}, #{context_expr})\n"
    end

    def output_dynamic_attvalue(expr)
      flush_buffer
      @code << "#{@outvar}.output_dynamic_attvalue((#{expr}))\n"
    end

    def output_logic_line(line)
      flush_buffer
      @code << line << "\n"
    end
                       
    def output_string(str)
      return if str.empty?
      if @state != :string
        flush_buffer
        @state = :string
      end
      @buffer << str
    end

    def output_text(str)
      return if str.empty?
      if /\A[\s\x21-\x7e]+\z/ =~ str && @state == :string
        # Assumption: external charset can represent white spaces and
        # ASCII printable.
        output_string(str)
        return 
      end
      if @state != :text
        flush_buffer
        @state = :text
      end
      @buffer << str
    end

    ChRef = {
      '&' => '&amp;',
      '>' => '&gt;',
      '<' => '&lt;',
      '"' => '&quot;',
    }
    def output_xmlns(namespaces)
      unless namespaces.empty?
        flush_buffer
        namespaces.each {|k, v|
          if k
            ks = k.dump
            aname = "xmlns:#{k}"
          else
            ks = "nil"
            aname = "xmlns"
          end
          @code << "if #{@contextvar}.namespace_uri(#{ks}) != #{v.dump}\n"
          output_string " #{aname}=\""
          output_text v.gsub(/[&<>"]/) {|s| ChRef[s] }
          output_string '"'
          flush_buffer
          @code << "end\n"
        }
      end
    end

    def flush_buffer
      return if @buffer.empty?
      case @state
      when :string
        @code << "#{@outvar}.output_string #{@buffer.dump}\n"
        @buffer = ''
      when :text
        @code << "#{@outvar}.output_text #{@buffer.dump}\n"
        @buffer = ''
      end
    end

    def finish
      flush_buffer
      @code
    end
  end
end

# :startdoc: