 95e5efc6dc
			
		
	
	95e5efc6dc
	
	
	
		
			
			There are two ways to create a section in a reference document (i.e., manpage) in DocBook 4: refsection elements and refsect, refsect2, and refsect3 elements. Either form is acceptable as of DocBook 4.2, but they cannot be mixed. Prior to DocBook 4.2, only the numbered forms were acceptable. docbook2texi only accepts the numbered forms, and this has not generally been a problem, since AsciiDoc produces the numbered forms. Asciidoctor, on the other hand, uses a shared backend for DocBook 4 and 5, and uses the unnumbered refsection elements instead. If we don't convert the unnumbered form to the numbered form, docbook2texi omits section headings, which is undesirable. Add an XSLT stylesheet to transform the unnumbered forms to the numbered forms automatically, and preprocess the DocBook XML as part of the transformation to Texinfo format. Note that this transformation is only necessary for Texinfo, since docbook2texi provides its own stylesheets. The DocBook stylesheets, which we use for other formats, provide the full range of DocBook 4 and 5 compatibility, and don't have this issue. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
			
				
	
	
		
			27 lines
		
	
	
		
			818 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			818 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <!-- texi.xsl:
 | |
|      convert refsection elements into refsect elements that docbook2texi can
 | |
|      understand -->
 | |
| <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 | |
| 		version="1.0">
 | |
| 
 | |
| <xsl:output method="xml"
 | |
| 	    encoding="UTF-8"
 | |
| 	    doctype-public="-//OASIS//DTD DocBook XML V4.5//EN"
 | |
| 	    doctype-system="http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" />
 | |
| 
 | |
| <xsl:template match="//refsection">
 | |
| 	<xsl:variable name="element">refsect<xsl:value-of select="count(ancestor-or-self::refsection)" /></xsl:variable>
 | |
| 	<xsl:element name="{$element}">
 | |
| 		<xsl:apply-templates select="@*|node()" />
 | |
| 	</xsl:element>
 | |
| </xsl:template>
 | |
| 
 | |
| <!-- Copy all other nodes through. -->
 | |
| <xsl:template match="node()|@*">
 | |
| 	<xsl:copy>
 | |
| 		<xsl:apply-templates select="@*|node()" />
 | |
| 	</xsl:copy>
 | |
| </xsl:template>
 | |
| 
 | |
| </xsl:stylesheet>
 |