Changeset 87

Show
Ignore:
Timestamp:
03/15/04 18:26:00 (4 years ago)
Author:
ug
Message:

Added latin1,2,3 to encodings list

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 05/devel/kombilo.py

    r78 r87  
    56475647        self.encodingVar = StringVar() 
    56485648        if cjkcodecs_available: 
    5649             enclist = ['utf-8', 'gb2312', 'gbk', 'gb18030', 'hz', 
     5649            enclist = ['utf-8', 'latin1', 'latin2', 'latin3', 'gb2312', 'gbk', 'gb18030', 'hz', 
    56505650                       'big5', 'cp950', 'cp932',  'shift-jis', 'shift-jisx0213', 
    56515651                       'euc-jp', 'euc-jisx0213', 'iso-2022-jp', 'iso-2022-jp-1', 
     
    56535653                       'cp949', 'euc-kr', 'johab', 'iso-2022-kr'] 
    56545654        else: 
    5655             enclist = ['utf-8'
     5655            enclist = ['utf-8', 'latin1', 'latin2', 'latin3'
    56565656        encodingMenu = Pmw.OptionMenu(f3, labelpos='w', label_text='Encoding:', 
    56575657                                      menubutton_textvariable = self.encodingVar,