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>