Changeset 246 for rfc2629xslt/xsl11toFop-0.93.xslt
- Timestamp:
- 19/05/08 13:58:01 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rfc2629xslt/xsl11toFop-0.93.xslt
r6 r246 2 2 Transform XSL 1.1 extensions to FOP 0.93 3 3 4 Copyright (c) 2007 , Julian Reschke (julian.reschke@greenbytes.de)4 Copyright (c) 2007-2008, Julian Reschke (julian.reschke@greenbytes.de) 5 5 All rights reserved. 6 6 … … 80 80 </xsl:template> 81 81 <xsl:template match="fo:inline[@id and @index-key and not(node())]"> 82 <fo:block id="{@id}"/> 82 <xsl:choose> 83 <xsl:when test="ancestor::fo:block"> 84 <fo:wrapper id="{@id}"/> 85 </xsl:when> 86 <xsl:otherwise> 87 <fo:block id="{@id}"/> 88 </xsl:otherwise> 89 </xsl:choose> 83 90 </xsl:template> 84 91
Note: See TracChangeset
for help on using the changeset viewer.