File: common.xsl

package info (click to toggle)
mysql%2B%2B 3.1.0-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 11,640 kB
  • sloc: cpp: 35,569; sh: 3,113; makefile: 946; perl: 786
file content (17 lines) | stat: -rw-r--r-- 639 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>

<!-- XSL stylesheet containing things common to both HTML and FO
     transformations. -->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:param name="section.autolabel" select="1"/>
  <xsl:param name="section.autolabel.max.depth" select="2"/>
  <xsl:param name="toc.section.depth" select="2"/>

  <!-- Hack to let us get <mathphrase>-like behavior in DB 4.2 -->
  <!-- From: http://www.sagehill.net/docbookxsl/Math.html -->
  <xsl:template match="phrase[@role = 'math']">
    <xsl:call-template name="inline.italicseq"/>
  </xsl:template>
</xsl:stylesheet>