mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/xmlrpc: import.
* eval.c (thgroup_add): should return group for terminated thread case. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4102 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c7d2ebd71e
commit
d675dbc279
15 changed files with 3370 additions and 2 deletions
40
lib/xmlrpc/config.rb
Normal file
40
lib/xmlrpc/config.rb
Normal file
|
@ -0,0 +1,40 @@
|
|||
#
|
||||
# $Id$
|
||||
# Configuration file for XML-RPC for Ruby
|
||||
#
|
||||
|
||||
module XMLRPC
|
||||
|
||||
module Config
|
||||
|
||||
DEFAULT_WRITER = XMLWriter::Simple # or XMLWriter::XMLParser
|
||||
|
||||
# available parser:
|
||||
# * XMLParser::NQXMLTreeParser
|
||||
# * XMLParser::NQXMLStreamParser
|
||||
# * XMLParser::XMLTreeParser
|
||||
# * XMLParser::XMLStreamParser (fastest)
|
||||
# * XMLParser::REXMLStreamParser
|
||||
# * XMLParser::XMLScanStreamParser
|
||||
DEFAULT_PARSER = XMLParser::REXMLStreamParser
|
||||
|
||||
# enable <nil/> 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue