mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
1df7862b2b
* lib/xmlrpc/datetime.rb: ditto. * lib/xmlrpc/parser.rb: ditto. * lib/xmlrpc/client.rb: ditto. * lib/xmlrpc/utils.rb: ditto. * lib/xmlrpc/README.rdoc: ditto. * lib/xmlrpc/create.rb: ditto. * lib/xmlrpc/base64.rb: ditto. * lib/xmlrpc/config.rb: ditto. * lib/xmlrpc/httpserver.rb: ditto. * lib/xmlrpc/server.rb: ditto. * lib/xmlrpc/marshal.rb: ditto. * lib/xmlrpc/README.txt: ditto. [Bug #6909] [ruby-core:47286] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36958 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
42 lines
945 B
Ruby
42 lines
945 B
Ruby
#
|
|
# $Id$
|
|
# Configuration file for XML-RPC for Ruby
|
|
#
|
|
|
|
module XMLRPC # :nodoc:
|
|
|
|
module Config
|
|
|
|
# or XMLWriter::XMLParser
|
|
DEFAULT_WRITER = XMLWriter::Simple
|
|
|
|
# === Available parsers
|
|
#
|
|
# * XMLParser::NQXMLTreeParser
|
|
# * XMLParser::NQXMLStreamParser
|
|
# * XMLParser::XMLTreeParser
|
|
# * XMLParser::XMLStreamParser (fastest)
|
|
# * XMLParser::REXMLStreamParser
|
|
# * XMLParser::XMLScanStreamParser
|
|
DEFAULT_PARSER = XMLParser::REXMLStreamParser
|
|
|
|
# enable <code><nil/></code> tag
|
|
ENABLE_NIL_CREATE = false
|
|
ENABLE_NIL_PARSER = false
|
|
|
|
# allows integers greater than 32-bit if +true+
|
|
ENABLE_BIGINT = false
|
|
|
|
# enable marshalling ruby objects which include XMLRPC::Marshallable
|
|
ENABLE_MARSHALLING = true
|
|
|
|
# enable multiCall extension by default
|
|
ENABLE_MULTICALL = false
|
|
|
|
# enable Introspection extension by default
|
|
ENABLE_INTROSPECTION = false
|
|
|
|
end
|
|
|
|
end
|
|
|