To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41163
                  Issue #:|41163
                  Summary:|edit look/www/overrides/templates/PreServlet.vm to
                          |make it valid XHTML
                Component:|www
                  Version:|current
                 Platform:|All
                      URL:|
               OS/Version:|All
                   Status:|NEW
        Status whiteboard:|
                 Keywords:|
               Resolution:|
               Issue type:|DEFECT
                 Priority:|P3
             Subcomponent:|openoffice.org website general issues
              Assigned to:|[EMAIL PROTECTED]
              Reported by:|cloph





------- Additional comments from [EMAIL PROTECTED] Sun Jan 23 15:45:28 -0800 
2005 -------
Currently, the automatically added body tags prevent OOo pages from being valid
XHTML-transitional.
The reason for this are non-defined attributes "marginwidth" and marginheight

>From w3c-validator:
#####
Line 43, column 40: there is no attribute "marginwidth"

<body onload="loginfocus()" marginwidth="0" marginheight="0" class="composite">

You have used the attribute named above in your document, but the document type
you are using does not support that attribute for this element. This error is
often caused by incorrect use of the "Strict" document type with a document that
uses frames (e.g. you must use the "Transitional" document type to get the
"target" attribute), or by using vendor proprietary extensions such as
"marginheight" (this is usually fixed by using CSS to achieve the desired effect
instead). [...]
######

This diff will fix the problem:
$ cvs diff PreServlet.vm
Index: PreServlet.vm
===================================================================
RCS file: /cvs/look/www/overrides/templates/PreServlet.vm,v
retrieving revision 1.1
diff -r1.1 PreServlet.vm
17c17
< <body onload="loginfocus()" marginwidth="0" marginheight="0" 
class="composite">
---
> <body onload="loginfocus()" class="composite">

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
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]

Reply via email to