rubyzip 0.9.1 → 0.9.4

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rubyzip might be problematic. Click here for more details.

Files changed (54) hide show
  1. data/ChangeLog +92 -450
  2. data/NEWS +18 -0
  3. data/README +1 -1
  4. data/Rakefile +14 -13
  5. data/install.rb +4 -3
  6. data/lib/zip/ioextras.rb +11 -1
  7. data/lib/zip/stdrubyext.rb +0 -0
  8. data/lib/zip/tempfile_bugfixed.rb +0 -0
  9. data/lib/zip/zip.rb +57 -24
  10. data/lib/zip/zipfilesystem.rb +1 -0
  11. data/lib/zip/ziprequire.rb +0 -0
  12. data/samples/example.rb +0 -0
  13. data/samples/example_filesystem.rb +0 -1
  14. data/samples/gtkRubyzip.rb +0 -0
  15. data/samples/qtzip.rb +0 -0
  16. data/samples/write_simple.rb +0 -0
  17. data/samples/zipfind.rb +0 -0
  18. data/test/alltests.rb +0 -0
  19. data/test/data/notzippedruby.rb +0 -0
  20. data/test/gentestfiles.rb +0 -0
  21. data/test/ioextrastest.rb +0 -0
  22. data/test/stdrubyexttest.rb +0 -0
  23. data/test/zipfilesystemtest.rb +14 -4
  24. data/test/ziprequiretest.rb +0 -0
  25. data/test/ziptest.rb +30 -9
  26. metadata +76 -88
  27. data/lib/download_quizzes.rb +0 -119
  28. data/lib/quiz1/t/solutions/Bill Guindon/solitaire.rb +0 -205
  29. data/lib/quiz1/t/solutions/Carlos/solitaire.rb +0 -111
  30. data/lib/quiz1/t/solutions/Dennis Ranke/solitaire.rb +0 -111
  31. data/lib/quiz1/t/solutions/Florian Gross/solitaire.rb +0 -301
  32. data/lib/quiz1/t/solutions/Glen M. Lewis/solitaire.rb +0 -268
  33. data/lib/quiz1/t/solutions/James Edward Gray II/solitaire.rb +0 -132
  34. data/lib/quiz1/t/solutions/Jamis Buck/bin/main.rb +0 -13
  35. data/lib/quiz1/t/solutions/Jamis Buck/lib/cipher.rb +0 -230
  36. data/lib/quiz1/t/solutions/Jamis Buck/lib/cli.rb +0 -24
  37. data/lib/quiz1/t/solutions/Jamis Buck/test/tc_deck.rb +0 -30
  38. data/lib/quiz1/t/solutions/Jamis Buck/test/tc_key-stream.rb +0 -19
  39. data/lib/quiz1/t/solutions/Jamis Buck/test/tc_keying-algorithms.rb +0 -31
  40. data/lib/quiz1/t/solutions/Jamis Buck/test/tc_solitaire-cipher.rb +0 -66
  41. data/lib/quiz1/t/solutions/Jamis Buck/test/tc_unkeyed-algorithm.rb +0 -17
  42. data/lib/quiz1/t/solutions/Jamis Buck/test/tests.rb +0 -2
  43. data/lib/quiz1/t/solutions/Jim Menard/solitaire_cypher.rb +0 -204
  44. data/lib/quiz1/t/solutions/Jim Menard/test.rb +0 -47
  45. data/lib/quiz1/t/solutions/Moses Hohman/cipher.rb +0 -97
  46. data/lib/quiz1/t/solutions/Moses Hohman/deck.rb +0 -140
  47. data/lib/quiz1/t/solutions/Moses Hohman/solitaire.rb +0 -14
  48. data/lib/quiz1/t/solutions/Moses Hohman/test_cipher.rb +0 -68
  49. data/lib/quiz1/t/solutions/Moses Hohman/test_deck.rb +0 -146
  50. data/lib/quiz1/t/solutions/Moses Hohman/test_util.rb +0 -38
  51. data/lib/quiz1/t/solutions/Moses Hohman/testsuite.rb +0 -5
  52. data/lib/quiz1/t/solutions/Moses Hohman/util.rb +0 -27
  53. data/lib/quiz1/t/solutions/Niklas Frykholm/solitaire.rb +0 -151
  54. data/lib/quiz1/t/solutions/Thomas Leitner/solitaire.rb +0 -198
data/ChangeLog CHANGED
@@ -1,3 +1,68 @@
1
+ 2010-01-01 13:43 thomas
2
+
3
+ * NEWS, lib/zip/zip.rb, test/ziptest.rb: Changed
4
+ ZipOutputStream.put_next_entry to make it possible to specifiy
5
+ comments, extra field and compression method.
6
+
7
+ 2009-12-31 16:25 thomas
8
+
9
+ * Rakefile: Updated publish method.
10
+
11
+ 2009-11-27 22:59 thomas
12
+
13
+ * NEWS, lib/zip/zip.rb: Bumped micro number and updated NEWS file.
14
+
15
+ * lib/zip/zip.rb: Provide convenience methods for retrieving name
16
+ and comments in character encoding of choice (pending ruby
17
+ character String class).
18
+
19
+ 2009-04-05 12:28 thomas
20
+
21
+ * install.rb, lib/zip/zip.rb, samples/example_filesystem.rb,
22
+ test/zipfilesystemtest.rb, test/ziptest.rb: Applied ruby-1.9
23
+ compatibility patch from Yuya Nishida.
24
+
25
+ 2008-08-26 20:49 thomas
26
+
27
+ * lib/zip/zip.rb: Rewrote fix for rename bug.
28
+
29
+ 2008-08-24 14:34 thomas
30
+
31
+ * lib/zip/zip.rb, test/ziptest.rb: Refixed rename to avoid
32
+ decompressing and recompressing entry.
33
+
34
+ 2008-08-24 11:43 drylight
35
+
36
+ * NEWS, README, Rakefile, lib/zip/zip.rb: Update version number and
37
+ minor release note changes.
38
+
39
+ * NEWS, README, lib/zip/zip.rb, test/ziptest.rb: Fixed: Renaming an
40
+ entry failed if the entry's new name was a different length than
41
+ its old name.
42
+
43
+ 2006-12-24 11:42 thomas
44
+
45
+ * lib/zip/: ioextras.rb, zip.rb: Added IOExtras.copy_stream_n and
46
+ used it to avoid loading large entries into memory when copying
47
+ from one stream to another.
48
+
49
+ 2006-12-17 15:03 thomas
50
+
51
+ * lib/zip/zip.rb: Bug 1614537 Version needed to extract set.
52
+
53
+ 2006-11-21 09:12 thomas
54
+
55
+ * lib/zip/zipfilesystem.rb, test/zipfilesystemtest.rb: Bug 1600222
56
+ Fixed it so ZipFsFile#open accepts and ignores b(inary) option.
57
+
58
+ 2006-09-05 22:53 thomas
59
+
60
+ * test/zipfilesystemtest.rb: Avoid warnings while running tests.
61
+
62
+ 2006-08-04 19:56 technorama
63
+
64
+ * lib/zip/zip.rb: bugfix: :link -> :symlink
65
+
1
66
  2006-07-01 10:04 thomas
2
67
 
3
68
  * Rakefile: Don't autorequire zip/zip - autorequire is deprecated.
@@ -6,8 +71,6 @@
6
71
 
7
72
  * Rakefile: [no log message]
8
73
 
9
- 2006-06-30 09:25 thomas
10
-
11
74
  * NEWS, lib/zip/zip.rb: Bumped version number and reformatted NEWS
12
75
  a bit.
13
76
 
