1 | <?xml version="1.0"?>
|
---|
2 |
|
---|
3 | <!--
|
---|
4 | Copyright (C) 2006-2022 Oracle and/or its affiliates.
|
---|
5 |
|
---|
6 | This file is part of VirtualBox base platform packages, as
|
---|
7 | available from https://www.virtualbox.org.
|
---|
8 |
|
---|
9 | This program is free software; you can redistribute it and/or
|
---|
10 | modify it under the terms of the GNU General Public License
|
---|
11 | as published by the Free Software Foundation, in version 3 of the
|
---|
12 | License.
|
---|
13 |
|
---|
14 | This program is distributed in the hope that it will be useful, but
|
---|
15 | WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
17 | General Public License for more details.
|
---|
18 |
|
---|
19 | You should have received a copy of the GNU General Public License
|
---|
20 | along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
21 |
|
---|
22 | SPDX-License-Identifier: GPL-3.0-only
|
---|
23 | -->
|
---|
24 |
|
---|
25 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
---|
26 |
|
---|
27 | <!-- Single html file template -->
|
---|
28 | <xsl:import href="html/docbook.xsl"/>
|
---|
29 |
|
---|
30 | <xsl:import href="common-formatcfg.xsl"/>
|
---|
31 | <xsl:import href="common-html-formatcfg.xsl"/>
|
---|
32 |
|
---|
33 | <!-- Adjust some params -->
|
---|
34 | <xsl:param name="draft.mode" select="'no'"/>
|
---|
35 | <xsl:param name="suppress.navigation" select="1"></xsl:param>
|
---|
36 | <xsl:param name="header.rule" select="0"></xsl:param>
|
---|
37 | <xsl:param name="abstract.notitle.enabled" select="0"></xsl:param>
|
---|
38 | <xsl:param name="footer.rule" select="0"></xsl:param>
|
---|
39 | <xsl:param name="css.decoration" select="1"></xsl:param>
|
---|
40 | <xsl:param name="html.cleanup" select="1"></xsl:param>
|
---|
41 | <xsl:param name="css.decoration" select="1"></xsl:param>
|
---|
42 |
|
---|
43 | </xsl:stylesheet>
|
---|