]> granicus.if.org Git - docbook-dsssl/commitdiff
added comment in code explaining why we don't put filename output
authorMichael Smith <xmldoc@users.sourceforge.net>
Mon, 10 Mar 2008 15:46:03 +0000 (15:46 +0000)
committerMichael Smith <xmldoc@users.sourceforge.net>
Mon, 10 Mar 2008 15:46:03 +0000 (15:46 +0000)
in italic (despite the fact that man guidelines say we should)

xsl/manpages/inline.xsl
xsl/manpages/synop.xsl

index edb549d46252cf85965c5b2c903e91620c6e77e5..5a97096b1078a307c088845c2c805bb27972795f 100644 (file)
                 $man.break.after.slash = 0">
     <xsl:call-template name="suppress.hyphenation"/>
   </xsl:if>
+  <!-- * part of the old man(7) man page, now man-pages(7), says, -->
+  <!-- * "Filenames (whether pathnames, or references to files in the -->
+  <!-- * /usr/include directory) are always in italics". But that's dumb, -->
+  <!-- * and looks like crap in PS/printed/PDF output, and there's no -->
+  <!-- * sound rationale for it, so we don't do it. -->
   <xsl:call-template name="inline.monoseq"/>
 </xsl:template>
 
index a888974e8d1d370b439246c794db8f52cfde6135..21ce5b0b7d6e9b63831a717da847c096ede22e66 100644 (file)
     <xsl:apply-templates select="." mode="synopfragment.number"/>
   </xsl:variable>
   <xsl:text>&#10;</xsl:text>
-  If we have a group of Synopfragments, we only want to output a
-  line of space before the first; so when we find a Synopfragment
-  whose first preceding sibling is another Synopfragment, we back
-  use the pinch-together template to close up the line of space
-  that would otherwise be generated by the .HP macro
+  <!-- * If we have a group of Synopfragments, we only want to output a -->
+  <!-- * line of space before the first; so when we find a Synopfragment -->
+  <!-- * whose first preceding sibling is another Synopfragment, we back -->
+  <!-- * use the pinch-together template to close up the line of space -->
+  <!-- * that would otherwise be generated by the .HP macro -->
   <xsl:if test="preceding-sibling::*[1][self::synopfragment]">
     <xsl:call-template name="pinch.together"/>
   </xsl:if>
 <!-- *           Note about boldface in funcprototype output -->
 <!-- * ***************************************************************** -->
 <!-- * All funcprototype content is by default rendered in bold, -->
-<!-- * because the man(7) man page says this: -->
+<!-- * because the old man(7) man page, now man-pages(7) says this: -->
 <!-- * -->
 <!-- *   For functions, the arguments are always specified using -->
 <!-- *   italics, even in the SYNOPSIS section, where the rest of -->