1. 40f2e63 workaround for tar implementations that insert a NUL byte into header fields. COMPRESS-181 by Stefan Bodewig · 12 years ago
  2. c75c10f add workaround for broken implementations that use backslashes rather than slashes in file names. COMPRESS-176 by Stefan Bodewig · 12 years ago
  3. e99d0ad Replace init method with private ctor; allows several fields to be made final by Sebastian Bazley · 12 years ago
  4. bc84d20 COMPRESS-178 TarArchiveInputStream throws IllegalArgumentException instead of IOException by Sebastian Bazley · 12 years ago
  5. b23b5c8 Javadoc by Sebastian Bazley · 12 years ago
  6. 915e8ef COMPRESS-179 TarUtils.formatLongOctalOrBinaryBytes() assumes the field will be 12 bytes long by Sebastian Bazley · 12 years ago
  7. 16dc21b Javadoc by Sebastian Bazley · 12 years ago
  8. 7ee6b67 COMPRESS-175 - GNU Tar sometimes uses binary encoding for UID and GID by Sebastian Bazley · 12 years ago
  9. b410868 whitespace by Stefan Bodewig · 13 years ago
  10. a933173 Only assume a TAR is a TAR if it at least contains one 512 byte block. COMPRESS-171 by Stefan Bodewig · 13 years ago
  11. 00cc49e throw an IOException rather than a RuntimeException for a certain type of corrupted ZIPs. COMPRESS-169 by Stefan Bodewig · 13 years ago
  12. 2d52e39 Support the POSIX way of writing tar entries with names longer than 100 chars. COMPRESS-166 by Stefan Bodewig · 13 years ago
  13. 0ad3bf8 Write big files in PAX/POSIX mode. COMPRESS-165 by Stefan Bodewig · 13 years ago
  14. a6fbdae support writing big files using star extensions. COMPRESS-165. Patch by John Kodis. by Stefan Bodewig · 13 years ago
  15. 67c25f9 whitespace by Stefan Bodewig · 13 years ago
  16. 5c136a3 prove parsing of PAX headers works correctly. COMPRESS-167 by Stefan Bodewig · 13 years ago
  17. 5dad112 Allow PAX headers to set sizes bigger than 8GiB. COMPRESS-163. Based on patch by John Kodis by Stefan Bodewig · 13 years ago
  18. 3476606 ZipFile doesn't work properly for unicode extra fields. Based on patch by Volker Leidl. COMPRESS-164 by Stefan Bodewig · 13 years ago
  19. 6846564 Add read-support for big files using GNU tar extensions. write support will be added later. Based on patch by John Kodis. COMPRESS-16 by Stefan Bodewig · 13 years ago
  20. 1ce7ae0 Explicit boxing by Sebastian Bazley · 13 years ago
  21. 8862a48 Missing @Override by Sebastian Bazley · 13 years ago
  22. c4f3433 Avoid "empty flow control statement" warning by Sebastian Bazley · 13 years ago
  23. 2e54015 Javadoc by Sebastian Bazley · 13 years ago
  24. 23e22d2 Unnecessary @SuppressWarnings - fallthrough is commented by Sebastian Bazley · 13 years ago
  25. 6b4172e some '@Override's that have been removed by accident by Stefan Bodewig · 13 years ago
  26. 30c859c support for concatenated streams in Gzip input. COMPRESS-154. Submitted by Lasse Collin by Stefan Bodewig · 13 years ago
  27. fa886ac make XZInputStream default to not support concatenated streams to be consistent with bzip2 and soon gzip by Stefan Bodewig · 13 years ago
  28. 20fd83a support uncompressing concatenated .bz2 files. COMPRESS-146. Submitted by Lasse Collin by Stefan Bodewig · 13 years ago
  29. 3217007 extract common file name munging code from the *Utils classes by Stefan Bodewig · 13 years ago
  30. e166fa7 documentation for XZ by Stefan Bodewig · 13 years ago
  31. 1b86ffa XZUtils modelled after GzipUtils by Stefan Bodewig · 13 years ago
  32. aa73926 support for XZ compression format submitted by Lasse Collin. COMPRESS-156 by Stefan Bodewig · 13 years ago
  33. ab6edbc unused code by Stefan Bodewig · 13 years ago
  34. f51fee1 Improve test-coverage for DumpArchiveEntry and fix a bug found by doing so by Stefan Bodewig · 13 years ago
  35. f3b51a5 remove unneeded cast to int in bitwise operations, add tests for convert methods by Stefan Bodewig · 13 years ago
  36. 8038cf7 unused field by Stefan Bodewig · 13 years ago
  37. 9032b12 Use a constant for the length of the expected signature by Stefan Bodewig · 13 years ago
  38. 64f0022 Unused imports by Stefan Bodewig · 13 years ago
  39. 267a334 Having a thread-safe count in an otherwise not-thread-safe stream doesn't make much sense by Stefan Bodewig · 13 years ago
  40. c547b01 Pack200CompressorInputStream's getBytesRead method always returns 0 by Stefan Bodewig · 13 years ago
  41. fdac147 TarArchiveOutputStream's getBytesWritten doesn't work. COMPRESS-160 by Stefan Bodewig · 13 years ago
  42. ec0db74 Those classes are so much more useful with public constructors by Stefan Bodewig · 13 years ago
  43. 41fc7c5 Add Counting(In|Out)putStreams by Stefan Bodewig · 13 years ago
  44. 9d48613 Convenience overloads by Stefan Bodewig · 13 years ago
  45. 2a87945 don't rely on pack/unpack closing the input in exceptional situations by Stefan Bodewig · 13 years ago
  46. 32b8e3b Typos by Sebastian Bazley · 13 years ago
  47. 8743675 Utility class that "normalizes" a JAR archive so it can be signed without Pack200 breaking the signature by Stefan Bodewig · 13 years ago
  48. 8aeba82 change some class names in the pack200 package. COMPRESS-142 by Stefan Bodewig · 13 years ago
  49. 16912b6 explain why we pack200 package doesn't pump streams. COMPRESS-142 by Stefan Bodewig · 13 years ago
  50. 65c2498 Fix dump stream detection based on magic value - 24 is the offset used inside my Ubuntu Linux magic file and seems to work for the example archives. COMPRESS-132 by Stefan Bodewig · 13 years ago
  51. b7095f3 Pack200 support. COMPRESS-142 by Stefan Bodewig · 13 years ago
  52. 54ac6da Add a getNextDumpEntry method to parallel what the other archivers do by Stefan Bodewig · 13 years ago
  53. 3b3f4cf Unthrown Exception by Sebastian Bazley · 13 years ago
  54. 072d794 Javadoc by Sebastian Bazley · 13 years ago
  55. 624a89a Javadoc references by Sebastian Bazley · 13 years ago
  56. 82c16de Fix up some raw types by Sebastian Bazley · 13 years ago
  57. e7f2f3c dump code doesn't support BZIP right now. COMPRESS-132 by Stefan Bodewig · 13 years ago
  58. 4b27ac7 ensure DumpArchiveInputStream closes underlying stream. COMPRESS-132 by Stefan Bodewig · 13 years ago
  59. 6715dba I don't think leading slashes is what one would expect from the content of a dump archive. COMPRESS-132 by Stefan Bodewig · 13 years ago
  60. 5fffb01 labeled break is not needed, there is only one loop. COMPRESS-132 by Stefan Bodewig · 13 years ago
  61. 281591e make DumpArchiveEntry's getName consistent with other implementations by adding a trailing / for directories. Strip leading . if present. COMPRESS-132 by Stefan Bodewig · 13 years ago
  62. b0e55a1 make extraction tests pass for dump. COMPRESS-132 by Stefan Bodewig · 13 years ago
  63. 34e9390 address issues detected by findbugs by Stefan Bodewig · 13 years ago
  64. 6972162 make PMD happier by Stefan Bodewig · 13 years ago
  65. 0ad7f0f whitespace by Stefan Bodewig · 13 years ago
  66. 07ec353 reduce public API of dump package, fix equals in DumpArchiveSummary. COMPRESS-132 by Stefan Bodewig · 13 years ago
  67. 3502040 Javadoc fixes by Sebastian Bazley · 13 years ago
  68. fb06e3a Missing @Override by Sebastian Bazley · 13 years ago
  69. 2e44b5b Javadoc fixes by Sebastian Bazley · 13 years ago
  70. f357449 Java5 suppport, COMPRESS-132 by Stefan Bodewig · 13 years ago
  71. dfea836 DumpArchiveInputStream didn't count bytes read. COMPRESS-132 by Stefan Bodewig · 13 years ago
  72. a932366 add dump to ArchiveStreamFactory by Stefan Bodewig · 13 years ago
  73. 054452a Initial code base for read-only Unix dump support contributed by Bear Giles. COMPRESS-132 by Stefan Bodewig · 13 years ago
  74. 3ed497f forgot @Override by Stefan Bodewig · 13 years ago
  75. 7e74dd4 formatting only by Stefan Bodewig · 13 years ago
  76. b64aa8a address issues detected by FindBugs and PMD by Stefan Bodewig · 13 years ago
  77. 18e1a3a It seems WinZip uses 'version needed to extract' from the central directory entry to parse the local file header ignoring the 'version' stored in the LFH. Make sure the two values agree, which they did not in 'Always' mode. by Stefan Bodewig · 13 years ago
  78. 9dd152d whitespace - and rename of local variables in ZAIS.bufferContainsSignature by Stefan Bodewig · 13 years ago
  79. 794c20f a few 'extract method' refactorings to make code more readable, still won't win a beauty-contest by Stefan Bodewig · 13 years ago
  80. e1f851d implement the last remaining case for ZIP64 writing. COMPRESS-150. by Stefan Bodewig · 13 years ago
  81. dda4aaa Implement Zip64Mode.Always. COMPRESS-150 by Stefan Bodewig · 13 years ago
  82. eb01643 Zip64Mode.Never was still creating extra fields for entries of unknown size when writing to a file. COMPRESS-150 by Stefan Bodewig · 13 years ago
  83. cb37781 Implement Zip64Mode.Never. COMPRESS-36 and COMPRESS-150 by Stefan Bodewig · 13 years ago
  84. 6a301f8 Document UseZip64-API of ZipArchiveOutputStream that I intend to implement by Stefan Bodewig · 13 years ago
  85. 1b915c7 support writing of BSD dialect AR archives with long file names. COMPRESS-144 by Stefan Bodewig · 13 years ago
  86. de4c4b3 small refactoring of long filename support in AR input stream by Stefan Bodewig · 13 years ago
  87. 0456186 support reading of long file names in AR archives that use the BSD variant. COMPRESS-144 by Stefan Bodewig · 13 years ago
  88. 0299191 Bzip2CompressorInputStream never called count() - reported by Lasse Collin by Stefan Bodewig · 13 years ago
  89. 4aea7b2 address most issues detected by findbugs by Stefan Bodewig · 13 years ago
  90. e81176f @Override is not valid for interface implementations in Java5 by Stefan Bodewig · 13 years ago
  91. 46628ef @Override by Stefan Bodewig · 13 years ago
  92. 4397820 foreach loops by Stefan Bodewig · 13 years ago
  93. 4a82530 compile without warnings with -Xlint by Stefan Bodewig · 13 years ago
  94. 3553cda compile without warnings using -Xlint:unchecked by Stefan Bodewig · 13 years ago
  95. 1eaaaef After reading up what the InfoZIP people do I changed the data descriptor by Stefan Bodewig · 13 years ago
  96. 46701aa if the central directory header holds only one of the size values, the other one must still be set so the internal logic for handling of extra fields doesn't throw an exception creating the local file header data. COMPRESS-149 by Stefan Bodewig · 13 years ago
  97. 1aea86e ensure the CRC is correct for empty entries, with this 7ZIP likes the 100K files written to stream archive as well by Stefan Bodewig · 13 years ago
  98. 2629802 parse ZIP64 extra data from central directory header in ZipFile. COMPRESS-149 by Stefan Bodewig · 13 years ago
  99. 8044739 infrastructure that is going to be needed by ZipFile in order to correctly parse ZIP64 data from the central directory. COMPRESS-149 by Stefan Bodewig · 13 years ago
  100. 45b3f7c Use the ZIP64 structures to locate the central directory in ZipFile if the archive is a ZIP64 archive, fallback to 'the old way' if it is not a ZIP64 archive. COMPRESS-149 by Stefan Bodewig · 13 years ago