Valhalla Legends Archive

Programming => Web Development => Topic started by: Banana fanna fo fanna on April 30, 2004, 11:25 PM

Title: XHTML 1.1
Post by: Banana fanna fo fanna on April 30, 2004, 11:25 PM
Enlighten me. :)
Title: Re:XHTML 1.1
Post by: MyndFyre on May 01, 2004, 02:06 AM
http://www.w3.org/TR/xhtml11/
Title: Re:XHTML 1.1
Post by: Yoni on May 02, 2004, 05:28 AM
Looks like tiny changes from 1.0 plus the inclusion of Ruby (which I know pretty much nothing about):

http://www.w3.org/TR/xhtml11/changes.html#a_changes
Title: Re:XHTML 1.1
Post by: quasi-modo on May 11, 2004, 09:20 PM
For my purposes the only difference is that 1.1 has no name attribute when 1.0 strict does. That is why I will not be able to make affective use of 1.1 when using asp.net elements. I use xhtml on pages without forms, but when I bust out the forms I generally drop back to html 4.01 transitional. I hope asp.net 2 cleans up the output, it would make life easier. I could just do forms the old way, like in asp classic by calling the script from the action, but asp.net allows me to do the same type of stuff asp classic did with a lot less code, I do not want to do it the old way  :'(.
Title: Re:XHTML 1.1
Post by: MyndFyre on May 12, 2004, 01:14 PM
Quote from: peofeoknight on May 11, 2004, 09:20 PM
For my purposes the only difference is that 1.1 has no name attribute when 1.0 strict does. That is why I will not be able to make affective use of 1.1 when using asp.net elements. I use xhtml on pages without forms, but when I bust out the forms I generally drop back to html 4.01 transitional. I hope asp.net 2 cleans up the output, it would make life easier. I could just do forms the old way, like in asp classic by calling the script from the action, but asp.net allows me to do the same type of stuff asp classic did with a lot less code, I do not want to do it the old way  :'(.

Bleh.  Use XHTML 1.1 transitional!  :P
Title: Re:XHTML 1.1
Post by: Grok on May 12, 2004, 02:24 PM
Quote from: Myndfyre on May 12, 2004, 01:14 PM
Bleh.  Use XHTML 1.1 transitional!  :P

I still don't "grasp" XHTML 1.1 strict.  If someone could explain it better than W3C, I'd be interested.
Title: Re:XHTML 1.1
Post by: po0f on May 12, 2004, 09:51 PM
I don't believe there is an XHTML 1.1 strict dtd. Afaik, 1.1 is based on 1.0 strict, with even stricter guidelines. It's all or nothing.

I use 1.0 strict, I haven't gotten around to learning about 1.1 either.