The Trunk: PackageInfo-Base-bf.62.mcz

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

The Trunk: PackageInfo-Base-bf.62.mcz

commits-2
Bert Freudenberg uploaded a new version of PackageInfo-Base to project The Trunk:
http://source.squeak.org/trunk/PackageInfo-Base-bf.62.mcz

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

Name: PackageInfo-Base-bf.62
Author: bf
Time: 31 May 2012, 5:41:27.878 pm
UUID: 3cdc34fb-0497-4f66-afe1-cd83a619eeaf
Ancestors: PackageInfo-Base-bf.61

Ignore empty preambles/postscripts

=============== Diff against PackageInfo-Base-bf.61 ===============

Item was changed:
  ----- Method: PackageInfo>>hasPostscript (in category 'preamble/postscript') -----
  hasPostscript
 
+ ^ postscript notNil and: [postscript contents asString withBlanksTrimmed notEmpty]!
- ^ postscript notNil!

Item was changed:
  ----- Method: PackageInfo>>hasPostscriptOfRemoval (in category 'preamble/postscript') -----
  hasPostscriptOfRemoval
 
+ ^ postscriptOfRemoval notNil and: [postscriptOfRemoval contents asString withBlanksTrimmed notEmpty]!
- ^ postscriptOfRemoval notNil!

Item was changed:
  ----- Method: PackageInfo>>hasPreamble (in category 'preamble/postscript') -----
  hasPreamble
+
+ ^ preamble notNil and: [preamble contents asString withBlanksTrimmed notEmpty]!
- ^ preamble notNil!

Item was changed:
  ----- Method: PackageInfo>>hasPreambleOfRemoval (in category 'preamble/postscript') -----
  hasPreambleOfRemoval
 
+ ^ preambleOfRemoval notNil and: [preambleOfRemoval contents asString withBlanksTrimmed notEmpty]!
- ^ preambleOfRemoval notNil!