From 3b6d093451565c80d36c791ff6ac9cbc5918d287 Mon Sep 17 00:00:00 2001 From: kou Date: Wed, 27 Feb 2013 12:24:31 +0000 Subject: * lib/rexml/security.rb (REXML::Security): create. * lib/rexml/rexml.rb: move entity_expansion_limit and entity_expansion_text_limit accessors to ... * lib/rexml/security.rb: ... here. * lib/rexml/document.rb: use REXML::Security. * lib/rexml/text.rb: use REXML::Security. * test/rexml/test_document.rb: use REXML::Security. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39528 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rexml/rexml.rb | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'lib/rexml/rexml.rb') diff --git a/lib/rexml/rexml.rb b/lib/rexml/rexml.rb index 472fadb7ee..f89951171a 100644 --- a/lib/rexml/rexml.rb +++ b/lib/rexml/rexml.rb @@ -28,28 +28,4 @@ module REXML Copyright = COPYRIGHT Version = VERSION - - @@entity_expansion_limit = 10_000 - - # Set the entity expansion limit. By default the limit is set to 10000. - def self.entity_expansion_limit=( val ) - @@entity_expansion_limit = val - end - - # Get the entity expansion limit. By default the limit is set to 10000. - def self.entity_expansion_limit - return @@entity_expansion_limit - end - - @@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 -- cgit v1.2.3