]> granicus.if.org Git - docbook-dsssl/commitdiff
Add mode="xrefstyle" to replace many instances of redundant
authorBob Stayton <bobs@sagehill.net>
Fri, 13 Sep 2013 18:04:54 +0000 (18:04 +0000)
committerBob Stayton <bobs@sagehill.net>
Fri, 13 Sep 2013 18:04:54 +0000 (18:04 +0000)
code determining the xrefstyle with xsl:apply-templates
select="." mode="xrefstyle".  Also allows stylesheet
customization to specify an xrefstyle per element type.

xsl/common/common.xsl
xsl/common/olink.xsl
xsl/common/titles.xsl
xsl/fo/xref.xsl
xsl/html/xref.xsl

index d62bcc9862a40a505ba35946dd128125382c0ae4..5e84e8d4cb3c6ec539fc989c2225d06d9cd85ab8 100644 (file)
@@ -2107,4 +2107,16 @@ engine does not support it.
   </xsl:choose>
 </xsl:template>
 
+<xsl:template match="*" mode="xrefstyle">
+  <xsl:choose>
+    <xsl:when test="@role and not(@xrefstyle) 
+                    and $use.role.as.xrefstyle != 0">
+      <xsl:value-of select="@role"/>
+    </xsl:when>
+    <xsl:otherwise>
+      <xsl:value-of select="@xrefstyle"/>
+    </xsl:otherwise>
+  </xsl:choose>
+</xsl:template>
+
 </xsl:stylesheet>
index fb382f5c6cddcddf5187d8865beec133ba3d092b..eedb3c70171d09a46bfdac73f48241ff3a78e8f8 100644 (file)
   <xsl:param name="olink.key" select="''"/>
   <xsl:param name="referrer" select="."/>
   <xsl:param name="xrefstyle">
-    <xsl:choose>
-      <xsl:when test="@role and not(@xrefstyle) 
-                      and $use.role.as.xrefstyle != 0">
-        <xsl:value-of select="@role"/>
-      </xsl:when>
-      <xsl:otherwise>
-        <xsl:value-of select="@xrefstyle"/>
-      </xsl:otherwise>
-    </xsl:choose>
+    <xsl:apply-templates select="." mode="xrefstyle"/>
   </xsl:param>
 
   <xsl:choose>
   <xsl:param name="target.database"/>
   <xsl:param name="linkend" select="''"/>
   <xsl:param name="xrefstyle">
-    <xsl:choose>
-      <xsl:when test="@role and not(@xrefstyle) 
-                      and $use.role.as.xrefstyle != 0">
-        <xsl:value-of select="@role"/>
-      </xsl:when>
-      <xsl:otherwise>
-        <xsl:value-of select="@xrefstyle"/>
-      </xsl:otherwise>
-    </xsl:choose>
+    <xsl:apply-templates select="." mode="xrefstyle"/>
   </xsl:param>
 
   <xsl:variable name="targetdoc">
   <xsl:param name="olink.lang" select="'en'"/>
   <xsl:param name="target.database"/>
   <xsl:param name="xrefstyle">
-    <xsl:choose>
-      <xsl:when test="@role and not(@xrefstyle) 
-                      and $use.role.as.xrefstyle != 0">
-        <xsl:value-of select="@role"/>
-      </xsl:when>
-      <xsl:otherwise>
-        <xsl:value-of select="@xrefstyle"/>
-      </xsl:otherwise>
-    </xsl:choose>
+    <xsl:apply-templates select="." mode="xrefstyle"/>
   </xsl:param>
 
   <xsl:variable name="page">
   <xsl:param name="linkend" select="@linkend"/>
   <xsl:param name="target" select="key('id', $linkend)"/>
   <xsl:param name="xrefstyle">
-    <xsl:choose>
-      <xsl:when test="@role and not(@xrefstyle) 
-                      and $use.role.as.xrefstyle != 0">
-        <xsl:value-of select="@role"/>
-      </xsl:when>
-      <xsl:otherwise>
-        <xsl:value-of select="@xrefstyle"/>
-      </xsl:otherwise>
-    </xsl:choose>
+    <xsl:apply-templates select="." mode="xrefstyle"/>
   </xsl:param>
 
   <xsl:if test="not(starts-with(normalize-space($xrefstyle),'select:')
index ecaff36b1353f640c8823c0b417443463e8839a1..6eba610920382bf0d722e284ea3ea47810915dcb 100644 (file)
@@ -739,6 +739,9 @@ title of the element. This does not include the label.
   <xsl:variable name="targets" select="key('id',@linkend)|key('id',substring-after(@xlink:href,'#'))"/>
   <xsl:variable name="target" select="$targets[1]"/>
   <xsl:variable name="refelem" select="local-name($target)"/>
