annotate src/bzip2-1.0.6/bz-common.xsl @ 83:ae30d91d2ffe

Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author Chris Cannam
date Fri, 07 Feb 2020 11:51:13 +0000
parents e13257ea84a4
children
rev   line source
Chris@4 1 <?xml version="1.0"?> <!-- -*- sgml -*- -->
Chris@4 2 <xsl:stylesheet
Chris@4 3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
Chris@4 4
Chris@4 5 <!-- we like '1.2 Title' -->
Chris@4 6 <xsl:param name="section.autolabel" select="'1'"/>
Chris@4 7 <xsl:param name="section.label.includes.component.label" select="'1'"/>
Chris@4 8
Chris@4 9 <!-- Do not put 'Chapter' at the start of eg 'Chapter 1. Doing This' -->
Chris@4 10 <xsl:param name="local.l10n.xml" select="document('')"/>
Chris@4 11 <l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0">
Chris@4 12 <l:l10n language="en">
Chris@4 13 <l:context name="title-numbered">
Chris@4 14 <l:template name="chapter" text="%n.&#160;%t"/>
Chris@4 15 </l:context>
Chris@4 16 </l:l10n>
Chris@4 17 </l:i18n>
Chris@4 18
Chris@4 19 <!-- don't generate sub-tocs for qanda sets -->
Chris@4 20 <xsl:param name="generate.toc">
Chris@4 21 set toc,title
Chris@4 22 book toc,title,figure,table,example,equation
Chris@4 23 chapter toc,title
Chris@4 24 section toc
Chris@4 25 sect1 toc
Chris@4 26 sect2 toc
Chris@4 27 sect3 toc
Chris@4 28 sect4 nop
Chris@4 29 sect5 nop
Chris@4 30 qandaset toc
Chris@4 31 qandadiv nop
Chris@4 32 appendix toc,title
Chris@4 33 article/appendix nop
Chris@4 34 article toc,title
Chris@4 35 preface toc,title
Chris@4 36 reference toc,title
Chris@4 37 </xsl:param>
Chris@4 38
Chris@4 39 </xsl:stylesheet>