CharacterEncoderImplementations__KOI8_R.st
changeset 8114 05274a80fcc4
parent 8081 b468050174a9
child 8148 dbf64e3142d9
equal deleted inserted replaced
8113:4023585d148d 8114:05274a80fcc4
     1 "{ Encoding: utf8 }"
       
     2 
       
     3 "{ Package: 'stx:libbasic' }"
     1 "{ Package: 'stx:libbasic' }"
     4 
     2 
     5 "{ NameSpace: CharacterEncoderImplementations }"
     3 "{ NameSpace: CharacterEncoderImplementations }"
     6 
     4 
     7 SingleByteEncoder subclass:#KOI8_R
     5 SingleByteEncoder subclass:#KOI8_R
   324 0xFD    0x0429  #       CYRILLIC CAPITAL LETTER SHCHA
   322 0xFD    0x0429  #       CYRILLIC CAPITAL LETTER SHCHA
   325 0xFE    0x0427  #       CYRILLIC CAPITAL LETTER CHE
   323 0xFE    0x0427  #       CYRILLIC CAPITAL LETTER CHE
   326 0xFF    0x042A  #       CYRILLIC CAPITAL LETTER HARD SIGN
   324 0xFF    0x042A  #       CYRILLIC CAPITAL LETTER HARD SIGN
   327 
   325 
   328 "
   326 "
   329 ! !
       
   330 
       
   331 !KOI8_R class methodsFor:'queries'!
       
   332 
       
   333 namesOfEncoding
       
   334     ^ #( #'koi8-r' 'cp878' )
       
   335 !
       
   336 
       
   337 userFriendlyNameOfEncoding
       
   338     ^ 'Cyrillic'
       
   339 ! !
   327 ! !
   340 
   328 
   341 !KOI8_R methodsFor:'encoding & decoding'!
   329 !KOI8_R methodsFor:'encoding & decoding'!
   342 
   330 
   343 decode:codeArg
   331 decode:codeArg
   836 ! !
   824 ! !
   837 
   825 
   838 !KOI8_R class methodsFor:'documentation'!
   826 !KOI8_R class methodsFor:'documentation'!
   839 
   827 
   840 version
   828 version
   841     ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderImplementations__KOI8_R.st,v 1.1 2004-03-05 17:26:56 cg Exp $'
   829     ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderImplementations__KOI8_R.st,v 1.2 2004-03-08 17:08:52 cg Exp $'
   842 ! !
   830 ! !