File: website-targets.xsl

package info (click to toggle)
docbook-website 2.5.0.0-8.1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 1,436 kB
  • sloc: xml: 1,341; lisp: 412; java: 77; makefile: 39; sh: 22; javascript: 8
file content (27 lines) | stat: -rw-r--r-- 738 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">

<xsl:import href="tabular.xsl"/>

<xsl:output method="xml" 
         indent="no" 
	 encoding="utf-8"
         doctype-public="-//Norman Walsh//DTD DocBook OLink Summary V2.0//EN"
         doctype-system="http://docbook.sourceforge.net/release/xsl/current/common/targetdatabase.dtd"/>


<!-- Used only when processing autolayout.xml -->
<xsl:template match="/">
  <xsl:apply-templates mode="collect.targets"/>
</xsl:template>

<xsl:template match="*"/>

<xsl:template match="autolayout" mode="collect.targets">
  <targetset>
    <xsl:apply-templates mode="olink.mode"/>
  </targetset>
</xsl:template>

</xsl:stylesheet>