Is this a bug in Wicket?

2009-03-05 Thread rjilani

Hi: Gurus, I am trying to render a form and looks like wicket is not
rendering the form elements in right sequence, here is my markup that is
having the issues

 tr
tdSearch feed by name:/td
tdinput type=text wicket:id=feedName//td
/tr

tr

tdinput  type=radio / Match all
conditions/td
tdinput  type=radio / Match any
conditions/td
tdinput  type=radio / Match all news /td

/tr


here is the java code 

  add(new TextField(feedName, new Model()));

add(new RadioChoice(conditionChoice, new
Model(),conditionChoices ).setSuffix());

when I run the code I see the radio button choices before the text field;
any suggestions?

Thanks,
RJ.
-- 
View this message in context: 
http://www.nabble.com/Is-this-a-bug-in-Wicket--tp22356116p22356116.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Is this a bug in Wicket?

2009-03-05 Thread rmattler

Don't put the input  type=radio /  in a td.

Should be:



   tr
tdSearch feed by name:/td
tdinput type=text wicket:id=feedName//td
/tr

tr
 td
  
input  type=radio / Match all
conditions
input  type=radio / Match any
conditions
input  type=radio / Match all news  
 

/td
/tr




rjilani wrote:
 
 Hi: Gurus, I am trying to render a form and looks like wicket is not
 rendering the form elements in right sequence, here is my markup that is
 having the issues
 
  tr
 tdSearch feed by name:/td
 tdinput type=text wicket:id=feedName//td
 /tr
 
 tr
 
 tdinput  type=radio / Match all
 conditions/td
 tdinput  type=radio / Match any
 conditions/td
 tdinput  type=radio / Match all news /td
 
 /tr
 
 
 here is the java code 
 
   add(new TextField(feedName, new Model()));
 
 add(new RadioChoice(conditionChoice, new
 Model(),conditionChoices ).setSuffix());
 
 when I run the code I see the radio button choices before the text field;
 any suggestions?
 
 Thanks,
 RJ.
 

-- 
View this message in context: 
http://www.nabble.com/Is-this-a-bug-in-Wicket--tp22356116p22356561.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Is this a bug in Wicket?

2009-03-05 Thread rjilani

Mattler thanks for the tip, It did work like a charm, but I am bit confuse
about this behavior.

Regards,
RJ.


rmattler wrote:
 
 Don't put the input  type=radio /  in a td.
 
 Should be:
 
 
 
tr
 tdSearch feed by name:/td
 tdinput type=text wicket:id=feedName//td
 /tr
 
 tr
  td
   
 input  type=radio / Match all
 conditions
 input  type=radio / Match any
 conditions
 input  type=radio / Match all news

 
 /td
 /tr
 
 
 
 
 rjilani wrote:
 
 Hi: Gurus, I am trying to render a form and looks like wicket is not
 rendering the form elements in right sequence, here is my markup that is
 having the issues
 
  tr
 tdSearch feed by name:/td
 tdinput type=text
 wicket:id=feedName//td
 /tr
 
 tr
 
 tdinput  type=radio / Match all
 conditions/td
 tdinput  type=radio / Match any
 conditions/td
 tdinput  type=radio / Match all news /td
 
 /tr
 
 
 here is the java code 
 
   add(new TextField(feedName, new Model()));
 
 add(new RadioChoice(conditionChoice, new
 Model(),conditionChoices ).setSuffix());
 
 when I run the code I see the radio button choices before the text field;
 any suggestions?
 
 Thanks,
 RJ.
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Is-this-a-bug-in-Wicket--tp22356116p22356811.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Is this a bug in Wicket?

2009-03-05 Thread Eduardo Nunes
I understand what Mr. Mattler said but is it correct from the HTML
point of view? Anybody knows what the HTML specification says about
it?

