[squeak-dev] The Trunk: Collections-ct.926.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Apr 7 21:02:33 UTC 2022


Christoph Thiede uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-ct.926.mcz

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

Name: Collections-ct.926
Author: ct
Time: 6 March 2021, 5:02:21.740032 pm
UUID: 314b692a-8de7-6a46-80ad-9807771a7df2
Ancestors: Collections-jar.924

Implements missing HTML conversion on TextURL.

=============== Diff against Collections-jar.924 ===============

Item was added:
+ ----- Method: TextURL>>closeHtmlOn: (in category 'html') -----
+ closeHtmlOn: aStream
+ 
+ 	aStream nextPutAll: '</a>'.!

Item was added:
+ ----- Method: TextURL>>openHtmlOn: (in category 'html') -----
+ openHtmlOn: aStream
+ 
+ 	aStream
+ 		nextPutAll: '<a href="';
+ 		nextPutAll: self url;
+ 		nextPutAll: '">'.!



More information about the Squeak-dev mailing list