Jan. 19, 2011
8:52 p.m.
Updates: Status: Closed Comment #1 on issue 3554 by stephane...@gmail.com: CP1252TextConverter new does not work http://code.google.com/p/pharo/issues/detail?id=3554 Apparently this is from Soup and not from Pharo. I fixed it that way nextPut: aCharacter toStream: aStream aStream isBinary ifTrue: [^ aCharacter storeBinaryOn: aStream]. aCharacter charCode < 128 ifTrue: [aStream basicNextPut: aCharacter] ifFalse: [aStream basicNextPut: ((Character value: (self fromSqueak: aCharacter)))]. But not sure.