summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-28 22:36:15 +0000
committerser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-28 22:36:15 +0000
commit6a738f22656ffe247bcd02cf354c12a5370818ec ()
treede60322b5ac4273012fd95e6911cbe9bcc7d9ad2 /lib
parentadb4439f85466a58378ba37a426e5f87a115a74e (diff)
Documentation fixes and a to fix whitespace handling.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6043 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--lib/rexml/comment.rb5
-rw-r--r--lib/rexml/doctype.rb5
-rw-r--r--lib/rexml/document.rb7
-rw-r--r--lib/rexml/element.rb9
-rw-r--r--lib/rexml/rexml.rb6
-rw-r--r--lib/rexml/text.rb32
6 files changed, 43 insertions, 21 deletions
@@ -39,7 +39,10 @@ module REXML
# indentation will be this number of spaces, and children will be
# indented an additional amount.
# transitive::
- # Who knows?
# ie_hack::
# Internet Explorer is the worst piece of crap to have ever been
# written, with the possible exception of Windows itself. Since IE is
@@ -92,7 +92,10 @@ module REXML
# indentation will be this number of spaces, and children will be
# indented an additional amount.
# transitive::
- # Who knows?
# ie_hack::
# Internet Explorer is the worst piece of crap to have ever been
# written, with the possible exception of Windows itself. Since IE is
@@ -145,7 +145,10 @@ module REXML
# indentation will be this number of spaces, and children will be
# indented an additional amount. Defaults to -1
# transitive::
- # What the heck does this do? Defaults to false
# ie_hack::
# Internet Explorer is the worst piece of crap to have ever been
# written, with the possible exception of Windows itself. Since IE is
@@ -191,7 +194,7 @@ module REXML
build_context[-1] << event[1]
else
build_context.add(
- Text.new( event[1], true, nil, true )
) unless (
event[1].strip.size==0 and
build_context.ignore_whitespace_nodes
@@ -98,8 +98,9 @@ module REXML
# is the case if:
# 1. Neither :+respect_whitespace+ nor :+compress_whitespace+ has any value
# 2. The context has :+respect_whitespace+ set to :+all+ or
- # an array containing the name of this element, and :+compress_whitespace+
- # isn't set to :+all+ or an array containing the name of this element.
# The evaluation is tested against +expanded_name+, and so is namespace
# sensitive.
def whitespace
@@ -606,7 +607,9 @@ module REXML
# indentation will be this number of spaces, and children will be
# indented an additional amount. Defaults to -1
# transitive::
- # What the heck does this do? Defaults to false
# ie_hack::
# Internet Explorer is the worst piece of crap to have ever been
# written, with the possible exception of Windows itself. Since IE is
@@ -20,7 +20,7 @@
# be accessed online at http://www.germane-software.com/software/rexml_doc
# A tutorial is available in docs/tutorial.html
module REXML
- Copyright = "Copyright #{Time.now.year} Sean Russell <[email protected]>"
- Date = "+2004/047"
- Version = "2.7.4.2"
end
@@ -175,6 +175,20 @@ module REXML
return string[0,place] + "\n" + wrap(string[place+1..-1], width)
end
end
def indent(string, level=1, style="\t", indentfirstline=true)
return string if level < 0
@@ -190,17 +204,13 @@ module REXML
def write( writer, indent=-1, transitive=false, ie_hack=false )
s = to_s()
- if not (@parent and @parent.whitespace) then
- s = wrap(s, 60, false) if @parent and @parent.context[:wordwrap] == :all
- if @parent and not @parent.context[:indentstyle].nil? then
- indentstyle = @parent.context[:indentstyle]
- else
- indentstyle = ' '
- end
- if s.count("\n") > 0 and indent > 0 then
- s = indent(s, indent, indentstyle, false)
- end
- end
writer << s
end