On Mon, Sep 7, 2009 at 11:38 PM, jon <jonhoff...@gmail.com> wrote:

>
> Hi,
>
> I've noticed that some special char xml tags are being interpreted by
> lift rather than passing through to the browser.
>
> source code in my template:
> <div>
>          &amp;
>          &copy;
>          &quot;
>          &raquo;
>          &lt;
>          &gt;
> </div>
>
> result from curl http://localhost:8080/
>    <div>
>          &amp;
>          ©
>          &quot;
>          »
>          &lt;
>          &gt;
>    </div>
>
> The rendered characters are problematic in IE7.


Why?


>  A fix or workaround
> would be much appreciated.
>

The raw XHTML is valid.  Lift is yielding non-ASCII characters, but they are
UTF-8 encoded and should be correctly rendered on all browsers.  I have
never seen a problem with IE6 or IE7 (I have not tested in IE8)


>
> Thanks,
>
> - Jon
> >
>


-- 
Lift, the simply functional web framework http://liftweb.net
Beginning Scala http://www.apress.com/book/view/1430219890
Follow me: http://twitter.com/dpp
Git some: http://github.com/dpp

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Lift" group.
To post to this group, send email to liftweb@googlegroups.com
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to