#9744: admin base template does not validate against xhtml 1.0 w3c.org validator
----------------------------------+-----------------------------------------
Reporter: terrex | Owner: nobody
Status: new | Milestone:
Component: django.contrib.admin | Version: 1.0
Keywords: | Stage: Unreviewed
Has_patch: 0 |
----------------------------------+-----------------------------------------
There are some problems in admin's base template:
- Warning No Character Encoding Found! Falling back to UTF-8
(this turns fixed with <?xml version="1.0" encoding="UTF-8" ?> as first
line of generated xhtml)
- conditional-css tags:
# Error Line 5, Column 6: character data is not allowed here.
<![if gte IE 6]><!-- Block all styles from IE5 and lower -->
# Error Line 10, Column 3: "endif" is not a reserved name.
<![endif]>
# Error Line 5, Column 1: XML Parsing Error: StartTag: invalid element
name.
<![if gte IE 6]><!-- Block all styles from IE5 and lower -->
# Error Line 10, Column 1: XML Parsing Error: StartTag: invalid
element name.
<![endif]>
(I don't know how to solve this)
--
Ticket URL: <http://code.djangoproject.com/ticket/9744>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" 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/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---