- allow negative time offsets
[m6w6/ext-http] / package2.xml
1 <?xml version="1.0" encoding="ISO-8859-1" ?>
2 <package version="2.0" xmlns="http://pear.php.net/dtd/package-2.0"
3 xmlns:tasks="http://pear.php.net/dtd/tasks-1.0"
4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5 xsi:schemaLocation="
6 http://pear.php.net/dtd/tasks-1.0
7 http://pear.php.net/dtd/tasks-1.0.xsd
8 http://pear.php.net/dtd/package-2.0
9 http://pear.php.net/dtd/package-2.0.xsd">
10 <name>pecl_http</name>
11 <channel>pecl.php.net</channel>
12 <summary>Extended HTTP Support</summary>
13 <description><![CDATA[
14 * Building absolute URIs
15 * RFC compliant HTTP redirects
16 * RFC compliant HTTP date handling
17 * Parsing of HTTP headers and messages
18 * Caching by "Last-Modified" and/or ETag
19 (with 'on the fly' option for ETag generation from buffered output)
20 * Sending data/files/streams with (multiple) ranges support
21 * Negotiating user preferred language/charset
22 * Convenient request functionality built upon libcurl
23 * PHP5 classes: HttpUtil, HttpResponse (PHP-5.1), HttpRequest, HttpRequestPool, HttpMessage
24 ]]></description>
25 <lead>
26 <name>Michael Wallner</name>
27 <user>mike</user>
28 <email>mike@php.net</email>
29 <active>yes</active>
30 </lead>
31 <date>2005-00-00</date>
32 <version>
33 <release>0.15.0</release>
34 <api>0.14.0</api>
35 </version>
36 <stability>
37 <release>beta</release>
38 <api>beta</api>
39 </stability>
40 <license uri="http://www.php.net/license">PHP License</license>
41 <notes><![CDATA[
42 + Updated documentation (a lot)
43 + Added optional third parameter to HttpRequest::__construct() accepting an array with options
44 + Added compression functions gzencode/gzdecode, deflate/inflate, compress/uncompress
45 + Added http_support() for probing features that depend on external libraries
46
47 - Renamed http_absolute_uri() to http_build_uri() (complements with http_build_query())
48 - Changed the signature of the negotiator to fill the second parameter with the results array
49
50 * Fixed several ETag issues
51 * Fixed HttpRequestPools detach() and attach() methods when the iterator is active
52 * Fixed parsing messages with Content-Range headers
53 * Fixed parsing messages with another Transfer-Encoding header value than chunked
54 ]]></notes>
55 <contents>
56 <dir name="/">
57 <file role="doc" name="CREDITS"/>
58 <file role="doc" name="EXPERIMENTAL"/>
59 <file role="doc" name="KnownIssues.txt"/>
60 <file role="doc" name="docs/functions.html"/>
61 <file role="doc" name="docs/examples/Bandwidth_Throttling.php"/>
62 <file role="doc" name="docs/examples/Cached_Responses.php"/>
63 <file role="doc" name="docs/examples/GET_Queries.php"/>
64 <file role="doc" name="docs/examples/KISS_XMLRPC_Client.php"/>
65 <file role="doc" name="docs/examples/Multipart_Posts.php"/>
66 <file role="doc" name="docs/examples/Parallel_Requests.php"/>
67 <file role="doc" name="docs/examples/Parallel_Requests_.php"/>
68 <file role="doc" name="docs/examples/Simple_Feed_Aggregator.php"/>
69 <file role="doc" name="docs/examples/extract.php"/>
70 <file role="doc" name="docs/examples/tutorial.txt"/>
71
72 <file role="src" name="http.dsp"/>
73 <file role="src" name="config.w32"/>
74 <file role="src" name="config.m4"/>
75 <file role="src" name="Makefile.frag"/>
76
77 <dir name="phpstr">
78 <file role="src" name="phpstr.h"/>
79 <file role="src" name="phpstr.c"/>
80 </dir>
81
82 <file role="src" name="missing.h"/>
83 <file role="src" name="missing.c"/>
84
85 <file role="src" name="php_http.h"/>
86 <file role="src" name="php_http_std_defs.h"/>
87 <file role="src" name="php_http_api.h"/>
88 <file role="src" name="php_http_cache_api.h"/>
89 <file role="src" name="php_http_date_api.h"/>
90 <file role="src" name="php_http_encoding_api.h"/>
91 <file role="src" name="php_http_headers_api.h"/>
92 <file role="src" name="php_http_info_api.h"/>
93 <file role="src" name="php_http_message_api.h"/>
94 <file role="src" name="php_http_request_api.h"/>
95 <file role="src" name="php_http_request_method_api.h"/>
96 <file role="src" name="php_http_request_pool_api.h"/>
97 <file role="src" name="php_http_send_api.h"/>
98 <file role="src" name="php_http_url_api.h"/>
99 <file role="src" name="php_http_util_object.h"/>
100 <file role="src" name="php_http_message_object.h"/>
101 <file role="src" name="php_http_request_object.h"/>
102 <file role="src" name="php_http_requestpool_object.h"/>
103 <file role="src" name="php_http_response_object.h"/>
104 <file role="src" name="php_http_exception_object.h"/>
105
106 <file role="src" name="http.c"/>
107 <file role="src" name="http_functions.c"/>
108 <file role="src" name="http_api.c"/>
109 <file role="src" name="http_cache_api.c"/>
110 <file role="src" name="http_date_api.c"/>
111 <file role="src" name="http_encoding_api.c"/>
112 <file role="src" name="http_headers_api.c"/>
113 <file role="src" name="http_info_api.c"/>
114 <file role="src" name="http_message_api.c"/>
115 <file role="src" name="http_request_api.c"/>
116 <file role="src" name="http_request_method_api.c"/>
117 <file role="src" name="http_request_pool_api.c"/>
118 <file role="src" name="http_send_api.c"/>
119 <file role="src" name="http_url_api.c"/>
120 <file role="src" name="http_util_object.c"/>
121 <file role="src" name="http_message_object.c"/>
122 <file role="src" name="http_request_object.c"/>
123 <file role="src" name="http_requestpool_object.c"/>
124 <file role="src" name="http_response_object.c"/>
125 <file role="src" name="http_exception_object.c"/>
126
127 <dir name="tests">
128 <file role="test" name="data.txt"/>
129 <file role="test" name="skip.inc"/>
130 <file role="test" name="log.inc"/>
131 <file role="test" name="abs_uri_001.phpt"/>
132 <file role="test" name="abs_uri_002.phpt"/>
133 <file role="test" name="allowed_methods_001.phpt"/>
134 <file role="test" name="allowed_methods_001_logging.phpt"/>
135 <file role="test" name="chunked_decode_001.phpt"/>
136 <file role="test" name="chunked_decode_002.phpt"/>
137 <file role="test" name="date_001.phpt"/>
138 <file role="test" name="date_002.phpt"/>
139 <file role="test" name="encodings.phpt"/>
140 <file role="test" name="etag_mode_001.phpt"/>
141 <file role="test" name="etag_mode_002.phpt"/>
142 <file role="test" name="etag_mode_003.phpt"/>
143 <file role="test" name="etag_mode_004.phpt"/>
144 <file role="test" name="etag_mode_011.phpt"/>
145 <file role="test" name="etag_mode_012.phpt"/>
146 <file role="test" name="etag_mode_013.phpt"/>
147 <file role="test" name="etag_mode_014.phpt"/>
148 <file role="test" name="etag_mode_crc.phpt"/>
149 <file role="test" name="get_request_data_001.phpt"/>
150 <file role="test" name="HttpMessage_001.phpt"/>
151 <file role="test" name="HttpRequestPool_001.phpt"/>
152 <file role="test" name="HttpRequest_001.phpt"/>
153 <file role="test" name="HttpRequest_002.phpt"/>
154 <file role="test" name="HttpRequest_003.phpt"/>
155 <file role="test" name="HttpResponse_001.phpt"/>
156 <file role="test" name="HttpResponse_002.phpt"/>
157 <file role="test" name="HttpResponse_003.phpt"/>
158 <file role="test" name="HttpResponse_004.phpt"/>
159 <file role="test" name="INI_001.phpt"/>
160 <file role="test" name="parse_headers_001.phpt"/>
161 <file role="test" name="parse_message_001.phpt"/>
162 <file role="test" name="redirect_001.phpt"/>
163 <file role="test" name="redirect_001_logging.phpt"/>
164 <file role="test" name="redirect_002.phpt"/>
165 <file role="test" name="redirect_002_logging.phpt"/>
166 <file role="test" name="redirect_003.phpt"/>
167 <file role="test" name="redirect_003_logging.phpt"/>
168 <file role="test" name="request_gzip.phpt"/>
169 <file role="test" name="send_data_001.phpt"/>
170 <file role="test" name="send_data_002.phpt"/>
171 <file role="test" name="send_data_003.phpt"/>
172 <file role="test" name="send_data_004.phpt"/>
173 <file role="test" name="send_data_005.phpt"/>
174 <file role="test" name="send_data_006.phpt"/>
175 <file role="test" name="send_data_007_logging.phpt"/>
176 <file role="test" name="send_data_008.phpt"/>
177 <file role="test" name="send_data_009.phpt"/>
178 <file role="test" name="send_file_001.phpt"/>
179 <file role="test" name="send_file_002.phpt"/>
180 <file role="test" name="send_file_003.phpt"/>
181 <file role="test" name="send_file_004.phpt"/>
182 <file role="test" name="send_file_005.phpt"/>
183 <file role="test" name="send_file_006.phpt"/>
184 <file role="test" name="send_file_007.phpt"/>
185 </dir>
186 </dir>
187 </contents>
188 <dependencies>
189 <required>
190 <php>
191 <min>4.3</min>
192 <max>6.0.0</max>
193 <exclude>6.0.0</exclude>
194 </php>
195 <pearinstaller>
196 <min>1.4.1</min>
197 </pearinstaller>
198 </required>
199 <optional>
200 <extension>
201 <name>session</name>
202 </extension>
203 </optional>
204 </dependencies>
205 <providesextension>http</providesextension>
206 <extsrcrelease>
207 <configureoption
208 name="with-http-curl-requests"
209 prompt="whether to enable cURL HTTP requests; specify libcurl directory"
210 default="yes"
211 />
212 <configureoption
213 name="with-http-mhash-etags"
214 prompt="whether to enable mhash ETag generator; specify libmhash directory"
215 default="yes"
216 />
217 <configureoption
218 name="with-http-magic-mime"
219 prompt="whether to enable response content type guessing; specify libmagic directory"
220 default="no"
221 />
222 <configureoption
223 name="with-zlib-compression"
224 prompt="whether to enable support for gzencoded/deflated message bodies"
225 default="yes"
226 />
227 <filelist>
228 <install as="functions.html" name="docs/functions.html"/>
229 <install as="examples/Bandwidth_Throttling.php" name="docs/examples/Bandwidth_Throttling.php"/>
230 <install as="examples/Cached_Responses.php" name="docs/examples/Cached_Responses.php"/>
231 <install as="examples/GET_Queries.php" name="docs/examples/GET_Queries.php"/>
232 <install as="examples/KISS_XMLRPC_Client.php" name="docs/examples/KISS_XMLRPC_Client.php"/>
233 <install as="examples/Multipart_Posts.php" name="docs/examples/Multipart_Posts.php"/>
234 <install as="examples/Parallel_Requests.php" name="docs/examples/Parallel_Requests.php"/>
235 <install as="examples/Parallel_Requests_.php" name="docs/examples/Parallel_Requests_.php"/>
236 <install as="examples/Simple_Feed_Aggregator.php" name="docs/examples/Simple_Feed_Aggregator.php"/>
237 <install as="examples/extract.php" name="docs/examples/extract.php"/>
238 <install as="examples/tutorial.txt" name="docs/examples/tutorial.txt"/>
239 </filelist>
240 </extsrcrelease>
241 <changelog />
242 </package>