@@ -20,17 +83,11 @@
20
83
  * TODO, lib/zip/zip.rb, test/ziptest.rb: add documentation and test
21
84
  for new ZipFile::extract
22
85
 
23
- 2006-04-30 06:22 technorama
24
-
25
86
  * lib/zip/zip.rb: add some of the API suggestions from sf.net
26
87
  #1281314
27
88
 
28
- 2006-04-30 05:55 technorama
29
-
30
89
  * lib/zip/zip.rb: apply patch for bug #1446926
31
90
 
32
- 2006-04-30 05:54 technorama
33
-
34
91
  * lib/zip/zip.rb: apply patch for bug #1459902
35
92
 
36
93
  2006-04-26 17:17 technorama
@@ -46,24 +103,16 @@
46
103
 
47
104
  * lib/zip/zip.rb: start of unix_uid, unix_gid, restore_* support
48
105
 
49
- 2006-03-28 03:49 technorama
50
-
51
106
  * lib/zip/zip.rb: follow_symlinks is now optional
52
107
 
53
- 2006-03-28 03:32 technorama
54
-
55
108
  * lib/zip/zip.rb: add eof? methods
56
109
 
57
- 2006-03-28 03:31 technorama
58
-
59
110
  * test/ziptest.rb: eof? tests
60
111
 
61
112
  2006-02-26 09:57 technorama
62
113
 
63
114
  * README: add to authors
64
115
 
65
- 2006-02-26 09:56 technorama
66
-
67
116
  * TODO: [no log message]
68
117
 
69
118
  2006-02-25 12:04 thomas
@@ -100,12 +149,8 @@
100
149
 
101
150
  * lib/zip/zip.rb: [no log message]
102
151
 
103
- 2005-09-06 21:08 thomas
104
-
105
152
  * NEWS: [no log message]
106
153
 
107
- 2005-09-06 21:04 thomas
108
-
109
154
  * lib/zip/zip.rb, test/gentestfiles.rb, test/ziptest.rb: Fixed
110
155
  problem on windows - tempfile has to be set to binmode again when
111
156
  it is reopened
@@ -114,29 +159,19 @@
114
159
 
115
160
  * Rakefile: [no log message]
116
161
 
117
- 2005-09-04 16:33 thomas
118
-
119
162
  * TODO: [no log message]
120
163
 
121
- 2005-09-04 15:43 thomas
122
-
123
164
  * test/ziptest.rb: [no log message]
124
165
 
125
166
  2005-09-03 10:27 thomas
126
167
 
127
168
  * NEWS: [no log message]
128
169
 
129
- 2005-09-03 10:02 thomas
130
-
131
170
  * TODO, lib/zip/zip.rb: [no log message]
132
171
 
133
- 2005-09-03 09:57 thomas
134
-
135
172
  * lib/zip/ioextras.rb, lib/zip/zip.rb, test/ziptest.rb: Merged
136
173
  patch from oss-ruby at technorama.net
137
174
 
138
- 2005-09-03 09:54 thomas
139
-
140
175
  * test/ziptest.rb: Added failing test that shows that read and gets
141
176
  don't mix currently
142
177
 
@@ -144,16 +179,10 @@
144
179
 
145
180
  * lib/zip/: ioextras.rb, zip.rb: [no log message]
146
181
 
147
- 2005-08-29 08:41 thomas
148
-
149
182
  * NEWS, lib/zip/zip.rb: [no log message]
150
183
 
151
- 2005-08-29 08:35 thomas
152
-
153
184
  * lib/zip/zip.rb: [no log message]
154
185
 
155
- 2005-08-29 08:26 thomas
156
-
157
186
  * lib/zip/zip.rb: [no log message]
158
187
 
159
188
  2005-08-07 14:27 thomas
@@ -177,28 +206,20 @@
177
206
 
178
207
  * samples/.cvsignore: [no log message]
179
208
 
180
- 2005-04-03 16:50 thomas
181
-
182
209
  * samples/: qtzip.rb, zipdialogui.ui: Added a qt example
183
210
 
184
211
  2005-03-31 21:58 thomas
185
212
 
186
213
  * lib/zip/zip.rb, test/ziptest.rb: [no log message]
187
214
 
188
- 2005-03-31 21:05 thomas
189
-
190
215
  * test/zipfilesystemtest.rb: [no log message]
191
216
 
192
217
  2005-03-17 18:17 thomas
193
218
 
194
219
  * Rakefile: [no log message]
195
220
 
196
- 2005-03-17 18:11 thomas
197
-
198
221
  * NEWS, README, lib/zip/zip.rb: [no log message]
199
222
 
200
- 2005-03-17 18:04 thomas
201
-
202
223
  * install.rb: Fixed install.rb
203
224
 
204
225
  2005-03-03 18:38 thomas
@@ -209,13 +230,9 @@
209
230
 
210
231
  * lib/zip/ziprequire.rb: Added documentation to ziprequire
211
232
 
212
- 2005-02-27 16:17 thomas
213
-
214
233
  * README, TODO, lib/zip/ziprequire.rb: Added documentation to
215
234
  ziprequire
216
235
 
217
- 2005-02-27 15:02 thomas
218
-
219
236
  * Rakefile, test/ziptest.rb: [no log message]
220
237
 
221
238
  2005-02-19 21:30 thomas
@@ -227,8 +244,6 @@
227
244
  test/ziprequiretest.rb, test/ziptest.rb: Added more rdoc and
228
245
  changed the remaining tests to Test::Unit
229
246
 
230
- 2005-02-19 20:28 thomas
231
-
232
247
  * lib/zip/: ioextras.rb, zip.rb: Added documentation to
233
248
  ZipInputStream and ZipOutputStream
234
249
 
@@ -241,17 +256,11 @@
241
256
  * README, Rakefile: Added ppackage (publish package) task to
242
257
  Rakefile
243
258
 
244
- 2005-02-17 22:49 thomas
245
-
246
259
  * README, Rakefile, TODO: Added pdoc (publish doc) task to Rakefile
247
260
 
248
- 2005-02-17 21:27 thomas
249
-
250
261
  * README, Rakefile, TODO, lib/zip/stdrubyext.rb, lib/zip/zip.rb,
251
262
  lib/zip/zipfilesystem.rb: Added a bunch of documentation
252
263
 
253
- 2005-02-17 09:47 thomas
254
-
255
264
  * test/ziptest.rb: [no log message]
256
265
 
257
266
  2005-02-16 20:04 thomas
@@ -259,12 +268,8 @@
259
268
  * NEWS, README, Rakefile: Improved documentation and added rdoc
260
269
  task to Rakefile
261
270
 
262
- 2005-02-16 19:01 thomas
263
-
264
271
  * NEWS, Rakefile, lib/zip/zip.rb: [no log message]
265
272
 
266
- 2005-02-16 18:47 thomas
267
-
268
273
  * Rakefile, samples/example.rb, samples/example_filesystem.rb,
269
274
  samples/gtkRubyzip.rb, samples/write_simple.rb,
270
275
  samples/zipfind.rb, test/.cvsignore, test/gentestfiles.rb:
@@ -274,22 +279,14 @@
274
279
 
275
280
  * NEWS, TODO: [no log message]
276
281
 
277
- 2005-02-15 23:26 thomas
278
-
279
282
  * Rakefile, rubyzip.gemspec: Now uses Rake to build gem
280
283
 
281
- 2005-02-15 22:52 thomas
282
-
283
284
  * Rakefile: [no log message]
284
285
 
285
- 2005-02-15 22:39 thomas
286
-
287
286
  * lib/zip/zip.rb, test/.cvsignore, test/ziptest.rb, NEWS: Fixed
