The Trunk: Collections-ct.1075.mcz

[email protected] Tue, 4 Aug 2026 08:31:47 0000
Newsgroups gmane.comp.lang.smalltalk.squeak.general
Message-ID <[email protected]>
Marcel Taeumel uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-ct.1075.mcz

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

Name: Collections-ct.1075
Author: ct
Time: 30 November 2024, 1:48:46.361107 am
UUID: c35d02f7-0e99-416b-a40a-ab1f2cf1186c
Ancestors: Collections-ct.1074

Fixes HTML conversion for attributes that do not override #openHtmlOn:/#closeHtmlOn:.

=============== Diff against Collections-ct.1074 ===============

Item was changed:
  ----- Method: HtmlReadWriter>>writeEndTagFor: (in category 'writing') -----
  writeEndTagFor: aTextAttribute
  
  	[aTextAttribute closeHtmlOn: self]
+ 		on: MessageNotUnderstood , SubclassResponsibility do: []!
- 		on: MessageNotUnderstood do: []!

Item was changed:
  ----- Method: HtmlReadWriter>>writeStartTagFor: (in category 'writing') -----
  writeStartTagFor: aTextAttribute
  
  	[aTextAttribute openHtmlOn: self]
+ 		on: MessageNotUnderstood , SubclassResponsibility do: [].!
- 		on: MessageNotUnderstood do: [].!

Squeak-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]