summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Williams <peter@newton.cx>2005-12-21 21:43:25 +0000
committerPeter Williams <peterw@src.gnome.org>2005-12-21 21:43:25 +0000
commit85501e6bf58b8d9900235141085f3770e351fbdf (patch)
treeb4a3d8250e443c14382ce77469c51abf69cb8843
parent1fd332ac900a2b5f1744fde4ba48712d23e77f1c (diff)
downloadgnome-doc-utils-85501e6bf58b8d9900235141085f3770e351fbdf.tar.gz
Fix generation of copyright information.
2005-12-21 Peter Williams <peter@newton.cx> * xslt/docbook/html/db2html-info.xsl: Fix generation of copyright information.
-rw-r--r--ChangeLog5
-rw-r--r--xslt/docbook/html/db2html-info.xsl4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5fecde3..36c8302 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-21 Peter Williams <peter@newton.cx>
+
+ * xslt/docbook/html/db2html-info.xsl: Fix generation of
+ copyright information.
+
2005-11-27 Shaun McCance <shaunm@gnome.org>
* NEWS:
diff --git a/xslt/docbook/html/db2html-info.xsl b/xslt/docbook/html/db2html-info.xsl
index 9b3292f..c1f7789 100644
--- a/xslt/docbook/html/db2html-info.xsl
+++ b/xslt/docbook/html/db2html-info.xsl
@@ -474,7 +474,7 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
<xsl:template name="db2html.info.copyrights">
<xsl:param name="node" select="."/>
<xsl:param name="info" select="'FIXME'"/>
- <xsl:variable name="copyrights" select="$info/copyrights"/>
+ <xsl:variable name="copyrights" select="$info/copyright"/>
<xsl:if test="$copyrights">
<div>
<h2 class="copyright">
@@ -484,7 +484,7 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
</xsl:call-template>
</h2>
<dl>
- <xsl:apply-templates mode="db2html.info.mode" select="$copyrigths"/>
+ <xsl:apply-templates mode="db2html.info.mode" select="$copyrights"/>
</dl>
</div>
</xsl:if>