]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1917. [doc] funcsynopsisinfo wasn't being treated as verbatim
authorMark Andrews <marka@isc.org>
Mon, 12 Sep 2005 00:05:27 +0000 (00:05 +0000)
committerMark Andrews <marka@isc.org>
Mon, 12 Sep 2005 00:05:27 +0000 (00:05 +0000)
                        when generating man pages. [RT #15385]

CHANGES
doc/xsl/isc-manpage.xsl.in

diff --git a/CHANGES b/CHANGES
index 5dd6bf16dd3ede322809484b0c630601f32b3422..70dad9c5cd41c37ff3aba20a2c19830606b6b37f 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
 
        --- 9.3.2b1 released ---
 
+1917.  [doc]           funcsynopsisinfo wasn't being treated as verbatim
+                       when generating man pages. [RT #15385]
+
 1915.  [bug]           dig +ndots was broken. [RT #15215]
 
 1914.  [protocol]      DS is required to accept mnemonic algorithms
index a46014e8fa48aab951c2a721d1123172c4502595..ae4d51b9b9b3f251a3f353d40b6dde97160db75d 100644 (file)
@@ -14,7 +14,7 @@
  - PERFORMANCE OF THIS SOFTWARE.
 -->
 
-<!-- $Id: isc-manpage.xsl.in,v 1.4.4.2 2005/05/13 01:22:36 marka Exp $ -->
+<!-- $Id: isc-manpage.xsl.in,v 1.4.4.3 2005/09/12 00:05:27 marka Exp $ -->
 
 <!-- ISC customizations for Docbook-XSL manual page generator. -->
 
     <xsl:apply-templates/>
   </xsl:template>
 
+  <!--
+    - Override template to change formatting.
+    - Line breaks in funcsynopsisinfo are significant.
+   -->
+  <xsl:template match="funcsynopsisinfo">
+    <xsl:text>&#10;.nf&#10;</xsl:text>
+    <xsl:apply-templates/>
+    <xsl:text>&#10;.fi&#10;</xsl:text>
+  </xsl:template>
+
 </xsl:stylesheet>
 
 <!--