Changeset 754 for rfc2629xslt/rfc2629toFO.xslt
- Timestamp:
- 31/01/10 23:09:48 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rfc2629xslt/rfc2629toFO.xslt
r704 r754 2 2 XSLT transformation from RFC2629 XML format to XSL-FO 3 3 4 Copyright (c) 2006-20 09, Julian Reschke (julian.reschke@greenbytes.de)4 Copyright (c) 2006-2010, Julian Reschke (julian.reschke@greenbytes.de) 5 5 All rights reserved. 6 6 … … 348 348 <xsl:template match="eref[node()]"> 349 349 <fo:basic-link external-destination="url('{@target}')" xsl:use-attribute-sets="external-link"> 350 <xsl:apply-templates /> 350 <xsl:call-template name="format-uri"> 351 <xsl:with-param name="s" select="."/> 352 </xsl:call-template> 351 353 </fo:basic-link> 352 354 <fo:footnote> … … 1506 1508 <xsl:template match="*"> 1507 1509 <xsl:message terminate="yes">ERROR: unknown or unexpected element: {<xsl:value-of select="namespace-uri()" />}<xsl:value-of select="local-name()" /><xsl:call-template name="lineno"/>: '<xsl:value-of select="."/>'</xsl:message> 1508 </xsl:template>1509 1510 <xsl:template match="text()">1511 <xsl:copy-of select="."/>1512 1510 </xsl:template> 1513 1511 … … 1768 1766 </xsl:template> 1769 1767 1770 <xsl:template match="back" mode="toc">1768 <xsl:template name="back-toc"> 1771 1769 1772 1770 <xsl:apply-templates select="references" mode="toc" /> … … 1776 1774 </xsl:if> 1777 1775 1778 <xsl:apply-templates select=" *[not(self::references)]" mode="toc" />1776 <xsl:apply-templates select="back/*[not(self::references)]" mode="toc" /> 1779 1777 1780 1778 <!-- insert the index if index entries exist -->
Note: See TracChangeset
for help on using the changeset viewer.