But, utf-8 vs html entity aside (and cyrille has it right), you can tell tapestry not to escape html characters in an Insert component by using the 'raw' attribute and setting it to true. That will cause the msg to be copied directly to the outputstream, including characters like '&,' which should fix your problem right up.
--sam On 11/29/06, Cyrille37 <[EMAIL PROTECTED]> wrote:
Michael Siebert a écrit : > Hi All, > > I have the following problem: > > My html-templates are designed with the UTF-8 standard > For example the german 'ä' is coded as 'ä' > Hello, I think 'ä' is not from the UTF-8 standard but a HTML entitie. If all you pages are encoded in UTF-8 and html page header declare a charset=utf-8 you do not need to use HTML Entities. regards, cyrille > But if the tapestry engine parses a submit-button component with an 'ä' > within the value (or label), this letter isn't parsed as 'ä' but as 'ä' > because the '&' is parsed as '&' and the rest as 'auml;' so the complete > letter is transformed as '&auml;' and this is the reason for the wrong > view. > > How can I deactivated the automatic parsing of the '&' and show the engine > that the value of the submit-button is in UTF-8 standard? > The server runs with the UTF-8 standard and I have no chance to change this. > The css-file also has the UTF-8 code as every html-template. > > I'm working with the Version 3.0.3. > > Thank you very much in advance for your help!! > > Best regards > Mike > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]