Re: hebrew text looks like ×׳—׳‘׳¨׳ •

2012-01-09 Thread Richard W. Adams
HTML files should not have have an XML header. Only XHTML files should. From: armhold armh...@gmail.com To: users@wicket.apache.org Date: 01/06/2012 08:31 PM Subject:Re: hebrew text looks like ×׳—׳‘׳¨׳• I went though this pain a few months ago too. Here are all the places I

Re: hebrew text looks like ×׳—׳‘׳¨׳ •

2012-01-09 Thread Sven Meier
: hebrew text looks like ×׳—׳‘׳¨׳• I went though this pain a few months ago too. Here are all the places I had to hit: 1. In your HTML files: ?xml version=1.0 encoding=UTF-8? And also in yourhead: meta http-equiv=Content-Type content=text/html; charset=UTF-8 2. For property files, if you use i18n

Re: hebrew text looks like ×׳—׳‘׳¨׳ •

2012-01-09 Thread Bertrand Guay-Paquet
should. From: armholdarmh...@gmail.com To: users@wicket.apache.org Date: 01/06/2012 08:31 PM Subject:Re: hebrew text looks like ×׳—׳‘׳¨׳• I went though this pain a few months ago too. Here are all the places I had to hit: 1. In your HTML files: ?xml version=1.0 encoding=UTF

Re: hebrew text looks like ×׳—׳‘׳¨׳•

2012-01-06 Thread armhold
I went though this pain a few months ago too. Here are all the places I had to hit: 1. In your HTML files: ?xml version=1.0 encoding=UTF-8? And also in your head: meta http-equiv=Content-Type content=text/html; charset=UTF-8 2. For property files, if you use i18n you will need to use

Re: hebrew text looks like ×׳—׳‘׳¨׳•

2012-01-04 Thread Sven Meier
You have to make sure Wicket loads your markup with the correct encoding, so add an xml prologue to all your markup files: ?xml version=1.0 encoding=UTF-8? Sven Am 04.01.2012 12:07, schrieb naorye: am using intellij for writing java web application. I am also using apache wicket and apache

Re: hebrew text looks like ×׳—׳‘׳¨׳•

2012-01-04 Thread Martin Grigorov
Setup application.getMarkupSettings().setDefaultMarkupEncoding(UTF-8) @devs: any reason why UTF-8 is not the default ? On Wed, Jan 4, 2012 at 2:27 PM, Sven Meier s...@meiers.net wrote: You have to make sure Wicket loads your markup with the correct encoding, so add an xml prologue to all your

Re: hebrew text looks like ×׳—׳‘׳¨׳•

2012-01-04 Thread Sven Meier
I think null is the most general default. And a proper xml file has an explicit encoding anyway. Sven Am 04.01.2012 13:42, schrieb Martin Grigorov: Setup application.getMarkupSettings().setDefaultMarkupEncoding(UTF-8) @devs: any reason why UTF-8 is not the default ? On Wed, Jan 4, 2012 at

Re: hebrew text looks like ×׳—׳‘׳¨׳•

2012-01-04 Thread Martin Grigorov
On Wed, Jan 4, 2012 at 3:08 PM, Sven Meier s...@meiers.net wrote: I think null is the most general default. And a proper xml file has an explicit encoding anyway. I remember some problems with ?xml ... ? in IE that assumes this is an XML response. Sven Am 04.01.2012 13:42, schrieb Martin

Re: hebrew text looks like ×׳—׳‘׳¨׳•

2012-01-04 Thread Sven Meier
We have WebApplication#/renderXmlDecl() for that./ IIRC the markup xml declaration doesn't have an effect on the browser. Sven Am 04.01.2012 14:22, schrieb Martin Grigorov: On Wed, Jan 4, 2012 at 3:08 PM, Sven Meiers...@meiers.net wrote: I think null is the most general default. And a