+  <xsl:variable name="xrefstyle">
+    <xsl:apply-templates select="." mode="xrefstyle"/>
+  </xsl:variable>
   
   <xsl:call-template name="check.id.unique">
     <xsl:with-param name="linkend" select="@linkend"/>
@@ -785,24 +788,20 @@ title of the element. This does not include the label.
             a title. See bugs #1811721 and #1838136. -->
        <xsl:when test="not(ancestor::*[@id = $target/@id] or ancestor::*[@xml:id = $target/@xml:id])">
 
-         <xsl:apply-templates select="$target" mode="xref-to-prefix"/>
+         <xsl:apply-templates select="$target" mode="xref-to-prefix">
+           <xsl:with-param name="referrer" select="."/>
+           <xsl:with-param name="xrefstyle" select="$xrefstyle"/>
+         </xsl:apply-templates>
          
          <xsl:apply-templates select="$target" mode="xref-to">
-           
            <xsl:with-param name="referrer" select="."/>
-           <xsl:with-param name="xrefstyle">
-             <xsl:choose>
-               <xsl:when test="@role and not(@xrefstyle) and $use.role.as.xrefstyle != 0">
-                 <xsl:value-of select="@role"/>
-               </xsl:when>
-               <xsl:otherwise>
-                 <xsl:value-of select="@xrefstyle"/>
-               </xsl:otherwise>
-             </xsl:choose>
-           </xsl:with-param>
+           <xsl:with-param name="xrefstyle" select="$xrefstyle"/>
          </xsl:apply-templates>
          
-         <xsl:apply-templates select="$target" mode="xref-to-suffix"/>
+         <xsl:apply-templates select="$target" mode="xref-to-suffix">
+           <xsl:with-param name="referrer" select="."/>
+           <xsl:with-param name="xrefstyle" select="$xrefstyle"/>
+         </xsl:apply-templates>
        </xsl:when>
        
        <xsl:otherwise>
index bff98df2ef442fa5a7688fe68120f0dab0263cad..77a1ab26f9357c337e207c4c3192b09435a2d5bb 100644 (file)
   <xsl:param name="linkend.targets" select="key('id',@linkend)"/>
   <xsl:param name="target" select="($xlink.targets | $linkend.targets)[1]"/>
   <xsl:param name="refelem" select="local-name($target)"/>
-
-  <xsl:variable name="xrefstyle">
-    <xsl:choose>
-      <xsl:when test="@role and not(@xrefstyle) 
-                      and $use.role.as.xrefstyle != 0">
-        <xsl:value-of select="@role"/>
-      </xsl:when>
-      <xsl:otherwise>
-        <xsl:value-of select="@xrefstyle"/>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:variable>
+  <xsl:param name="xrefstyle">
+    <xsl:apply-templates select="." mode="xrefstyle"/>
+  </xsl:param>
 
   <xsl:variable name="content">
     <fo:inline xsl:use-attribute-sets="xref.properties">
   <xsl:variable name="target" select="$targets[1]"/>
   <xsl:variable name="refelem" select="local-name($target)"/>
 
+  <xsl:variable name="xrefstyle">
+    <xsl:apply-templates select="." mode="xrefstyle"/>
+  </xsl:variable>
+
   <xsl:call-template name="check.id.unique">
     <xsl:with-param name="linkend" select="@linkend"/>
   </xsl:call-template>
 
     <xsl:otherwise>
       <xsl:if test="not(parent::citation)">
-        <xsl:apply-templates select="$target" mode="xref-to-prefix"/>
+        <xsl:apply-templates select="$target" mode="xref-to-prefix">
+          <xsl:with-param name="referrer" select="."/>
+          <xsl:with-param name="xrefstyle" select="$xrefstyle"/>
+        </xsl:apply-templates>
       </xsl:if>
 
       <fo:basic-link internal-destination="{@linkend}"
                      xsl:use-attribute-sets="xref.properties">
         <xsl:apply-templates select="$target" mode="xref-to">
           <xsl:with-param name="referrer" select="."/>
-          <xsl:with-param name="xrefstyle">
-            <xsl:choose>
-              <xsl:when test="@role and not(@xrefstyle) and $use.role.as.xrefstyle != 0">
-                <xsl:value-of select="@role"/>
-              </xsl:when>
-              <xsl:otherwise>
-                <xsl:value-of select="@xrefstyle"/>
-              </xsl:otherwise>
-            </xsl:choose>
-          </xsl:with-param>
+          <xsl:with-param name="xrefstyle" select="$xrefstyle"/>
         </xsl:apply-templates>
       </fo:basic-link>
 
       <xsl:if test="not(parent::citation)">
