]> granicus.if.org Git - docbook-dsssl/commitdiff
Added template for foil and foilgroup in mode "xref-to". Closes bug #1913376.
authorMauritz Jeanson <mj@johanneberg.com>
Sun, 3 Aug 2008 18:35:14 +0000 (18:35 +0000)
committerMauritz Jeanson <mj@johanneberg.com>
Sun, 3 Aug 2008 18:35:14 +0000 (18:35 +0000)
xsl/slides/fo/plain.xsl

index 2170c60cff1702a513bc3d00e84308761123cf9c..6b6c96ab3c2cbab7649f2a63235a9c7d3cb8879f 100644 (file)
@@ -4,6 +4,16 @@
                 xmlns:rx="http://www.renderx.com/XSL/Extensions"
                 version="1.0">
 
+<!-- ********************************************************************
+     $Id$
+     ********************************************************************
+
+     This file is part of the DocBook Slides Stylesheet distribution.
+     See ../README or http://docbook.sf.net/release/xsl/current/ for
+     copyright and other information.
+
+     ******************************************************************** -->
+
 <xsl:import href="../../fo/docbook.xsl"/>
 <xsl:import href="param.xsl"/>
 
   </xsl:choose>
 </xsl:template>
 
+<!-- Handling of xrefs -->
+
+<xsl:template match="foil|foilgroup" mode="xref-to">
+  <xsl:param name="referrer"/>
+  <xsl:param name="xrefstyle"/>
+  
+  <xsl:apply-templates select="." mode="object.xref.markup">
+    <xsl:with-param name="purpose" select="'xref'"/>
+    <xsl:with-param name="xrefstyle" select="$xrefstyle"/>
+    <xsl:with-param name="referrer" select="$referrer"/>
+  </xsl:apply-templates>
+</xsl:template>
+
+
 </xsl:stylesheet>