NobuNobu
nobun****@users*****
2006年 12月 30日 (土) 22:09:04 JST
Index: xoops2jp/html/modules/legacy/lib/nusoap/class.soapclient.php diff -u xoops2jp/html/modules/legacy/lib/nusoap/class.soapclient.php:1.1.2.1 xoops2jp/html/modules/legacy/lib/nusoap/class.soapclient.php:1.1.2.2 --- xoops2jp/html/modules/legacy/lib/nusoap/class.soapclient.php:1.1.2.1 Sat Oct 14 23:55:27 2006 +++ xoops2jp/html/modules/legacy/lib/nusoap/class.soapclient.php Sat Dec 30 22:09:04 2006 @@ -5,12 +5,12 @@ /** * -* soapclient higher level class for easy usage. +* soap_client higher level class for easy usage. * * usage: * * // instantiate client with server info -* $soapclient = new soapclient( string path [ ,boolean wsdl] ); +* $soapclient = new soap_client( string path [ ,boolean wsdl] ); * * // call method, get results * echo $soapclient->call( string methodname [ ,array parameters] ); @@ -19,7 +19,7 @@ * unset($soapclient); * * @author Dietrich Ayala <dietr****@ganx4*****> -* @version $Id: class.soapclient.php,v 1.1.2.1 2006/10/14 14:55:27 minahito Exp $ +* @version $Id: class.soapclient.php,v 1.1.2.2 2006/12/30 13:09:04 nobunobu Exp $ * @access public */ class soap_client extends nusoap_base { Index: xoops2jp/html/modules/legacy/lib/nusoap/nusoap.php diff -u xoops2jp/html/modules/legacy/lib/nusoap/nusoap.php:1.1.2.1 xoops2jp/html/modules/legacy/lib/nusoap/nusoap.php:1.1.2.2 --- xoops2jp/html/modules/legacy/lib/nusoap/nusoap.php:1.1.2.1 Sat Oct 14 23:55:27 2006 +++ xoops2jp/html/modules/legacy/lib/nusoap/nusoap.php Sat Dec 30 22:09:04 2006 @@ -1,7 +1,7 @@ <?php /* -$Id: nusoap.php,v 1.1.2.1 2006/10/14 14:55:27 minahito Exp $ +$Id: nusoap.php,v 1.1.2.2 2006/12/30 13:09:04 nobunobu Exp $ NuSOAP - Web Services Toolkit for PHP @@ -59,7 +59,7 @@ * nusoap_base * * @author Dietrich Ayala <dietr****@ganx4*****> -* @version $Id: nusoap.php,v 1.1.2.1 2006/10/14 14:55:27 minahito Exp $ +* @version $Id: nusoap.php,v 1.1.2.2 2006/12/30 13:09:04 nobunobu Exp $ * @access public */ class nusoap_base { @@ -83,7 +83,7 @@ * @var string * @access private */ - var $revision = '$Revision: 1.1.2.1 $'; + var $revision = '$Revision: 1.1.2.2 $'; /** * Current error string (manipulated by getError/setError) * @@ -910,7 +910,7 @@ * Mainly used for returning faults from deployed functions * in a server instance. * @author Dietrich Ayala <dietr****@ganx4*****> -* @version $Id: nusoap.php,v 1.1.2.1 2006/10/14 14:55:27 minahito Exp $ +* @version $Id: nusoap.php,v 1.1.2.2 2006/12/30 13:09:04 nobunobu Exp $ * @access public */ class soap_fault extends nusoap_base { @@ -996,7 +996,7 @@ * tutorials I refer to :) * * @author Dietrich Ayala <dietr****@ganx4*****> -* @version $Id: nusoap.php,v 1.1.2.1 2006/10/14 14:55:27 minahito Exp $ +* @version $Id: nusoap.php,v 1.1.2.2 2006/12/30 13:09:04 nobunobu Exp $ * @access public */ class XMLSchema extends nusoap_base { @@ -1899,7 +1899,7 @@ * xsd:anyType and user-defined types. * * @author Dietrich Ayala <dietr****@ganx4*****> -* @version $Id: nusoap.php,v 1.1.2.1 2006/10/14 14:55:27 minahito Exp $ +* @version $Id: nusoap.php,v 1.1.2.2 2006/12/30 13:09:04 nobunobu Exp $ * @access public */ class soapval extends nusoap_base { @@ -2000,7 +2000,7 @@ * NOTE: PHP must be compiled with the CURL extension for HTTPS support * * @author Dietrich Ayala <dietr****@ganx4*****> -* @version $Id: nusoap.php,v 1.1.2.1 2006/10/14 14:55:27 minahito Exp $ +* @version $Id: nusoap.php,v 1.1.2.2 2006/12/30 13:09:04 nobunobu Exp $ * @access public */ class soap_transport_http extends nusoap_base { @@ -3038,7 +3038,7 @@ * NOTE: WSDL functionality is experimental * * @author Dietrich Ayala <dietr****@ganx4*****> -* @version $Id: nusoap.php,v 1.1.2.1 2006/10/14 14:55:27 minahito Exp $ +* @version $Id: nusoap.php,v 1.1.2.2 2006/12/30 13:09:04 nobunobu Exp $ * @access public */ class soap_server extends nusoap_base { @@ -4069,7 +4069,7 @@ * parses a WSDL file, allows access to it's data, other utility methods * * @author Dietrich Ayala <dietr****@ganx4*****> -* @version $Id: nusoap.php,v 1.1.2.1 2006/10/14 14:55:27 minahito Exp $ +* @version $Id: nusoap.php,v 1.1.2.2 2006/12/30 13:09:04 nobunobu Exp $ * @access public */ class wsdl extends nusoap_base { @@ -5794,7 +5794,7 @@ * soap_parser class parses SOAP XML messages into native PHP values * * @author Dietrich Ayala <dietr****@ganx4*****> -* @version $Id: nusoap.php,v 1.1.2.1 2006/10/14 14:55:27 minahito Exp $ +* @version $Id: nusoap.php,v 1.1.2.2 2006/12/30 13:09:04 nobunobu Exp $ * @access public */ class soap_parser extends nusoap_base { @@ -6387,12 +6387,12 @@ /** * -* soapclient higher level class for easy usage. +* soap_client higher level class for easy usage. * * usage: * * // instantiate client with server info -* $soapclient = new soapclient( string path [ ,boolean wsdl] ); +* $soapclient = new soap_client( string path [ ,boolean wsdl] ); * * // call method, get results * echo $soapclient->call( string methodname [ ,array parameters] ); @@ -6401,7 +6401,7 @@ * unset($soapclient); * * @author Dietrich Ayala <dietr****@ganx4*****> -* @version $Id: nusoap.php,v 1.1.2.1 2006/10/14 14:55:27 minahito Exp $ +* @version $Id: nusoap.php,v 1.1.2.2 2006/12/30 13:09:04 nobunobu Exp $ * @access public */ class soap_client extends nusoap_base { Index: xoops2jp/html/modules/legacy/lib/nusoap/nusoapmime.php diff -u xoops2jp/html/modules/legacy/lib/nusoap/nusoapmime.php:1.1.2.1 xoops2jp/html/modules/legacy/lib/nusoap/nusoapmime.php:1.1.2.2 --- xoops2jp/html/modules/legacy/lib/nusoap/nusoapmime.php:1.1.2.1 Sat Oct 14 23:55:27 2006 +++ xoops2jp/html/modules/legacy/lib/nusoap/nusoapmime.php Sat Dec 30 22:09:04 2006 @@ -1,6 +1,6 @@ <?php /* -$Id: nusoapmime.php,v 1.1.2.1 2006/10/14 14:55:27 minahito Exp $ +$Id: nusoapmime.php,v 1.1.2.2 2006/12/30 13:09:04 nobunobu Exp $ NuSOAP - Web Services Toolkit for PHP @@ -42,10 +42,10 @@ * * @author Scott Nichol <snich****@sourc*****> * @author Thanks to Guillaume and Henning Reich for posting great attachment code to the mail list -* @version $Id: nusoapmime.php,v 1.1.2.1 2006/10/14 14:55:27 minahito Exp $ +* @version $Id: nusoapmime.php,v 1.1.2.2 2006/12/30 13:09:04 nobunobu Exp $ * @access public */ -class soapclientmime extends soapclient { +class soapclientmime extends soap_client { /** * @var array Each array element in the return is an associative array with keys * data, filename, contenttype, cid @@ -262,7 +262,7 @@ * * @author Scott Nichol <snich****@sourc*****> * @author Thanks to Guillaume and Henning Reich for posting great attachment code to the mail list -* @version $Id: nusoapmime.php,v 1.1.2.1 2006/10/14 14:55:27 minahito Exp $ +* @version $Id: nusoapmime.php,v 1.1.2.2 2006/12/30 13:09:04 nobunobu Exp $ * @access public */ class nusoapservermime extends soap_server {