Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Greeting. I was looking at the ipk

Status
Not open for further replies.

Bong

Programmer
Dec 22, 1999
2,063
US
Greeting.
I was looking at the ipkg download for Tcl to the arm processor (Zaurus). One package was Tcl and another was "encoding files". What are encoding files? Bob Rashkin
rrashkin@csc.com
 
As of Tcl 8.1, all Tcl strings are represented internally as Unicode characters, which is an encoding of the character sets used in virtually all of the world's major languages. But there are a lot of other encodings out there, like ISO 8859-1, used by many European languages, Shift-JIS and EUC-JP for Japanese characters, and Big5 for Chinese characters.

The encoding files are used by Tcl to map from these other encodings to Unicode, and vice versa. Assuming that your Tcl installation directory is $INSTALL, the encoding files are stored in the $INSTALL/lib/tclX.X/encodings directory.

The default installations of Tcl install all of the encoding files available. However, as I'm assuming that storage space is a lot tighter on a Zaurus, I'll bet that it gives you the option of installing only the encoding files you expect to use. But that's just a guess, as I've not looked at that distribution personally.

For far too much information on encodings and other aspects of Tcl internationalization support, you can read the "How to Use Tcl 8.1 Internationalization Features" document that I wrote while at Scriptics. It's available on the Tcl Developers Xchange ( at - Ken Jones, President, ken@avia-training.com
Avia Training and Consulting, 866-TCL-HELP (866-825-4357) US Toll free
415-643-8692 Voice
415-643-8697 Fax
 
Thanks. Bob Rashkin
rrashkin@csc.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top