On Thu, Mar 5, 2009 at 2:49 PM, rjilani jil...@lifebiosystems.com wrote:

 Mattler thanks for the tip, It did work like a charm, but I am bit confuse
 about this behavior.

 Regards,
 RJ.


 rmattler wrote:

 Don't put the input  type=radio /  in a td.

 Should be:



                    tr
                         tdSearch feed by name:/td
                         tdinput type=text wicket:id=feedName//td
                     /tr

                     tr
                          td

                                     input  type=radio / Match all
 conditions
                                     input  type=radio / Match any
 conditions
                                     input  type=radio / Match all news

                         /td
                     /tr




 rjilani wrote:

 Hi: Gurus, I am trying to render a form and looks like wicket is not
 rendering the form elements in right sequence, here is my markup that is
 having the issues

                      tr
                         tdSearch feed by name:/td
                         tdinput type=text
 wicket:id=feedName//td
                     /tr

                     tr

                         tdinput  type=radio / Match all
 conditions/td
                         tdinput  type=radio / Match any
 conditions/td
                         tdinput  type=radio / Match all news /td

                     /tr


 here is the java code

               add(new TextField(feedName, new Model()));

             add(new RadioChoice(conditionChoice, new
 Model(),conditionChoices ).setSuffix());

 when I run the code I see the radio button choices before the text field;
 any suggestions?

 Thanks,
 RJ.




 --
 View this message in context: 
 http://www.nabble.com/Is-this-a-bug-in-Wicket--tp22356116p22356811.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Is this a bug in Wicket?

2009-03-05 Thread Igor Vaynberg
you have two tds in your first tr, but 3 in your next one.

also wicket just generates the html, how the browser renders it is not
dependent on wicket.

-igor

On Thu, Mar 5, 2009 at 9:15 AM, rjilani jil...@lifebiosystems.com wrote:

 Hi: Gurus, I am trying to render a form and looks like wicket is not
 rendering the form elements in right sequence, here is my markup that is
 having the issues

                     tr
                        tdSearch feed by name:/td
                        tdinput type=text wicket:id=feedName//td
                    /tr

                    tr

                        tdinput  type=radio / Match all
 conditions/td
                        tdinput  type=radio / Match any
 conditions/td
                        tdinput  type=radio / Match all news /td

                    /tr


 here is the java code

              add(new TextField(feedName, new Model()));

            add(new RadioChoice(conditionChoice, new
 Model(),conditionChoices ).setSuffix());

 when I run the code I see the radio button choices before the text field;
 any suggestions?

 Thanks,
 RJ.
 --
 View this message in context: 
 http://www.nabble.com/Is-this-a-bug-in-Wicket--tp22356116p22356116.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Is this a bug in Wicket?

2009-03-05 Thread Cristiano Kliemann
Where is the 'conditionChoice' in the markup?

On Thu, Mar 5, 2009 at 2:15 PM, rjilani jil...@lifebiosystems.com wrote:


 Hi: Gurus, I am trying to render a form and looks like wicket is not
 rendering the form elements in right sequence, here is my markup that is
 having the issues

 tr
tdSearch feed by name:/td
tdinput type=text wicket:id=feedName//td
/tr

tr

tdinput  type=radio / Match all
 conditions/td
tdinput  type=radio / Match any
 conditions/td
tdinput  type=radio / Match all news /td

/tr


 here is the java code

  add(new TextField(feedName, new Model()));

add(new RadioChoice(conditionChoice, new
 Model(),conditionChoices ).setSuffix());

 when I run the code I see the radio button choices before the text field;
 any suggestions?

 Thanks,
 RJ.
 --
 View this message in context:
 http://www.nabble.com/Is-this-a-bug-in-Wicket--tp22356116p22356116.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-30 Thread Johan Compagner
Did you configure tomcat correctly for utf 8?
Search this list for the right settings

