[squeak-dev] The Trunk: Compression-laza.27.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Nov 27 17:48:31 UTC 2010


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!




More information about the Squeak-dev mailing list