ruby-cvs:15489
From: (nahi) <nahi ruby-lang.org>
Date: Thu, 15 Sep 2005 23:47:08 +0900
Subject: [ruby-cvs] ruby, ruby/test/soap, ruby/test/soap/asp.net, ruby/test/soap/header, ruby/test/soap/ssl, ruby/test/soap/swa, ruby/test/soap/wsdlDriver, ruby/test/wsdl/any, ruby/test/wsdl/document, ruby/test/wsdl/marshal, ruby/test/wsdl/qualified, ruby/test/wsdl/ref, ruby/test/wsdl/rpc, ruby/test/wsdl/simpletype/rpc, ruby/lib/soap, ruby/lib/soap/encodingstyle, ruby/lib/soap/header, ruby/lib/soap/mapping, ruby/lib/soap/rpc, ruby/lib/wsdl, ruby/lib/wsdl/soap, ruby/lib/wsdl/xmlSchema, ruby/lib/xsd, ruby/lib/xsd/codegen: * lib/{soap,wsdl,xsd}, test/{soap,wsdl,xsd}: imported soap4r/1.5.5.
nahi Thu, 15 Sep 2005 23:47:08 +0900
Modified files: (Branch: ruby_1_8)
ruby:
ChangeLog
ruby/test/soap:
test_soapelement.rb test_streamhandler.rb
ruby/test/soap/ssl:
test_ssl.rb
ruby/test/soap/swa:
test_file.rb
ruby/test/soap/wsdlDriver:
test_calc.rb
ruby/test/wsdl/document:
echo.rb
ruby/test/wsdl/marshal:
person_org.rb
ruby/lib/soap:
baseData.rb element.rb generator.rb httpconfigloader.rb
mimemessage.rb parser.rb soap.rb streamHandler.rb
ruby/lib/soap/encodingstyle:
aspDotNetHandler.rb handler.rb literalHandler.rb
soapHandler.rb
ruby/lib/soap/header:
simplehandler.rb
ruby/lib/soap/mapping:
factory.rb registry.rb wsdlencodedregistry.rb
wsdlliteralregistry.rb
ruby/lib/soap/rpc:
driver.rb element.rb proxy.rb router.rb soaplet.rb
ruby/lib/wsdl:
operation.rb param.rb
ruby/lib/wsdl/soap:
body.rb cgiStubCreator.rb classDefCreator.rb
clientSkeltonCreator.rb complexType.rb driverCreator.rb
methodDefCreator.rb standaloneServerStubCreator.rb
ruby/lib/wsdl/xmlSchema:
all.rb attribute.rb choice.rb complexType.rb element.rb
schema.rb sequence.rb
ruby/lib/xsd:
charset.rb datatypes.rb ns.rb qname.rb
ruby/lib/xsd/codegen:
gensupport.rb
Added files: (Branch: ruby_1_8)
ruby/test/soap:
test_envelopenamespace.rb test_httpconfigloader.rb
test_no_indent.rb
ruby/test/soap/asp.net:
hello.wsdl test_aspdotnet.rb
ruby/test/soap/header:
test_simplehandler.rb
ruby/test/wsdl/any:
any.wsdl expectedDriver.rb expectedEcho.rb expectedService.rb
test_any.rb
ruby/test/wsdl/qualified:
lp.rb lp.wsdl lp.xsd np.wsdl test_qualified.rb
test_unqualified.rb
ruby/test/wsdl/ref:
expectedProduct.rb product.wsdl test_ref.rb
ruby/test/wsdl/rpc:
test-rpc-lit.wsdl test-rpc-lit12.wsdl test_rpc_lit.rb
ruby/test/wsdl/simpletype/rpc:
expectedClient.rb expectedDriver.rb expectedEchoVersion.rb
expectedServant.rb expectedService.rb rpc.wsdl test_rpc.rb
Removed files: (Branch: ruby_1_8)
ruby/lib/soap/mapping:
wsdlRegistry.rb
Log:
* lib/{soap,wsdl,xsd}, test/{soap,wsdl,xsd}: imported soap4r/1.5.5.
#nnn is a ticket number at http://dev.ctor.org/soap4r
* SOAP
* allow to configure an envelope namespace of SOAP request. (#124)
TemporaryNamespace = 'http://www.w3.org/2003/05/soap-envelope'
@client.options["soap.envelope.requestnamespace"] =
TemporaryNamespace
@client.options["soap.envelope.responsenamespace"] =
TemporaryNamespace
@client.do_proc(...)
* let SOAP request XML indent space configuable. see
"soap.envelope.no_indent" option. (#130)
* let external CES configuable.
ex. client["soap.mapping.external_ces"] = 'SJIS'. $KCODE is used
by default. (#133)
external CES ::= CES used in Ruby object of client and server
internal CES ::= CES used in SOAP/OM
* add iso-8859-1 external CES support. (#106)
* fixed illegal 'qualified' handling of elements. it caused
ASP.NET inteoperability problem. (#144)
* added 'soap.envelope.use_numeric_character_reference' (boolean)
option to let query XML use numeric character reference in XML,
not plain UTF-8 character. !GoogleSearch server seems to not
allow plain UTF-8 character since 2005-08-15 update. (#147)
* SOAP::Header::SimpleHeader (de)serialization throws an exception
on !SimpleHeader.on_(in|out)bound when header is a String. so we
could not use a simple single element headerItem. fixed. thanks
to emil. (#129)
* out parameter of rpc operation did not work. (#132)
* follow HTTP redirect only if using http-access2. (#125) (#145)
* add a workaround for importing an WSDL whose path begins with
drive letter. (#115)
* WSDL
* SOAP Data which is defined as a simpletype was not mapped
correctly to Ruby obj when using wsdl2ruby.rb generated classdef
file. (#123)
* rpc/literal support. (#118)
* re-implemented local element qualify/unqualify control. handles
elementFormDefault and form in WSDL. (#119)
* Array of an element which has simpleType causes a crash. (#128)
* prarmeterOrder may not contain return part so it can be shorter
than parts size. Thanks to Hugh. (#139)
* Samples
* added !BasicAuth client sample. (#117)
* added Base64 client/server sample.
* added Flickr SOAP interface client sample. (#122)
* added !SalesForce client sample. (#135)
* updated Thawte CA certificate for !GoogleAdWords sample.
* updated a client script with the newer version made by Johan.
thanks!
* shortened long file names. (#120)
* fixed typo in authheader sample. (#129)
* updated deprecated method usage. (#138)
Revision Changes Path
1.2673.2.1246 +84 -0 ruby/ChangeLog
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/ChangeLog?cvsroot=src&r1=1.2673.2.1245&r2=1.2673.2.1246
1.1.2.1 +0 -0 ruby/test/soap/test_envelopenamespace.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/soap/test_envelopenamespace.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/soap/test_httpconfigloader.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/soap/test_httpconfigloader.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/soap/test_no_indent.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/soap/test_no_indent.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.3.2.2 +2 -1 ruby/test/soap/test_soapelement.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/soap/test_soapelement.rb?cvsroot=src&r1=1.3.2.1&r2=1.3.2.2
1.3.2.4 +1 -1 ruby/test/soap/test_streamhandler.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/soap/test_streamhandler.rb?cvsroot=src&r1=1.3.2.3&r2=1.3.2.4
1.1.2.1 +0 -0 ruby/test/soap/asp.net/hello.wsdl
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/soap/asp.net/hello.wsdl?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/soap/asp.net/test_aspdotnet.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/soap/asp.net/test_aspdotnet.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/soap/header/test_simplehandler.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/soap/header/test_simplehandler.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.4 +4 -4 ruby/test/soap/ssl/test_ssl.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/soap/ssl/test_ssl.rb?cvsroot=src&r1=1.1.2.3&r2=1.1.2.4
1.1.2.3 +4 -1 ruby/test/soap/swa/test_file.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/soap/swa/test_file.rb?cvsroot=src&r1=1.1.2.2&r2=1.1.2.3
1.1.2.2 +1 -2 ruby/test/soap/wsdlDriver/test_calc.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/soap/wsdlDriver/test_calc.rb?cvsroot=src&r1=1.1.2.1&r2=1.1.2.2
1.1.2.1 +0 -0 ruby/test/wsdl/any/any.wsdl
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/any/any.wsdl?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/any/expectedDriver.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/any/expectedDriver.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/any/expectedEcho.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/any/expectedEcho.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/any/expectedService.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/any/expectedService.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/any/test_any.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/any/test_any.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.2 +6 -6 ruby/test/wsdl/document/echo.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/document/echo.rb?cvsroot=src&r1=1.1.2.1&r2=1.1.2.2
1.1.2.2 +1 -1 ruby/test/wsdl/marshal/person_org.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/marshal/person_org.rb?cvsroot=src&r1=1.1.2.1&r2=1.1.2.2
1.1.2.1 +0 -0 ruby/test/wsdl/qualified/lp.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/qualified/lp.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/qualified/lp.wsdl
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/qualified/lp.wsdl?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/qualified/lp.xsd
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/qualified/lp.xsd?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/qualified/np.wsdl
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/qualified/np.wsdl?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/qualified/test_qualified.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/qualified/test_qualified.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/qualified/test_unqualified.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/qualified/test_unqualified.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/ref/expectedProduct.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/ref/expectedProduct.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/ref/product.wsdl
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/ref/product.wsdl?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/ref/test_ref.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/ref/test_ref.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/rpc/test-rpc-lit.wsdl
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/rpc/test-rpc-lit.wsdl?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/rpc/test-rpc-lit12.wsdl
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/rpc/test-rpc-lit12.wsdl?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/rpc/test_rpc_lit.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/rpc/test_rpc_lit.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/simpletype/rpc/expectedClient.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/simpletype/rpc/expectedClient.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/simpletype/rpc/expectedDriver.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/simpletype/rpc/expectedDriver.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/simpletype/rpc/expectedEchoVersion.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/simpletype/rpc/expectedEchoVersion.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/simpletype/rpc/expectedServant.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/simpletype/rpc/expectedServant.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/simpletype/rpc/expectedService.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/simpletype/rpc/expectedService.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/simpletype/rpc/rpc.wsdl
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/simpletype/rpc/rpc.wsdl?cvsroot=src&r1=1.1&r2=1.1.2.1
1.1.2.1 +0 -0 ruby/test/wsdl/simpletype/rpc/test_rpc.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/wsdl/simpletype/rpc/test_rpc.rb?cvsroot=src&r1=1.1&r2=1.1.2.1
1.3.2.5 +35 -25 ruby/lib/soap/baseData.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/baseData.rb?cvsroot=src&r1=1.3.2.4&r2=1.3.2.5
1.3.2.3 +11 -11 ruby/lib/soap/element.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/element.rb?cvsroot=src&r1=1.3.2.2&r2=1.3.2.3
1.4.2.3 +80 -27 ruby/lib/soap/generator.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/generator.rb?cvsroot=src&r1=1.4.2.2&r2=1.4.2.3
1.1.2.2 +3 -0 ruby/lib/soap/httpconfigloader.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/httpconfigloader.rb?cvsroot=src&r1=1.1.2.1&r2=1.1.2.2
1.1.2.2 +3 -1 ruby/lib/soap/mimemessage.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/mimemessage.rb?cvsroot=src&r1=1.1.2.1&r2=1.1.2.2
1.2.2.2 +5 -6 ruby/lib/soap/parser.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/parser.rb?cvsroot=src&r1=1.2.2.1&r2=1.2.2.2
1.6.2.4 +17 -16 ruby/lib/soap/soap.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/soap.rb?cvsroot=src&r1=1.6.2.3&r2=1.6.2.4
1.6.2.4 +32 -15 ruby/lib/soap/streamHandler.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/streamHandler.rb?cvsroot=src&r1=1.6.2.3&r2=1.6.2.4
1.3.2.2 +14 -20 ruby/lib/soap/encodingstyle/aspDotNetHandler.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/encodingstyle/aspDotNetHandler.rb?cvsroot=src&r1=1.3.2.1&r2=1.3.2.2
1.3.2.2 +4 -4 ruby/lib/soap/encodingstyle/handler.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/encodingstyle/handler.rb?cvsroot=src&r1=1.3.2.1&r2=1.3.2.2
1.3.2.4 +14 -20 ruby/lib/soap/encodingstyle/literalHandler.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/encodingstyle/literalHandler.rb?cvsroot=src&r1=1.3.2.3&r2=1.3.2.4
1.6.2.4 +7 -20 ruby/lib/soap/encodingstyle/soapHandler.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/encodingstyle/soapHandler.rb?cvsroot=src&r1=1.6.2.3&r2=1.6.2.4
1.1.2.3 +3 -3 ruby/lib/soap/header/simplehandler.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/header/simplehandler.rb?cvsroot=src&r1=1.1.2.2&r2=1.1.2.3
1.6.2.7 +6 -4 ruby/lib/soap/mapping/factory.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/mapping/factory.rb?cvsroot=src&r1=1.6.2.6&r2=1.6.2.7
1.5.2.6 +5 -2 ruby/lib/soap/mapping/registry.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/mapping/registry.rb?cvsroot=src&r1=1.5.2.5&r2=1.5.2.6
1.2.2.2 -REMOVED- ruby/lib/soap/mapping/wsdlRegistry.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/mapping/wsdlRegistry.rb?cvsroot=src&rev=1.2.2.1
1.1.2.4 +14 -3 ruby/lib/soap/mapping/wsdlencodedregistry.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/mapping/wsdlencodedregistry.rb?cvsroot=src&r1=1.1.2.3&r2=1.1.2.4
1.1.2.3 +57 -33 ruby/lib/soap/mapping/wsdlliteralregistry.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/mapping/wsdlliteralregistry.rb?cvsroot=src&r1=1.1.2.2&r2=1.1.2.3
1.4.2.6 +1 -1 ruby/lib/soap/rpc/driver.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/rpc/driver.rb?cvsroot=src&r1=1.4.2.5&r2=1.4.2.6
1.2.2.3 +9 -9 ruby/lib/soap/rpc/element.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/rpc/element.rb?cvsroot=src&r1=1.2.2.2&r2=1.2.2.3
1.2.2.4 +109 -45 ruby/lib/soap/rpc/proxy.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/rpc/proxy.rb?cvsroot=src&r1=1.2.2.3&r2=1.2.2.4
1.2.2.4 +64 -40 ruby/lib/soap/rpc/router.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/rpc/router.rb?cvsroot=src&r1=1.2.2.3&r2=1.2.2.4
1.2.2.5 +1 -0 ruby/lib/soap/rpc/soaplet.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/soap/rpc/soaplet.rb?cvsroot=src&r1=1.2.2.4&r2=1.2.2.5
1.2.2.5 +2 -3 ruby/lib/wsdl/operation.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/operation.rb?cvsroot=src&r1=1.2.2.4&r2=1.2.2.5
1.2.2.3 +8 -0 ruby/lib/wsdl/param.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/param.rb?cvsroot=src&r1=1.2.2.2&r2=1.2.2.3
1.2.2.2 +5 -1 ruby/lib/wsdl/soap/body.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/soap/body.rb?cvsroot=src&r1=1.2.2.1&r2=1.2.2.2
1.1.2.4 +5 -5 ruby/lib/wsdl/soap/cgiStubCreator.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/soap/cgiStubCreator.rb?cvsroot=src&r1=1.1.2.3&r2=1.1.2.4
1.1.2.4 +48 -6 ruby/lib/wsdl/soap/classDefCreator.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/soap/classDefCreator.rb?cvsroot=src&r1=1.1.2.3&r2=1.1.2.4
1.1.2.3 +2 -2 ruby/lib/wsdl/soap/clientSkeltonCreator.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/soap/clientSkeltonCreator.rb?cvsroot=src&r1=1.1.2.2&r2=1.1.2.3
1.3.2.3 +28 -3 ruby/lib/wsdl/soap/complexType.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/soap/complexType.rb?cvsroot=src&r1=1.3.2.2&r2=1.3.2.3
1.1.2.4 +11 -11 ruby/lib/wsdl/soap/driverCreator.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/soap/driverCreator.rb?cvsroot=src&r1=1.1.2.3&r2=1.1.2.4
1.1.2.4 +60 -17 ruby/lib/wsdl/soap/methodDefCreator.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/soap/methodDefCreator.rb?cvsroot=src&r1=1.1.2.3&r2=1.1.2.4
1.1.2.4 +5 -5 ruby/lib/wsdl/soap/standaloneServerStubCreator.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/soap/standaloneServerStubCreator.rb?cvsroot=src&r1=1.1.2.3&r2=1.1.2.4
1.2.2.2 +4 -0 ruby/lib/wsdl/xmlSchema/all.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/xmlSchema/all.rb?cvsroot=src&r1=1.2.2.1&r2=1.2.2.2
1.2.2.4 +12 -3 ruby/lib/wsdl/xmlSchema/attribute.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/xmlSchema/attribute.rb?cvsroot=src&r1=1.2.2.3&r2=1.2.2.4
1.2.2.2 +4 -0 ruby/lib/wsdl/xmlSchema/choice.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/xmlSchema/choice.rb?cvsroot=src&r1=1.2.2.1&r2=1.2.2.2
1.2.2.3 +7 -1 ruby/lib/wsdl/xmlSchema/complexType.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/xmlSchema/complexType.rb?cvsroot=src&r1=1.2.2.2&r2=1.2.2.3
1.2.2.4 +28 -8 ruby/lib/wsdl/xmlSchema/element.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/xmlSchema/element.rb?cvsroot=src&r1=1.2.2.3&r2=1.2.2.4
1.2.2.5 +3 -2 ruby/lib/wsdl/xmlSchema/schema.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/xmlSchema/schema.rb?cvsroot=src&r1=1.2.2.4&r2=1.2.2.5
1.2.2.2 +4 -0 ruby/lib/wsdl/xmlSchema/sequence.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/wsdl/xmlSchema/sequence.rb?cvsroot=src&r1=1.2.2.1&r2=1.2.2.2
1.5.2.5 +46 -30 ruby/lib/xsd/charset.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/xsd/charset.rb?cvsroot=src&r1=1.5.2.4&r2=1.5.2.5
1.7.2.5 +10 -13 ruby/lib/xsd/datatypes.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/xsd/datatypes.rb?cvsroot=src&r1=1.7.2.4&r2=1.7.2.5
1.2.2.3 +1 -1 ruby/lib/xsd/ns.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/xsd/ns.rb?cvsroot=src&r1=1.2.2.2&r2=1.2.2.3
1.2.2.4 +3 -4 ruby/lib/xsd/qname.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/xsd/qname.rb?cvsroot=src&r1=1.2.2.3&r2=1.2.2.4
1.1.2.3 +9 -8 ruby/lib/xsd/codegen/gensupport.rb
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/lib/xsd/codegen/gensupport.rb?cvsroot=src&r1=1.1.2.2&r2=1.1.2.3