The Trunk: System-dtl.657.mcz

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

The Trunk: System-dtl.657.mcz

commits-2
David T. Lewis uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-dtl.657.mcz

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

Name: System-dtl.657
Author: dtl
Time: 3 January 2014, 8:08:30.199 pm
UUID: c1625303-f6e5-44cc-b6c6-2210d38ad8f6
Ancestors: System-dtl.656, System-fbs.656

Merge System-dtl.656 from inbox

TextSqkProjectLink is a text attribute that controls project entry and is thus associated with Project.. Move it from Collections-Text to System-Support.

=============== Diff against System-fbs.656 ===============

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 'mouse events') -----
+ actOnClickFor: textMorph
+
+ Project current enterIfThereOrFind: url.
+ ^ true!

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