Skip Menu |

This queue is for tickets about the SVN-Web CPAN distribution.

Report information
The Basics
Id: 19072
Status: resolved
Priority: 0/
Queue: SVN-Web

People
Owner: Nobody in particular
Requestors: dag [...] sonsorol.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.46
Fixed in: (no value)



Subject: 0.46 (trac template) does not produce valid XHTML, trivial to fix
After a basic install of SVN::Web 0.46 I ran the output through the W3C validator located at http://validator.w3.org/ The output failed validation for a very simple reason: The HTML was missing a closing "</body>" tag The fix was to edit svnweb/template/trac/footer and add "</body>" right before the closing "</html>" tag. After I made this change the output validated as XHTML transitional. The new template/trac/footer looks like this: </div> <div id="footer"> <hr /> <p class="right"><em><a href="http://search.cpan.org/dist/SVN-Web/">[%|l%](powered by)[%END% ]</a></em></p> </div> </body> </html>
Now fixed. Thanks.