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

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

diff --git a/CHANGES b/CHANGES
index d54343ee67e30a3c0504aea8739028ec68ce529e..2a612a12eb687a0d3f05ed651faa9d31757429f6 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
 
        --- 9.2.6b1 released ---
 
+1917.  [doc]           funcsynopsisinfo wasn't being treated as verbatim
+                       when generating man pages. [RT #15385]
+
 1911.  [bug]           Update windows socket code. [RT #14965]
 
 1905.  [bug]           Strings returned from cfg_obj_asstring() should be
index eb5c04e584a7f2a3918a73a7d45f970ec9146ee0..e540e9425204baac7e8948327c8308e0acd3d891 100644 (file)
@@ -14,7 +14,7 @@
  - PERFORMANCE OF THIS SOFTWARE.
 -->
 
-<!-- $Id: isc-manpage.xsl.in,v 1.4.2.2 2005/05/13 01:21:57 marka Exp $ -->
+<!-- $Id: isc-manpage.xsl.in,v 1.4.2.3 2005/09/12 00:07:03 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>
 
 <!--