<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
diff --git a/doc/ChangeLog.xsl b/doc/ChangeLog.xsl
index f5680d7..be44abe 100644
--- a/doc/ChangeLog.xsl
+++ b/doc/ChangeLog.xsl
@@ -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>