- less custom macro cruft
[m6w6/ext-http] / package.xml
index 6e3cf07fd69d015c6f28025d474f2d1543395ed4..ac62a6aa2cadf6bd7eb50c1b279427cc8938c498 100644 (file)
  <channel>pecl.php.net</channel>
  <summary>Extended HTTP Support</summary>
  <description><![CDATA[
-Extended HTTP support. Again. Keep in mind that it's got the major version 2, because it's incompatible with pecl_http v1.
+This HTTP extension aims to provide a convenient and powerful 
+set of functionality for one of PHPs major applications.
 
-* Introduces the http namespace.
-* Message bodies have been remodeled to use PHP temporary streams instead of in-memory buffers.
-* The utterly misunderstood HttpResponse class has been reimplemented as http\Env\Response inheriting http\Message.
-* Currently, there's only one Exception class left, http\Exception.
-* Errors triggered by the extension can be configured statically by http\Object::$defaultErrorHandling or inherited http\Object->errorHandling.
-* The request ecosystem has been modularized to support different libraries, though for the moment only libcurl is supported.
+It eases handling of HTTP urls, headers and messages, provides 
+means for negotiation of a client's preferred content type, 
+language and charset, as well as a convenient way to send any 
+arbitrary data with caching and resuming capabilities.
+
+It provides powerful request functionality, if built with CURL 
+support. Parallel requests are available for PHP 5 and greater.
 ]]></description>
  <lead>
   <name>Michael Wallner</name>
@@ -28,7 +30,7 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be
  </lead>
  <date>2012-12-31</date>
  <version>
-  <release>2.0.0beta5</release>
+  <release>2.0.0dev</release>
   <api>2.0.0</api>
  </version>
  <stability>
@@ -37,13 +39,14 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be
  </stability>
  <license>BSD, revised</license>
  <notes><![CDATA[
-! >80% test coverage http://goo.gl/VmyIW
-* Fixed build with libcurl <= 7.21.3
-* Fixed var_dump of http\Message with inherited userland properties with increased access level
-+ Added http\Header::getParams()
-+ Added simple support for escapes and quotes in the params parser
-+ Added support for sending http\Env\Response over PHP streams
-+ Added message body reference counting
+Extended HTTP support. Again. Keep in mind that it's got the major version 2, because it's incompatible with pecl_http v1.
+
+* Introduces the http namespace.
+* Message bodies have been remodeled to use PHP temporary streams instead of in-memory buffers.
+* The utterly misunderstood HttpResponse class has been reimplemented as http\Env\Response inheriting http\Message.
+* Currently, there's only one Exception class left, http\Exception.
+* Errors triggered by the extension can be configured statically by http\Object::$defaultErrorHandling or inherited http\Object->errorHandling.
+* The request ecosystem has been modularized to support different libraries, though for the moment only libcurl is supported.
 ]]></notes>
  <contents>
   <dir name="/">
@@ -59,15 +62,9 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be
    <file role="src" name="php_http_buffer.h"/>
    <file role="src" name="php_http.c"/>
    <file role="src" name="php_http_client.c"/>
-   <file role="src" name="php_http_client_datashare.c"/>
-   <file role="src" name="php_http_client_datashare.h"/>
-   <file role="src" name="php_http_client_factory.c"/>
-   <file role="src" name="php_http_client_factory.h"/>
    <file role="src" name="php_http_client.h"/>
-   <file role="src" name="php_http_client_interface.c"/>
-   <file role="src" name="php_http_client_interface.h"/>
-   <file role="src" name="php_http_client_pool.c"/>
-   <file role="src" name="php_http_client_pool.h"/>
+   <file role="src" name="php_http_client_curl.c"/>
+   <file role="src" name="php_http_client_curl.h"/>
    <file role="src" name="php_http_client_request.c"/>
    <file role="src" name="php_http_client_request.h"/>
    <file role="src" name="php_http_client_response.c"/>
@@ -75,12 +72,6 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be
    <file role="src" name="php_http_cookie.c"/>
    <file role="src" name="php_http_cookie.h"/>
    <file role="src" name="php_http_curl.c"/>
-   <file role="src" name="php_http_curl_client.c"/>
-   <file role="src" name="php_http_curl_client_datashare.c"/>
-   <file role="src" name="php_http_curl_client_datashare.h"/>
-   <file role="src" name="php_http_curl_client.h"/>
-   <file role="src" name="php_http_curl_client_pool.c"/>
-   <file role="src" name="php_http_curl_client_pool.h"/>
    <file role="src" name="php_http_curl.h"/>
    <file role="src" name="php_http_encoding.c"/>
    <file role="src" name="php_http_encoding.h"/>
@@ -130,7 +121,6 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be
 
    <dir name="tests">
     <file role="test" name="skipif.inc"/>
-    <dir name="HttpRequestPool_cache" />
     <dir name="data">
      <file role="test" name="message_r_multipart_put.txt"/>
      <file role="test" name="message_rr_empty.txt"/>
@@ -140,7 +130,6 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be
      <file role="test" name="urls.txt"/>
     </dir>
     <file role="test" name="bug61444.phpt"/>
-    <file role="test" name="clientpool002.phpt"/>
     <file role="test" name="envrequestbody001.phpt"/>
     <file role="test" name="envrequestbody002.phpt"/>
     <file role="test" name="envrequestbody003.phpt"/>
@@ -153,7 +142,6 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be
     <file role="test" name="envresponseheader001.phpt"/>
     <file role="test" name="envresponseranges001.phpt"/>
     <file role="test" name="etag001.phpt"/>
-    <file role="test" name="factory.phpt"/>
     <file role="test" name="filterchunked.phpt"/>
     <file role="test" name="filterzlib.phpt"/>
     <file role="test" name="info.phpt"/>
@@ -170,7 +158,6 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be
     <file role="test" name="phpunit.phpt"/>
     <file role="test" name="propertyproxy001.phpt"/>
     <file role="test" name="querystring_001.phpt"/>
-    <file role="test" name="requestpool001.phpt"/>
     <file role="test" name="response001.phpt"/>
     <file role="test" name="response002.phpt"/>
     <file role="test" name="response003.phpt"/>
@@ -181,17 +168,15 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be
    </dir>
    <dir name="phpunit">
     <file role="test" name="ClientRequestTest.php"/>
+    <file role="test" name="ClientTest.php"/>
     <file role="test" name="CookieTest.php"/>
-    <file role="test" name="DataShareTest.php"/>
     <file role="test" name="EncodingTest.php"/>
     <file role="test" name="HeaderTest.php"/>
     <file role="test" name="MessageTest.php"/>
     <file role="test" name="MessageBodyTest.php"/>
     <file role="test" name="ObjectTest.php"/>
     <file role="test" name="ParamsTest.php"/>
-    <file role="test" name="PoolTest.php"/>
     <file role="test" name="QueryStringTest.php"/>
-    <file role="test" name="RequestTest.php"/>
     <file role="test" name="UrlTest.php"/>
    </dir>
   </dir>