GRAYBYTE WORDPRESS FILE MANAGER2442

Server IP : 198.54.121.189 / Your IP : 216.73.216.224
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /opt/alt/ruby20/lib64/ruby/2.0.0/rexml/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /opt/alt/ruby20/lib64/ruby/2.0.0/rexml//entity.rb
require 'rexml/child'
require 'rexml/source'
require 'rexml/xmltokens'

module REXML
  # God, I hate DTDs.  I really do.  Why this idiot standard still
  # plagues us is beyond me.
  class Entity < Child
    include XMLTokens
    PUBIDCHAR = "\x20\x0D\x0Aa-zA-Z0-9\\-()+,./:=?;!*@$_%#"
    SYSTEMLITERAL = %Q{((?:"[^"]*")|(?:'[^']*'))}
    PUBIDLITERAL = %Q{("[#{PUBIDCHAR}']*"|'[#{PUBIDCHAR}]*')}
    EXTERNALID = "(?:(?:(SYSTEM)\\s+#{SYSTEMLITERAL})|(?:(PUBLIC)\\s+#{PUBIDLITERAL}\\s+#{SYSTEMLITERAL}))"
    NDATADECL = "\\s+NDATA\\s+#{NAME}"
    PEREFERENCE = "%#{NAME};"
    ENTITYVALUE = %Q{((?:"(?:[^%&"]|#{PEREFERENCE}|#{REFERENCE})*")|(?:'([^%&']|#{PEREFERENCE}|#{REFERENCE})*'))}
    PEDEF = "(?:#{ENTITYVALUE}|#{EXTERNALID})"
    ENTITYDEF = "(?:#{ENTITYVALUE}|(?:#{EXTERNALID}(#{NDATADECL})?))"
    PEDECL = "<!ENTITY\\s+(%)\\s+#{NAME}\\s+#{PEDEF}\\s*>"
    GEDECL = "<!ENTITY\\s+#{NAME}\\s+#{ENTITYDEF}\\s*>"
    ENTITYDECL = /\s*(?:#{GEDECL})|(?:#{PEDECL})/um

    attr_reader :name, :external, :ref, :ndata, :pubid

    # Create a new entity.  Simple entities can be constructed by passing a
    # name, value to the constructor; this creates a generic, plain entity
    # reference. For anything more complicated, you have to pass a Source to
    # the constructor with the entity definition, or use the accessor methods.
    # +WARNING+: There is no validation of entity state except when the entity
    # is read from a stream.  If you start poking around with the accessors,
    # you can easily create a non-conformant Entity.  The best thing to do is
    # dump the stupid DTDs and use XMLSchema instead.
    #
    #  e = Entity.new( 'amp', '&' )
    def initialize stream, value=nil, parent=nil, reference=false
      super(parent)
      @ndata = @pubid = @value = @external = nil
      if stream.kind_of? Array
        @name = stream[1]
        if stream[-1] == '%'
          @reference = true
          stream.pop
        else
          @reference = false
        end
        if stream[2] =~ /SYSTEM|PUBLIC/
          @external = stream[2]
          if @external == 'SYSTEM'
            @ref = stream[3]
            @ndata = stream[4] if stream.size == 5
          else
            @pubid = stream[3]
            @ref = stream[4]
          end
        else
          @value = stream[2]
        end
      else
        @reference = reference
        @external = nil
        @name = stream
        @value = value
      end
    end

    # Evaluates whether the given string matchs an entity definition,
    # returning true if so, and false otherwise.
    def Entity::matches? string
      (ENTITYDECL =~ string) == 0
    end

    # Evaluates to the unnormalized value of this entity; that is, replacing
    # all entities -- both %ent; and &ent; entities.  This differs from
    # +value()+ in that +value+ only replaces %ent; entities.
    def unnormalized
      document.record_entity_expansion unless document.nil?
      v = value()
      return nil if v.nil?
      @unnormalized = Text::unnormalize(v, parent)
      @unnormalized
    end

    #once :unnormalized

    # Returns the value of this entity unprocessed -- raw.  This is the
    # normalized value; that is, with all %ent; and &ent; entities intact
    def normalized
      @value
    end

    # Write out a fully formed, correct entity definition (assuming the Entity
    # object itself is valid.)
    #
    # out::
    #   An object implementing <TT>&lt;&lt;<TT> to which the entity will be
    #   output
    # indent::
    #   *DEPRECATED* and ignored
    def write out, indent=-1
      out << '<!ENTITY '
      out << '% ' if @reference
      out << @name
      out << ' '
      if @external
        out << @external << ' '
        if @pubid
          q = @pubid.include?('"')?"'":'"'
          out << q << @pubid << q << ' '
        end
        q = @ref.include?('"')?"'":'"'
        out << q << @ref << q
        out << ' NDATA ' << @ndata if @ndata
      else
        q = @value.include?('"')?"'":'"'
        out << q << @value << q
      end
      out << '>'
    end

    # Returns this entity as a string.  See write().
    def to_s
      rv = ''
      write rv
      rv
    end

    PEREFERENCE_RE = /#{PEREFERENCE}/um
    # Returns the value of this entity.  At the moment, only internal entities
    # are processed.  If the value contains internal references (IE,
    # %blah;), those are replaced with their values.  IE, if the doctype
    # contains:
    #  <!ENTITY % foo "bar">
    #  <!ENTITY yada "nanoo %foo; nanoo>
    # then:
    #  doctype.entity('yada').value   #-> "nanoo bar nanoo"
    def value
      if @value
        matches = @value.scan(PEREFERENCE_RE)
        rv = @value.clone
        if @parent
          sum = 0
          matches.each do |entity_reference|
            entity_value = @parent.entity( entity_reference[0] )
            if sum + entity_value.bytesize > Document.entity_expansion_text_limit
              raise "entity expansion has grown too large"
            else
              sum += entity_value.bytesize
            end
            rv.gsub!( /%#{entity_reference.join};/um, entity_value )
          end
        end
        return rv
      end
      nil
    end
  end

  # This is a set of entity constants -- the ones defined in the XML
  # specification.  These are +gt+, +lt+, +amp+, +quot+ and +apos+.
  # CAUTION: these entities does not have parent and document
  module EntityConst
    # +>+
    GT = Entity.new( 'gt', '>' )
    # +<+
    LT = Entity.new( 'lt', '<' )
    # +&+
    AMP = Entity.new( 'amp', '&' )
    # +"+
    QUOT = Entity.new( 'quot', '"' )
    # +'+
    APOS = Entity.new( 'apos', "'" )
  end
end

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
March 03 2024 22:53:08
root / root
0755
dtd
--
March 03 2024 22:43:33
root / linksafe
0755
formatters
--
March 03 2024 22:43:33
root / linksafe
0755
light
--
March 03 2024 22:43:33
root / linksafe
0755
parsers
--
March 03 2024 22:43:33
root / linksafe
0755
validation
--
March 03 2024 22:43:33
root / linksafe
0755
attlistdecl.rb
1.887 KB
October 02 2009 10:45:39
root / linksafe
0644
attribute.rb
5.395 KB
November 08 2010 20:59:01
root / linksafe
0644
cdata.rb
1.542 KB
May 19 2011 00:07:25
root / linksafe
0644
child.rb
2.628 KB
May 19 2011 00:07:25
root / linksafe
0644
comment.rb
2.136 KB
May 19 2011 00:07:25
root / linksafe
0644
doctype.rb
6.582 KB
December 07 2010 12:10:23
root / linksafe
0644
document.rb
9.518 KB
November 13 2014 13:35:51
root / linksafe
0644
element.rb
43.854 KB
January 03 2013 08:48:22
root / linksafe
0644
encoding.rb
1.125 KB
November 06 2012 00:49:57
root / linksafe
0644
entity.rb
5.531 KB
November 13 2014 13:35:51
root / linksafe
0644
functions.rb
11.266 KB
May 13 2011 17:54:22
root / linksafe
0644
instruction.rb
2.009 KB
October 02 2009 10:45:39
root / linksafe
0644
namespace.rb
1.091 KB
October 02 2009 10:45:39
root / linksafe
0644
node.rb
2.134 KB
May 19 2011 00:07:25
root / linksafe
0644
output.rb
0.507 KB
November 03 2012 05:43:28
root / linksafe
0644
parent.rb
4.327 KB
January 31 2010 06:55:06
root / linksafe
0644
parseexception.rb
1.223 KB
October 30 2010 12:10:56
root / linksafe
0644
quickpath.rb
9.084 KB
May 19 2011 00:07:25
root / linksafe
0644
rexml.rb
1.648 KB
March 26 2013 17:54:43
root / linksafe
0644
sax2listener.rb
3.6 KB
October 02 2009 10:45:39
root / linksafe
0644
source.rb
7.597 KB
November 06 2012 00:49:57
root / linksafe
0644
streamlistener.rb
3.878 KB
October 02 2009 10:45:39
root / linksafe
0644
syncenumerator.rb
0.669 KB
October 02 2009 10:45:39
root / linksafe
0644
text.rb
13.569 KB
March 26 2013 17:54:43
root / linksafe
0644
undefinednamespaceexception.rb
0.205 KB
November 16 2007 01:30:29
root / linksafe
0644
xmldecl.rb
2.683 KB
November 03 2012 05:44:31
root / linksafe
0644
xmltokens.rb
0.514 KB
April 05 2010 21:08:12
root / linksafe
0644
xpath.rb
3.313 KB
May 18 2011 21:19:18
root / linksafe
0644
xpath_parser.rb
25.698 KB
May 11 2011 22:56:13
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF