summaryrefslogtreecommitdiff
path: root/pear
diff options
context:
space:
mode:
Diffstat (limited to 'pear')
-rw-r--r--pear/OS/Guess.php2
-rw-r--r--pear/PEAR.php4
-rw-r--r--pear/PEAR/Autoloader.php4
-rw-r--r--pear/PEAR/Builder.php4
-rw-r--r--pear/PEAR/Command.php2
-rw-r--r--pear/PEAR/Command/Auth.php2
-rw-r--r--pear/PEAR/Command/Build.php2
-rw-r--r--pear/PEAR/Command/Common.php2
-rw-r--r--pear/PEAR/Command/Config.php2
-rw-r--r--pear/PEAR/Command/Install.php2
-rw-r--r--pear/PEAR/Command/Package.php2
-rw-r--r--pear/PEAR/Command/Registry.php2
-rw-r--r--pear/PEAR/Command/Remote.php2
-rw-r--r--pear/PEAR/Common.php2
-rw-r--r--pear/PEAR/Config.php2
-rw-r--r--pear/PEAR/Dependency.php2
-rw-r--r--pear/PEAR/Frontend/CLI.php2
-rw-r--r--pear/PEAR/Installer.php4
-rw-r--r--pear/PEAR/Packager.php4
-rw-r--r--pear/PEAR/Registry.php2
-rw-r--r--pear/PEAR/Remote.php2
-rw-r--r--pear/System.php2
-rw-r--r--pear/package.dtd4
-rw-r--r--pear/scripts/pear.in2
-rw-r--r--pear/scripts/pearwin.php2
25 files changed, 31 insertions, 31 deletions
diff --git a/pear/OS/Guess.php b/pear/OS/Guess.php
index 97e665818e..92a52ef116 100644
--- a/pear/OS/Guess.php
+++ b/pear/OS/Guess.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Authors: Stig Bakken <ssb@fast.no> |
+// | Authors: Stig Bakken <ssb@php.net> |
// | |
// +----------------------------------------------------------------------+
//
diff --git a/pear/PEAR.php b/pear/PEAR.php
index c4a0d94b0e..a1d518ddd7 100644
--- a/pear/PEAR.php
+++ b/pear/PEAR.php
@@ -14,7 +14,7 @@
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Authors: Sterling Hughes <sterling@php.net> |
-// | Stig Bakken <ssb@fast.no> |
+// | Stig Bakken <ssb@php.net> |
// | Tomas V.V.Cox <cox@idecnet.com> |
// +----------------------------------------------------------------------+
//
@@ -66,7 +66,7 @@ ini_set('track_errors', true);
* objects by reference, ej: $obj =& new PEAR_child;
*
* @since PHP 4.0.2
- * @author Stig Bakken <ssb@fast.no>
+ * @author Stig Bakken <ssb@php.net>
* @see http://pear.php.net/manual/
*/
class PEAR
diff --git a/pear/PEAR/Autoloader.php b/pear/PEAR/Autoloader.php
index 42152386cd..3fec4c19cf 100644
--- a/pear/PEAR/Autoloader.php
+++ b/pear/PEAR/Autoloader.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Author: Stig Bakken <ssb@fast.no> |
+// | Author: Stig Bakken <ssb@php.net> |
// | |
// +----------------------------------------------------------------------+
//
@@ -38,7 +38,7 @@ require_once "PEAR.php";
* methods, an instance of each class providing separated methods is
* stored and called every time the aggregated method is called.
*
- * @author Stig Sæther Bakken <ssb@fast.no>
+ * @author Stig Sæther Bakken <ssb@php.net>
*/
class PEAR_Autoloader extends PEAR
{
diff --git a/pear/PEAR/Builder.php b/pear/PEAR/Builder.php
index 1ed46b9eb0..7e9d589f3b 100644
--- a/pear/PEAR/Builder.php
+++ b/pear/PEAR/Builder.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Authors: Stig Sæther Bakken <ssb@fast.no> |
+// | Authors: Stig Sæther Bakken <ssb@php.net> |
// +----------------------------------------------------------------------+
//
// $Id$
@@ -23,7 +23,7 @@ require_once 'PEAR/Common.php';
/**
* Class to handle building (compiling) extensions.
*
- * @author Stig Sæther Bakken <ssb@fast.no>
+ * @author Stig Sæther Bakken <ssb@php.net>
*/
class PEAR_Builder extends PEAR_Common
{
diff --git a/pear/PEAR/Command.php b/pear/PEAR/Command.php
index ee02840900..7e23acab32 100644
--- a/pear/PEAR/Command.php
+++ b/pear/PEAR/Command.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Author: Stig Bakken <ssb@fast.no> |
+// | Author: Stig Bakken <ssb@php.net> |
// +----------------------------------------------------------------------+
//
// $Id$
diff --git a/pear/PEAR/Command/Auth.php b/pear/PEAR/Command/Auth.php
index e1286f3338..3978ac6ec9 100644
--- a/pear/PEAR/Command/Auth.php
+++ b/pear/PEAR/Command/Auth.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Author: Stig Bakken <ssb@fast.no> |
+// | Author: Stig Bakken <ssb@php.net> |
// +----------------------------------------------------------------------+
//
// $Id$
diff --git a/pear/PEAR/Command/Build.php b/pear/PEAR/Command/Build.php
index 70ea213ad7..ed97903454 100644
--- a/pear/PEAR/Command/Build.php
+++ b/pear/PEAR/Command/Build.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Author: Stig Bakken <ssb@fast.no> |
+// | Author: Stig Bakken <ssb@php.net> |
// | Tomas V.V.Cox <cox@idecnet.com> |
// | |
// +----------------------------------------------------------------------+
diff --git a/pear/PEAR/Command/Common.php b/pear/PEAR/Command/Common.php
index d64fe42c72..3544e2f9cb 100644
--- a/pear/PEAR/Command/Common.php
+++ b/pear/PEAR/Command/Common.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Author: Stig Sæther Bakken <ssb@fast.no> |
+// | Author: Stig Sæther Bakken <ssb@php.net> |
// +----------------------------------------------------------------------+
//
// $Id$
diff --git a/pear/PEAR/Command/Config.php b/pear/PEAR/Command/Config.php
index 762ad31e2c..f18491903d 100644
--- a/pear/PEAR/Command/Config.php
+++ b/pear/PEAR/Command/Config.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Author: Stig Bakken <ssb@fast.no> |
+// | Author: Stig Bakken <ssb@php.net> |
// | Tomas V.V.Cox <cox@idecnet.com> |
// | |
// +----------------------------------------------------------------------+
diff --git a/pear/PEAR/Command/Install.php b/pear/PEAR/Command/Install.php
index c6fcbcc640..4ecfb33390 100644
--- a/pear/PEAR/Command/Install.php
+++ b/pear/PEAR/Command/Install.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Author: Stig Sæther Bakken <ssb@fast.no> |
+// | Author: Stig Sæther Bakken <ssb@php.net> |
// +----------------------------------------------------------------------+
//
// $Id$
diff --git a/pear/PEAR/Command/Package.php b/pear/PEAR/Command/Package.php
index 9a92100cfe..ed0fb671c6 100644
--- a/pear/PEAR/Command/Package.php
+++ b/pear/PEAR/Command/Package.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Authors: Stig Bakken <ssb@fast.no> |
+// | Authors: Stig Bakken <ssb@php.net> |
// | Martin Jansen <mj@php.net> |
// +----------------------------------------------------------------------+
//
diff --git a/pear/PEAR/Command/Registry.php b/pear/PEAR/Command/Registry.php
index 6ba1b9bc19..20860cf4a2 100644
--- a/pear/PEAR/Command/Registry.php
+++ b/pear/PEAR/Command/Registry.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Author: Stig Bakken <ssb@fast.no> |
+// | Author: Stig Bakken <ssb@php.net> |
// | |
// +----------------------------------------------------------------------+
//
diff --git a/pear/PEAR/Command/Remote.php b/pear/PEAR/Command/Remote.php
index f445b84b1a..85695fd104 100644
--- a/pear/PEAR/Command/Remote.php
+++ b/pear/PEAR/Command/Remote.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Author: Stig Bakken <ssb@fast.no> |
+// | Author: Stig Bakken <ssb@php.net> |
// | |
// +----------------------------------------------------------------------+
//
diff --git a/pear/PEAR/Common.php b/pear/PEAR/Common.php
index ae31207f46..466b081ead 100644
--- a/pear/PEAR/Common.php
+++ b/pear/PEAR/Common.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Authors: Stig Bakken <ssb@fast.no> |
+// | Authors: Stig Bakken <ssb@php.net> |
// | Tomas V.V.Cox <cox@idecnet.com> |
// +----------------------------------------------------------------------+
//
diff --git a/pear/PEAR/Config.php b/pear/PEAR/Config.php
index 8f5f1f39cc..5059284b97 100644
--- a/pear/PEAR/Config.php
+++ b/pear/PEAR/Config.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Author: Stig Bakken <ssb@fast.no> |
+// | Author: Stig Bakken <ssb@php.net> |
// +----------------------------------------------------------------------+
//
// $Id$
diff --git a/pear/PEAR/Dependency.php b/pear/PEAR/Dependency.php
index 3fb545d5fb..b33dcd9054 100644
--- a/pear/PEAR/Dependency.php
+++ b/pear/PEAR/Dependency.php
@@ -14,7 +14,7 @@
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Authors: Tomas V.V.Cox <cox@idecnet.com> |
-// | Stig Bakken <ssb@fast.no> |
+// | Stig Bakken <ssb@php.net> |
// +----------------------------------------------------------------------+
//
// $Id$
diff --git a/pear/PEAR/Frontend/CLI.php b/pear/PEAR/Frontend/CLI.php
index 2e84eb9e00..da958b842c 100644
--- a/pear/PEAR/Frontend/CLI.php
+++ b/pear/PEAR/Frontend/CLI.php
@@ -13,7 +13,7 @@
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
- | Author: Stig Sæther Bakken <ssb@fast.no> |
+ | Author: Stig Sæther Bakken <ssb@php.net> |
+----------------------------------------------------------------------+
$Id$
diff --git a/pear/PEAR/Installer.php b/pear/PEAR/Installer.php
index 36df5f49da..6f77dbd8dc 100644
--- a/pear/PEAR/Installer.php
+++ b/pear/PEAR/Installer.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Authors: Stig Bakken <ssb@fast.no> |
+// | Authors: Stig Bakken <ssb@php.net> |
// | Tomas V.V.Cox <cox@idecnet.com> |
// +----------------------------------------------------------------------+
//
@@ -39,7 +39,7 @@ define('PEAR_INSTALLER_SKIPPED', -1);
* others..
*
* @since PHP 4.0.2
- * @author Stig Bakken <ssb@fast.no>
+ * @author Stig Bakken <ssb@php.net>
*/
class PEAR_Installer extends PEAR_Common
{
diff --git a/pear/PEAR/Packager.php b/pear/PEAR/Packager.php
index 5929fe238e..69279c4465 100644
--- a/pear/PEAR/Packager.php
+++ b/pear/PEAR/Packager.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Authors: Stig Bakken <ssb@fast.no> |
+// | Authors: Stig Bakken <ssb@php.net> |
// | Tomas V.V.Cox <cox@idecnet.com> |
// +----------------------------------------------------------------------+
//
@@ -29,7 +29,7 @@ require_once 'System.php';
* - add an extra param the dir where to place the created package
*
* @since PHP 4.0.2
- * @author Stig Bakken <ssb@fast.no>
+ * @author Stig Bakken <ssb@php.net>
*/
class PEAR_Packager extends PEAR_Common
{
diff --git a/pear/PEAR/Registry.php b/pear/PEAR/Registry.php
index 94ee603650..050d54ca9d 100644
--- a/pear/PEAR/Registry.php
+++ b/pear/PEAR/Registry.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Author: Stig Bakken <ssb@fast.no> |
+// | Author: Stig Bakken <ssb@php.net> |
// | Tomas V.V.Cox <cox@idecnet.com> |
// | |
// +----------------------------------------------------------------------+
diff --git a/pear/PEAR/Remote.php b/pear/PEAR/Remote.php
index 3095d74c62..6b90b0c7da 100644
--- a/pear/PEAR/Remote.php
+++ b/pear/PEAR/Remote.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Author: Stig Bakken <ssb@fast.no> |
+// | Author: Stig Bakken <ssb@php.net> |
// +----------------------------------------------------------------------+
//
// $Id$
diff --git a/pear/System.php b/pear/System.php
index 98754e9e17..1265da629c 100644
--- a/pear/System.php
+++ b/pear/System.php
@@ -415,7 +415,7 @@ class System
*
* @param string $program The command to search for
* @return mixed A string with the full path or false if not found
- * @author Stig Bakken <ssb@fast.no>
+ * @author Stig Bakken <ssb@php.net>
*/
function which($program, $fallback = false)
{
diff --git a/pear/package.dtd b/pear/package.dtd
index 9ac164a132..4afc4aa5cb 100644
--- a/pear/package.dtd
+++ b/pear/package.dtd
@@ -1,5 +1,5 @@
<!--
- $Id: package.dtd,v 1.29 2002-12-27 17:19:31 ssb Exp $
+ $Id: package.dtd,v 1.30 2003-03-18 12:06:06 ssb Exp $
This is the PEAR package description, version 1.0.
It should be used with the informal public identifier:
@@ -17,7 +17,7 @@
license@php.net so we can mail you a copy immediately.
Authors:
- Stig S. Bakken <ssb@fast.no>
+ Stig S. Bakken <ssb@php.net>
-->
diff --git a/pear/scripts/pear.in b/pear/scripts/pear.in
index cd6736b43c..71668ee702 100644
--- a/pear/scripts/pear.in
+++ b/pear/scripts/pear.in
@@ -38,7 +38,7 @@ exec $PHP -C -q $INC -d output_buffering=1 $0 $@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Authors: Stig Bakken <ssb@fast.no> |
+// | Authors: Stig Bakken <ssb@php.net> |
// | Tomas V.V.Cox <cox@idecnet.com> |
// | |
// +----------------------------------------------------------------------+
diff --git a/pear/scripts/pearwin.php b/pear/scripts/pearwin.php
index 4804021658..43c46998f1 100644
--- a/pear/scripts/pearwin.php
+++ b/pear/scripts/pearwin.php
@@ -13,7 +13,7 @@
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
-// | Authors: Stig Bakken <ssb@fast.no> |
+// | Authors: Stig Bakken <ssb@php.net> |
// | Tomas V.V.Cox <cox@idecnet.com> |
// +----------------------------------------------------------------------+
//