- prepare release
authorMichael Wallner <mike@php.net>
Fri, 9 Sep 2005 13:18:42 +0000 (13:18 +0000)
committerMichael Wallner <mike@php.net>
Fri, 9 Sep 2005 13:18:42 +0000 (13:18 +0000)
config.m4
package.xml

index 62dcb4f04b1a116be03684e41424d43a920444db..29f1698f4e8408ca69bea06f5b379f16bc8b5976 100644 (file)
--- a/config.m4
+++ b/config.m4
@@ -62,7 +62,7 @@ dnl ----
                fi
                
                CURL_SSL=`$CURL_CONFIG --features | $EGREP SSL`
-               if test CURL_SSL == "SSL"; then
+               if test "$CURL_SSL" == "SSL"; then
                        AC_DEFINE([HTTP_HAVE_SSL], [1], [ ])
                fi
                AC_CHECK_HEADERS([openssl/crypto.h])
index 328a10b5b87078fd7aeba1968c552b2d902968dd..db800ba8b9deace96f152c3d8ead998c3820676c 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.38 $ -->
+<!-- $Revision: 1.39 $ -->
 <package version="1.0">
   <name>pecl_http</name>
   <summary>Extended HTTP support</summary>
@@ -14,8 +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
-* 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>
     <state>beta</state>
     <notes><![CDATA[
 + HTTP request method API is now available for builds without libcurl, too
++ Added HttpResponse::guessContentType() through libmagic
+
+- Removed HttpResponse class from PHP-5.0 (WONKY) due to ZE limitations
+
+* 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>
       <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>