288
287
  compatibility issue with ruby 1.8.2. Migrated test suite to
289
288
  Test::Unit
290
289
 
291
- 2005-02-15 22:10 thomas
292
-
293
290
  * NEWS, lib/zip/ioextras.rb, lib/zip/stdrubyext.rb,
294
291
  lib/zip/tempfile_bugfixed.rb, lib/zip/zip.rb,
295
292
  lib/zip/zipfilesystem.rb, lib/zip/ziprequire.rb, test/.cvsignore,
@@ -302,28 +299,22 @@
302
299
  test/data/file1.txt, test/data/file1.txt.deflatedData,
303
300
  test/data/file2.txt, test/data/notzippedruby.rb,
304
301
  test/data/rubycode.zip, test/data/rubycode2.zip,
305
- test/data/testDirectory.bin, test/data/zipWithDirs.zip,
306
- zip/ioextras.rb, zip/stdrubyext.rb, zip/tempfile_bugfixed.rb,
307
- zip/zip.rb, zip/zipfilesystem.rb, zip/ziprequire.rb: Changed
302
+ test/data/testDirectory.bin, test/data/zipWithDirs.zip: Changed
308
303
  directory structure
309
304
 
310
305
  2005-02-13 22:44 thomas
311
306
 
312
307
  * Rakefile, TODO: [no log message]
313
308
 
314
- 2005-02-13 22:38 thomas
315
-
316
309
  * rubyzip.gemspec: [no log message]
317
310
 
318
- 2005-02-13 21:53 thomas
319
-
320
311
  * install.rb: Made install.rb independent of the current path
321
312
  (fixes bug reported by Drew Robinson)
322
313
 
323
314
  2004-12-12 11:22 thomas
324
315
 
325
- * NEWS, TODO, samples/write_simple.rb, zip/zip.rb: Fixed 'version
326
- needed to extract'-field wrong in local headers
316
+ * NEWS, TODO, samples/write_simple.rb: Fixed 'version needed to
317
+ extract'-field wrong in local headers
327
318
 
328
319
  2004-05-02 15:17 thomas
329
320
 
@@ -331,7 +322,7 @@
331
322
 
332
323
  2004-04-02 07:25 thomas
333
324
 
334
- * NEWS, zip/zip.rb: Fix for FreeBSD 4.9
325
+ * NEWS: Fix for FreeBSD 4.9
335
326
 
336
327
  2004-03-29 00:28 thomas
337
328
 
@@ -341,144 +332,87 @@
341
332
 
342
333
  * NEWS: [no log message]
343
334
 
344
- 2004-03-28 15:23 thomas
345
-
346
- * zip/zip.rb: Use RUBY_VERSION not VERSION constant
347
-
348
- 2004-03-28 14:51 thomas
349
-
350
- * zip/zip.rb: Only use bugfixed Tempfile implementation if the ruby
351
- version hasnt been fixed (contributed by Nobu Nakada)
352
-
353
- 2004-03-28 14:46 thomas
354
-
355
- * zip/tempfile_bugfixed.rb: Compatibility with DelegateClass in
356
- ruby version 1.8.1 and newer
357
-
358
335
  2004-03-27 16:09 thomas
359
336
 
360
- * test/stdrubyexttest.rb, zip/stdrubyext.rb: Patch for
361
- stdrubyext.rb from Nobu Nakada
362
-
363
- 2004-03-27 15:52 thomas
337
+ * test/stdrubyexttest.rb: Patch for stdrubyext.rb from Nobu Nakada
364
338
 
365
- * zip/: ioextras.rb, zip.rb, zipfilesystem.rb, ziprequire.rb: [no
366
- log message]
367
-
368
- 2004-03-27 15:30 thomas
369
-
370
- * test/ioextrastest.rb, test/stdrubyexttest.rb, zip/ioextras.rb:
371
- converted some files to unix line-endings
339
+ * test/: ioextrastest.rb, stdrubyexttest.rb: converted some files
340
+ to unix line-endings
372
341
 
373
342
  2004-03-25 16:34 thomas
374
343
 
375
- * NEWS, install.rb, zip/tempfile_bugfixed.rb, zip/zip.rb:
376
- Significantly reduced memory footprint when modifying zip files
344
+ * NEWS, install.rb: Significantly reduced memory footprint when
345
+ modifying zip files
377
346
 
378
347
  2004-03-16 18:20 thomas
379
348
 
380
349
  * install.rb, test/alltests.rb, test/ioextrastest.rb,
381
- test/stdrubyexttest.rb, test/ziptest.rb, zip/ioextras.rb,
382
- zip/zip.rb: IO utility classes moved to new file ioextras.rb.
383
- Tests moved to new file ioextrastest.rb
350
+ test/stdrubyexttest.rb, test/ziptest.rb: IO utility classes moved
351
+ to new file ioextras.rb. Tests moved to new file ioextrastest.rb
384
352
 
385
353
  2004-02-27 13:21 thomas
386
354
 
387
- * NEWS, zip/zip.rb: Optimization to avoid decompression and
388
- recompression
355
+ * NEWS: Optimization to avoid decompression and recompression
389
356
 
390
357
  2004-01-30 16:17 thomas
391
358
 
392
359
  * NEWS: [no log message]
393
360
 
394
- 2004-01-30 16:07 thomas
395
-
396
- * README, test/zipfilesystemtest.rb, test/ziptest.rb,
397
- zip/stdrubyext.rb, zip/zip.rb, zip/zipfilesystem.rb: Applied
361
+ * README, test/zipfilesystemtest.rb, test/ziptest.rb: Applied
398
362
  extra-field patch
399
363
 
400
364
  2003-12-13 16:57 thomas
401
365
 
402
366
  * TODO: [no log message]
403
367
 
404
- 2003-12-13 16:53 thomas
405
-
406
- * zip/zip.rb: [no log message]
407
-
408
368
  2003-12-10 00:25 thomas
409
369
 
410
370
  * test/ziptest.rb: (Temporary) fix to bug reported by Takashi Sano
411
371
 
412
- 2003-10-03 11:05 thomas
413
-
414
- * zip/: stdrubyext.rb, zip.rb: Thanks to Clifford Heath for
415
- noticing that Time.to_binary_dos_date and time were reversed
416
-
417
372
  2003-08-23 09:42 thomas
418
373
 
419
- * test/ziptest.rb, zip/zip.rb, NEWS: Fixed ZipFile.get_ouput_stream
420
- bug - data was never written to zip
374
+ * test/ziptest.rb, NEWS: Fixed ZipFile.get_ouput_stream bug - data
375
+ was never written to zip
421
376
 
422
377
  2003-08-21 16:05 thomas
423
378
 
424
379
  * install.rb: [no log message]
425
380
 
426
- 2003-08-21 16:01 thomas
427
-
428
381
  * alltests.rb, stdrubyexttest.rb, zipfilesystemtest.rb,
429
382
  ziprequiretest.rb, ziptest.rb, test/alltests.rb,
430
383
  test/stdrubyexttest.rb, test/zipfilesystemtest.rb,
431
384
  test/ziprequiretest.rb, test/ziptest.rb: Moved all test ruby
432
385
  files to test/
433
386
 
434
- 2003-08-21 15:54 thomas
435
-
436
387
  * NEWS, install.rb, stdrubyext.rb, stdrubyexttest.rb, zip.rb,
437
388
  zipfilesystem.rb, zipfilesystemtest.rb, ziprequire.rb,
438
389
  ziprequiretest.rb, ziptest.rb, samples/example.rb,
439
390
  samples/example_filesystem.rb, samples/gtkRubyzip.rb,
440
- samples/zipfind.rb, zip/stdrubyext.rb, zip/zip.rb,
441
- zip/zipfilesystem.rb, zip/ziprequire.rb: Moved all production
442
- source files to zip/ so they are in the same dir as when they are
443
- installed
444
-
445
- 2003-08-21 15:31 thomas
391
+ samples/zipfind.rb: Moved all production source files to zip/ so
392
+ they are in the same dir as when they are installed
446
393
 
447
394
  * NEWS, TODO, alltests.rb: [no log message]
448
395
 
449
- 2003-08-21 15:26 thomas
450
-
451
396
  * filearchive.rb, filearchivetest.rb, fileutils.rb: Removed
452
397
  filearchive.rb, filearchivetest.rb and fileutils.rb
453
398
 
454
- 2003-08-21 15:24 thomas
455
-
456
- * samples/.cvsignore, samples/example_filesystem.rb, zip.rb: Added
399
+ * samples/.cvsignore, samples/example_filesystem.rb, zip.rb,
400
+ samples/example_filesystem.rb: Added
457
401
  samples/example_filesystem.rb. Fixed Tempfile creation for
458
402
  entries created with get_output_stream where entries were in a
459
403
  subdirectory
460
404
 
461
- 2003-08-21 15:15 thomas
462
-
463
405
  * zip.rb, ziptest.rb: Fixed mkdir bug. ZipFile.mkdir didn't work if
464
406
  the zipfile doesn't exist already
465
407
 
466
- 2003-08-21 15:05 thomas
467
-
468
408
  * ziptest.rb: [no log message]
469
409
 
470
- 2003-08-21 14:53 thomas
471
-
472
410
  * TODO, zipfilesystemtest.rb: Globbing test placeholder commented
473
411
  out
474
412
 
475
- 2003-08-21 14:32 thomas
476
-
477
413
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented ZipFsDir.new
478
414
  and open
479
415
 
480
- 2003-08-21 14:19 thomas
481
-
482
416
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented DirFsIterator
483
417
  and tests
484
418
 
@@ -486,49 +420,31 @@
486
420
 
487
421
  * NEWS, TODO: [no log message]
488
422
 
489
- 2003-08-20 22:45 thomas
490
-
491
423
  * zipfilesystemtest.rb: [no log message]
492
424
 
493
- 2003-08-20 22:44 thomas
494
-
495
425
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
496
426
  ZipFsDir.foreach, ZipFsDir.entries now reimplemented in terms of
497
427
  it
498
428
 
499
- 2003-08-20 22:25 thomas
500
-
501
429
  * README: [no log message]
502
430
 
503
- 2003-08-20 18:08 thomas
504
-
505
431
  * zipfilesystem.rb, zipfilesystemtest.rb: [no log message]
506
432
 
507
- 2003-08-20 17:30 thomas
508
-
509
433
  * zipfilesystem.rb: All access from ZipFsFile and ZipFsDir to
510
434
  ZipFile is now routed through ZipFileNameMapper which has the
511
435
  single responsibility of mapping entry/filenames
512
436
 
513
- 2003-08-20 17:18 thomas
514
-
515
437
  * alltests.rb, stdrubyext.rb, stdrubyexttest.rb: Added
516
438
  stdrubyexttest.rb and added test test_select_map
517
439
 
518
- 2003-08-20 16:10 thomas
519
-
520
440
  * zipfilesystem.rb: ZipFsDir was in the wrong module. ZipFileSystem
521
441
  now has a ctor that creates ZipFsDir and ZipFsFile instances,
522
442
  instead of creating them lazily. It then passes the dir instance
523
443
  to the file instance and vice versa
524
444
 
525
- 2003-08-20 15:55 thomas
526
-
527
445
  * zip.rb, zipfilesystem.rb, zipfilesystemtest.rb: ZipFsFile.open
528
446
  honours chdir
529
447
 
530
- 2003-08-20 15:39 thomas
531
-
532
448
  * stdrubyext.rb, zip.rb, zipfilesystem.rb, zipfilesystemtest.rb,
533
449
  ziptest.rb: Fixed ZipEntry::parent_as_string. Implemented
534
450
  ZipFsDir.chdir, pwd and entries including test
@@ -538,13 +454,9 @@
538
454
  * zip.rb, zipfilesystem.rb, zipfilesystemtest.rb: Implemented
539
455
  ZipFsDir.mkdir
540
456
 
541
- 2003-08-19 15:07 thomas
542
-
543
457
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
544
458
  ZipFsDir.delete (and aliases rmdir and unlink)
545
459
 
546
- 2003-08-19 14:33 thomas
547
-
548
460
  * zipfilesystem.rb, zipfilesystemtest.rb: Another dummy
549
461
  implementation and commented out a test for select() which can be
550
462
  added later
@@ -553,14 +465,10 @@
553
465
 
554
466
  * ziptest.rb: Honoured 1.8.0 Object.to_a deprecation warning
555
467
 
556
- 2003-08-18 20:30 thomas
557
-
558
468
  * zip.rb, ziptest.rb, samples/example.rb, samples/zipfind.rb:
559
469
  Converted a few more names to ruby underscore style that I missed
560
470
  with the automated processing the first time around
561
471
 
562
- 2003-08-18 18:39 thomas
563
-
564
472
  * zip.rb, zipfilesystem.rb, zipfilesystemtest.rb, ziptest.rb:
565
473
  Implemented Zip::ZipFile.get_output_stream
566
474
 
@@ -580,63 +488,43 @@
580
488
  * simpledist.rb: Moved simpledist to a separate repository called
581
489
  'misc'
582
490
 
583
- 2003-08-13 16:31 thomas
584
-
585
491
  * NEWS: [no log message]
586
492
 
587
- 2003-08-13 16:29 thomas
588
-
589
493
  * stdrubyext.rb, zip.rb, zipfilesystem.rb, zipfilesystemtest.rb,
590
494
  ziprequire.rb, ziprequiretest.rb, ziptest.rb, samples/example.rb,
591
495
  samples/gtkRubyzip.rb, samples/zipfind.rb: Changed all method
592
496
  names to the ruby convention underscore style
593
497
 
594
- 2003-08-13 15:18 thomas
595
-
596
498
  * alltests.rb, zipfilesystem.rb, zipfilesystemtest.rb: Implemented
597
499
  a lot more of the stat methods. Mostly with dummy implementations
598
500
  that return values that indicate that these features aren't
599
501
  supported
600
502
 
601
- 2003-08-13 11:44 thomas
602
-
603
503
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented more methods
604
504
  and tests in zipfilesystem. Mostly empty methods as permissions
605
505
  and file types other than files and directories are not supported
606
506
 
607
- 2003-08-13 11:29 thomas
608
-
609
507
  * install.rb, stdrubyext.rb, zip.rb, zipfilesystem.rb,
610
508
  zipfilesystemtest.rb: Addd file stdrubyext.rb and moved the
611
509
  modifications to std ruby classes to it. Refactored the ZipFsStat
612
510
  tests and ZipFsStat. Added Module.forwardMessages and used it to
613
511
  implement the forwarding of calls in ZipFsStat
614
512
 
615
- 2003-08-13 10:39 thomas
616
-
617
513
  * zipfilesystem.rb, zipfilesystemtest.rb: Added
618
514
  Zip::ZipFsFile::ZipFsStat and started implementing it and its
619
515
  methods
620
516
 
621
- 2003-08-13 10:02 thomas
622
-
623
517
  * zipfilesystem.rb, zipfilesystemtest.rb, ziptest.rb: Updated and
624
518
  added missing copyright notices
625
519
 
