1 | <?xml version="1.0"?>
|
---|
2 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
---|
3 |
|
---|
4 | <!-- Single html file template -->
|
---|
5 | <xsl:import href="html/docbook.xsl"/>
|
---|
6 | <xsl:import href="common-formatcfg.xsl"/>
|
---|
7 |
|
---|
8 | <!-- Adjust some params -->
|
---|
9 | <!--
|
---|
10 | <xsl:param name="draft.mode" select="'no'"/>
|
---|
11 | <xsl:param name="generate.toc">book nop</xsl:param>
|
---|
12 | <xsl:param name="generate.index" select="0"></xsl:param>
|
---|
13 | <xsl:param name="suppress.navigation" select="1"></xsl:param>
|
---|
14 | <xsl:param name="header.rule" select="0"></xsl:param>
|
---|
15 | <xsl:param name="abstract.notitle.enabled" select="0"></xsl:param>
|
---|
16 | <xsl:param name="footer.rule" select="0"></xsl:param>
|
---|
17 | <xsl:param name="css.decoration" select="1"></xsl:param>
|
---|
18 | <xsl:param name="html.cleanup" select="1"></xsl:param>
|
---|
19 | <xsl:param name="css.decoration" select="1"></xsl:param>
|
---|
20 | -->
|
---|
21 |
|
---|
22 | <!-- Our hand written css styling -->
|
---|
23 | <xsl:template name="user.head.content">
|
---|
24 | <style type="text/css">
|
---|
25 | <xsl:comment>
|
---|
26 | <!--
|
---|
27 | body
|
---|
28 | {
|
---|
29 | height: 100%;
|
---|
30 | font-family: Verdana, Sans-serif, Arial, 'Trebuchet MS', 'Times New Roman';
|
---|
31 | font-size: small;
|
---|
32 | position: absolute;
|
---|
33 | margin: 0px 0 0 0;
|
---|
34 | }
|
---|
35 | h2
|
---|
36 | {
|
---|
37 | text-decoration: none;
|
---|
38 | font-size: 1.2em;
|
---|
39 | font-family: Verdana, Sans-serif, Arial, 'Trebuchet MS', 'Times New Roman';
|
---|
40 | margin: 5px 0 0;
|
---|
41 | padding: 1px 5px 1px;
|
---|
42 | border: 1px solid #6b89d4; /* #84C43B; */
|
---|
43 | -moz-border-radius: 0.3em;
|
---|
44 | background: #e6edff; /* #d7e9a7; */
|
---|
45 | }
|
---|
46 | #watermark
|
---|
47 | {
|
---|
48 | margin: 0;
|
---|
49 | position: fixed;
|
---|
50 | top: 40%;
|
---|
51 | color: #eeeeee;
|
---|
52 | width: 100%;
|
---|
53 | height: 100%;
|
---|
54 | text-align: center;
|
---|
55 | vertical-align: middle;
|
---|
56 | font-size: 9em;
|
---|
57 | font-weight: bold;
|
---|
58 | z-index:-1;
|
---|
59 | }
|
---|
60 | -->
|
---|
61 | </xsl:comment>
|
---|
62 | </style>
|
---|
63 | </xsl:template>
|
---|
64 |
|
---|
65 | <!-- Remove the title page at all -->
|
---|
66 | <!--
|
---|
67 | <xsl:template name="book.titlepage">
|
---|
68 | -->
|
---|
69 | <!-- Doesn't work with Qt, grrr -->
|
---|
70 | <!--<xsl:text><div id="watermark">VirtualBox<br />Change Log</div></xsl:text>-->
|
---|
71 | <!--
|
---|
72 | </xsl:template>
|
---|
73 | -->
|
---|
74 |
|
---|
75 | <!-- Disable any links into the manual -->
|
---|
76 | <xsl:template match="xref" name="xref">
|
---|
77 | <xsl:text>the manual for more information</xsl:text>
|
---|
78 | </xsl:template>
|
---|
79 |
|
---|
80 | </xsl:stylesheet>
|
---|