]> granicus.if.org Git - docbook-dsssl/commitdiff
Fixed bug #1603790: no space between package and classname.
authorBob Stayton <bobs@sagehill.net>
Fri, 1 Dec 2006 07:57:40 +0000 (07:57 +0000)
committerBob Stayton <bobs@sagehill.net>
Fri, 1 Dec 2006 07:57:40 +0000 (07:57 +0000)
xsl/fo/synop.xsl
xsl/html/synop.xsl

index 00367597e10f6f255da79f1082b18737b187d972..cdae8b9eadeac1815bf0624b2db3eec4c60f8168 100644 (file)
   <xsl:apply-templates mode="java"/>
 </xsl:template>
 
-<xsl:template match="modifier" mode="java">
+<xsl:template match="modifier|package" mode="java">
   <xsl:apply-templates mode="java"/>
-    <xsl:if test="following-sibling::*">
-      <xsl:text>&nbsp;</xsl:text>
-    </xsl:if>
+  <xsl:if test="following-sibling::*">
+    <xsl:text>&nbsp;</xsl:text>
+  </xsl:if>
 </xsl:template>
 
 <xsl:template match="classname" mode="java">
   <xsl:apply-templates mode="cpp"/>
 </xsl:template>
 
-<xsl:template match="modifier" mode="cpp">
+<xsl:template match="modifier|package" mode="cpp">
   <xsl:apply-templates mode="cpp"/>
     <xsl:if test="following-sibling::*">
       <xsl:text>&nbsp;</xsl:text>
   <xsl:apply-templates mode="idl"/>
 </xsl:template>
 
-<xsl:template match="modifier" mode="idl">
+<xsl:template match="modifier|package" mode="idl">
   <xsl:apply-templates mode="idl"/>
     <xsl:if test="following-sibling::*">
       <xsl:text>&nbsp;</xsl:text>
   <xsl:apply-templates mode="perl"/>
 </xsl:template>
 
-<xsl:template match="modifier" mode="perl">
+<xsl:template match="modifier|package" mode="perl">
   <xsl:apply-templates mode="perl"/>
     <xsl:if test="following-sibling::*">
       <xsl:text>&nbsp;</xsl:text>
index 5c3eb487ea828ab8b5f00fd283bd0fb57ec76f15..198bcecea32187b8a9b41ece2478ea071d7c2bf4 100644 (file)
@@ -842,7 +842,7 @@ paramdef      ::= (#PCDATA|type|replaceable|parameter|funcparams)*
   </span>
 </xsl:template>
 
-<xsl:template match="modifier" mode="java">
+<xsl:template match="modifier|package" mode="java">
   <span>
     <xsl:apply-templates select="." mode="class.attribute"/>
     <xsl:apply-templates mode="java"/>
@@ -1049,7 +1049,7 @@ paramdef      ::= (#PCDATA|type|replaceable|parameter|funcparams)*
   </span>
 </xsl:template>
 
-<xsl:template match="modifier" mode="cpp">
+<xsl:template match="modifier|package" mode="cpp">
   <span>
     <xsl:apply-templates select="." mode="class.attribute"/>
     <xsl:apply-templates mode="cpp"/>
@@ -1244,7 +1244,7 @@ paramdef      ::= (#PCDATA|type|replaceable|parameter|funcparams)*
   </span>
 </xsl:template>
 
-<xsl:template match="modifier" mode="idl">
+<xsl:template match="modifier|package" mode="idl">
   <span>
     <xsl:apply-templates select="." mode="class.attribute"/>
     <xsl:apply-templates mode="idl"/>
@@ -1426,7 +1426,7 @@ paramdef      ::= (#PCDATA|type|replaceable|parameter|funcparams)*
   </span>
 </xsl:template>
 
-<xsl:template match="modifier" mode="perl">
+<xsl:template match="modifier|package" mode="perl">
   <span>
     <xsl:apply-templates select="." mode="class.attribute"/>
     <xsl:apply-templates mode="perl"/>