]> granicus.if.org Git - php/commitdiff
- Add our standard header
authorDerick Rethans <derick@php.net>
Thu, 29 Jan 2004 09:27:06 +0000 (09:27 +0000)
committerDerick Rethans <derick@php.net>
Thu, 29 Jan 2004 09:27:06 +0000 (09:27 +0000)
14 files changed:
ext/soap/php_encoding.c
ext/soap/php_encoding.h
ext/soap/php_http.c
ext/soap/php_http.h
ext/soap/php_packet_soap.c
ext/soap/php_packet_soap.h
ext/soap/php_schema.c
ext/soap/php_schema.h
ext/soap/php_sdl.c
ext/soap/php_sdl.h
ext/soap/php_soap.h
ext/soap/php_xml.c
ext/soap/php_xml.h
ext/soap/soap.c

index 1cbaf788d2456f038af26fcfc6c01acea1650b45..a60bfa28fee371d8bab4d69dcad518ff6c03fb16 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2004 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: Dmitry Stogov <dmitry@php.net>                               |
+  +----------------------------------------------------------------------+
+*/
+/* $Id$ */
+
 #include <time.h>
 
 #include "php_soap.h"
index 0b633cb33be74d4593234b94e9634f399e428954..cb59a8bc4ebeffdf1fb8a1945cbf19265be53542 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2004 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: Dmitry Stogov <dmitry@php.net>                               |
+  +----------------------------------------------------------------------+
+*/
+/* $Id$ */
+
 #ifndef PHP_ENCODING_H
 #define PHP_ENCODING_H
 
index b6281234829c98d6d82194c3f5fc5d1c04f2a55d..b61b99424232aa092a5fa587c5669816775766d7 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2004 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: Dmitry Stogov <dmitry@php.net>                               |
+  +----------------------------------------------------------------------+
+*/
+/* $Id$ */
+
 #include "php_soap.h"
 #include "ext/standard/base64.h"
 
index 4faa0510aabb4a595887f990621f851c55e0abf6..8cdb676e4c6e5ed59cfd73840e65dd52c1170c30 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2004 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: Dmitry Stogov <dmitry@php.net>                               |
+  +----------------------------------------------------------------------+
+*/
+/* $Id$ */
+
 #ifndef PHP_HTTP_H
 #define PHP_HTTP_H
 
index 3064c805be9c37b0ccb679480b0e72cfba1cf04b..6aff91737a6bbcb517775ac818fff68b3197d18c 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2004 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: Dmitry Stogov <dmitry@php.net>                               |
+  +----------------------------------------------------------------------+
+*/
+/* $Id$ */
+
 #include "php_soap.h"
 
 /* SOAP client calls this function to parse response from SOAP server */
index f82f3f5364975e624b6fe8ce86f696f25a6e1309..f9b343f39b4a09aacd93ed63f0bf272332a694d0 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2004 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: Dmitry Stogov <dmitry@php.net>                               |
+  +----------------------------------------------------------------------+
+*/
+/* $Id$ */
+
 #ifndef PHP_PACKET_SOAP_H
 #define PHP_PACKET_SOAP_H
 
index 810bea1e29517ac968c93489e4b819c01dfff4b2..ece95b7a38944f18386063d79e4e94c281ef6d44 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2004 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: Dmitry Stogov <dmitry@php.net>                               |
+  +----------------------------------------------------------------------+
+*/
+/* $Id$ */
+
 #include "php_soap.h"
 #include "libxml/uri.h"
 
index c34b2e06f98db30c79ac0f6f4cc2ab47d3cf1da7..5e0317867e0f5d7ca029fb5812cff5f3eb586060 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2004 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: Dmitry Stogov <dmitry@php.net>                               |
+  +----------------------------------------------------------------------+
+*/
+/* $Id$ */
+
 #ifndef PHP_SCHEMA_H
 #define PHP_SCHEMA_H
 
index f8b01541a520c44437b415ade1222c5e093455d7..c47a9c29d2e0033d0b3fec6f7db82ea759e0a4d9 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2004 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: Dmitry Stogov <dmitry@php.net>                               |
+  +----------------------------------------------------------------------+
+*/
+/* $Id$ */
+
 #include "php_soap.h"
 #include "libxml/uri.h"
 
index 53dbd1201db953af896c1643f83fc6303c6e2753..c2d25b49ebc269cb6df4b81d278e812c250de6fb 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2004 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: Dmitry Stogov <dmitry@php.net>                               |
+  +----------------------------------------------------------------------+
+*/
+/* $Id$ */
+
 #ifndef PHP_SDL_H
 #define PHP_SDL_H
 
index 2d79745e154e2c2eb54ff2dbe8a93fb435dbedc7..c2be4e436292ea3557c92c2fe6fd623a548bfe8a 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2004 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: Dmitry Stogov <dmitry@php.net>                               |
+  +----------------------------------------------------------------------+
+*/
+/* $Id$ */
+
 #ifndef PHP_SOAP_H
 #define PHP_SOAP_H
 
index 2040cb04e8fd1001d5129e511d42e078c1962047..ed51633f1a36ea952b15806bbee3ef02ce3c91ce 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2004 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: Dmitry Stogov <dmitry@php.net>                               |
+  +----------------------------------------------------------------------+
+*/
+/* $Id$ */
+
 #include "php_soap.h"
 
 /* Channel libxml file io layer through the PHP streams subsystem.
index c518983f1672732f3b1e5150f355d9c11f900638..94f0148b1dac10090e7db51ea46c35db019a76fb 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2004 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: Dmitry Stogov <dmitry@php.net>                               |
+  +----------------------------------------------------------------------+
+*/
+/* $Id$ */
+
 #ifndef PHP_SOAP_XML_H
 #define PHP_SOAP_XML_H
 
index 57b2c0c3d94cd77e2445882f8df85b8d23b3eedc..60264239789217b5a61c271605d0129a35da270e 100644 (file)
@@ -1,3 +1,22 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2004 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: Dmitry Stogov <dmitry@php.net>                               |
+  +----------------------------------------------------------------------+
+*/
+/* $Id$ */
+
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif