blob: ca7aa349b00fc5467146dfb1fcfa3f638948b1ee (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:import href="../html/chunk.xsl"/>
<xsl:param name="toc.section.depth" select="'1'"/>
<xsl:param name="html.stylesheet" select="'reference.css'"/>
<xsl:template match="olink[@type='title']">
<xsl:variable name="xml"
select="document(unparsed-entity-uri(@targetdocent))"/>
<xsl:variable name="title" select="($xml/*/title[1]
|$xml/*/bookinfo/title[1]
|$xml/*/referenceinfo/title[1])[1]"/>
<i>
<a href="{@localinfo}">
<xsl:apply-templates select="$title/*|$title/text()"/>
</a>
</i>
</xsl:template>
<xsl:template match="bookinfo/copyright|reference/copyright"
mode="titlepage.mode">
<xsl:variable name="years" select="year"/>
<xsl:variable name="holders" select="holder"/>
<p class="{name(.)}">
<a href="copyright.html">
<xsl:call-template name="gentext.element.name"/>
</a>
<xsl:call-template name="gentext.space"/>
<xsl:call-template name="dingbat">
<xsl:with-param name="dingbat">copyright</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="gentext.space"/>
<xsl:apply-templates select="$years" mode="titlepage.mode"/>
<xsl:call-template name="gentext.space"/>
<xsl:call-template name="gentext.by"/>
<xsl:call-template name="gentext.space"/>
<xsl:apply-templates select="$holders" mode="titlepage.mode"/>
<xsl:text>. </xsl:text>
<a href="warranty.html">No Warranty</a>
<xsl:text>.</xsl:text>
</p>
</xsl:template>
</xsl:stylesheet>
|