aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rexml/rexml.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rexml/rexml.rb')
-rw-r--r--lib/rexml/rexml.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/rexml/rexml.rb b/lib/rexml/rexml.rb
index f89951171a..bc59a30c64 100644
--- a/lib/rexml/rexml.rb
+++ b/lib/rexml/rexml.rb
@@ -28,4 +28,16 @@ module REXML
Copyright = COPYRIGHT
Version = VERSION
+
+ @@entity_expansion_text_limit = 10_240
+
+ # Set the entity expansion limit. By default the limit is set to 10240.
+ def self.entity_expansion_text_limit=( val )
+ @@entity_expansion_text_limit = val
+ end
+
+ # Get the entity expansion limit. By default the limit is set to 10240.
+ def self.entity_expansion_text_limit
+ return @@entity_expansion_text_limit
+ end
end