summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimo Mueller <timo.mueller@bmw-carit.de>2012-11-30 09:59:30 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-14 15:29:53 +0000
commitd37c418cf4cd4233fb403e6d279cd16611623490 (patch)
tree4171ed22d9b30be9e4fe605133d9e5e01843f551
parent81d2bcfadd83eb5137097af8fffe7b62d1475819 (diff)
downloadpoky-d37c418cf4cd4233fb403e6d279cd16611623490.tar.gz
documentation/bsp-guide/bsp-guide-eclipse-customization.xsl: new file
This stylesheet uses the eclipse stylesheets of docbook to create eclipse help from this documentation. In addition to simple html files these stylesheets will also create xml files which are needed to integrate the documentation into eclipse (e.g. toc.xml). Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--documentation/bsp-guide/bsp-guide-eclipse-customization.xsl26
1 files changed, 26 insertions, 0 deletions
diff --git a/documentation/bsp-guide/bsp-guide-eclipse-customization.xsl b/documentation/bsp-guide/bsp-guide-eclipse-customization.xsl
new file mode 100644
index 0000000000..b9aceb2aa1
--- /dev/null
+++ b/documentation/bsp-guide/bsp-guide-eclipse-customization.xsl
@@ -0,0 +1,26 @@
1<?xml version='1.0'?>
2<xsl:stylesheet
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 xmlns="http://www.w3.org/1999/xhtml"
5 xmlns:fo="http://www.w3.org/1999/XSL/Format"
6 version="1.0">
7
8 <xsl:import
9 href="http://docbook.sourceforge.net/release/xsl/current/eclipse/eclipse3.xsl" />
10
11 <xsl:param name="chunker.output.indent" select="'yes'"/>
12 <xsl:param name="chunk.first.sections" select="1"/>
13 <xsl:param name="chunk.section.depth" select="10"/>
14 <xsl:param name="use.id.as.filename" select="1"/>
15 <xsl:param name="ulink.target" select="'_self'" />
16 <xsl:param name="base.dir" select="'html/bsp-guide/'"/>
17 <xsl:param name="html.stylesheet" select="'../book.css'"/>
18 <xsl:param name="eclipse.manifest" select="0"/>
19 <xsl:param name="create.plugin.xml" select="0"/>
20 <xsl:param name="suppress.navigation" select="1"/>
21 <xsl:param name="generate.index" select="0"/>
22 <xsl:param name="chapter.autolabel" select="1" />
23 <xsl:param name="appendix.autolabel" select="1" />
24 <xsl:param name="section.autolabel" select="1" />
25 <xsl:param name="section.label.includes.component.label" select="1" />
26</xsl:stylesheet>