TKL documentation
[yaz-moved-to-github.git] / doc / tkl.xsl.in
1 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2                 version="1.0">
3
4   <xsl:include href="/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/xhtml/chunk.xsl"/>
5
6   <xsl:variable name="use.id.as.filename">1</xsl:variable>
7   <xsl:variable name="html.ext">.tkl</xsl:variable>
8   <xsl:param name="chunker.output.omit-xml-declaration" select="'yes'"/> 
9
10 <xsl:template name="chunk-element-content">
11   <xsl:param name="prev"/>
12   <xsl:param name="next"/>
13
14   <document>
15
16     <nonews>1</nonews>
17   
18     <title>
19        <xsl:apply-templates select="." mode="object.title.markup"/>
20     </title>
21
22     <body>
23       <xsl:call-template name="body.attributes"/>
24       <xsl:call-template name="user.header.navigation"/>
25
26       <xsl:call-template name="header.navigation">
27         <xsl:with-param name="prev" select="$prev"/>
28         <xsl:with-param name="next" select="$next"/>
29       </xsl:call-template>
30
31       <xsl:call-template name="user.header.content"/>
32
33       <xsl:apply-imports/>
34
35       <xsl:call-template name="user.footer.content"/>
36
37       <xsl:call-template name="footer.navigation">
38         <xsl:with-param name="prev" select="$prev"/>
39         <xsl:with-param name="next" select="$next"/>
40       </xsl:call-template>
41
42       <xsl:call-template name="user.footer.navigation"/>
43     </body>
44   </document>
45 </xsl:template>
46
47 </xsl:stylesheet>
48
49