source: projects/vine-manual-build/tags/R_0_9_0/web.xsl @ 841

Revision 841, 2.2 KB checked in by yasumichi, 14 years ago (diff)

remove parameter html.stylesheet

Line 
1<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
2
3        <xsl:import href="/usr/share/sgml/docbook/xsl-stylesheets/xhtml/chunk.xsl"/>
4
5        <xsl:param name="toc.section.depth">1</xsl:param>
6        <xsl:param name="section.autolabel">1</xsl:param>
7        <xsl:param name="section.label.includes.component.label">1</xsl:param>
8        <xsl:param name="use.id.as.filename">1</xsl:param>
9        <xsl:param name="css.decoration">0</xsl:param>
10        <xsl:param name="root.filename" />
11        <xsl:param name="admon.style" />
12
13        <xsl:template match="question" mode="label.markup">
14                <xsl:text>Q</xsl:text>
15                <xsl:number level="multiple" count="qandaentry" format="1"/>
16        </xsl:template>
17        <xsl:template match="answer" mode="label.markup">
18                <xsl:text>A</xsl:text>
19                <xsl:number level="multiple" count="qandaentry" format="1"/>
20        </xsl:template>
21
22
23        <xsl:template name="chunk-element-content">
24                <xsl:param name="prev"/>
25                <xsl:param name="next"/>
26                <xsl:param name="nav.context"/>
27                <xsl:param name="content">
28                        <xsl:apply-imports/>
29                </xsl:param>
30
31                <xsl:call-template name="user.preroot"/>
32
33                <html>
34                        <xsl:call-template name="html.head">
35                                <xsl:with-param name="prev" select="$prev"/>
36                                <xsl:with-param name="next" select="$next"/>
37                        </xsl:call-template>
38
39                        <body>
40                                <![CDATA[%HEADMENU%]]>
41                                <div id="mainarea">
42                                        <div id="leftarea">
43                                                <p><a href="/index.html"><img src="../vinelogo-new.png" alt="Vine Linux" width="150" height="150" /></a></p>
44                                                <![CDATA[%INDEX%]]>
45                                        </div>
46                                        <div id="content">
47                                                <xsl:call-template name="header.navigation">
48                                                        <xsl:with-param name="prev" select="$prev"/>
49                                                        <xsl:with-param name="next" select="$next"/>
50                                                        <xsl:with-param name="nav.context" select="$nav.context"/>
51                                                </xsl:call-template>
52
53                                                <xsl:copy-of select="$content"/>
54
55                                                <xsl:call-template name="footer.navigation">
56                                                        <xsl:with-param name="prev" select="$prev"/>
57                                                        <xsl:with-param name="next" select="$next"/>
58                                                        <xsl:with-param name="nav.context" select="$nav.context"/>
59                                                </xsl:call-template>
60
61                                                <xsl:call-template name="user.footer.navigation"/>
62                                        </div><!-- id="content" -->
63                                </div><!-- id="mainarea" -->
64                                <![CDATA[%FOOTER%]]>
65                        </body>
66                </html>
67        </xsl:template>
68
69</xsl:stylesheet>
70
Note: See TracBrowser for help on using the repository browser.