[squeak-dev] The Inbox: System-dtl.655.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jan 2 20:54:11 UTC 2014


David T. Lewis uploaded a new version of System to project The Inbox:
http://source.squeak.org/inbox/System-dtl.655.mcz

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

Name: System-dtl.655
Author: dtl
Time: 2 January 2014, 3:53:35.52 pm
UUID: 5f60ccc7-5cb7-419c-a79d-c6ebbaf5b3da
Ancestors: System-tpr.654

Provide TextAttributesScanningTest to verify text attribute filein and fileout.

Five tests are marked as expected failures. These are tests for text attributes that are apparently unused, and that are likely candidates for removal from the image.

There is one failure in a test for PluggableTextAttribute, which is a kind of text attribute that is used by SqueakMap. This is probably a legitimate failure that should be fixed.

=============== Diff against System-tpr.654 ===============

Item was added:
+ TextURL subclass: #TextSqkProjectLink
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'System-Support'!

Item was added:
+ ----- Method: TextSqkProjectLink class>>scanCharacter (in category 'fileIn/Out') -----
+ scanCharacter
+ 	"The character used to identify a subclass of TextAttribute for filein and fileout"
+ 	^$p!

Item was added:
+ ----- Method: TextSqkProjectLink>>actOnClickFor: (in category 'as yet unclassified') -----
+ actOnClickFor: textMorph
+ 
+ 	Project current enterIfThereOrFind: url.
+ 	^ true!

Item was added:
+ ----- Method: TextSqkProjectLink>>analyze: (in category 'as yet unclassified') -----
+ analyze: aString
+ 
+ 	^url := aString!



More information about the Squeak-dev mailing list