The Trunk: Compression-laza.27.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Compression-laza.27.mcz

commits-2
Alexander Lazarević uploaded a new version of Compression to project The Trunk:
http://source.squeak.org/trunk/Compression-laza.27.mcz

==================== Summary ====================

Name: Compression-laza.27
Author: laza
Time: 27 November 2010, 6:48:21.632 pm
UUID: ff9c293a-4d09-9a41-a969-5f79e89213d3
Ancestors: Compression-ar.26

Fixing wrong cascade

=============== Diff against Compression-ar.26 ===============

Item was changed:
  ----- Method: FileStream>>viewGZipContents (in category '*Compression') -----
  viewGZipContents
  "View the contents of a gzipped file"
 
  | stringContents |
  self binary.
  stringContents := self contentsOfEntireFile.
  stringContents := Cursor wait showWhile: [(GZipReadStream on: stringContents) upToEnd].
  stringContents := stringContents asString withSqueakLineEndings.
 
  UIManager default
+ edit: stringContents
- edit: stringContents;
  label: 'Decompressed contents of: ', self localName!