<bill> I think the ChangeLog.html should include timezone (or else normalize to GMT if you're short of work to do)

<DV> well the timezone is in the XML it's trivial to add it
<bill> :-)
Daniel
This commit is contained in:
Daniel Veillard 2004-05-16 03:34:55 +00:00
parent d233e39578
commit e19644ecb1

View File

@ -13,10 +13,6 @@
<xsl:param name="module">libxml2</xsl:param>
<xsl:template match="item">
<li><xsl:value-of select="."/></li>
</xsl:template>
<!-- The table of content for the HTML page -->
<xsl:variable name="menu_name">API Menu</xsl:variable>
<xsl:variable name="develtoc">
@ -42,12 +38,19 @@
<li><a href="{$href_base}guidelines.html">XML Guidelines</a></li>
</ul>
</xsl:variable>
<xsl:template match="item">
<li><xsl:value-of select="."/></li>
</xsl:template>
<xsl:template match="entry">
<p>
<b><xsl:value-of select="@who"/></b>
<xsl:text> </xsl:text>
<xsl:value-of select="@date"/>
<xsl:text> </xsl:text>
<xsl:value-of select="@timezone"/>
<ul>
<xsl:apply-templates select="item"/>
</ul>