From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-ID: <001301c18d5d$0494a550$0201a8c0@calex> From: "AVL" To: MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Subject: [mdk-re] =?koi8-r?B?18/UIMfBxM/T1Nggy8HLwdEg1yBleHBhdC4=?= Sender: mandrake-russian-admin@altlinux.ru Errors-To: mandrake-russian-admin@altlinux.ru X-BeenThere: mandrake-russian@altlinux.ru X-Mailman-Version: 2.0 Precedence: bulk Reply-To: mandrake-russian@altlinux.ru List-Help: List-Post: List-Subscribe: , List-Id: Linux-Mandrake RE / ALT Linux discussion list List-Unsubscribe: , List-Archive: Date: Tue Dec 25 18:56:01 2001 X-Original-Date: Tue, 25 Dec 2001 18:58:25 +0300 Archived-At: List-Archive: List-Post: а через этот парсер xml все и идет в XRC в wxWindows. ----------------------------------------------------------- How can I get expat to deal with non-ASCII characters? By default, expat assumes that documents are encoded in UTF-8. In UTF-8, ASCII characters are represented by a single byte as they would be in ASCII, but non-ASCII characters are represented by a sequence of two or more bytes all with the 8th bit set. The encoding most widely used for European languages is ISO 8859-1 which is not compatible with UTF-8. To use this encoding, expat must be told either by supplying an argument of "iso-8859-1" to XML_ParserCreate, or by starting the document with . What encodings does expat support? expat has built in support for the following encodings: utf-8 utf-16 iso-8859-1 us-ascii Additional encodings can be supported by using XML_SetUnknownEncodingHandler. ---------------------------------------------------------------------------- ----------------- с другой стороы, есть там в исходниках вот что: ascii.h ------------------------ ..................... #define ASCII_A 0x41 #define ASCII_B 0x42 #define ASCII_C 0x43 #define ASCII_D 0x44 #define ASCII_E 0x45 #define ASCII_F 0x46 #define ASCII_G 0x47 #define ASCII_H 0x48 #define ASCII_I 0x49 .................. ------------------------ может также можно и cp1251 с koi8-r задать?