[Pkg] The Trunk: Compression-tfel.50.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Aug 30 08:38:38 UTC 2016


Tim Felgentreff uploaded a new version of Compression to project The Trunk:
http://source.squeak.org/trunk/Compression-tfel.50.mcz

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

Name: Compression-tfel.50
Author: tfel
Time: 30 August 2016, 10:38:23.843946 am
UUID: 1b713e03-5ddd-8544-ac4b-52875fe03a27
Ancestors: Compression-tfel.49, Compression-ul.49

Merge translations from Squeakland Etoys

=============== Diff against Compression-ul.49 ===============

Item was changed:
  ----- Method: GZipReadStream class>>serviceDecompressToFile (in category 'fileIn/Out') -----
  serviceDecompressToFile
  
  	^ FileModifyingSimpleServiceEntry 
  				provider: self 
+ 				label: 'decompress to file' translatedNoop
- 				label: 'decompress to file'
  				selector: #saveContents:
+ 				description: 'decompress to file' translatedNoop!
- 				description: 'decompress to file'!

Item was changed:
  ----- Method: GZipReadStream class>>serviceFileIn (in category 'fileIn/Out') -----
  serviceFileIn
  	"Answer a service for filing in an entire file"
  
  	^ SimpleServiceEntry 
  		provider: self 
+ 		label: 'fileIn entire file' translatedNoop
- 		label: 'fileIn entire file'
  		selector: #fileIn:
+ 		description: 'file in the entire decompressed contents of the file, which is expected to contain Smalltalk code in fileout ("chunk") format' translatedNoop
+ 		buttonLabel: 'filein' translatedNoop
- 		description: 'file in the entire decompressed contents of the file, which is expected to contain Smalltalk code in fileout ("chunk") format'
- 		buttonLabel: 'filein'
  
  !

Item was changed:
  ----- Method: GZipReadStream class>>serviceFileIntoNewChangeSet (in category 'fileIn/Out') -----
  serviceFileIntoNewChangeSet
  	"Answer a service for filing in an entire file"
  	^ SimpleServiceEntry
  		provider: self
+ 		label: 'install into new change set' translatedNoop
- 		label: 'install into new change set'
  		selector: #fileIntoNewChangeSet:
+ 		description: 'install the decompressed contents of the file as a body of code in the image: create a new change set and file-in the selected file into it' translatedNoop
+ 		buttonLabel: 'install' translatedNoop!
- 		description: 'install the decompressed contents of the file as a body of code in the image: create a new change set and file-in the selected file into it'
- 		buttonLabel: 'install'!

Item was changed:
  ----- Method: GZipWriteStream class>>serviceCompressFile (in category 'file list services') -----
  serviceCompressFile
  
  	^ FileModifyingSimpleServiceEntry 
  				provider: self 
+ 				label: 'compress file' translatedNoop
- 				label: 'compress file'
  				selector: #compressFile:
+ 				description: 'compress file using gzip compression, making a new file' translatedNoop!
- 				description: 'compress file using gzip compression, making a new file'!



More information about the Packages mailing list