626
- 2003-08-13 10:00 thomas
627
-
628
520
  * zip.rb, zipfilesystem.rb, zipfilesystemtest.rb: zipfilesystem.rb
629
521
  is becoming big and not everyone will want to use that code.
630
522
  Therefore zip.rb no longer requires it. Instead you must require
631
523
  zipfilesystem.rb itself if you want to use it
632
524
 
633
- 2003-08-13 09:51 thomas
634
-
635
525
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented dummy
636
526
  permission test methods
637
527
 
638
- 2003-08-13 06:37 thomas
639
-
640
528
  * TODO, zip.rb, ziptest.rb: Merged from patch from Kristoffer
641
529
  Lunden. Fixed more 1.8.0 incompatibilites - tests run on 1.8.0
642
530
  now
@@ -645,12 +533,8 @@
645
533
 
646
534
  * zip.rb: Get rid of 1.8.0 warning
647
535
 
648
- 2003-08-12 19:14 thomas
649
-
650
536
  * ziptest.rb: ruby 1.8.0 compatibility fix
651
537
 
652
- 2003-08-12 19:13 thomas
653
-
654
538
  * NEWS, zip.rb: ruby-zlib 0.6.0 compatibility fix
655
539
 
656
540
  2002-12-22 20:12 thomas
@@ -665,8 +549,6 @@
665
549
 
666
550
  * samples/zipfind.rb: [no log message]
667
551
 
668
- 2002-09-15 00:02 thomas
669
-
670
552
  * samples/zipfind.rb: [no log message]
671
553
 
672
554
  2002-09-14 22:59 thomas
@@ -677,13 +559,9 @@
677
559
 
678
560
  * TODO: Added TODO about openmode for zip entries binary/ascii
679
561
 
680
- 2002-09-13 20:54 thomas
681
-
682
562
  * NEWS: ziptest now runs without errors with ruby-1.7.2-4 (Andy's
683
563
  latest build)
684
564
 
685
- 2002-09-13 20:51 thomas
686
-
687
565
  * zip.rb, ziprequiretest.rb, ziptest.rb: ziptest now runs without
688
566
  errors with ruby-1.7.2-4 (Andy's latest build)
689
567
 
@@ -691,12 +569,8 @@
691
569
 
692
570
  * zipfilesystemtest.rb: Improved ZipFsFile.delete/unlink test
693
571
 
694
- 2002-09-12 00:12 thomas
695
-
696
572
  * test/.cvsignore: [no log message]
697
573
 
698
- 2002-09-12 00:10 thomas
699
-
700
574
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
701
575
  ZipFsFile.delete/unlink
702
576
 
@@ -704,14 +578,10 @@
704
578
 
705
579
  * alltests.rb: [no log message]
706
580
 
707
- 2002-09-11 22:18 thomas
708
-
709
581
  * NEWS, zip.rb, zipfilesystem.rb, zipfilesystemtest.rb: Fixed
710
582
  AbstractInputStream.each_line ignored its aSeparator argument.
711
583
  Implemented more ZipFsFile methods
712
584
 
713
- 2002-09-11 21:28 thomas
714
-
715
585
  * zip.rb, zipfilesystem.rb, zipfilesystemtest.rb: ZipFileSystem is
716
586
  now a module instead of a class, and is mixed into ZipFile,
717
587
  instead of being made available as a property fileSystem
@@ -720,12 +590,8 @@
720
590
 
721
591
  * NEWS: Updated NEWS file
722
592
 
723
- 2002-09-10 23:26 thomas
724
-
725
593
  * zip.rb: [no log message]
726
594
 
727
- 2002-09-10 22:39 thomas
728
-
729
595
  * NEWS, zip.rb, ziptest.rb: Fix bug: rewind should reset lineno.
730
596
  Fix bug: Deflater.read uses separate buffer from produceInput
731
597
  (feeding gets/readline etc)
@@ -749,19 +615,13 @@
749
615
 
750
616
  * zipfilesystemtest.rb: [no log message]
751
617
 
752
- 2002-09-08 16:07 thomas
753
-
754
618
  * filearchive.rb, filearchivetest.rb, zip.rb, ziptest.rb: Moved
755
619
  String additions from filearchive.rb to zip.rb (and moved tests
756
620
  along too to ziptest.rb). Added ZipEntry.parentAsString and
757
621
  ZipEntrySet.parent
758
622
 
759
- 2002-09-08 15:28 thomas
760
-
761
623
  * ziptest.rb: Implemented ZipEntrySetTest.testDup and testCompound
762
624
 
763
- 2002-09-08 15:17 thomas
764
-
765
625
  * TODO, zip.rb, ziptest.rb: Replaced Array with EntrySet for
766
626
  keeping entries in a zip file. Tagged repository before this
767
627
  commit, so this change can be rolled back, if it stinks
@@ -770,8 +630,6 @@
770
630
 
771
631
  * zip.rb, ziptest.rb: Implemented ZipEntry.<=>
772
632
 
773
- 2002-09-07 14:48 thomas
774
-
775
633
  * ziptest.rb: Removed unused code
776
634
 
777
635
  2002-08-11 15:14 thomas
@@ -782,33 +640,21 @@
782
640
 
783
641
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented ZipFsFile.new
784
642
 
785
- 2002-07-27 00:30 thomas
786
-
787
643
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
788
644
  ZipFsFile.pipe
789
645
 
790
- 2002-07-27 00:25 thomas
791
-
792
646
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
793
647
  ZipFsFile.link
794
648
 
795
- 2002-07-27 00:23 thomas
796
-
797
649
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
798
650
  ZipFsFile.symlink
799
651
 
800
- 2002-07-27 00:20 thomas
801
-
802
652
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
803
653
  ZipFsFile.readlink, wrapped ZipFileSystem class in Zip module
804
654
 
805
- 2002-07-27 00:14 thomas
806
-
807
655
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
808
656
  ZipFsFile.zero?
809
657
 
810
- 2002-07-27 00:01 thomas
811
-
812
658
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented test for
813
659
  ZipFsFile.directory?
814
660
 
@@ -817,71 +663,43 @@
817
663
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
818
664
  ZipFsFile.socket?
819
665
 
820
- 2002-07-26 23:50 thomas
821
-
822
666
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
823
667
  ZipFsFile.join
824
668
 
825
- 2002-07-26 23:32 thomas
826
-
827
669
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
828
670
  ZipFsFile.ftype
829
671
 
830
- 2002-07-26 23:19 thomas
831
-
832
672
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
833
673
  ZipFsFile.blockdev?
834
674
 
835
- 2002-07-26 23:12 thomas
836
-
837
675
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
838
676
  ZipFsFile.size? (slightly different from size)
839
677
 
840
- 2002-07-26 23:03 thomas
841
-
842
678
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
843
679
  ZipFsFile.split
844
680
 
845
- 2002-07-26 23:00 thomas
846
-
847
681
  * zipfilesystem.rb, zipfilesystemtest.rb: Implemented
848
682
  ZipFsFile.symlink?
849
683
 
850
- 2002-07-26 22:58 thomas
851
-
852
684
  * alltests.rb, zip.rb, zipfilesystem.rb, zipfilesystemtest.rb:
853
685
  Implemented ZipFsFile.mtime
854
686
 
855
- 2002-07-26 17:08 thomas
856
-
857
687
  * zipfilesystem.rb, zipfilesystemtest.rb: Implement ZipFsFile.file?
858
688
 
859
- 2002-07-26 17:06 thomas
860
-
861
689
  * zip.rb, ziptest.rb: Implemented ZipEntry.file?
862
690
 
863
- 2002-07-26 16:57 thomas
864
-
865
691
  * alltests.rb, filearchive.rb, filearchivetest.rb, zip.rb,
866
692
  zipfilesystem.rb, zipfilesystemtest.rb, ziprequire.rb,
867
693
  ziptest.rb: Implemented ZipFileSystem::ZipFsFile.size
868
694
 
869
- 2002-07-26 16:41 thomas
870
-
871
695
  * zipfilesystem.rb, zipfilesystemtest.rb: [no log message]
872
696
 
873
- 2002-07-26 16:40 thomas
874
-
875
697
  * test/zipWithDirs.zip: Changed zipWithDirs.zip so all the entries
876
698
  in it have unix file endings
877
699
 
878
- 2002-07-26 16:12 thomas
879
-
880
700
  * alltests.rb, zip.rb, zipfilesystem.rb, zipfilesystemtest.rb:
881
701
  Started implementing ZipFileSystem
882
702
 
883
- 2002-07-26 15:56 thomas
884
-
885
703
  * test/zipWithDirs.zip: Added a zip file for testing with a
886
704
  directory structure
887
705
 
@@ -889,31 +707,21 @@
889
707
 
890
708
  * TODO: [no log message]
891
709
 
892
- 2002-07-22 17:49 thomas
893
-
894
710
  * TODO: [no log message]
895
711
 
896
712
  2002-07-21 18:20 thomas
897
713
 
898
714
  * NEWS: [no log message]
899
715
 
900
- 2002-07-21 18:12 thomas
901
-
902
716
  * TODO: Updated TODO with a refactoring idea for FileArchive
903
717
 
904
- 2002-07-21 17:59 thomas
905
-
906
718
  * filearchive.rb, filearchivetest.rb: Added some FileArchiveAdd
907
719
  tests and cleaned up some of the FileArchive tests. extract and
908
720
  add now have individual test fixtures.
909
721
 
910
- 2002-07-21 16:02 thomas
911
-
912
722
  * filearchive.rb, filearchivetest.rb: Added tests for extract
913
723
  called with regex src arg and Enumerable src arg
914
724
 
915
- 2002-07-21 15:37 thomas
916
-
917
725
  * filearchivetest.rb: Added test for continueOnExistsProc when
918
726
  extracting from a file archive
919
727
 
@@ -924,28 +732,16 @@
924
732
  code for creating test files for FileArchive.add tests. Added
925
733
  fileutils.rb, which is borrowed from ruby 1.7.2
926
734
 
927
- 2002-07-20 16:07 thomas
928
-
929
735
  * filearchive.rb, filearchivetest.rb: [no log message]
930
736
 
931
- 2002-07-20 16:05 thomas
932
-
933
737
  * filearchivetest.rb: Added tests for String extensions
934
738
 
935
- 2002-07-20 02:20 thomas
936
-
937
739
  * alltests.rb, ziprequiretest.rb, ziptest.rb: [no log message]
938
740
 
939
- 2002-07-20 00:42 thomas
940
-
941
741
  * install.rb: [no log message]
942
742
 
943
- 2002-07-20 00:42 thomas
944
-
945
743
  * TODO: Updated TODO
946
744
 
947
- 2002-07-20 00:35 thomas
948
-
949
745
  * filearchive.rb, filearchivetest.rb: All FileArchive.extract tests
950
746
  run
951
747
 
@@ -953,16 +749,10 @@
953
749
 
954
750
  * filearchive.rb, filearchivetest.rb: [no log message]
955
751
 
956
- 2002-07-19 19:41 thomas
957
-
958
752
  * filearchivetest.rb: [no log message]
959
753
 
960
- 2002-07-19 19:06 thomas
961
-
962
754
  * filearchive.rb, filearchivetest.rb: [no log message]
963
755
 
964
- 2002-07-19 18:48 thomas
965
-
966
756
  * filearchive.rb, filearchivetest.rb, zip.rb: [no log message]
967
757
 
968
758
  2002-07-08 13:41 thomas
@@ -982,12 +772,8 @@
982
772
 
983
773
  * TODO: [no log message]
984
774
 
985
- 2002-04-30 21:16 thomas
986
-
987
775
  * filearchive.rb, filearchivetest.rb: [no log message]
988
776
 
989
- 2002-04-30 20:40 thomas
990
-
991
777
  * filearchive.rb, filearchivetest.rb: Improved testing and wrote
992
778
  some of the skeleton of extract. Still to do: Fix glob, so it
993
779
  returns a hashmap instead of a list. The map will need to map the
@@ -996,8 +782,6 @@
996
782
  it is just the name). Glob.expandPathList should also output
