diff options
author | Shaun McCance <shaunm@gnome.org> | 2009-09-08 13:49:57 -0500 |
---|---|---|
committer | Shaun McCance <shaunm@gnome.org> | 2009-09-08 13:49:57 -0500 |
commit | 4cfa55e4fcb36ded134f1c5be0d539585c7d03de (patch) | |
tree | 5a6d34fbb3d2e32f086c14515365d04df033b4dc /xslt | |
parent | 7e09dcbd2086e03bb784a2d6d21219c12abfa94d (diff) | |
download | yelp-tools-4cfa55e4fcb36ded134f1c5be0d539585c7d03de.tar.gz |
[mallard] Removing the copyright element and moving copyrights to credit
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/mallard/html/mal2html-page.xsl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xslt/mallard/html/mal2html-page.xsl b/xslt/mallard/html/mal2html-page.xsl index adaeaf5..52a56e1 100644 --- a/xslt/mallard/html/mal2html-page.xsl +++ b/xslt/mallard/html/mal2html-page.xsl @@ -39,13 +39,13 @@ $node: The top-level #{page} element REMARK: Describe this template --> -<xsl:template name="db2html.page.copyrights"> +<xsl:template name="mal2html.page.copyrights"> <xsl:param name="node"/> <div class="copyrights"> - <xsl:for-each select="$node/mal:info/mal:copyright"> + <xsl:for-each select="$node/mal:info/mal:credit[mal:years]"> <div class="copyright"> <!-- FIXME: i18n, multi-year, email --> - <xsl:value-of select="concat('© ', mal:year, ' ', mal:name)"/> + <xsl:value-of select="concat('© ', mal:years, ' ', mal:name)"/> </div> </xsl:for-each> </div> @@ -572,7 +572,7 @@ REMARK: Describe this template </xsl:if> <xsl:apply-templates select="."/> </div> - <xsl:call-template name="db2html.page.copyrights"> + <xsl:call-template name="mal2html.page.copyrights"> <xsl:with-param name="node" select="."/> </xsl:call-template> </body> |