The Inbox: Collections-ct.926.mcz

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

The Inbox: Collections-ct.926.mcz

commits-2
Christoph Thiede uploaded a new version of Collections to project The Inbox:
http://source.squeak.org/inbox/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: '">'.!