Seaside and HTML specials chars

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
7 messages Options
Reply | Threaded
Open this post in threaded view
|

Seaside and HTML specials chars

Olivier Auverlot
Hi,

Probably a stupid question but... how to use the HTML specials chars
with Seaside ? I'm french and for example, I want display an character
like "é".

When I use the HTML code (é), there is not interpreted but simply
displayed :-(

Best regards
Olivier

www.auverlot.fr
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

RE: Seaside and HTML specials chars

Boris Popov, DeepCove Labs (SNN)
Olivier,

Try,

html html: 'é'

Versus,

html text: 'é'

HTH,

-Boris

-----Original Message-----
From: [hidden email] [mailto:[hidden email]] On Behalf Of Olivier Auverlot
Sent: Monday, July 04, 2011 9:00 AM
To: [hidden email]
Subject: [Seaside] Seaside and HTML specials chars

Hi,

Probably a stupid question but... how to use the HTML specials chars with Seaside ? I'm french and for example, I want display an character like "é".

When I use the HTML code (é), there is not interpreted but simply displayed :-(

Best regards
Olivier

www.auverlot.fr
_______________________________________________
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
Reply | Threaded
Open this post in threaded view
|

Re: Seaside and HTML specials chars

Johan Brichau-2
In reply to this post by Olivier Auverlot

On 04 Jul 2011, at 15:00, Olivier Auverlot wrote:

> When I use the HTML code (é), there is not interpreted but simply displayed :-(

Some special characters are defined on the canvas already.
But for those that are not, you can:

canvas html: 'é'

cheers
Johan_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Seaside and HTML specials chars

Olivier Auverlot
In reply to this post by Boris Popov, DeepCove Labs (SNN)
Thanks Boris for your ultra fast response ;-)

> Olivier,
>
> Try,
>
> html html: 'é'
>
> Versus,
>
> html text: 'é'
>
this works for standard text but how to use heading brush ?

Olivier ;-)

www.auverlot.fr

> HTH,
>
> -Boris
>
> -----Original Message-----
> From: [hidden email] [mailto:[hidden email]] On Behalf Of Olivier Auverlot
> Sent: Monday, July 04, 2011 9:00 AM
> To: [hidden email]
> Subject: [Seaside] Seaside and HTML specials chars
>
> Hi,
>
> Probably a stupid question but... how to use the HTML specials chars with Seaside ? I'm french and for example, I want display an character like "é".
>
> When I use the HTML code (é), there is not interpreted but simply displayed :-(
>
> Best regards
> Olivier
>
> www.auverlot.fr
> _______________________________________________
> 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
Reply | Threaded
Open this post in threaded view
|

RE: Seaside and HTML specials chars

Boris Popov, DeepCove Labs (SNN)
html heading
 level: 1;
 with: [html html: 'é']

-Boris

-----Original Message-----
From: [hidden email] [mailto:[hidden email]] On Behalf Of Olivier Auverlot
Sent: Monday, July 04, 2011 9:15 AM
To: Seaside - general discussion
Subject: Re: [Seaside] Seaside and HTML specials chars

Thanks Boris for your ultra fast response ;-)

> Olivier,
>
> Try,
>
> html html: 'é'
>
> Versus,
>
> html text: 'é'
>
this works for standard text but how to use heading brush ?

Olivier ;-)

www.auverlot.fr

> HTH,
>
> -Boris
>
> -----Original Message-----
> From: [hidden email] [mailto:[hidden email]] On Behalf Of Olivier Auverlot
> Sent: Monday, July 04, 2011 9:00 AM
> To: [hidden email]
> Subject: [Seaside] Seaside and HTML specials chars
>
> Hi,
>
> Probably a stupid question but... how to use the HTML specials chars with Seaside ? I'm french and for example, I want display an character like "é".
>
> When I use the HTML code (é), there is not interpreted but simply displayed :-(
>
> Best regards
> Olivier
>
> www.auverlot.fr
> _______________________________________________
> 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
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Seaside and HTML specials chars

Olivier Auverlot
In reply to this post by Johan Brichau-2
Le 04/07/11 15:03, Johan Brichau a écrit :

> On 04 Jul 2011, at 15:00, Olivier Auverlot wrote:
>
>> When I use the HTML code (é), there is not interpreted but simply displayed :-(
> Some special characters are defined on the canvas already.
> But for those that are not, you can:
>
> canvas html: 'é'
>
> cheers
> Johan_______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Thanks Johan ;-)
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Seaside and HTML specials chars

Olivier Auverlot
In reply to this post by Boris Popov, DeepCove Labs (SNN)
Le 04/07/11 15:16, Boris Popov, DeepCove Labs a écrit :
> html heading
>   level: 1;
>   with: [html html: 'é']
Thanks Boris. I'm now an happy man :-)

Best regards
Olivier

www.auverlot.fr
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside