blob: 7d54a01739feee619c398463a565f4badda4a730 (
plain)
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
|
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE package SYSTEM "package.dtd">
<package version="1.0">
<name>Archive_Tar</name>
<summary>Tar file management class</summary>
<description>This class provides handling of tar files in PHP.
It supports creating, listing, extracting and adding to tar files.
Gzip support is available if PHP has the zlib extension built-in or
loaded. Bz2 compression is also supported with the bz2 extension loaded.
</description>
<license>PHP License</license>
<maintainers>
<maintainer>
<user>vblavet</user>
<role>lead</role>
<name>Vincent Blavet</name>
<email>vincent@blavet.net</email>
</maintainer>
<maintainer>
<user>ssb</user>
<role>helper</role>
<name>Stig Sæther Bakken</name>
<email>stig@php.net</email>
</maintainer>
</maintainers>
<release>
<version>1.1</version>
<date>2003-05-28</date>
<notes>* Add support for BZ2 compression
* Add support for add and extract without using temporary files : methods addString() and extractInString()
</notes>
<state>stable</state>
<filelist>
<dir name="Archive">
<file role="php" name="Tar.php"/>
</dir>
<file role="doc" name="docs/Archive_Tar.txt" baseinstalldir="/"/>
</filelist>
</release>
<changelog>
<release>
<version>1.0</version>
<date>2003-01-24</date>
<notes>Change status to stable</notes>
<state>stable</state>
<filelist>
<dir name="Archive">
<file role="php" name="Tar.php"/>
</dir>
<file role="doc" name="docs/Archive_Tar.txt" baseinstalldir="/"/>
</filelist>
</release>
<release>
<version>0.10-b1</version>
<date>2003-01-08</date>
<notes>Add support for long filenames (greater than 99 characters)</notes>
<state>beta</state>
</release>
<release>
<version>0.9</version>
<date>2002-05-27</date>
<notes>Auto-detect gzip'ed files</notes>
<state>stable</state>
</release>
<release>
<version>0.4</version>
<date>2002-05-20</date>
<notes>Windows bugfix: use forward slashes inside archives</notes>
<state>stable</state>
</release>
<release>
<version>0.2</version>
<date>2002-02-18</date>
<notes>From initial commit to stable</notes>
<state>stable</state>
</release>
<release>
<version>0.3</version>
<date>2002-04-13</date>
<notes>Windows bugfix: used wrong directory separators</notes>
<state>stable</state>
</release>
</changelog>
</package>
|