cvs: pear /Net_Curl package.xml

[email protected] ("Joe Stump")
Newsgroups php.pear.cvs
Message-ID <cvsjstump1209844183@cvsserver>
jstump		Sat May  3 19:49:43 2008 UTC

  Modified files:              
    /pear/Net_Curl	package.xml 
  Log:
  Converted package.xml file to version 2.0.
jstump-20080503194943.txt (text/plain, 13.6 KB)
http://cvs.php.net/viewvc.cgi/pear/Net_Curl/package.xml?r1=1.10&r2=1.11&diff_format=u
Index: pear/Net_Curl/package.xml
diff -u pear/Net_Curl/package.xml:1.10 pear/Net_Curl/package.xml:1.11
--- pear/Net_Curl/package.xml:1.10	Sat May  3 19:41:24 2008
+++ pear/Net_Curl/package.xml	Sat May  3 19:49:43 2008
@@ -1,194 +1,199 @@
-<?xml version="1.0" encoding="ISO-8859-1" ?>
-<package>
-    <name>Net_Curl</name>
-    <summary>Net_Curl provides an OO interface to PHP's cURL extension</summary>
-    <description>Provides an OO interface to PHP's curl extension</description>
-    <license>New BSD License</license>
-    <maintainers>
-        <maintainer>
-            <user>jstump</user>
-            <name>Joe Stump</name>
-            <email>[email protected]</email>
-            <role>lead</role>
-        </maintainer>
-        <maintainer>
-            <user>jausions</user>
-            <name>Philippe Jausions</name>
-            <email>[email protected]</email>
-            <role>lead</role>
-        </maintainer>
-    </maintainers>
-    <release>
-        <version>1.2.5</version>
-        <date>2008-05-03</date>
-        <notes>
-            - Removed deprecated cURL option CURLOPT_MUTE (Bug #13489) 
-            - Changed the license to the New BSD License (Bug #13831)
-            - Cleaned up code to (mostly) comply with phpcs
-        </notes>
-        <state>stable</state>
-        <filelist>
-            <dir name="Net">
-                <file role="php">Curl.php</file>
-            </dir>
-            <dir name="examples" baseinstalldir="docs/Net_Curl">
-                <file role="doc">fetchPage.php</file>
-            </dir>
-        </filelist>
-        <deps>
-            <dep type="php" rel="ge" version="4.2.0" />
-            <dep type="ext" rel="has">curl</dep>
-        </deps>
-    </release>
-    <changelog>
-        <release>
-            <version>1.2.4</version>
-            <date>2006-11-23</date>
-            <notes>
-                - Fixed bug #9427 POST-FileUpload
-            </notes>
-            <state>stable</state>
-            <filelist>
-                <dir name="Net">
-                    <file role="php">Curl.php</file>
-                </dir>
-                <dir name="examples" baseinstalldir="docs/Net_Curl">
-                    <file role="doc">fetchPage.php</file>
-                </dir>
-            </filelist>
-            <deps>
-                <dep type="php" rel="ge" version="4.2.0" />
-                <dep type="ext" rel="has">curl</dep>
-            </deps>
-        </release>
-        <release>
-            <version>1.2.3</version>
-            <date>2006-06-16</date>
-            <notes>
-                - Fixed bug #7918 Cookie Handling
-            </notes>
-            <state>stable</state>
-            <filelist>
-                <dir name="Net">
-                    <file role="php">Curl.php</file>
-                </dir>
-                <dir name="examples" baseinstalldir="docs/Net_Curl">
-                    <file role="doc">fetchPage.php</file>
-                </dir>
-            </filelist>
-            <deps>
-                <dep type="php" rel="ge" version="4.2.0" />
-               <dep type="ext" rel="has">curl</dep>
-            </deps>
-        </release>
-        <release>
-            <version>1.2.2</version>
-            <date>2005-08-11</date>
-            <notes>
-                - Fixed a bug #5156 URL encoding of POSTed values
-            </notes>
-            <state>stable</state>
-            <filelist>
-                <dir name="Net">
-                    <file role="php">Curl.php</file>
-                </dir>
-                <dir name="examples" baseinstalldir="docs/Net_Curl">
-                    <file role="doc">fetchPage.php</file>
-                </dir>
-            </filelist>
-            <deps>
-                <dep type="php" rel="ge" version="4.2.0" />
-                <dep type="ext" rel="has">curl</dep>
-            </deps>
-        </release>
-        <release>
-            <version>1.2.1</version>
-            <date>2005-08-11</date>
-            <notes>
-                - Fixed a bug in setOption() that resulted in options not being set
-                - Rearranged verifyPeer/verifyHost handling so you can now turn off all SSL verification
-                - Changed some of the internal code to use setOption() instead of curl_setopt()
-                - Updated the example fetchPage.php to take the URL as a command-line argument 
-                - Updated the example fetchPage.php to use Net_Curl::create() as this is now best practice
-                - Removed David Costa from maintainer list in package.xml
-            </notes>
-            <state>stable</state>
-            <filelist>
-                <dir name="Net">
-                    <file role="php">Curl.php</file>
-                </dir>
-                <dir name="examples" baseinstalldir="docs/Net_Curl">
-                    <file role="doc">fetchPage.php</file>
-                </dir>
-            </filelist>
-            <deps>
-                <dep type="php" rel="ge" version="4.2.0" />
-                <dep type="ext" rel="has">curl</dep>
-            </deps>
-        </release>
-        <release>
-            <version>1.2.0</version>
-            <date>2005-07-13</date>
-            <notes>
-                - Fixed coding standards, which included variable name changes (ie. http_headers to httpHeaders) 
-                - Fixed file uploads (Bug #3580)
-                - Added check for HTTP status code (Bug #2562)
-                - Added certificate authority options (Bug #2887)
-                - Added Net_Curl::getInfo() (Bug #2887)
-                - Added Net_Curl::setOption() (Bug #2887)
-                - Added dependencies for PHP 4.2.0 and the cURL extension (Bug #1941)
-                - Added __construct()/__destruct() for PHP 5.x compatibility and switched PHP 4.x constructor to call PHP 5.x constructor for BC
-                - Added Joe Stump as a lead
-                - Added Philippe Jausions as a lead
-                - Moved David Costa to developer
-            </notes>
-            <state>stable</state>
-            <filelist>
-                <dir name="Net">
-                    <file role="php">Curl.php</file>
-                </dir>
-                <dir name="examples" baseinstalldir="docs/Net_Curl">
-                    <file role="doc">fetchPage.php</file>
-                </dir>
-            </filelist>
-            <deps>
-                <dep type="php" rel="ge" version="4.2.0" />
-                <dep type="ext" rel="has">curl</dep>
-            </deps>
-        </release>
-        <release>
-            <version>1.0.1beta</version>
-            <date>2004-05-10</date>
-            <notes>
-                - Added PHP5 compatibility maintaining BC
-                - Fixed bugs 822 and 1200
-                - Added FTP Upload support 
-                - Verbose support function: New function verbose all
-                - added the user agent option to the constructor
-            </notes>
-            <state>beta</state>
-            <filelist>
-                <dir name="Net">
-                    <file role="php">Curl.php</file>
-                </dir>
-            </filelist>
-        </release>
-        <release>
-            <version>0.2</version>
-            <state>stable</state>
-            <date>2003-12-16</date>
-            <notes>
-                - Remove PEAR
-                - Add username,password support (Alan Knowles)
-                - Add other HTTP header support, and fix wrong cookie data string (Colin Viebrock)
-            </notes>
-            <state>stable</state>
-        </release>
-        <release>
-            <version>0.1</version>
-            <state>stable</state>
-            <date>2002-01-26</date>
-            <notes>This is the initial release of the Net_Curl package which has been in php4/pear for a while.</notes>
-        </release>
-    </changelog>
+<?xml version="1.0" encoding="UTF-8"?>
+<package packagerversion="1.7.1" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
+http://pear.php.net/dtd/tasks-1.0.xsd
+http://pear.php.net/dtd/package-2.0
+http://pear.php.net/dtd/package-2.0.xsd">
+ <name>Net_Curl</name>
+ <channel>pear.php.net</channel>
+ <summary>Net_Curl provides an OO interface to PHP&apos;s cURL extension</summary>
+ <description>Provides an OO interface to PHP&apos;s curl extension
+ </description>
+ <lead>
+  <name>Joe Stump</name>
+  <user>jstump</user>
+  <email>[email protected]</email>
+  <active>yes</active>
+ </lead>
+ <lead>
+  <name>Philippe Jausions</name>
+  <user>jausions</user>
+  <email>[email protected]</email>
+  <active>yes</active>
+ </lead>
+ <date>2008-05-03</date>
+ <time>19:48:21</time>
+ <version>
+  <release>1.2.5</release>
+  <api>1.2.5</api>
+ </version>
+ <stability>
+  <release>stable</release>
+  <api>stable</api>
+ </stability>
+ <license>New BSD License</license>
+ <notes>
+- Removed deprecated cURL option CURLOPT_MUTE (Bug #13489) 
+- Changed the license to the New BSD License (Bug #13831)
+- Cleaned up code to (mostly) comply with phpcs
+- Converted package.xml to version 2.0
+ </notes>
+ <contents>
+  <dir name="/">
+   <dir name="examples">
+    <file baseinstalldir="docs/Net_Curl" name="fetchPage.php" role="doc" />
+   </dir> <!-- /examples -->
+   <dir name="Net">
+    <file name="Curl.php" role="php" />
+   </dir> <!-- /Net -->
+  </dir> <!-- / -->
+ </contents>
+ <dependencies>
+  <required>
+   <php>
+    <min>4.2.0</min>
+   </php>
+   <pearinstaller>
+    <min>1.4.0b1</min>
+   </pearinstaller>
+   <extension>
+    <name>curl</name>
+   </extension>
+  </required>
+ </dependencies>
+ <phprelease />
+ <changelog>
+  <release>
+   <version>
+    <release>1.2.4</release>
+    <api>1.2.4</api>
+   </version>
+   <stability>
+    <release>stable</release>
+    <api>stable</api>
+   </stability>
+   <date>2006-11-23</date>
+   <license>New BSD License</license>
+   <notes>- Fixed bug #9427 POST-FileUpload
+   </notes>
+  </release>
+  <release>
+   <version>
+    <release>1.2.3</release>
+    <api>1.2.3</api>
+   </version>
+   <stability>
+    <release>stable</release>
+    <api>stable</api>
+   </stability>
+   <date>2006-06-16</date>
+   <license>New BSD License</license>
+   <notes>- Fixed bug #7918 Cookie Handling
+   </notes>
+  </release>
+  <release>
+   <version>
+    <release>1.2.2</release>
+    <api>1.2.2</api>
+   </version>
+   <stability>
+    <release>stable</release>
+    <api>stable</api>
+   </stability>
+   <date>2005-08-11</date>
+   <license>New BSD License</license>
+   <notes>- Fixed a bug #5156 URL encoding of POSTed values
+   </notes>
+  </release>
+  <release>
+   <version>
+    <release>1.2.1</release>
+    <api>1.2.1</api>
+   </version>
+   <stability>
+    <release>stable</release>
+    <api>stable</api>
+   </stability>
+   <date>2005-08-11</date>
+   <license>New BSD License</license>
+   <notes>- Fixed a bug in setOption() that resulted in options not being set
+- Rearranged verifyPeer/verifyHost handling so you can now turn off all SSL verification
+- Changed some of the internal code to use setOption() instead of curl_setopt()
+- Updated the example fetchPage.php to take the URL as a command-line argument 
+- Updated the example fetchPage.php to use Net_Curl::create() as this is now best practice
+- Removed David Costa from maintainer list in package.xml
+   </notes>
+  </release>
+  <release>
+   <version>
+    <release>1.2.0</release>
+    <api>1.2.0</api>
+   </version>
+   <stability>
+    <release>stable</release>
+    <api>stable</api>
+   </stability>
+   <date>2005-07-13</date>
+   <license>New BSD License</license>
+   <notes>- Fixed coding standards, which included variable name changes (ie. http_headers to httpHeaders) 
+- Fixed file uploads (Bug #3580)
+- Added check for HTTP status code (Bug #2562)
+- Added certificate authority options (Bug #2887)
+- Added Net_Curl::getInfo() (Bug #2887)
+- Added Net_Curl::setOption() (Bug #2887)
+- Added dependencies for PHP 4.2.0 and the cURL extension (Bug #1941)
+- Added __construct()/__destruct() for PHP 5.x compatibility and switched PHP 4.x constructor to call PHP 5.x constructor for BC
+- Added Joe Stump as a lead
+- Added Philippe Jausions as a lead
+- Moved David Costa to developer
+   </notes>
+  </release>
+  <release>
+   <version>
+    <release>1.0.1beta</release>
+    <api>1.0.1beta</api>
+   </version>
+   <stability>
+    <release>beta</release>
+    <api>beta</api>
+   </stability>
+   <date>2004-05-10</date>
+   <license>New BSD License</license>
+   <notes>- Added PHP5 compatibility maintaining BC
+- Fixed bugs 822 and 1200
+- Added FTP Upload support 
+- Verbose support function: New function verbose all
+- added the user agent option to the constructor
+   </notes>
+  </release>
+  <release>
+   <version>
+    <release>0.2</release>
+    <api>0.2</api>
+   </version>
+   <stability>
+    <release>stable</release>
+    <api>stable</api>
+   </stability>
+   <date>2003-12-16</date>
+   <license>New BSD License</license>
+   <notes>- Remove PEAR
+- Add username,password support (Alan Knowles)
+- Add other HTTP header support, and fix wrong cookie data string (Colin Viebrock)
+   </notes>
+  </release>
+  <release>
+   <version>
+    <release>0.1</release>
+    <api>0.1</api>
+   </version>
+   <stability>
+    <release>stable</release>
+    <api>stable</api>
+   </stability>
+   <date>2002-01-26</date>
+   <license>New BSD License</license>
+   <notes>This is the initial release of the Net_Curl package which has been in php4/pear for a while.
+   </notes>
+  </release>
+ </changelog>
 </package>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.