2004-05-16 00:15:10 +00:00
<?xml version="1.0"?>
<!-- this stylesheet builds the ChangeLog.html -->
<xsl:stylesheet version= "1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- Import the rest of the site stylesheets -->
<xsl:import href= "site.xsl" />
<!-- Generate XHTML - 1.0 transitional -->
2010-09-30 13:58:22 +02:00
<xsl:output method= "xml" encoding= "UTF-8" indent= "yes"
2004-05-16 00:15:10 +00:00
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
<xsl:param name= "module" > libxml2</xsl:param>
<!-- The table of content for the HTML page -->
<xsl:variable name= "menu_name" > API Menu</xsl:variable>
<xsl:variable name= "develtoc" >
<form action= "../search.php"
enctype="application/x-www-form-urlencoded" method="get">
<input name= "query" type= "text" size= "20" value= "" />
<input name= "submit" type= "submit" value= "Search ..." />
</form>
<ul > <!-- style="margin - left: - 1em" -->
<li > <a style= "font-weight:bold"
href="{$href_base}index.html">Main Menu</a> </li>
<li > <a style= "font-weight:bold"
href="{$href_base}docs.html">Developer Menu</a> </li>
<li > <a style= "font-weight:bold"
href="{$href_base}html/index.html">Modules Index</a> </li>
<li > <a style= "font-weight:bold"
href="{$href_base}examples/index.html">Code Examples</a> </li>
<li > <a style= "font-weight:bold"
href="index.html">API Menu</a> </li>
2004-08-03 21:58:41 +00:00
<li > <a href= "html/libxml-parser.html" > Parser API</a> </li>
<li > <a href= "html/libxml-tree.html" > Tree API</a> </li>
<li > <a href= "html/libxml-xmlreader.html" > Reader API</a> </li>
2004-05-16 00:15:10 +00:00
<li > <a href= "{$href_base}guidelines.html" > XML Guidelines</a> </li>
</ul>
</xsl:variable>
2004-05-16 03:34:55 +00:00
2004-05-16 05:06:59 +00:00
<xsl:template match= "bug" >
<a href= "http://bugzilla.gnome.org/show_bug.cgi?id={@number}" >
<xsl:value-of select= "@number" /> </a>
</xsl:template>
2004-05-16 03:34:55 +00:00
<xsl:template match= "item" >
2004-05-16 05:06:59 +00:00
<li > <xsl:apply-templates /> </li>
2004-05-16 03:34:55 +00:00
</xsl:template>
2004-05-16 00:15:10 +00:00
<xsl:template match= "entry" >
<p >
<b > <xsl:value-of select= "@who" /> </b>
<xsl:text > </xsl:text>
<xsl:value-of select= "@date" />
2004-05-16 03:34:55 +00:00
<xsl:text > </xsl:text>
<xsl:value-of select= "@timezone" />
2004-05-16 00:15:10 +00:00
<ul >
<xsl:apply-templates select= "item" />
</ul>
</p>
</xsl:template>
<xsl:template match= "log" >
<xsl:variable name= "title" > ChangeLog last entries of <xsl:value-of select= "$module" /> </xsl:variable>
<html >
<head >
<xsl:call-template name= "style" />
<xsl:element name= "title" >
<xsl:value-of select= "$title" />
</xsl:element>
</head>
2004-08-14 13:56:39 +00:00
<body bgcolor= "#8b7765" text= "#000000" link= "#a06060" vlink= "#000000" >
2004-05-16 00:15:10 +00:00
<xsl:call-template name= "titlebox" >
<xsl:with-param name= "title" select= "$title" />
</xsl:call-template>
<table border= "0" cellpadding= "4" cellspacing= "0" width= "100%" align= "center" >
<tr >
<td bgcolor= "#8b7765" >
<table border= "0" cellspacing= "0" cellpadding= "2" width= "100%" >
<tr >
<td valign= "top" width= "200" bgcolor= "#8b7765" >
<xsl:call-template name= "develtoc" />
</td>
<td valign= "top" bgcolor= "#8b7765" >
<table border= "0" cellspacing= "0" cellpadding= "1" width= "100%" >
<tr >
<td >
<table border= "0" cellspacing= "0" cellpadding= "1" width= "100%" bgcolor= "#000000" >
<tr >
<td >
<table border= "0" cellpadding= "3" cellspacing= "1" width= "100%" >
<tr >
<td bgcolor= "#fffacd" >
<xsl:apply-templates select= "entry" />
<p > <a href= "{$href_base}bugs.html" > Daniel Veillard</a> </p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>