summaryrefslogtreecommitdiffstats
path: root/lib/rexml/text.rb
diff options
context:
space:
mode:
authorser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-24 02:04:10 +0000
committerser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-24 02:04:10 +0000
commit555b6807e3c3d58107eaba7cb6030105ac9bf7aa (patch)
tree47bfabacac5fcad2f67cffa5f2b0eb80f064d4c6 /lib/rexml/text.rb
parent3a7438b8b8ffea931a81a43a15a395aa3df80491 (diff)
downloadruby-555b6807e3c3d58107eaba7cb6030105ac9bf7aa.tar.gz
ruby-555b6807e3c3d58107eaba7cb6030105ac9bf7aa.tar.xz
ruby-555b6807e3c3d58107eaba7cb6030105ac9bf7aa.zip
-
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6211 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml/text.rb')
-rw-r--r--lib/rexml/text.rb12
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/rexml/text.rb b/lib/rexml/text.rb
index 2e54f9fa1..1d2d2dd71 100644
--- a/lib/rexml/text.rb
+++ b/lib/rexml/text.rb
@@ -1,4 +1,8 @@
require 'rexml/entity'
+require 'rexml/doctype'
+require 'rexml/child'
+require 'rexml/doctype'
+require 'rexml/parseexception'
module REXML
# Represents text nodes in an XML document
@@ -271,16 +275,16 @@ module REXML
copy = input.clone
# Doing it like this rather than in a loop improves the speed
if doctype
- copy.gsub!( EREFERENCE, '&amp;' )
+ copy = copy.gsub( EREFERENCE, '&amp;' )
doctype.entities.each_value do |entity|
- copy.gsub!( entity.value,
+ copy = copy.gsub( entity.value,
"&#{entity.name};" ) if entity.value and
not( entity_filter and entity_filter.include?(entity) )
end
else
- copy.gsub!( EREFERENCE, '&amp;' )
+ copy = copy.gsub( EREFERENCE, '&amp;' )
DocType::DEFAULT_ENTITIES.each_value do |entity|
- copy.gsub!(entity.value, "&#{entity.name};" )
+ copy = copy.gsub(entity.value, "&#{entity.name};" )
end
end
copy