Makefile: add a target which will abort compilation with ancient shells
[git/dscho.git] / Documentation / manpage-1.72.xsl
blob4065a3a27a38be73132b9f509e1d63546b3fddef
1 <!-- Based on callouts.xsl. Fixes man page callouts for DocBook 1.72 XSL -->
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
4 <xsl:param name="man.output.quietly" select="1"/>
5 <xsl:param name="refentry.meta.get.quietly" select="1"/>
7 <xsl:template match="co">
8 <xsl:value-of select="concat('&#x2593;fB(',substring-after(@id,'-'),')&#x2593;fR')"/>
9 </xsl:template>
10 <xsl:template match="calloutlist">
11 <xsl:text>&#x2302;sp&#10;</xsl:text>
12 <xsl:apply-templates/>
13 <xsl:text>&#10;</xsl:text>
14 </xsl:template>
15 <xsl:template match="callout">
16 <xsl:value-of select="concat('&#x2593;fB',substring-after(@arearefs,'-'),'. &#x2593;fR')"/>
17 <xsl:apply-templates/>
18 <xsl:text>&#x2302;br&#10;</xsl:text>
19 </xsl:template>
21 </xsl:stylesheet>