997
783
  directories with a trailing slash, which is doesn't right now.
998
784
 
999
- 2002-04-30 19:52 thomas
1000
-
1001
785
  * filearchive.rb, filearchivetest.rb: Implemented the first few
1002
786
  tests for FileArchive
1003
787
 
@@ -1006,8 +790,6 @@
1006
790
  * ziprequire.rb, ziprequiretest.rb: Appended copyright message to
1007
791
  ziprequire.rb and ziprequiretest.rb
1008
792
 
1009
- 2002-04-24 20:59 thomas
1010
-
1011
793
  * zip.rb: Made ZipEntry tolerate invalid dates
1012
794
 
1013
795
  2002-04-21 00:57 thomas
@@ -1019,12 +801,8 @@
1019
801
 
1020
802
  * ziprequiretest.rb, test/rubycode2.zip: improved ZipRequireTest
1021
803
 
1022
- 2002-04-20 02:39 thomas
1023
-
1024
804
  * ziprequire.rb: Made a warning go away
1025
805
 
1026
- 2002-04-20 02:38 thomas
1027
-
1028
806
  * ziprequire.rb, ziprequiretest.rb, test/notzippedruby.rb,
1029
807
  test/rubycode.zip: Fixed a bug in ziprequire. Added
1030
808
  ziprequiretest.rb and test data files
@@ -1044,8 +822,6 @@
1044
822
 
1045
823
  * NEWS: [no log message]
1046
824
 
1047
- 2002-04-01 21:16 thomas
1048
-
1049
825
  * TODO, zip.rb, ziprequire.rb: Added ziprequire.rb which contains a
1050
826
  proof-of-concept implementation of a require implementation that
1051
827
  can load ruby modules from a zip file. Needs unit tests and
@@ -1059,8 +835,6 @@
1059
835
 
1060
836
  * TODO: [no log message]
1061
837
 
1062
- 2002-03-30 01:52 thomas
1063
-
1064
838
  * .cvsignore, README, zip.rb: Added rdoc markup (only #:nodoc:all
1065
839
  modifiers) to zip.rb. Made README 'RDoc compliant'
1066
840
 
@@ -1068,17 +842,11 @@
1068
842
 
1069
843
  * TODO: [no log message]
1070
844
 
1071
- 2002-03-29 23:26 thomas
1072
-
1073
845
  * example.rb, samples/.cvsignore, samples/example.rb,
1074
846
  samples/gtkRubyzip.rb: Moved example.rb to samples/. Added
1075
847
  another sample gtkRubyzip.rb
1076
848
 
1077
- 2002-03-29 20:12 thomas
1078
-
1079
- * NEWS, TODO: [no log message]
1080
-
1081
- 2002-03-29 20:06 thomas
849
+ * NEWS, TODO, TODO: [no log message]
1082
850
 
1083
851
  * .cvsignore, file1.txt, file1.txt.deflatedData, testDirectory.bin,
1084
852
  ziptest.rb, test/.cvsignore, test/file1.txt,
@@ -1087,17 +855,11 @@
1087
855
  manually created test data files into it. Changed ziptest.rb so
1088
856
  it runs in test/ directory
1089
857
 
