I just pushed a patch that will flip the DocType and <?xml version="1.0"
encoding="UTF-8"?> if the browser is IE6

On Mon, Jun 29, 2009 at 12:20 AM, David Persons <[email protected]>wrote:

>
> The problem seems to be a known stupid bug in IE6.. see:
> http://www.webdeveloper.com/forum/showthread.php?t=1658
>
> On 29 jun, 02:39, David Persons <[email protected]> wrote:
> > I spend a lot of time today on (close to) the same problem.. IE 6 was
> > not showing my site in strict mode.. with the strict doctype set
> > correctly I thought.. :
> >
> > <?xml version="1.0" encoding="UTF-8"?>
> > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "
> http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
> >
> > The problem was the order of the two lines.. Seems that to have IE
> > pick up the correct doctype, the html HAS TO START with the doctype.
> > Changing the order makes IE show my website perfectly:
> >
> > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "
> http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
> > <?xml version="1.0" encoding="UTF-8"?>
> >
> > How to change the order in my code so that Lift spits out my pages
> > correctly?
> >
> > regards,
> > David Persons
> >
> > On 6 jun, 17:13, fatu <[email protected]> wrote:
> >
> > > Thanks a lot for the info David, then I'll consider reverting to 2.7.4
> > > until Lift integrates the latest Scala Actors lib (and fixes).
> >
> > > Fabio
> >
> > > On 6 Giu, 15:58, David Pollak <[email protected]> wrote:
> >
> > > > Lift is 2.7.4.  We have not upgraded to 2.7.5 as the delta is actor
> fixes in
> > > > response to lift-related tickets that we solved with our own actor
> impl.
> > > > I'm talking to Philipp Haller today at the Lift Off about how to
> proceed.
> >
> > > > On Jun 6, 2009 6:49 AM, "fatu" <[email protected]> wrote:
> >
> > > > 2.7.5 right now (and a fresh maven repo too) but I think (not sure
> > > > though) I had it with 2.7.4 as well. Seems to expect a refSet field
> in
> > > > ActorGC which i couldn't find in 2.7.5 sources.
> >
> > > > Fabio
> >
> > > > On 5 Giu, 18:10, David Pollak <[email protected]> wrote:
> > Are
> > > > you using Scala 2.7.4 or...
> >
> > > > > On Fri, Jun 5, 2009 at 7:37 AM, fatu <[email protected]> wrote: > >
> >
> >
> > > > Fantastic, it works great! > ...
> >
>


-- 
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 [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to