On 30/01/2009, Philipp Daumke dau...@averbis.de wrote:
 Hi all,

 when I enter German umlauts (e.g. äöü) in a wicket text field it's
 converted to äöü. Everything seems to be in UTF-8. I already
 tried to apply a filter as described in
 http://wiki.apache.org/tomcat/Tomcat/UTF-8 without success. Any ideas?

 Thanks for your help
 Philipp
 --

 Averbis GmbH
 c/o Klinikum der Albert-Ludwigs-Universität
 Stefan-Meier-Strasse 26
 D-79104 Freiburg

 Fon: +49 (0) 761 - 203 6707
 Fax: +49 (0) 761 - 203 6800
 E-Mail: dau...@averbis.de

 Geschäftsführer: Dr. med. Philipp Daumke, Kornél Markó
 Sitz der Gesellschaft: Freiburg i. Br.
 AG Freiburg i. Br., HRB 701080


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-30 Thread Philipp Daumke

Hi Jonas,

thanks for your help, but I think it doesn't help. Just to make sure 
that I understood the Application#init correctly, you meant to do it 
like this, right(?):


public class MyApp extends WebApplication {
  
   public void init()

   {
   getRequestCycleSettings().setResponseRequestEncoding(UTF-8);
   getMarkupSettings().setDefaultMarkupEncoding(UTF-8);
   }
  
   public Class getHomePage() {


   return Index.class;
   }
}

Still, it seems to convert my code from latin1 to utf8, even though I 
enter utf8-text.

Thanks for further help
Philipp

Hi,

have you tried setting

getRequestCycleSettings().setResponseRequestEncoding(UTF-8);
getMarkupSettings().setDefaultMarkupEncoding(UTF-8);

in your Application#init

