* try the direct way
[m6w6/ext-http] / package.xml
index 82d022da04f3c61d100acf5af874533a4536930d..eea805e701f22855fa1e42f37c0fa2f42c0b2fdd 100644 (file)
@@ -1,19 +1,21 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
 <!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
-<package>
+<package version="1.0">
   <name>pecl_http</name>
   <summary>Extended HTTP support</summary>
   <description>
 <![CDATA[
 * Building absolute URIs
-* RCF compliant HTTP redirects
+* RFC compliant HTTP redirects
 * RFC compliant HTTP date handling
+* Parsing of HTTP headers and responses
 * Caching by "Last-Modified" and/or ETag
   (with 'on the fly' option for ETag generation from buffered output)
 * Sending data/files/streams with (multiple) ranges support
 * Negotiating user preferred language/charset
 * Convenient request functions to HEAD/GET/POST if libcurl is available
 * HTTP auth hooks (Basic)
+* HTTPi, HTTPi_Response and HTTPi_Request classes (HTTPi_Request only with libcurl)
 ]]>
   </description>
   <license>PHP License 3.0</license>
   </maintainers>
 
   <release>
-    <version>0.3.0</version>
-    <date>2005-02-xx</date>
+    <version>0.6.1</version>
+    <date>2005-03-07</date>
     <state>alpha</state>
     <notes><![CDATA[
- * ctype is now mandatory
- * implemented additional third/fourth informational parameter to http_(get|head|post*)
-   which will be filled with an associative array containing request/response information
- * removed http_accept_ranges()
- * output "Redirecting to <a>URI</a>." in http_redirect() for full RFC compliance
- * fixed http_cache_last_modified(): if parameter was omitted, would have always sent 304 Not Modified
+* fixed overflow in http_split_response()
+- removed HTTPi_Request::getResponseHeaders()
++ added HTTPi_Request::getResponseCode()
++ added HTTPi_Request::getResponseHeader([string name]), allowing retrieval of single header values
++ HTTPi_Request::getResponseInfo([string name]) now allows retrieval of single info values
++ vastly enhanced http_absolute_uri()
 ]]>
     </notes>
   </release>
 
   <filelist>
     <dir name="/">
+      <file role="doc">CREDITS</file>
       <file role="doc">EXPERIMENTAL</file>
       <file role="doc">docs/functions.html</file>
+      
       <file role="src" platform="windows">config.w32</file>
       <file role="src">config.m4</file>
-      <file role="src">http.c</file>
+      
       <file role="src">php_http.h</file>
-      <file role="src">http_api.c</file>
       <file role="src">php_http_api.h</file>
-      <file role="src">http_build_query.c</file>
-      <file role="src">php_http_build_query.h</file>
+      <file role="src">php_http_curl_api.h</file>
+      <file role="src">php_http_std_defs.h</file>
+      
+      <file role="src">http.c</file>
+      <file role="src">http_functions.c</file>
+      <file role="src">http_methods.c</file>
+      <file role="src">http_api.c</file>
+      <file role="src">http_curl_api.c</file>
+      
     </dir>
   </filelist>
 </package>