* Generate valid HTML.

This commit is contained in:
Eelco Dolstra 2006-03-01 13:24:47 +00:00
parent 6b8bb8d74a
commit 458820df6c
1 changed files with 22 additions and 15 deletions

View File

@ -2,7 +2,9 @@
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method='html' />
<xsl:output method='html' encoding="UTF-8"
doctype-public="-//W3C//DTD HTML 4.01//EN"
doctype-system="http://www.w3.org/TR/html4/strict.dtd" />
<xsl:template match="logfile">
<html>
@ -38,6 +40,9 @@
<script type='text/javascript'>showTreeToggle(<xsl:value-of select="$collapsed"/>)</script>
<xsl:apply-templates select='head'/>
<!-- Be careful to only generate <ul>s if there are <li>s, otherwise its malformed. -->
<xsl:if test="line|nest">
<ul class='nesting' style="{$style}">
<xsl:for-each select='line|nest'>
@ -53,6 +58,8 @@
</li>
</xsl:for-each>
</ul>
</xsl:if>
</xsl:template>