1090
- 2002-03-29 19:43 thomas
1091
-
1092
858
  * TODO: [no log message]
1093
859
 
1094
- 2002-03-29 18:15 thomas
1095
-
1096
860
  * NEWS, zip.rb, ziptest.rb: Don't decompress and recompress zip
1097
861
  entries when changing zip file
1098
862
 
1099
- 2002-03-29 17:50 thomas
1100
-
1101
863
  * zip.rb: Performance optimization: Only write new ZipFile, if it
1102
864
  has been changed. The test suite runs in half the time now.
1103
865
 
@@ -1113,22 +875,14 @@
1113
875
 
1114
876
  * NEWS: [no log message]
1115
877
 
1116
- 2002-03-22 22:25 thomas
1117
-
1118
878
  * NEWS, TODO: [no log message]
1119
879
 
1120
- 2002-03-22 22:18 thomas
1121
-
1122
880
  * ziptest.rb: Found the tests that didn't use blocks to make sure
1123
881
  input streams are closed as soon as they arent used anymore and
1124
882
  got rid of the GC.start
1125
883
 
1126
- 2002-03-22 22:12 thomas
1127
-
1128
884
  * ziptest.rb: All tests run on windows ruby 1.6.6
1129
885
 
1130
- 2002-03-22 10:38 thomas
1131
-
1132
886
  * zip.rb, ziptest.rb: Windows fixes: Fixed ZipFile.initialize which
1133
887
  needed to open zipfile file in binary mode. Added another
1134
888
  workaround for the return value from File.open(name) where name
@@ -1147,25 +901,15 @@
1147
901
 
1148
902
  * NEWS: [no log message]
1149
903
 
1150
- 2002-03-21 22:12 thomas
1151
-
1152
904
  * NEWS, README, TODO, install.rb: Added install.rb
1153
905
 
1154
- 2002-03-21 21:45 thomas
1155
-
1156
906
  * ziptest.rb: [no log message]
1157
907
 
1158
- 2002-03-21 20:54 thomas
1159
-
1160
908
  * NEWS, TODO: [no log message]
1161
909
 
1162
- 2002-03-21 20:34 thomas
1163
-
1164
910
  * .cvsignore, TODO, zip.rb, ziptest.rb: Added
1165
911
  test_extractDirectoryExistsAsFileOverwrite and fixed to pass
1166
912
 
1167
- 2002-03-21 20:22 thomas
1168
-
1169
913
  * zip.rb, ziptest.rb: Extraction of directory entries is now
1170
914
  supported
1171
915
 
@@ -1173,35 +917,23 @@
1173
917
 
1174
918
  * NEWS: [no log message]
1175
919
 
1176
- 2002-03-20 21:24 thomas
1177
-
1178
920
  * COPYING, README, README.txt: Removed COPYING, renamed README.txt
1179
921
  to README. Updated README
1180
922
 
1181
- 2002-03-20 21:18 thomas
1182
-
1183
923
  * example.rb: Fixed example.rb added example that shows zip file
1184
924
  manipulation with Zip::ZipFile
1185
925
 
1186
- 2002-03-20 21:00 thomas
1187
-
1188
926
  * .cvsignore: [no log message]
1189
927
 
