- add missing support for raw post data (HttpRequest)
[m6w6/ext-http] / package.xml
index 3517095606a228043ed17ac58a83141eef8c2490..3745e850dc4fcc3392c88b6d250069794b495bf0 100644 (file)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
 <!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
-<!-- $Revision: 1.34 $ -->
+<!-- $Revision: 1.40 $ -->
 <package version="1.0">
   <name>pecl_http</name>
   <summary>Extended HTTP support</summary>
@@ -14,9 +14,8 @@
   (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 built upon libcurl
-* HTTP auth hooks (Basic)
-* PHP5 classes: HttpUtil, HttpResponse, HttpRequest, HttpRequestPool, HttpMessage
+* Convenient request functionality built upon libcurl
+* PHP5 classes: HttpUtil, HttpResponse (PHP-5.1), HttpRequest, HttpRequestPool, HttpMessage
 ]]>
   </description>
   <license>PHP License 3.0</license>
   </maintainers>
 
   <release>
-    <version>0.12.0</version>
-    <date>2005-08-00</date>
+    <version>0.13.0</version>
+    <date>2005-09-09</date>
     <state>beta</state>
     <notes><![CDATA[
-+ Added ETag generation through libmhash
-+ Added http_parse_message()
-+ Added single LF awareness to the parsers
-+ Added HttpResponse::setHeader(), HttpResponse::getHeader(), HttpResponse::status()
-+ Added HttpResponse::status()
-+ Added constants HttpMessage::NONE, Http_Message::REQUEST, HttpMessage::RESPONSE
-+ Added Content-Length header if HttpResponse sends full plain entity
-+ Added ZendEngine workaround for internal class' static properties (HttpResponse)
++ HTTP request method API is now available for builds without libcurl, too
++ Added HttpResponse::guessContentType() through libmagic
 
-- Removed http_split_response()
-- Removed HttpResponse::sendHeader(), HttpResponse::sendStatus()
-- Removed HttpRequest::unset*() methods, now handled through set*() with empty parameter
+- Removed HttpResponse class from PHP-5.0 (WONKY) due to ZE limitations
 
-* Fixed initialization and cleanup of module globals
-* Fixed builds and tests without libcurl
-* Fixed access of request headers through $_SERVER
-* Fixed check for ext/session in http_redirect()
-* Fixed custom ETags and Last-Modified dates in HttpResponse
-* Fixed PHP4 build
+* Improved the build system
+* Imrpoved logging format
+* Implemented SSL crypto locks for thread safe builds
+* Fixed ridiculous low default transfer timeout of 3 seconds (set to 0 now)
+* Fixed a bug where plain instead of more specific HttpExceptions were thrown
+* Fixed a bug where entities that where not marked for being cached were
+  actually cached if an apropriate ETag or Last-Modified header was seen
 ]]>
     </notes>
   </release>
       <file role="src">php_http.h</file>
       <file role="src">php_http_std_defs.h</file>
       <file role="src">php_http_api.h</file>
-      <file role="src">php_http_auth_api.h</file>
       <file role="src">php_http_cache_api.h</file>
       <file role="src">php_http_date_api.h</file>
       <file role="src">php_http_headers_api.h</file>
       <file role="src">php_http_info_api.h</file>
       <file role="src">php_http_message_api.h</file>
       <file role="src">php_http_request_api.h</file>
+      <file role="src">php_http_request_method_api.h</file>
       <file role="src">php_http_request_pool_api.h</file>
       <file role="src">php_http_send_api.h</file>
       <file role="src">php_http_url_api.h</file>
       <file role="src">http.c</file>
       <file role="src">http_functions.c</file>
       <file role="src">http_api.c</file>
-      <file role="src">http_auth_api.c</file>
       <file role="src">http_cache_api.c</file>
       <file role="src">http_date_api.c</file>
       <file role="src">http_headers_api.c</file>
       <file role="src">http_info_api.c</file>
       <file role="src">http_message_api.c</file>
       <file role="src">http_request_api.c</file>
+      <file role="src">http_request_method_api.c</file>
       <file role="src">http_request_pool_api.c</file>
       <file role="src">http_send_api.c</file>
       <file role="src">http_url_api.c</file>
       <dir name="tests" role="test">
         <file>data.txt</file>
         <file>skip.inc</file>
+        <file>log.inc</file>
         <file>abs_uri_001.phpt</file>
         <file>abs_uri_002.phpt</file>
         <file>allowed_methods_001.phpt</file>
+        <file>allowed_methods_001_logging.phpt</file>
         <file>chunked_decode_001.phpt</file>
         <file>chunked_decode_002.phpt</file>
         <file>date_001.phpt</file>
         <file>parse_headers_001.phpt</file>
         <file>parse_message_001.phpt</file>
         <file>redirect_001.phpt</file>
+        <file>redirect_001_logging.phpt</file>
         <file>redirect_002.phpt</file>
+        <file>redirect_002_logging.phpt</file>
         <file>redirect_003.phpt</file>
+        <file>redirect_003_logging.phpt</file>
         <file>send_data_001.phpt</file>
         <file>send_data_002.phpt</file>
         <file>send_data_003.phpt</file>
         <file>send_data_004.phpt</file>
         <file>send_data_005.phpt</file>
         <file>send_data_006.phpt</file>
-        <file>send_data_007.phpt</file>
+        <file>send_data_007_logging.phpt</file>
         <file>send_data_008.phpt</file>
         <file>send_data_009.phpt</file>
         <file>send_file_001.phpt</file>