File: package.xml

package info (click to toggle)
php-auth-http 2.1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 108 kB
  • ctags: 118
  • sloc: php: 456; xml: 237; sql: 10; makefile: 2
file content (237 lines) | stat: -rw-r--r-- 7,299 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.9.4" 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">
 <name>Auth_HTTP</name>
 <channel>pear.php.net</channel>
 <summary>HTTP authentication</summary>
 <description>The PEAR::Auth_HTTP class provides methods for creating an HTTP
authentication system using PHP, that is similar to Apache&apos;s
realm-based .htaccess authentication.</description>
 <lead>
  <name>David Costa</name>
  <user>gurugeek</user>
  <email>gurugeek@php.net</email>
  <active>yes</active>
 </lead>
 <lead>
  <name>Rui Hirokawa</name>
  <user>hirokawa</user>
  <email>hirokawa@php.net</email>
  <active>yes</active>
 </lead>
 <date>2012-01-28</date>
 <time>15:06:23</time>
 <version>
  <release>2.1.8</release>
  <api>2.1.8</api>
 </version>
 <stability>
  <release>stable</release>
  <api>stable</api>
 </stability>
 <license uri="http://www.php.net/license">PHP License</license>
 <notes>
Updated the version of PHP licence from 2.0.2 to 3.0.1.
 </notes>
 <contents>
  <dir baseinstalldir="/" name="/">
   <file baseinstalldir="/" md5sum="f78ad6897ab4efb17c5b43f3c6d63dd8" name="Auth/HTTP.php" role="php" />
   <file baseinstalldir="Auth/HTTP" md5sum="9b7fe356f6793ccab49df1e3e39e2c6e" name="docs/sample.sql" role="doc" />
   <file baseinstalldir="Auth/HTTP" md5sum="4fb0adc407d3382f1dd479dbfca47087" name="docs/test_basic_simple.php" role="doc" />
   <file baseinstalldir="Auth/HTTP" md5sum="087081d0d90e01d115fa6a4e3105fdcf" name="docs/test_digest_get.php" role="doc" />
   <file baseinstalldir="Auth/HTTP" md5sum="ecdf2118cb798c8d1db302e424b854f6" name="docs/test_digest_post.php" role="doc" />
   <file baseinstalldir="Auth/HTTP" md5sum="94f05d563bd2aa19ffe053825aa8e75a" name="docs/test_digest_simple.php" role="doc" />
   <file baseinstalldir="/" md5sum="fe3a3a6314b1393297b58c0670145021" name="README" role="data" />
  </dir>
 </contents>
 <dependencies>
  <required>
   <php>
    <min>4.0.0</min>
   </php>
   <pearinstaller>
    <min>1.4.0b1</min>
   </pearinstaller>
   <package>
    <name>Auth</name>
    <channel>pear.php.net</channel>
    <min>1.2.0</min>
   </package>
  </required>
 </dependencies>
 <phprelease />
 <changelog>
  <release>
   <version>
    <release>1.0</release>
    <api>1.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2001-08-23</date>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
This is the initial independent release of the Auth_HTTP package.
   </notes>
  </release>
  <release>
   <version>
    <release>2.0</release>
    <api>2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2003-10-16</date>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
Starting with this release, the code will not be placed in
Auth_HTTP/Auth_HTTP.php anymore. Instead Auth/HTTP.php is used, which
conforms to the PEAR standards.
In order to make use of the new version, you will need to change your
scripts to include the file at the new location! The old version in
Auth_HTTP/Auth_HTTP.php will not be removed when upgrading.
Other changes:
* If it is possible, the session ID will be chosen based on the user&apos;s authentication credentials. (Patch by: Marko Karppinen)
* Cleaned up internal variable usage. (Patch by: Brad Bulger)
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.0</release>
    <api>2.1.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2004-05-30</date>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
- Added _sessionName which fixes a major issue with realm sharing.
- Added sessionSharing option to use unique session id.
  Currently, this option is set to true by default to maintain
  backward compatibility.
- Added setOption and getOption to set/get option value.
- Starting with this release, HTTP Digest Authentication (RFC2617) is
  experimentally supported. The code for HTTP Digest Authentication is 
  originally developed by Tom Pike.
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.1</release>
    <api>2.1.1</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2004-07-12</date>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
- Fixed a bug #1634 (URI parameter was handled incorrectry.)
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.3rc1</release>
    <api>2.1.3rc1</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2004-08-22</date>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
- Fixed a bug #2061 (importglobalvariable() was removed in Auth 1.3.0r2.)
- now Auth_HTTP requires Auth &gt;= 1.3.0r2.
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.4</release>
    <api>2.1.4</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2005-01-02</date>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
- Fixed a bug #2380: constructor couldn&apos;t handle non-array option.
- The first stable release with HTTP Digest Authenthication support.
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.5</release>
    <api>2.1.5</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2005-04-02</date>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
- Fixed a bug #3630 getAuthData failes due to session rename.
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.6RC1</release>
    <api>2.1.6RC1</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2005-04-11</date>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
- Fixed bug #4047.
- Fixed backward compatibility with PHP 4.x
- Added PHP_AUTH_DIGEST support.
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.7</release>
    <api>2.1.7</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2012-01-26</date>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
QA release
Bug #7536 Package PEAR never included
Doc Bug #7655 Suggested Adjustments to Documentation
Bug #7784 Auth::start() changes session id
Bug #16742 Please move tests/ to docs/
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.8</release>
    <api>2.1.8</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2012-01-29</date>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
Updated the version of PHP licence from 2.0.2 to 3.0.1.
   </notes>
  </release>
 </changelog>
</package>