1190
- 2002-03-20 20:56 thomas
1191
-
1192
928
  * TODO, zip.rb, ziptest.rb: Directories can now be added (not
1193
929
  recursively, the directory entry itself. Directories are
1194
930
  recognized by a empty entries with a trailing /. The purpose of
1195
931
  storing them explicitly in the zip file is to be able to store
1196
932
  permission and ownership information
1197
933
 
1198
- 2002-03-20 20:08 thomas
1199
-
1200
934
  * TODO, zip.rb, ziptest.rb: zip.rb depended on ftools but it was
1201
935
  only included in ziptest.rb
1202
936
 
1203
- 2002-03-20 19:07 thomas
1204
-
1205
937
  * zip.rb, ziptest.rb: ZipError is now a subclass of StandardError
1206
938
  instead of RuntimeError. ZipError now has several subclasses.
1207
939
 
@@ -1209,26 +941,16 @@
1209
941
 
1210
942
  * TODO: [no log message]
1211
943
 
1212
- 2002-03-19 22:19 thomas
1213
-
1214
944
  * TODO, ziptest.rb: Unit test ZipFile.getInputStream with block
1215
945
 
1216
- 2002-03-19 22:11 thomas
1217
-
1218
946
  * TODO, zip.rb, ziptest.rb: Unit test for adding new entry with
1219
947
  name that already exists in archive, and fixed to pass test
1220
948
 
1221
- 2002-03-19 21:40 thomas
1222
-
1223
949
  * TODO, zip.rb, ziptest.rb: Added unit tests for rename to existing
1224
950
  entry
1225
951
 
1226
- 2002-03-19 20:42 thomas
1227
-
1228
952
  * TODO: [no log message]
1229
953
 
1230
- 2002-03-19 20:40 thomas
1231
-
1232
954
  * TODO, zip.rb, ziptest.rb: Unit test calling ZipFile.extract with
1233
955
  block
1234
956
 
@@ -1236,49 +958,31 @@
1236
958
 
1237
959
  * TODO: [no log message]
1238
960
 
1239
- 2002-03-18 21:05 thomas
1240
-
1241
961
  * zip.rb, ziptest.rb: ZipFile#commit now reinitializes ZipFile.
1242
962
 
1243
- 2002-03-18 20:42 thomas
1244
-
1245
963
  * TODO, zip.rb, ziptest.rb: Refactoring:
1246
-
964
+
1247
965
  Collapsed ZipEntry and ZipStreamableZipEntry into ZipEntry.
1248
-
966
+
1249
967
  Collapsed BasicZipFile and ZipFile into ZipFile.
1250
968
 
1251
- 2002-03-18 18:05 thomas
1252
-
1253
969
  * zip.rb: Removed method that was never called
1254
970
 
1255
971
  2002-03-17 22:33 thomas
1256
972
 
1257
973
  * TODO: [no log message]
1258
974
 
1259
- 2002-03-17 22:25 thomas
1260
-
1261
975
  * ziptest.rb: Run tests with =true as default
1262
976
 
1263
- 2002-03-17 22:22 thomas
1264
-
1265
977
  * NEWS, TODO, zip.rb, ziptest.rb: Now runs with -w switch without
1266
978
  warnings
1267
979
 
1268
- 2002-03-17 21:10 thomas
1269
-
1270
980
  * .cvsignore: [no log message]
1271
981
 
1272
- 2002-03-17 21:04 thomas
1273
-
1274
982
  * zip.rb, ziptest.rb: Down to one failing test
1275
983
 
1276
- 2002-03-17 20:36 thomas
1277
-
1278
984
  * zip.rb, ziptest.rb: [no log message]
1279
985
 
1280
- 2002-03-17 17:22 thomas
1281
-
1282
986
  * TODO, zip.rb, ziptest.rb: [no log message]
1283
987
 
1284
988
  2002-02-25 19:42 thomas
@@ -1289,12 +993,8 @@
1289
993
 
1290
994
  * zip.rb: [no log message]
1291
995
 
1292
- 2002-02-23 15:30 thomas
1293
-
1294
996
  * zip.rb, ziptest.rb: [no log message]
1295
997
 
1296
- 2002-02-23 14:16 thomas
1297
-
1298
998
  * zip.rb, ziptest.rb: [no log message]
1299
999
 
1300
1000
  2002-02-03 18:47 thomas
@@ -1305,21 +1005,13 @@
1305
1005
 
1306
1006
  * example.rb, zip.rb, ziptest.rb: [no log message]
1307
1007
 
1308
- 2002-02-02 00:16 thomas
1309
-
1310
1008
  * .cvsignore: [no log message]
1311
1009
 
1312
- 2002-02-02 00:14 thomas
1313
-
1314
1010
  * example.rb, zip.rb, ziptest.rb: Renamed SimpleZipFile to
1315
1011
  BasicZipFile
1316
1012
 
1317
- 2002-02-02 00:09 thomas
1318
-
1319
1013
  * TODO: [no log message]
1320
1014
 
1321
- 2002-02-02 00:01 thomas
1322
-
1323
1015
  * ziptest.rb: More test cases - all of them failing, so now there
1324
1016
  are 18 failing test cases. Three more test cases to implement,
1325
1017
  then it is time for the production code
@@ -1328,12 +1020,8 @@
1328
1020
 
1329
1021
  * ziptest.rb: [no log message]
1330
1022
 
1331
- 2002-02-01 21:34 thomas
1332
-
1333
1023
  * ziptest.rb: Also run SimpleZipFile tests for ZipFile.
1334
1024
 
1335
- 2002-02-01 20:11 thomas
1336
-
1337
1025
  * example.rb, zip.rb, ziptest.rb: ZipFile renamed to SimpleZipFile.
1338
1026
  The new ZipFile will have many more methods that are useful for
1339
1027
  managing archives.
@@ -1346,14 +1034,10 @@
1346
1034
 
1347
1035
  * NEWS: [no log message]
1348
1036
 
1349
- 2002-01-26 00:14 thomas
1350
-
1351
1037
  * ziptest.rb: In unit test: work around ruby/cygwin weirdness. You
1352
1038
  get an Errno::EEXISTS instead of an Errno::EISDIR if you try to
1353
1039
  open a file for writing that is a directory.
1354
1040
 
1355
- 2002-01-26 00:02 thomas
1356
-
1357
1041
  * ziptest.rb: Fixed test that failed on windows because of CRLF
1358
1042
  line ending
1359
1043
 
@@ -1361,55 +1045,37 @@
1361
1045
 
1362
1046
  * ziptest.rb: [no log message]
1363
1047
 
1364
- 2002-01-25 23:29 thomas
1365
-
1366
1048
  * .cvsignore, example.rb, zip.rb: Fixed bug reading from empty
1367
1049
  deflated entry in zip file
1368
1050
 
1369
- 2002-01-25 23:01 thomas
1370
-
1371
1051
  * .cvsignore: [no log message]
1372
1052
 
1373
- 2002-01-25 22:56 thomas
1374
-
1375
1053
  * ziptest.rb: [no log message]
1376
1054
 
1377
- 2002-01-25 22:51 thomas
1378
-
1379
1055
  * NEWS, README.txt, zip.rb, ziptest.rb: Zip write support is now
1380
1056
  fully functional in the form of ZipOutputStream.
1381
1057
 
1382
- 2002-01-25 21:12 thomas
1383
-
1384
1058
  * zip.rb, ziptest.rb: [no log message]
1385
1059
 
1386
- 2002-01-25 20:37 thomas
1387
-
1388
1060
  * zip.rb, ziptest.rb: [no log message]
1389
1061
 
1390
1062
  2002-01-20 16:00 thomas
1391
1063
 
1392
1064
  * zip.rb, ziptest.rb: Added Deflater and DeflaterTest.
1393
1065
 
1394
- 2002-01-20 00:39 thomas
1395
-
1396
1066
  * .cvsignore: [no log message]
1397
1067
 
1398
- 2002-01-20 00:23 thomas
1399
-
1400
1068
  * .cvsignore: Added .cvsignore file
1401
1069
 
1402
- 2002-01-20 00:09 thomas
1403
-
1404
1070
  * zip.rb, ziptest.rb: Added ZipEntry.writeCDirEntry and misc minor
1405
1071
  fixes
1406
1072
 
1407
1073
  2002-01-19 23:28 thomas
1408
1074
 
1409
1075
  * example.rb, zip.rb, ziptest.rb: NOTICE: Not all tests run!!
1410
-
1076
+
1411
1077
  ZipOutputStream in progress
1412
-
1078
+
1413
1079
  Wrapped rubyzip in namespace module Zip.
1414
1080
 
1415
1081
  2002-01-17 18:52 thomas
@@ -1431,47 +1097,29 @@
1431
1097
 
1432
1098
  2002-01-05 23:09 thomas
1433
1099
 
1434
- * NEWS, README.txt: Updated NEWS file
1435
-
1436
- 2002-01-05 23:05 thomas
1100
+ * NEWS, README.txt, NEWS: Updated NEWS file
1437
1101
 
1438
1102
  * README.txt, zip.rb, ziptest.rb, zlib.c.diff: Added tests for
1439
1103
  decompressors and a tests for ZipLocalEntry,
1440
1104
  ZipCentralDirectoryEntry and ZipCentralDirectory for handling of
1441
1105
  corrupt data
1442
1106
 
1443
- 2002-01-05 22:21 thomas
1444
-
1445
1107
  * file1.txt.deflatedData: deflated data extracted from a zip file.
1446
1108
  contains file1.txt
1447
1109
 
1448
- 2002-01-05 20:05 thomas
1449
-
1450
1110
  * zip.rb: Changed references to Inflate to Zlib::inflate for
1451
1111
  compatibility with ruby-zlib-0.5
1452
1112
 
1453
- 2002-01-05 19:28 thomas
1454
-
1455
1113
  * README.txt, zip.rb, ziptest.rb: [no log message]
1456
1114
 
1457
- 2002-01-05 01:52 thomas
1458
-
1459
1115
  * example.rb, NEWS: [no log message]
1460
1116
 
1461
- 2002-01-05 01:37 thomas
1462
-
1463
1117
  * COPYING, README.txt: [no log message]
1464
1118
 
1465
- 2002-01-05 01:31 thomas
1466
-
1467
1119
  * ziptest.rb: Fixed problem with test file creation
1468
1120
 
1469
- 2002-01-05 01:15 thomas
1470
-
1471
1121
  * README.txt: Updated README.txt
1472
1122
 
1473
- 2002-01-05 01:13 thomas
1474
-
1475
1123
  * zip.rb, ziptest.rb: ZipFile now works
1476
1124
 
1477
1125
  2002-01-04 21:51 thomas
@@ -1479,8 +1127,6 @@
1479
1127
  * testDirectory.bin, zip.rb, ziptest.rb:
1480
1128
  ZipCentralDirectoryEntryTest now runs
1481
1129
 
1482
- 2002-01-04 18:40 thomas
1483
-
1484
1130
  * ziptest.rb: Changed
1485
1131
  ZIpLocalNEtryTest::test_ReadLocalEntryHeaderOfFirstTestZipEntry
1486
1132
  so it works on both unix too. It only worked on windows because
@@ -1488,17 +1134,13 @@
1488
1134
  entry, but that differs depending on the OS because of the CRLF
1489
1135
  thing.
1490
1136
 
1491
- 2002-01-04 18:37 thomas
1492
-
1493
1137
  * README.txt: Added note about zlib.c patch
1494
1138
 
1495
1139
  2002-01-02 18:48 thomas
1496
1140
 
1497
1141
  * README.txt, example.rb, file1.txt, zip.rb, ziptest.rb,
1498
- zlib.c.diff: Initial revision
1499
-
1500
- 2002-01-02 18:48 thomas
1142
+ zlib.c.diff: initial
1501
1143
 
1502
1144
  * README.txt, example.rb, file1.txt, zip.rb, ziptest.rb,
1503
- zlib.c.diff: initial
1145
+ zlib.c.diff: Initial revision
1504
1146