smalltalk
/
osmo-st-all
Archived
1
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
osmo-st-all/iliad-stable/Core/Elements/Extensions.st

13 lines
234 B
Smalltalk
Raw Normal View History

2009-06-18 20:14:52 +00:00
Object extend [
printHtmlOn: aStream [
<category: '*Iliad-Core'>
2009-06-22 00:52:33 +00:00
self displayOn: aStream
2009-06-18 20:14:52 +00:00
]
printEncodedOn: aStream [
<category: '*Iliad-Core'>
Iliad.ILEncoder encodeForHTTP: self greaseString on: aStream
]
2009-06-18 20:14:52 +00:00
]