blob: 98f7e1b9538241eebcbe2b24bd568f678cc38ff2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:import href="../html/docbook.xsl"/>
<xsl:include href="olink-common.xsl"/>
<xsl:output method="xml"
indent="yes"
doctype-public="-//Norman Walsh//DTD DocBook OLink Summary V1.2//EN"
doctype-system="http://docbook.sourceforge.net/???"/>
<xsl:param name="base-uri" select="''"/>
<xsl:template name="olink.href.target">
<xsl:param name="nd" select="."/>
<xsl:value-of select="$base-uri"/>
<xsl:call-template name="href.target">
<xsl:with-param name="object" select="$nd"/>
</xsl:call-template>
</xsl:template>
</xsl:stylesheet>
|