1 | <?xml version='1.0'?> |
---|
2 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
---|
3 | version='1.0'> |
---|
4 | |
---|
5 | <!-- (MM 20040303) The ant filter token @ant.docbook.styler.dir@ will be |
---|
6 | replaced with the installation directory of the styler. |
---|
7 | It has to be set in your project's build.xml |
---|
8 | Example: |
---|
9 | |
---|
10 | <property name="ant.docbook.styler.dir" value="/java/ant-docbook-styler" /> |
---|
11 | |
---|
12 | On a windows box, this would resolve e.g. to: "c:/java/ant-docbook-styler" |
---|
13 | --> |
---|
14 | <xsl:import href="@ant.docbook.styler.fileuri@/website/xsl/chunk-tabular.xsl"/> |
---|
15 | |
---|
16 | <xsl:param name="chunker.output.encoding" select="'utf-8'" /> |
---|
17 | |
---|
18 | <xsl:template name="home.navhead"> |
---|
19 | </xsl:template> |
---|
20 | |
---|
21 | <xsl:template name="home.navhead.upperright"> |
---|
22 | </xsl:template> |
---|
23 | |
---|
24 | <xsl:template name="home.navhead.separator"> |
---|
25 | </xsl:template> |
---|
26 | |
---|
27 | <xsl:param name="admon.graphics" select="1"/> |
---|
28 | <xsl:param name="admon.graphics.path">graphics/</xsl:param> |
---|
29 | <xsl:param name="admon.graphics.extension">.gif</xsl:param> |
---|
30 | |
---|
31 | <!-- put your customizations here --> |
---|
32 | |
---|
33 | <xsl:param name="nav.icon.style">triangle</xsl:param> |
---|
34 | <xsl:param name="html.stylesheet">plain.css</xsl:param> |
---|
35 | <xsl:param name="header.hr">0</xsl:param> |
---|
36 | <xsl:param name="footer.hr">0</xsl:param> |
---|
37 | |
---|
38 | <xsl:attribute-set name="table.navigation.cell.properties"> |
---|
39 | <xsl:attribute name="valign">top</xsl:attribute> |
---|
40 | <xsl:attribute name="align">left</xsl:attribute> |
---|
41 | <xsl:attribute name="class">toc</xsl:attribute> |
---|
42 | </xsl:attribute-set> |
---|
43 | |
---|
44 | <xsl:attribute-set name="table.properties"> |
---|
45 | <xsl:attribute name="border">0</xsl:attribute> |
---|
46 | <xsl:attribute name="cellpadding">0</xsl:attribute> |
---|
47 | <xsl:attribute name="cellspacing">0</xsl:attribute> |
---|
48 | <xsl:attribute name="width">100%</xsl:attribute> |
---|
49 | <xsl:attribute name="height">100%</xsl:attribute> |
---|
50 | </xsl:attribute-set> |
---|
51 | |
---|
52 | |
---|
53 | </xsl:stylesheet> |
---|