forked from Wavyzz/dolibarr
Fix: Avoid errors into rpm packages
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
$Id$
|
||||
$Id: class.nusoap_base.php,v 1.7 2011/08/03 16:46:46 eldy Exp $
|
||||
|
||||
NuSOAP - Web Services Toolkit for PHP
|
||||
|
||||
@@ -18,8 +18,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
The NuSOAP project home is:
|
||||
http://sourceforge.net/projects/nusoap/
|
||||
@@ -79,7 +78,7 @@ $GLOBALS['_transient']['static']['nusoap_base']['globalDebugLevel'] = 9;
|
||||
*
|
||||
* @author Dietrich Ayala <dietrich@ganx4.com>
|
||||
* @author Scott Nichol <snichol@users.sourceforge.net>
|
||||
* @version $Id$
|
||||
* @version $Id: class.nusoap_base.php,v 1.7 2011/08/03 16:46:46 eldy Exp $
|
||||
* @access public
|
||||
*/
|
||||
class nusoap_base {
|
||||
@@ -103,7 +102,7 @@ class nusoap_base {
|
||||
* @var string
|
||||
* @access private
|
||||
*/
|
||||
var $revision = '$Revision$';
|
||||
var $revision = '$Revision: 1.7 $';
|
||||
/**
|
||||
* Current error string (manipulated by getError/setError)
|
||||
*
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
$Id$
|
||||
$Id: nusoap.php,v 1.15 2011/08/03 16:46:46 eldy Exp $
|
||||
|
||||
NuSOAP - Web Services Toolkit for PHP
|
||||
|
||||
@@ -18,8 +18,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
The NuSOAP project home is:
|
||||
http://sourceforge.net/projects/nusoap/
|
||||
@@ -79,7 +78,7 @@ $GLOBALS['_transient']['static']['nusoap_base']['globalDebugLevel'] = 9;
|
||||
*
|
||||
* @author Dietrich Ayala <dietrich@ganx4.com>
|
||||
* @author Scott Nichol <snichol@users.sourceforge.net>
|
||||
* @version $Id$
|
||||
* @version $Id: nusoap.php,v 1.15 2011/08/03 16:46:46 eldy Exp $
|
||||
* @access public
|
||||
*/
|
||||
class nusoap_base {
|
||||
@@ -103,7 +102,7 @@ class nusoap_base {
|
||||
* @var string
|
||||
* @access private
|
||||
*/
|
||||
var $revision = '$Revision$';
|
||||
var $revision = '$Revision: 1.15 $';
|
||||
/**
|
||||
* Current error string (manipulated by getError/setError)
|
||||
*
|
||||
@@ -1004,7 +1003,7 @@ function usleepWindows($usec)
|
||||
* Mainly used for returning faults from deployed functions
|
||||
* in a server instance.
|
||||
* @author Dietrich Ayala <dietrich@ganx4.com>
|
||||
* @version $Id$
|
||||
* @version $Id: nusoap.php,v 1.15 2011/08/03 16:46:46 eldy Exp $
|
||||
* @access public
|
||||
*/
|
||||
class nusoap_fault extends nusoap_base {
|
||||
@@ -1092,7 +1091,7 @@ class soap_fault extends nusoap_fault {
|
||||
*
|
||||
* @author Dietrich Ayala <dietrich@ganx4.com>
|
||||
* @author Scott Nichol <snichol@users.sourceforge.net>
|
||||
* @version $Id$
|
||||
* @version $Id: nusoap.php,v 1.15 2011/08/03 16:46:46 eldy Exp $
|
||||
* @access public
|
||||
*/
|
||||
class nusoap_xmlschema extends nusoap_base {
|
||||
@@ -2064,7 +2063,7 @@ class XMLSchema extends nusoap_xmlschema {
|
||||
* xsd:anyType and user-defined types.
|
||||
*
|
||||
* @author Dietrich Ayala <dietrich@ganx4.com>
|
||||
* @version $Id$
|
||||
* @version $Id: nusoap.php,v 1.15 2011/08/03 16:46:46 eldy Exp $
|
||||
* @access public
|
||||
*/
|
||||
class soapval extends nusoap_base {
|
||||
@@ -2166,7 +2165,7 @@ class soapval extends nusoap_base {
|
||||
*
|
||||
* @author Dietrich Ayala <dietrich@ganx4.com>
|
||||
* @author Scott Nichol <snichol@users.sourceforge.net>
|
||||
* @version $Id$
|
||||
* @version $Id: nusoap.php,v 1.15 2011/08/03 16:46:46 eldy Exp $
|
||||
* @access public
|
||||
*/
|
||||
class soap_transport_http extends nusoap_base {
|
||||
@@ -3471,7 +3470,7 @@ class soap_transport_http extends nusoap_base {
|
||||
*
|
||||
* @author Dietrich Ayala <dietrich@ganx4.com>
|
||||
* @author Scott Nichol <snichol@users.sourceforge.net>
|
||||
* @version $Id$
|
||||
* @version $Id: nusoap.php,v 1.15 2011/08/03 16:46:46 eldy Exp $
|
||||
* @access public
|
||||
*/
|
||||
class nusoap_server extends nusoap_base {
|
||||
@@ -4594,7 +4593,7 @@ class soap_server extends nusoap_server {
|
||||
*
|
||||
* @author Dietrich Ayala <dietrich@ganx4.com>
|
||||
* @author Scott Nichol <snichol@users.sourceforge.net>
|
||||
* @version $Id$
|
||||
* @version $Id: nusoap.php,v 1.15 2011/08/03 16:46:46 eldy Exp $
|
||||
* @access public
|
||||
*/
|
||||
class wsdl extends nusoap_base {
|
||||
@@ -6532,7 +6531,7 @@ class wsdl extends nusoap_base {
|
||||
*
|
||||
* @author Dietrich Ayala <dietrich@ganx4.com>
|
||||
* @author Scott Nichol <snichol@users.sourceforge.net>
|
||||
* @version $Id$
|
||||
* @version $Id: nusoap.php,v 1.15 2011/08/03 16:46:46 eldy Exp $
|
||||
* @access public
|
||||
*/
|
||||
class nusoap_parser extends nusoap_base {
|
||||
@@ -7183,7 +7182,7 @@ class soap_parser extends nusoap_parser {
|
||||
*
|
||||
* @author Dietrich Ayala <dietrich@ganx4.com>
|
||||
* @author Scott Nichol <snichol@users.sourceforge.net>
|
||||
* @version $Id$
|
||||
* @version $Id: nusoap.php,v 1.15 2011/08/03 16:46:46 eldy Exp $
|
||||
* @access public
|
||||
*/
|
||||
class nusoap_client extends nusoap_base {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/*
|
||||
$Id$
|
||||
$Id: nusoapmime.php,v 1.9 2011/08/03 16:46:46 eldy Exp $
|
||||
|
||||
NuSOAP - Web Services Toolkit for PHP
|
||||
|
||||
@@ -17,8 +17,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
The NuSOAP project home is:
|
||||
http://sourceforge.net/projects/nusoap/
|
||||
@@ -48,7 +47,7 @@ require_once('Mail/mimePart.php');
|
||||
*
|
||||
* @author Scott Nichol <snichol@users.sourceforge.net>
|
||||
* @author Thanks to Guillaume and Henning Reich for posting great attachment code to the mail list
|
||||
* @version $Id$
|
||||
* @version $Id: nusoapmime.php,v 1.9 2011/08/03 16:46:46 eldy Exp $
|
||||
* @access public
|
||||
*/
|
||||
class nusoap_client_mime extends nusoap_client {
|
||||
@@ -278,7 +277,7 @@ if (!extension_loaded('soap')) {
|
||||
*
|
||||
* @author Scott Nichol <snichol@users.sourceforge.net>
|
||||
* @author Thanks to Guillaume and Henning Reich for posting great attachment code to the mail list
|
||||
* @version $Id$
|
||||
* @version $Id: nusoapmime.php,v 1.9 2011/08/03 16:46:46 eldy Exp $
|
||||
* @access public
|
||||
*/
|
||||
class nusoap_server_mime extends nusoap_server {
|
||||
|
||||
Reference in New Issue
Block a user