Hi
For a test I create a korean string using: String with: (Character value: 50976) with: (Character value: 47532) with: (Character value: 47484) Should this work everywhere? Cheers Philippe _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Works on VisualWorks 7.5,
Cheers! -Boris -- +1.604.689.0322 DeepCove Labs Ltd. 4th floor 595 Howe Street Vancouver, Canada V6C 2T5 http://tinyurl.com/r7uw4 [hidden email] CONFIDENTIALITY NOTICE This email is intended only for the persons named in the message header. Unless otherwise indicated, it contains information that is private and confidential. If you have received it in error, please notify the sender and delete the entire message including any attachments. Thank you. > -----Original Message----- > From: [hidden email] [mailto:seaside- > [hidden email]] On Behalf Of Philippe Marschall > Sent: Tuesday, July 24, 2007 1:13 PM > To: Seaside - general discussion > Subject: [Seaside] Creating Korean String > > Hi > > For a test I create a korean string using: > > String with: (Character value: 50976) with: (Character > value: 47532) with: (Character value: 47484) > > Should this work everywhere? > > Cheers > Philippe > _______________________________________________ > Seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Philippe Marschall
it seems that it does not work. My question is that what kind of encoding
does the string has? My image does have font for UTF8 encoded korean string. But your code does not show me a valid korean string. just '???' is displayed. ----- Original Message ----- From: Philippe Marschall <[hidden email]> To: Seaside - general discussion <[hidden email]> Sent: 07-07-25 05:13:06 Subject: Re: [Seaside] Creating Korean String Hi For a test I create a korean string using: String with: (Character value: 50976) with: (Character value: 47532) with: (Character value: 47484) Should this work everywhere? Cheers Philippe _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Philippe Marschall
it seems that it does not work. My question is that what kind of encoding
does the string has? My image does have font for UTF8 encoded korean string. But your code does not show me a valid korean string. just '???' is displayed. ----- Original Message ----- From: Philippe Marschall <[hidden email]> To: Seaside - general discussion <[hidden email]> Sent: 07-07-25 05:13:06 Subject: Re: [Seaside] Creating Korean String Hi For a test I create a korean string using: String with: (Character value: 50976) with: (Character value: 47532) with: (Character value: 47484) Should this work everywhere? Cheers Philippe _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Chun, Sungjin
2007/7/25, "S.J.Chun" <[hidden email]>:
> it seems that it does not work. > My question is that what kind of encoding > does the string has? "new Squeak" > My image does have font for UTF8 encoded korean > string. But your code does not show me a valid korean string. just > '???' is displayed. That is not enough proof to me that creating the string doesn't work. Cheers Philippe > ----- Original Message ----- > From: Philippe Marschall <[hidden email]> > To: Seaside - general discussion <[hidden email]> > Sent: 07-07-25 05:13:06 > Subject: Re: [Seaside] Creating Korean String > > Hi > > For a test I create a korean string using: > > String with: (Character value: 50976) with: (Character > value: 47532) with: (Character value: 47484) > > Should this work everywhere? > > Cheers > Philippe > _______________________________________________ > Seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > > _______________________________________________ > Seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Philippe Marschall
"new Squeak" means it uses other encoding system than one in 3.8? Hmm if so,
my result is very normal :-) ----- Original Message ----- From: Philippe Marschall <[hidden email]> To: "\"S.J.Chun\"" <[hidden email]>, Seaside - general discussion <[hidden email]> Sent: 07-07-26 02:49:39 Subject: Re: Re: [Seaside] Creating Korean String 2007/7/25, "S.J.Chun" <[hidden email]>: > it seems that it does not work. > My question is that what kind of encoding > does the string has? "new Squeak" > My image does have font for UTF8 encoded korean > string. But your code does not show me a valid korean string. just > '???' is displayed. That is not enough proof to me that creating the string doesn't work. Cheers Philippe > ----- Original Message ----- > From: Philippe Marschall <[hidden email]> > To: Seaside - general discussion <[hidden email]> > Sent: 07-07-25 05:13:06 > Subject: Re: [Seaside] Creating Korean String > > Hi > > For a test I create a korean string using: > > String with: (Character value: 50976) with: (Character > value: 47532) with: (Character value: 47484) > > Should this work everywhere? > > Cheers > Philippe > _______________________________________________ > Seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > > _______________________________________________ > Seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Philippe Marschall
Philippe,
> For a test I create a korean string using: > > String with: (Character value: 50976) with: (Character > value: 47532) with: (Character value: 47484) > > Should this work everywhere? It depends on what you mean by "work". In anycase, these should be created with leadingChar:code: like (assuming these code point are valid): String with: (Character leadingChar: 7 code: 50976) with: (Character leadingChar: 7 code: 47532) with: (Character leadingChar: 7 code: 47484) Then, you should be able to render the string with existing font file for Korean. -- Yoshiki _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
2007/7/30, Yoshiki Ohshima <[hidden email]>:
> Philippe, > > > For a test I create a korean string using: > > > > String with: (Character value: 50976) with: (Character > > value: 47532) with: (Character value: 47484) > > > > Should this work everywhere? > > It depends on what you mean by "work". In anycase, these should be > created with leadingChar:code: like (assuming these code point are valid): That's not how it will be created when I a web application is used. Philippe > String with: (Character leadingChar: 7 code: 50976) with: (Character > leadingChar: 7 code: 47532) with: (Character leadingChar: 7 code: > 47484) > > Then, you should be able to render the string with existing font file for Korean. > > -- Yoshiki > _______________________________________________ > Seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Free forum by Nabble | Edit this page |