-        <xsl:apply-templates select="$target" mode="xref-to-suffix"/>
+        <xsl:apply-templates select="$target" mode="xref-to-suffix">
+          <xsl:with-param name="referrer" select="."/>
+          <xsl:with-param name="xrefstyle" select="$xrefstyle"/>
+        </xsl:apply-templates>
       </xsl:if>
     </xsl:otherwise>
   </xsl:choose>
 </xsl:template>
 
 <xsl:template match="biblioentry|bibliomixed" mode="xref-to-prefix">
+  <xsl:param name="referrer"/>
+  <xsl:param name="xrefstyle"/>
   <xsl:text>[</xsl:text>
 </xsl:template>
 
 <xsl:template match="biblioentry|bibliomixed" mode="xref-to-suffix">
+  <xsl:param name="referrer"/>
+  <xsl:param name="xrefstyle"/>
   <xsl:text>]</xsl:text>
 </xsl:template>
 
   <xsl:param name="linkend" select="@linkend"/>
   <xsl:param name="targets" select="key('id',$linkend)"/>
   <xsl:param name="target" select="$targets[1]"/>
-
-  <xsl:variable name="xrefstyle">
-    <xsl:choose>
-      <xsl:when test="@role and not(@xrefstyle) 
-                      and $use.role.as.xrefstyle != 0">
-        <xsl:value-of select="@role"/>
-      </xsl:when>
-      <xsl:otherwise>
-        <xsl:value-of select="@xrefstyle"/>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:variable>
+  <xsl:param name="xrefstyle">
+    <xsl:apply-templates select="." mode="xrefstyle"/>
+  </xsl:param>
 
   <xsl:variable name="content">
     <fo:inline xsl:use-attribute-sets="xref.properties">
index 07581846cd449eb53872089f4a67fc031a60ced8..5e5660cca6f6fbb930e048dbb0d6958cb8e72f58 100644 (file)
   <xsl:param name="linkend.targets" select="key('id',@linkend)"/>
   <xsl:param name="target" select="($xlink.targets | $linkend.targets)[1]"/>
 
-  <xsl:variable name="xrefstyle">
-    <xsl:choose>
-      <xsl:when test="@role and not(@xrefstyle) 
-                      and $use.role.as.xrefstyle != 0">
-        <xsl:value-of select="@role"/>
-      </xsl:when>
-      <xsl:otherwise>
-        <xsl:value-of select="@xrefstyle"/>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:variable>
+  <xsl:param name="xrefstyle">
+    <xsl:apply-templates select="." mode="xrefstyle"/>
+  </xsl:param>
 
   <xsl:call-template name="anchor"/>
 
   <xsl:variable name="targets" select="key('id',@linkend)"/>
   <xsl:variable name="target" select="$targets[1]"/>
   <xsl:variable name="refelem" select="local-name($target)"/>
+  <xsl:variable name="xrefstyle">
+    <xsl:apply-templates select="." mode="xrefstyle"/>
+  </xsl:variable>
 
   <xsl:call-template name="check.id.unique">
     <xsl:with-param name="linkend" select="@linkend"/>
       </xsl:variable>
 
       <xsl:if test="not(parent::citation)">
-        <xsl:apply-templates select="$target" mode="xref-to-prefix"/>
+        <xsl:apply-templates select="$target" mode="xref-to-prefix">
+          <xsl:with-param name="referrer" select="."/>
+          <xsl:with-param name="xrefstyle" select="$xrefstyle"/>
+        </xsl:apply-templates>
       </xsl:if>
 
       <a href="{$href}">
         </xsl:if>
         <xsl:apply-templates select="$target" mode="xref-to">
           <xsl:with-param name="referrer" select="."/>
-          <xsl:with-param name="xrefstyle">
-            <xsl:choose>
-              <xsl:when test="@role and not(@xrefstyle) and $use.role.as.xrefstyle != 0">
-                <xsl:value-of select="@role"/>
-              </xsl:when>
-              <xsl:otherwise>
-                <xsl:value-of select="@xrefstyle"/>
-              </xsl:otherwise>
-            </xsl:choose>
-          </xsl:with-param>
+          <xsl:with-param name="xrefstyle" select="$xrefstyle"/>
         </xsl:apply-templates>
       </a>
 
       <xsl:if test="not(parent::citation)">
-        <xsl:apply-templates select="$target" mode="xref-to-suffix"/>
+        <xsl:apply-templates select="$target" mode="xref-to-suffix">
+          <xsl:with-param name="referrer" select="."/>
+          <xsl:with-param name="xrefstyle" select="$xrefstyle"/>
+        </xsl:apply-templates>
       </xsl:if>
     </xsl:otherwise>
   </xsl:choose>