summaryrefslogtreecommitdiff
path: root/inc/Tar.class.php
Commit message (Collapse)AuthorAge
* Revert "handle bzip1 as well"Andreas Gohr2013-01-23
| | | | | | | This reverts commit f2cb3ec76dec3fe2b40f25765ef842223c7132fe. Turns out I was too fast merging this. I can't get PHP's bzip handler to handle a bzip1 compressed file.
* Merge pull request #162 from glensc/bz-bz2Andreas Gohr2013-01-23
|\ | | | | handle bz (bzip not bzip2) better
| * handle bzip1 as wellElan Ruusamäe2013-01-23
| | | | | | | | | | in fact .tbz is tar.bz (bzip1) and .tbz2 is what tar.bz2 is used commonly.
* | fixes from bee9f377bc547c99fe99b4e38199cb92cf668554 commit notesElan Ruusamäe2013-01-23
|/
* Tar: support for creating archives with long filenamesAndreas Gohr2012-11-04
| | | | | The library now creates either a POSIX ustar prefix or a GNU longlink entry for files which have a name longer than 100 bytes
* Tar: Added extraction support for long file namesAndreas Gohr2012-11-04
| | | | Supports POSIX ustar prefixes and GNU longlink entries
* Completely rewritten Tar libraryAndreas Gohr2012-11-03
This new class is only losely based on our previous library. The whole API was changed to make it more flexible and memory saving. Some fisrt unit tests are included