[Pkg] Sake : Sake-Core-kph.70.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Sun Dec 7 22:12:17 UTC 2008


A new version of Sake-Core was added to project Sake :
http://www.squeaksource.com/Sake/Sake-Core-kph.70.mcz

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

Name: Sake-Core-kph.70
Author: kph
Time: 7 December 2008, 10:12:15 pm
UUID: 73514923-a2b5-4812-9a39-15c751db332c
Ancestors: Sake-Core-kph.69

author propagates to subtasks and dependant tasks

=============== Diff against Sake-Core-kph.69 ===============

Item was changed:
+ ----- Method: SakeTask>>author: (in category 'accessing') -----
- ----- Method: SakeTask>>author: (in category 'as yet unclassified') -----
  author: initials
  
  	author := initials!

Item was changed:
+ ----- Method: SakeTask>>action: (in category 'accessing') -----
- ----- Method: SakeTask>>action: (in category 'as yet unclassified') -----
  action: block
  
  	actionBlock := block.
  !

Item was changed:
+ ----- Method: SakeTask>>action (in category 'accessing') -----
- ----- Method: SakeTask>>action (in category 'as yet unclassified') -----
  action 
  
  	^ actionBlock ifNil: [ self defaultAction ]!

Item was added:
+ ----- Method: SakeTask>>author (in category 'accessing') -----
+ author
+ 
+ 	^ author!

Item was changed:
  ----- Method: SakeTask>>taskFrom: (in category 'as yet unclassified') -----
  taskFrom: aDependent
  
+ 	| task |
+ 	
+ 	task := aDependent isString 
+ 		ifTrue: [ self class string: aDependent ]
+ 		ifFalse: [ aDependent asTask ].
+ 		
+ 	task author ifNil: [ task author: self author ].
+ 	
+ 	^ task!
- 	aDependent isString ifTrue: [ ^ self class string: aDependent ].
-  
- 	^ aDependent asTask!



More information about the Packages mailing list