Re: default pageEncoding

2002-07-30 Thread Daniel Bruce Lynes
On Monday 22 July 2002 23:26, Dmitry Melekhov wrote: Eric Leung wrote: Hi, yes, just like HTML add a line like this: META HTTP-EQUIV=Content-Type Content=text/html; Charset=iso-8859-1 character set Eric I understand. But our devepopers are too lazy ;-) They

default pageEncoding

2002-07-23 Thread Dmitry Melekhov
Hello! Is it possible to set default pageEncoding for jsps? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: default pageEncoding

2002-07-23 Thread Eric Leung
Hi, yes, just like HTML add a line like this: META HTTP-EQUIV=Content-Type Content=text/html; Charset=iso-8859-1 character set Eric Hello! Is it possible to set default pageEncoding for jsps? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e

Re: default pageEncoding

2002-07-23 Thread Dmitry Melekhov
to configure Tomcat (something else) to set default encoding? Hello! Is it possible to set default pageEncoding for jsps? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- To unsubscribe, e-mail: mailto

AW: default pageEncoding

2002-07-23 Thread Ralph Einfeldt
AFAIK it not possible to set the default encoding by configuration. But you could write a servlet filter that does this. -Ursprungliche Nachricht- Von: Dmitry Melekhov [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 23. Juli 2002 08:26 An: Tomcat Users List Betreff: Re: default

Re: AW: default pageEncoding

2002-07-23 Thread Dmitry Melekhov
? -Ursprungliche Nachricht- Von: Dmitry Melekhov [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 23. Juli 2002 08:26 An: Tomcat Users List Betreff: Re: default pageEncoding I understand. But our devepopers are too lazy ;-) They don't want to write this line in every jsp... Is it possible to configure

AW: AW: default pageEncoding

2002-07-23 Thread Ralph Einfeldt
]] Gesendet: Dienstag, 23. Juli 2002 08:35 An: Tomcat Users List Betreff: Re: AW: default pageEncoding Could you tell me how? As I understand, pageEncoding directive works at compile time and it is impossible to do this with filter? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

Re: AW: AW: default pageEncoding

2002-07-23 Thread Dmitry Melekhov
Ralph Einfeldt wrote: Sorry, my answer was a bit to fast. There is more than one aspect of the encoding: - Compiletime This aspect defines which character set is/was used to write the source of the page. That's what you can define with the -encoding option of javac. I'm not

Re: AW: default pageEncoding

2002-07-23 Thread Craig R. McClanahan
On Tue, 23 Jul 2002, Dmitry Melekhov wrote: Date: Tue, 23 Jul 2002 11:35:27 +0500 From: Dmitry Melekhov [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: AW: default pageEncoding Ralph Einfeldt wrote: AFAIK