ProtoObjectObjectWAPresenterWAComponentWAEncodingTest
| instance | class |
|---|---|
| as yet unclassified | no messages
|
| as yet unclassified |
|---|
| renderContentOn: html |
| w allChars r | w := WriteStream on: String new. 32 to: 255 do: [ :c | w nextPut: c asCharacter ]. allChars := w contents. html code: [ html text: 'Start'; break. r := ReadStream on: allChars. [ r atEnd ] whileFalse: [ html text: (r next: 14); break. ]. html text: 'End'; break. ]. html text: 'Characters Encoded: '. 'Hello World' do: [ :c | html encodeCharacter: c ]. html break. |