- a header may have an array of values
[m6w6/ext-http] / package.xml
1 <?xml version="1.0" encoding="iso-8859-1"?>
2 <!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
3 <package version="1.0">
4 <name>pecl_http</name>
5 <summary>Extended HTTP support</summary>
6 <description>
7 <![CDATA[
8 * Building absolute URIs
9 * RFC compliant HTTP redirects
10 * RFC compliant HTTP date handling
11 * Parsing of HTTP headers and responses
12 * Caching by "Last-Modified" and/or ETag
13 (with 'on the fly' option for ETag generation from buffered output)
14 * Sending data/files/streams with (multiple) ranges support
15 * Negotiating user preferred language/charset
16 * Convenient request functions to HEAD/GET/POST if libcurl is available
17 * HTTP auth hooks (Basic)
18 * HTTPi, HTTPi_Response and HTTPi_Request classes (HTTPi_Request only with libcurl)
19 ]]>
20 </description>
21 <license>PHP License 3.0</license>
22
23 <maintainers>
24 <maintainer>
25 <user>mike</user>
26 <name>Michael Wallner</name>
27 <email>mike@php.net</email>
28 <role>lead</role>
29 </maintainer>
30 </maintainers>
31
32 <release>
33 <version>0.7.0</version>
34 <date>2005-03-24</date>
35 <state>beta</state>
36 <notes><![CDATA[
37 * Renamed HTTPi to HttpUtil
38 * Renamed HTTPi_Request to HttpRequest
39 * Renamed HTTPi_Response to HttpResponse
40 * Added several methods to HttpRequest: unsetOptions(), addHeaders(array),
41 getHeaders(), unsetHeaders(), addCookies(array), getCookies(), unsetCookies(),
42 setSslOptions(array), getSslOptions(), unsetSslOptions()
43 * Improved HTTP ranges support
44 ]]>
45 </notes>
46 </release>
47
48 <filelist>
49 <dir name="/">
50 <file role="doc">CREDITS</file>
51 <file role="doc">EXPERIMENTAL</file>
52 <file role="doc">docs/functions.html</file>
53
54 <file role="src" platform="windows">config.w32</file>
55 <file role="src">config.m4</file>
56
57 <file role="src">phpstr/phpstr.h</file>
58 <file role="src">phpstr/phpstr.c</file>
59
60 <file role="src">php_http.h</file>
61 <file role="src">php_http_api.h</file>
62 <file role="src">php_http_curl_api.h</file>
63 <file role="src">php_http_std_defs.h</file>
64
65 <file role="src">http.c</file>
66 <file role="src">http_functions.c</file>
67 <file role="src">http_methods.c</file>
68 <file role="src">http_api.c</file>
69 <file role="src">http_curl_api.c</file>
70
71 </dir>
72 </filelist>
73 </package>
74