1<?xml version="1.0" encoding="UTF-8"?>
2<package packagerversion="1.9.1" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
3 <name>HTTP_Server</name>
4 <channel>pear.php.net</channel>
5 <summary>HTTP server class.</summary>
6 <description>HTTP server class that allows you to easily implement HTTP servers by supplying callbacks.
7The base class will parse the request, call the appropriate callback and build a repsonse
8based on an array that the callbacks have to return.</description>
9 <lead>
10  <name>Stephan Schmidt</name>
11  <user>schst</user>
12  <email>schst@php.net</email>
13  <active>yes</active>
14 </lead>
15 <developer>
16  <name>Christian Weiske</name>
17  <user>cweiske</user>
18  <email>cweiske@php.net</email>
19  <active>yes</active>
20 </developer>
21 <date>2010-10-05</date>
22 <time>03:34:22</time>
23 <version>
24  <release>0.4.1</release>
25  <api>0.4.0</api>
26 </version>
27 <stability>
28  <release>alpha</release>
29  <api>alpha</api>
30 </stability>
31 <license uri="http://www.php.net/license">PHP License</license>
32 <notes>
33QA release
34Bug #2762 Request.php::_parsePath() E_ALL warning
35Bug #3116 HTTP response message does not contain CRLF
36Fixed SVN layout
37 </notes>
38 <contents>
39  <dir baseinstalldir="/" name="/">
40   <file baseinstalldir="/" md5sum="e775f99c687c92f4acccb482ad37ea5b" name="examples/HTTP_Server_File.php" role="doc" />
41   <file baseinstalldir="/" md5sum="c271c64b3b381347c425123c2ac569ed" name="examples/www/index.html" role="doc" />
42   <file baseinstalldir="/" md5sum="dc717b571ce0ce6cb0b5ad4a2ea3c8be" name="HTTP/Server.php" role="php" />
43   <file baseinstalldir="/" md5sum="58bf0c8a63e20969184f43fe0c3ea925" name="HTTP/Server/Request.php" role="php" />
44  </dir>
45 </contents>
46 <dependencies>
47  <required>
48   <php>
49    <min>4.2.0</min>
50   </php>
51   <pearinstaller>
52    <min>1.4.0b1</min>
53   </pearinstaller>
54   <package>
55    <name>HTTP</name>
56    <channel>pear.php.net</channel>
57   </package>
58   <package>
59    <name>Net_Server</name>
60    <channel>pear.php.net</channel>
61    <min>0.12.0</min>
62   </package>
63   <package>
64    <name>PEAR</name>
65    <channel>pear.php.net</channel>
66   </package>
67  </required>
68 </dependencies>
69 <phprelease />
70 <changelog>
71  <release>
72   <version>
73    <release>0.1</release>
74    <api>0.1</api>
75   </version>
76   <stability>
77    <release>beta</release>
78    <api>beta</api>
79   </stability>
80   <date>2002-07-22</date>
81   <license uri="http://www.php.net/license">PHP License</license>
82   <notes>
83initial release
84   </notes>
85  </release>
86  <release>
87   <version>
88    <release>0.1.1</release>
89    <api>0.1.1</api>
90   </version>
91   <stability>
92    <release>beta</release>
93    <api>beta</api>
94   </stability>
95   <date>2002-07-22</date>
96   <license uri="http://www.php.net/license">PHP License</license>
97   <notes>
98fixes a small bug with response headers
99   </notes>
100  </release>
101  <release>
102   <version>
103    <release>0.2</release>
104    <api>0.2</api>
105   </version>
106   <stability>
107    <release>beta</release>
108    <api>beta</api>
109   </stability>
110   <date>2003-07-23</date>
111   <license uri="http://www.php.net/license">PHP</license>
112   <notes>
113removed bug in response,
114added defaultResponseHeader
115added Date header
116response body may now be a resource instead of a string
117   </notes>
118  </release>
119  <release>
120   <version>
121    <release>0.3</release>
122    <api>0.3</api>
123   </version>
124   <stability>
125    <release>alpha</release>
126    <api>alpha</api>
127   </stability>
128   <date>2004-01-29</date>
129   <license uri="http://www.php.net/license">PHP License</license>
130   <notes>
131switched driver to Net_Server 0.10 or greater
132added HTTP_Server_Request
133improved example
134   </notes>
135  </release>
136  <release>
137   <version>
138    <release>0.4.0</release>
139    <api>0.4.0</api>
140   </version>
141   <stability>
142    <release>alpha</release>
143    <api>alpha</api>
144   </stability>
145   <date>2005-01-01</date>
146   <license uri="http://www.php.net/license">PHP License</license>
147   <notes>
148- fixed Bug #2531 (server shutdown on bad request) (schst)
149- fixed Bug #2762 Request.php::_parsePath() E_ALL warning (patch by cox)
150- fixed some small bugs in _serveRequest() (schst)
151- Added support for POST data (cweiske)
152- Added an export() function to export _SERVER variables (cweiske)
153- start() now returns the PEAR_Error object returned from Net_Server (schst)
154   </notes>
155  </release>
156  <release>
157   <version>
158    <release>0.4.1</release>
159    <api>0.4.0</api>
160   </version>
161   <stability>
162    <release>alpha</release>
163    <api>alpha</api>
164   </stability>
165   <date>2010-10-05</date>
166   <license uri="http://www.php.net/license">PHP License</license>
167   <notes>
168QA release
169Bug #2762 Request.php::_parsePath() E_ALL warning
170Bug #3116 HTTP response message does not contain CRLF
171Fixed SVN layout
172   </notes>
173  </release>
174 </changelog>
175</package>
176