summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2022-02-16 20:10:17 +0100
committerNick Wellnhofer <wellnhofer@aevum.de>2022-02-16 20:10:17 +0100
commited51fe6921b408bc11d7060d57831c596a49f2fb (patch)
tree286bf08130de57216b2bf2e3cba9122df2a20ac8 /doc
parent64c73957688c8cfe47a536561490405558b8a976 (diff)
downloadlibxslt-ed51fe6921b408bc11d7060d57831c596a49f2fb.tar.gz
Remove ChangeLog
The ChangeLog is from pre-Git times.
Diffstat (limited to 'doc')
-rw-r--r--doc/ChangeLog.xsl113
1 files changed, 0 insertions, 113 deletions
diff --git a/doc/ChangeLog.xsl b/doc/ChangeLog.xsl
deleted file mode 100644
index c94f9f0c..00000000
--- a/doc/ChangeLog.xsl
+++ /dev/null
@@ -1,113 +0,0 @@
-<?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 -->
- <xsl:output method="xml" encoding="ISO-8859-1" indent="yes"
- 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">libxslt</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>
- </ul>
- </xsl:variable>
-
- <xsl:template match="bug">
- <a href="http://bugzilla.gnome.org/show_bug.cgi?id={@number}">
- <xsl:value-of select="@number"/></a>
- </xsl:template>
-
- <xsl:template match="item">
- <li><xsl:apply-templates/></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>
- </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>
- <body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000">
- <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>