]> 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:04:58 +0000 (00:04 +0000)
committerMark Andrews <marka@isc.org>
Mon, 12 Sep 2005 00:04:58 +0000 (00:04 +0000)
                        when generating man pages. [RT #15385]

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

diff --git a/CHANGES b/CHANGES
index e28ee8f57560c26e92efc54afd676e9c5ac3c4e6..c14e5b4f255a892528a547640d95aab8faf47636 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
 
        --- 9.4.0a1 released ---
 
+1917.  [doc]           funcsynopsisinfo wasn't being treated as verbatim
+                       when generating man pages. [RT #15385]
+
 1916.  [func]          Integrate contibuted IDN code from JPNIC. [RT #15383]
 
 1915.  [bug]           dig +ndots was broken. [RT #15215]
index c1adf60e8f155bce62c26ca2e63c748c9d529d0e..af8568990cbca1fa994beb1c135a7796b5733fc0 100644 (file)
@@ -14,7 +14,7 @@
  - PERFORMANCE OF THIS SOFTWARE.
 -->
 
-<!-- $Id: isc-manpage.xsl.in,v 1.2.2.4 2005/05/13 01:32:49 marka Exp $ -->
+<!-- $Id: isc-manpage.xsl.in,v 1.2.2.5 2005/09/12 00:04:58 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>
 
 <!--