vote up 1 vote down star

I support a website written in Tcl which displays data in Traditional Chinese (big5). We then have a Java servlet, using the translation code from mandarintools.com, to translate a page request into Simplified Chinese. The conversion as specified to the translation code is from UTF-8 to UTF-8S; Java is apparently correctly translating the data to UTF-8 as it comes in.

The Java translation code works but is slow, and since the website is written in Tcl someone on another list suggested I try using that. Unfortunately, Tcl doesn't support UTF-8S and I have been unable to figure out what translation to use in its place. I've tried gb2312, gb2312-raw,gb1988, euc-cn... all result in gibberish. My assumption is that Tcl is also translating to UTF-8 as it comes in, though I have tried converting from big5 first and it doesn't help.

My test code looks like this:

set page_body [ns_httpget http://www.mysite.com]
set translated_page_body [encoding convertto gb2312 $page_body]
ns_write $translated_page_body

I have also tried

set page_body [ns_httpget http://www.mysite.com]
set translated_page_body [encoding convertto gb2312 [encoding convertfrom big5 $page_body]]
ns_write $translated_page_body

But it didn't change anything.

Does anyone out there have enough experience with this to help me figure it out?

flag

2 Answers

vote up 0 vote down

FYI for completeness' sake, I've been told by Tcl experts that you can't do the conversion this way, it has to be done via character replacement.

link|flag
vote up 0 vote down

By any chance, are you grabbing your data from Oracle?

If so, see if you can use the CONVERT function to convert to from "utf8" to "al32utf8", which is the true Utf8 standard and which Tcl should work-with seamlessly.

If not, well, I guess I'll wait for you comment(s).

link|flag
Nope, I'm actually requesting a page via http - that's the first line in each of the code snippets above. The data comes out of Postgres originally, is assembled into the Traditional Chinese page, and then I need to take that and make a Simplified version of it. – Janine Jun 23 at 23:33
Ahh, I completely misunderstood. I don't know if this is related, but at least for Tcl 8.3 and Tcl 8.4 there were problems with the gb2312 locales (the article also mentions a work-around). aspn.activestate.com/ASPN/Mail/… I hope that helps. – hythlodayr Jun 24 at 2:12
Looked promising but I've tried it and no joy. I'm using Tcl 8.5.7, since that might make a difference. – Janine Jun 25 at 19:09
I'm afraid I've hit a wall. All I can do at this point is refer you to the Tcl newsgroup. Some of the big Tcl guys (e.g., Kevin Kenny) are quite responsive, so you may some luck there. Sorry. – hythlodayr Jun 29 at 14:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.