If you don't set the default markup encoding explicitly, the default
for it is the 'os provided encoding' (see:
IMarkupSettings#getDefaultMarkupEncoding)

cheers,
Jonas



On Fri, Jan 30, 2009 at 1:02 AM, Philipp Daumke dau...@averbis.de wrote:
  

Hi Mathias,

'äöü' is actually already converted to 'äöü' when I add a breakpoint at
the onSubmit method of my form (so right when I get the input of the text
field from my model).

My whole eclipse is in UTF-8, Wicket writes UTF-8 to each HTML-Page, my
firefox says UTF-8. What I think is that Wicket or Tomcat treats my
UTF8-String äöü as an ISO-8859-1 String and converts it from iso to utf8, so
into 'äöü'. When I copy 'äöü' into a tmp.txt file in unix-shell which
is in UTF-8 and do an iconv -futf8 -tlatin1 tmp.txt on it, the output is
'äöü' again.

Any idea what to do?
All the best
Philipp


Do you save it to a database and then display the text? How do you present
it?

  

--

Averbis GmbH
c/o Klinikum der Albert-Ludwigs-Universität
Stefan-Meier-Strasse 26
D-79104 Freiburg

Fon: +49 (0) 761 - 203 6707
Fax: +49 (0) 761 - 203 6800
E-Mail: dau...@averbis.de

Geschäftsführer: Dr. med. Philipp Daumke, Kornél Markó
Sitz der Gesellschaft: Freiburg i. Br.
AG Freiburg i. Br., HRB 701080


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org





-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

  



--

Averbis GmbH
c/o Klinikum der Albert-Ludwigs-Universität
Stefan-Meier-Strasse 26
D-79104 Freiburg

Fon: +49 (0) 761 - 203 6707
Fax: +49 (0) 761 - 203 6800
E-Mail: dau...@averbis.de

Geschäftsführer: Dr. med. Philipp Daumke, Kornél Markó
Sitz der Gesellschaft: Freiburg i. Br.
AG Freiburg i. Br., HRB 701080


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-30 Thread Johan Compagner
no i mean Tomcat settings not wicket settings

search for tomcat utf uri encoding in google

On Fri, Jan 30, 2009 at 09:11, Philipp Daumke dau...@averbis.de wrote:

 Hi Jonas,

 thanks for your help, but I think it doesn't help. Just to make sure that I
 understood the Application#init correctly, you meant to do it like this,
 right(?):

 public class MyApp extends WebApplication {
 public void init()
   {
   getRequestCycleSettings().setResponseRequestEncoding(UTF-8);
   getMarkupSettings().setDefaultMarkupEncoding(UTF-8);
   }
 public Class getHomePage() {

   return Index.class;
   }
 }

 Still, it seems to convert my code from latin1 to utf8, even though I enter
 utf8-text.
 Thanks for further help
 Philipp

  Hi,

 have you tried setting

 getRequestCycleSettings().setResponseRequestEncoding(UTF-8);
 getMarkupSettings().setDefaultMarkupEncoding(UTF-8);

 in your Application#init

 If you don't set the default markup encoding explicitly, the default
 for it is the 'os provided encoding' (see:
 IMarkupSettings#getDefaultMarkupEncoding)

 cheers,
 Jonas



 On Fri, Jan 30, 2009 at 1:02 AM, Philipp Daumke dau...@averbis.de
 wrote:


 Hi Mathias,

 'äöü' is actually already converted to 'äöü' when I add a breakpoint
 at
 the onSubmit method of my form (so right when I get the input of the text
 field from my model).

 My whole eclipse is in UTF-8, Wicket writes UTF-8 to each HTML-Page, my
 firefox says UTF-8. What I think is that Wicket or Tomcat treats my
 UTF8-String äöü as an ISO-8859-1 String and converts it from iso to utf8,
 so
 into 'äöü'. When I copy 'äöü' into a tmp.txt file in unix-shell
 which
 is in UTF-8 and do an iconv -futf8 -tlatin1 tmp.txt on it, the output
 is
 'äöü' again.

 Any idea what to do?
 All the best
 Philipp


 Do you save it to a database and then display the text? How do you
 present
 it?



 --

 Averbis GmbH
 c/o Klinikum der Albert-Ludwigs-Universität
 Stefan-Meier-Strasse 26
 D-79104 Freiburg

 Fon: +49 (0) 761 - 203 6707
 Fax: +49 (0) 761 - 203 6800
 E-Mail: dau...@averbis.de

 Geschäftsführer: Dr. med. Philipp Daumke, Kornél Markó
 Sitz der Gesellschaft: Freiburg i. Br.
 AG Freiburg i. Br., HRB 701080


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org





 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org





 --

 Averbis GmbH
 c/o Klinikum der Albert-Ludwigs-Universität
 Stefan-Meier-Strasse 26
 D-79104 Freiburg

 Fon: +49 (0) 761 - 203 6707
 Fax: +49 (0) 761 - 203 6800
 E-Mail: dau...@averbis.de

 Geschäftsführer: Dr. med. Philipp Daumke, Kornél Markó
 Sitz der Gesellschaft: Freiburg i. Br.
 AG Freiburg i. Br., HRB 701080


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-30 Thread Jonas
Hi Philipp,

yes, thats correct. We had similar problems and fixed it that way, but maybe
something else is still not set to UTF-8.
I assume you have configured your tomcat connector using
URIEncoding=UTF-8 (I think that is what Johan is referring to?).

Have you tried adding a meta tag to your markup? Something like
[meta http-equiv=Content-Type content=text/html; charset=UTF-8 /]

cheers,
Jonas

On Fri, Jan 30, 2009 at 9:11 AM, Philipp Daumke dau...@averbis.de wrote:
 Hi Jonas,

 thanks for your help, but I think it doesn't help. Just to make sure that I
 understood the Application#init correctly, you meant to do it like this,
 right(?):

 public class MyApp extends WebApplication {
 public void init()
   {
   getRequestCycleSettings().setResponseRequestEncoding(UTF-8);
   getMarkupSettings().setDefaultMarkupEncoding(UTF-8);
   }
 public Class getHomePage() {

   return Index.class;
   }
 }

 Still, it seems to convert my code from latin1 to utf8, even though I enter
 utf8-text.
 Thanks for further help
 Philipp

 Hi,

 have you tried setting

 getRequestCycleSettings().setResponseRequestEncoding(UTF-8);
 getMarkupSettings().setDefaultMarkupEncoding(UTF-8);

 in your Application#init

 If you don't set the default markup encoding explicitly, the default
 for it is the 'os provided encoding' (see:
 IMarkupSettings#getDefaultMarkupEncoding)

 cheers,
 Jonas



 On Fri, Jan 30, 2009 at 1:02 AM, Philipp Daumke dau...@averbis.de wrote:


 Hi Mathias,

 'äöü' is actually already converted to 'äöü' when I add a breakpoint
 at
 the onSubmit method of my form (so right when I get the input of the text
 field from my model).

 My whole eclipse is in UTF-8, Wicket writes UTF-8 to each HTML-Page, my
 firefox says UTF-8. What I think is that Wicket or Tomcat treats my
 UTF8-String äöü as an ISO-8859-1 String and converts it from iso to utf8,
 so
 into 'äöü'. When I copy 'äöü' into a tmp.txt file in unix-shell
 which
 is in UTF-8 and do an iconv -futf8 -tlatin1 tmp.txt on it, the output
 is
 'äöü' again.

 Any idea what to do?
 All the best
 Philipp


 Do you save it to a database and then display the text? How do you
 present
 it?



 --

 Averbis GmbH
 c/o Klinikum der Albert-Ludwigs-Universität
 Stefan-Meier-Strasse 26
 D-79104 Freiburg

 Fon: +49 (0) 761 - 203 6707
 Fax: +49 (0) 761 - 203 6800
 E-Mail: dau...@averbis.de

 Geschäftsführer: Dr. med. Philipp Daumke, Kornél Markó
 Sitz der Gesellschaft: Freiburg i. Br.
 AG Freiburg i. Br., HRB 701080


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --

 Averbis GmbH
 c/o Klinikum der Albert-Ludwigs-Universität
 Stefan-Meier-Strasse 26
 D-79104 Freiburg

 Fon: +49 (0) 761 - 203 6707
 Fax: +49 (0) 761 - 203 6800
 E-Mail: dau...@averbis.de

 Geschäftsführer: Dr. med. Philipp Daumke, Kornél Markó
 Sitz der Gesellschaft: Freiburg i. Br.
 AG Freiburg i. Br., HRB 701080


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-30 Thread Philipp Daumke

Hi Jonas, hi Johann,

grrh, I forgot to set URIEncoding=UTF-8. Now it works, thank you for 
your help.


All the best
Philipp



Hi Philipp,

yes, thats correct. We had similar problems and fixed it that way, but maybe
something else is still not set to UTF-8.
I assume you have configured your tomcat connector using
URIEncoding=UTF-8 (I think that is what Johan is referring to?).

Have you tried adding a meta tag to your markup? Something like
[meta http-equiv=Content-Type content=text/html; charset=UTF-8 /]

cheers,
Jonas

On Fri, Jan 30, 2009 at 9:11 AM, Philipp Daumke dau...@averbis.de wrote:
  

Hi Jonas,

thanks for your help, but I think it doesn't help. Just to make sure that I
understood the Application#init correctly, you meant to do it like this,
right(?):

public class MyApp extends WebApplication {
public void init()
  {
  getRequestCycleSettings().setResponseRequestEncoding(UTF-8);
  getMarkupSettings().setDefaultMarkupEncoding(UTF-8);
  }
public Class getHomePage() {

  return Index.class;
  }
}

Still, it seems to convert my code from latin1 to utf8, even though I enter
utf8-text.
Thanks for further help
Philipp


Hi,

have you tried setting

getRequestCycleSettings().setResponseRequestEncoding(UTF-8);
getMarkupSettings().setDefaultMarkupEncoding(UTF-8);

in your Application#init

If you don't set the default markup encoding explicitly, the default
for it is the 'os provided encoding' (see:
IMarkupSettings#getDefaultMarkupEncoding)

cheers,
Jonas



On Fri, Jan 30, 2009 at 1:02 AM, Philipp Daumke dau...@averbis.de wrote:

  

Hi Mathias,

'äöü' is actually already converted to 'äöü' when I add a breakpoint
at
the onSubmit method of my form (so right when I get the input of the text
field from my model).

My whole eclipse is in UTF-8, Wicket writes UTF-8 to each HTML-Page, my
firefox says UTF-8. What I think is that Wicket or Tomcat treats my
UTF8-String äöü as an ISO-8859-1 String and converts it from iso to utf8,
so
into 'äöü'. When I copy 'äöü' into a tmp.txt file in unix-shell
which
is in UTF-8 and do an iconv -futf8 -tlatin1 tmp.txt on it, the output
is
'äöü' again.

Any idea what to do?
All the best
Philipp



Do you save it to a database and then display the text? How do you
present
it?


  

--

Averbis GmbH
c/o Klinikum der Albert-Ludwigs-Universität
Stefan-Meier-Strasse 26
D-79104 Freiburg

Fon: +49 (0) 761 - 203 6707
Fax: +49 (0) 761 - 203 6800
E-Mail: dau...@averbis.de

Geschäftsführer: Dr. med. Philipp Daumke, Kornél Markó
Sitz der Gesellschaft: Freiburg i. Br.
AG Freiburg i. Br., HRB 701080


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org





-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


  

--

Averbis GmbH
c/o Klinikum der Albert-Ludwigs-Universität
Stefan-Meier-Strasse 26
D-79104 Freiburg

Fon: +49 (0) 761 - 203 6707
Fax: +49 (0) 761 - 203 6800
E-Mail: dau...@averbis.de

Geschäftsführer: Dr. med. Philipp Daumke, Kornél Markó
Sitz der Gesellschaft: Freiburg i. Br.
AG Freiburg i. Br., HRB 701080


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org





-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

  



--

Averbis GmbH
c/o Klinikum der Albert-Ludwigs-Universität
Stefan-Meier-Strasse 26
D-79104 Freiburg

Fon: +49 (0) 761 - 203 6707
Fax: +49 (0) 761 - 203 6800
E-Mail: dau...@averbis.de

Geschäftsführer: Dr. med. Philipp Daumke, Kornél Markó
Sitz der Gesellschaft: Freiburg i. Br.
AG Freiburg i. Br., HRB 701080


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-30 Thread Thomas Singer
We had similar problems and by changing

 Connector port=80/

to

 Connector port=80 URIEncoding=UTF-8/

in the tomcat/conf/server.xml fixed the problem.

Tom


Johan Compagner wrote:
 Did you configure tomcat correctly for utf 8?
 Search this list for the right settings
 
 On 30/01/2009, Philipp Daumke dau...@averbis.de wrote:
 Hi all,

 when I enter German umlauts (e.g. äöü) in a wicket text field it's
 converted to äöü. Everything seems to be in UTF-8. I already
 tried to apply a filter as described in
 http://wiki.apache.org/tomcat/Tomcat/UTF-8 without success. Any ideas?

 Thanks for your help
 Philipp
 --

 Averbis GmbH
 c/o Klinikum der Albert-Ludwigs-Universität
 Stefan-Meier-Strasse 26
 D-79104 Freiburg

 Fon: +49 (0) 761 - 203 6707
 Fax: +49 (0) 761 - 203 6800
 E-Mail: dau...@averbis.de

 Geschäftsführer: Dr. med. Philipp Daumke, Kornél Markó
 Sitz der Gesellschaft: Freiburg i. Br.
 AG Freiburg i. Br., HRB 701080


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-29 Thread Mathias P.W Nilsson

Do you save it to a database and then display the text? How do you present
it?
-- 
View this message in context: 
http://www.nabble.com/UTF-8-bug-in-wicket--Or-in-Tomcat--tp21738467p21738754.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-29 Thread Philipp Daumke

Hi Mathias,

'äöü' is actually already converted to 'äöü' when I add a breakpoint 
at the onSubmit method of my form (so right when I get the input of the 
text field from my model).


My whole eclipse is in UTF-8, Wicket writes UTF-8 to each HTML-Page, my 
firefox says UTF-8. What I think is that Wicket or Tomcat treats my 
UTF8-String äöü as an ISO-8859-1 String and converts it from iso to 
utf8, so into 'äöü'. When I copy 'äöü' into a tmp.txt file in 
unix-shell which is in UTF-8 and do an iconv -futf8 -tlatin1 tmp.txt 
on it, the output is 'äöü' again.


Any idea what to do?
All the best
Philipp

Do you save it to a database and then display the text? How do you present
it?
  



--

Averbis GmbH
c/o Klinikum der Albert-Ludwigs-Universität
Stefan-Meier-Strasse 26
D-79104 Freiburg

Fon: +49 (0) 761 - 203 6707
Fax: +49 (0) 761 - 203 6800
E-Mail: dau...@averbis.de

Geschäftsführer: Dr. med. Philipp Daumke, Kornél Markó
Sitz der Gesellschaft: Freiburg i. Br.
AG Freiburg i. Br., HRB 701080


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-29 Thread Marc Ende

Hi Philipp,

are your texts are stored in a database? Then you've got two more points 
where you can search:

The encoding of the table and the encoding of the connection.
Do you've got the same issues with the templates?

Marc

Philipp Daumke schrieb:

Hi Mathias,

'äöü' is actually already converted to 'äöü' when I add a 
breakpoint at the onSubmit method of my form (so right when I get the 
input of the text field from my model).


My whole eclipse is in UTF-8, Wicket writes UTF-8 to each HTML-Page, 
my firefox says UTF-8. What I think is that Wicket or Tomcat treats my 
UTF8-String äöü as an ISO-8859-1 String and converts it from iso to 
utf8, so into 'äöü'. When I copy 'äöü' into a tmp.txt file in 
unix-shell which is in UTF-8 and do an iconv -futf8 -tlatin1 tmp.txt 
on it, the output is 'äöü' again.


Any idea what to do?
All the best
Philipp
Do you save it to a database and then display the text? How do you 
present

it?
  






-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-29 Thread Jonas
Hi,

have you tried setting

getRequestCycleSettings().setResponseRequestEncoding(UTF-8);
getMarkupSettings().setDefaultMarkupEncoding(UTF-8);

in your Application#init

If you don't set the default markup encoding explicitly, the default
for it is the 'os provided encoding' (see:
IMarkupSettings#getDefaultMarkupEncoding)

cheers,
Jonas



On Fri, Jan 30, 2009 at 1:02 AM, Philipp Daumke dau...@averbis.de wrote:
 Hi Mathias,

 'äöü' is actually already converted to 'äöü' when I add a breakpoint at
 the onSubmit method of my form (so right when I get the input of the text
 field from my model).

 My whole eclipse is in UTF-8, Wicket writes UTF-8 to each HTML-Page, my
 firefox says UTF-8. What I think is that Wicket or Tomcat treats my
 UTF8-String äöü as an ISO-8859-1 String and converts it from iso to utf8, so
 into 'äöü'. When I copy 'äöü' into a tmp.txt file in unix-shell which
 is in UTF-8 and do an iconv -futf8 -tlatin1 tmp.txt on it, the output is
 'äöü' again.

 Any idea what to do?
 All the best
 Philipp

 Do you save it to a database and then display the text? How do you present
 it?



 --

 Averbis GmbH
 c/o Klinikum der Albert-Ludwigs-Universität
 Stefan-Meier-Strasse 26
 D-79104 Freiburg

 Fon: +49 (0) 761 - 203 6707
 Fax: +49 (0) 761 - 203 6800
 E-Mail: dau...@averbis.de

 Geschäftsführer: Dr. med. Philipp Daumke, Kornél Markó
 Sitz der Gesellschaft: Freiburg i. Br.
 AG Freiburg i. Br., HRB 701080


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org