Sha256: 6f4b91b5e469fde63f853268f83207852ce63d9baabc7011440d32cebbf1e9bd

Contents?: true

Size: 1.81 KB

Versions: 239

Compression:

Stored size: 1.81 KB

Contents

# frozen_string_literal: false
require_relative 'pretty'

module REXML
  module Formatters
    # The Transitive formatter writes an XML document that parses to an
    # identical document as the source document.  This means that no extra
    # whitespace nodes are inserted, and whitespace within text nodes is
    # preserved.  Within these constraints, the document is pretty-printed,
    # with whitespace inserted into the metadata to introduce formatting.
    #
    # Note that this is only useful if the original XML is not already
    # formatted.  Since this formatter does not alter whitespace nodes, the
    # results of formatting already formatted XML will be odd.
    class Transitive < Default
      def initialize( indentation=2, ie_hack=false )
        @indentation = indentation
        @level = 0
        @ie_hack = ie_hack
      end

      protected
      def write_element( node, output )
        output << "<#{node.expanded_name}"

        node.attributes.each_attribute do |attr|
          output << " "
          attr.write( output )
        end unless node.attributes.empty?

        output << "\n"
        output << ' '*@level
        if node.children.empty?
          output << " " if @ie_hack
          output << "/"
        else
          output << ">"
          # If compact and all children are text, and if the formatted output
          # is less than the specified width, then try to print everything on
          # one line
          @level += @indentation
          node.children.each { |child|
            write( child, output )
          }
          @level -= @indentation
          output << "</#{node.expanded_name}"
          output << "\n"
          output << ' '*@level
        end
        output << ">"
      end

      def write_text( node, output )
        output << node.to_s()
      end
    end
  end
end

Version data entries

239 entries across 232 versions & 34 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rexml-3.3.2/lib/rexml/formatters/transitive.rb
brakeman-7.0.0 bundle/ruby/3.1.0/gems/rexml-3.4.0/lib/rexml/formatters/transitive.rb
rexml-3.4.0 lib/rexml/formatters/transitive.rb
cloudsmith-api-2.0.16 vendor/bundle/ruby/2.6.0/gems/rexml-3.3.9/lib/rexml/formatters/transitive.rb
rexml-3.3.9 lib/rexml/formatters/transitive.rb
brakeman-6.2.2 bundle/ruby/3.1.0/gems/rexml-3.3.8/lib/rexml/formatters/transitive.rb
brakeman-6.2.2.rc1 bundle/ruby/3.3.0/gems/rexml-3.3.8/lib/rexml/formatters/transitive.rb
cloudsmith-api-2.0.15 vendor/bundle/ruby/2.6.0/gems/rexml-3.3.8/lib/rexml/formatters/transitive.rb
cloudsmith-api-2.0.14 vendor/bundle/ruby/2.6.0/gems/rexml-3.3.8/lib/rexml/formatters/transitive.rb
rexml-3.3.8 lib/rexml/formatters/transitive.rb
rexml-3.3.7 lib/rexml/formatters/transitive.rb
brakeman-6.2.1 bundle/ruby/3.1.0/gems/rexml-3.3.6/lib/rexml/formatters/transitive.rb
brakeman-6.2.0 bundle/ruby/3.1.0/gems/rexml-3.3.6/lib/rexml/formatters/transitive.rb
rexml-3.3.6 lib/rexml/formatters/transitive.rb
rexml-3.3.5 lib/rexml/formatters/transitive.rb
rexml-3.3.4 lib/rexml/formatters/transitive.rb
rexml-3.3.3 lib/rexml/formatters/transitive.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rexml-3.3.1/lib/rexml/formatters/transitive.rb
rexml-3.3.2 lib/rexml/formatters/transitive.rb
rexml-3.3.1 lib/rexml/formatters/transitive.rb