PHP 8.2.31
Preview: cdata.rb Size: 1.44 KB
//proc/thread-self/root/opt/alt/ruby18/lib64/ruby/1.8/rexml/cdata.rb

require "rexml/text"

module REXML
	class CData < Text
		START = '<![CDATA['
		STOP = ']]>'
		ILLEGAL = /(\]\]>)/

		#	Constructor.  CData is data between <![CDATA[ ... ]]>
		#
		# _Examples_
		#  CData.new( source )
		#  CData.new( "Here is some CDATA" )
		#  CData.new( "Some unprocessed data", respect_whitespace_TF, parent_element )
		def initialize( first, whitespace=true, parent=nil )
			super( first, whitespace, parent, true, true, ILLEGAL )
		end

		# Make a copy of this object
		# 
		# _Examples_
		#  c = CData.new( "Some text" )
		#  d = c.clone
		#  d.to_s        # -> "Some text"
		def clone
			CData.new self
		end

		# Returns the content of this CData object
		#
		# _Examples_
		#  c = CData.new( "Some text" )
		#  c.to_s        # -> "Some text"
		def to_s
			@string
		end

    def value
      @string
    end

    # == DEPRECATED
    # See the rexml/formatters package
    #
		# Generates XML output of this object
		#
		# output::
		#   Where to write the string.  Defaults to $stdout
		# indent::
    #   The amount to indent this node by
		# transitive::
    #   Ignored
		# ie_hack::
    #   Ignored
		#
		# _Examples_
		#  c = CData.new( " Some text " )
		#  c.write( $stdout )     #->  <![CDATA[ Some text ]]>
		def write( output=$stdout, indent=-1, transitive=false, ie_hack=false )
      Kernel.warn( "#{self.class.name}.write is deprecated" )
			indent( output, indent )
			output << START
			output << @string
			output << STOP
		end
	end
end

Directory Contents

Dirs: 6 × Files: 29

Name Size Perms Modified Actions
dtd DIR
- drwxr-xr-x 2024-03-03 22:48:14
Edit Download
encodings DIR
- drwxr-xr-x 2024-03-03 22:48:14
Edit Download
- drwxr-xr-x 2024-03-03 22:48:14
Edit Download
light DIR
- drwxr-xr-x 2024-03-03 22:48:14
Edit Download
parsers DIR
- drwxr-xr-x 2024-03-03 22:48:14
Edit Download
- drwxr-xr-x 2024-03-03 22:48:14
Edit Download
1.79 KB lrw-r--r-- 2008-06-06 08:05:24
Edit Download
5.02 KB lrw-r--r-- 2008-04-18 07:22:13
Edit Download
1.44 KB lrw-r--r-- 2008-04-18 07:22:13
Edit Download
2.46 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
2.00 KB lrw-r--r-- 2008-04-18 07:22:13
Edit Download
6.64 KB lrw-r--r-- 2008-04-18 07:22:13
Edit Download
7.93 KB lrw-r--r-- 2013-05-18 14:55:14
Edit Download
43.24 KB lrw-r--r-- 2009-11-25 07:37:40
Edit Download
2.08 KB lrw-r--r-- 2008-04-18 07:22:13
Edit Download
4.85 KB lrw-r--r-- 2009-02-05 00:03:56
Edit Download
10.80 KB lrw-r--r-- 2008-06-06 08:05:24
Edit Download
1.90 KB lrw-r--r-- 2008-04-18 07:22:13
Edit Download
1018 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
1.93 KB lrw-r--r-- 2008-04-18 07:37:32
Edit Download
385 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
4.40 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
1.20 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
7.65 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
1.71 KB lrw-r--r-- 2013-05-18 14:55:14
Edit Download
3.45 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
7.06 KB lrw-r--r-- 2008-04-18 07:22:13
Edit Download
3.71 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
721 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
11.15 KB lrw-r--r-- 2013-05-18 14:55:14
Edit Download
210 B lrw-r--r-- 2008-04-18 07:22:13
Edit Download
2.65 KB lrw-r--r-- 2008-04-18 07:22:13
Edit Download
506 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
2.39 KB lrw-r--r-- 2008-06-06 08:05:24
Edit Download
25.15 KB lrw-r--r-- 2008-04-18 07:22:13
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).