cellog Sun Mar 20 21:12:15 2005 EDT
Modified files:
/pear-core/PEAR/PackageFile/Parser v1.php
Log:
use new header blocks
http://cvs.php.net/diff.php/pear-core/PEAR/PackageFile/Parser/v1.php?r1=1.10&r2=1.11&ty=u
Index: pear-core/PEAR/PackageFile/Parser/v1.php
diff -u pear-core/PEAR/PackageFile/Parser/v1.php:1.10
pear-core/PEAR/PackageFile/Parser/v1.php:1.11
--- pear-core/PEAR/PackageFile/Parser/v1.php:1.10 Thu Nov 4 14:10:32 2004
+++ pear-core/PEAR/PackageFile/Parser/v1.php Sun Mar 20 21:12:15 2005
@@ -1,29 +1,38 @@
<?php
-//
-// +----------------------------------------------------------------------+
-// | 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@xxxxxxx so we can mail you a copy immediately. |
-// +----------------------------------------------------------------------+
-// | Author: Greg Beaver <cellog@xxxxxxx> |
-// | |
-// +----------------------------------------------------------------------+
-//
-// $Id: v1.php,v 1.10 2004/11/04 19:10:32 cellog Exp $
-
+/**
+ * package.xml parsing class, package.xml version 1.0
+ *
+ * PHP versions 4 and 5
+ *
+ * LICENSE: This source file is subject to version 3.0 of the PHP license
+ * that is available through the world-wide-web at the following URI:
+ * 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 web, please
+ * send a note to license@xxxxxxx so we can mail you a copy immediately.
+ *
+ * @category pear
+ * @package PEAR
+ * @author Greg Beaver <cellog@xxxxxxx>
+ * @copyright 1997-2005 The PHP Group
+ * @license http://www.php.net/license/3_0.txt PHP License 3.0
+ * @version CVS: $Id: v1.php,v 1.11 2005/03/21 02:12:15 cellog Exp $
+ * @link http://pear.php.net/package/PEAR
+ * @since File available since Release 1.4.0a1
+ */
+/**
+ * package.xml abstraction class
+ */
require_once 'PEAR/PackageFile/v1.php';
/**
* Parser for package.xml version 1.0
- * @author Greg Beaver <cellog@xxxxxxx>
- * @package PEAR
+ * @category pear
+ * @package PEAR
+ * @author Greg Beaver <cellog@xxxxxxx>
+ * @copyright 1997-2005 The PHP Group
+ * @license http://www.php.net/license/3_0.txt PHP License 3.0
+ * @version Release: @PEAR-VER@
+ * @link http://pear.php.net/package/PEAR
+ * @since Class available since Release 1.4.0a1
*/
class PEAR_PackageFile_Parser_v1
{
|