diff options
| author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2014-06-06 14:41:03 +0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-18 13:48:38 +0100 |
| commit | 74551392b3f4209d2dff83cd783657c15eec811b (patch) | |
| tree | 19c0a2ef1d671c898e22f7120a2b63fd4fa2bc20 /bitbake/doc/template/component.title.xsl | |
| parent | c65de86d81d834bfefd5d27cf471a842485a7655 (diff) | |
| download | poky-74551392b3f4209d2dff83cd783657c15eec811b.tar.gz | |
bitbake: bitbake-user-manual: Added permalink support.
Fixes [YOCTO #5772]
I added the five XSL templates to the template folder. I updated
the bitbake-user-manual-customization.xsl layer file to include
the new templates.
(Bitbake rev: e1c24a79ededb2dd4ac5ce09fcfdf93218261907)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/doc/template/component.title.xsl')
| -rw-r--r-- | bitbake/doc/template/component.title.xsl | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/bitbake/doc/template/component.title.xsl b/bitbake/doc/template/component.title.xsl new file mode 100644 index 0000000000..3a5539dc83 --- /dev/null +++ b/bitbake/doc/template/component.title.xsl | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | <xsl:stylesheet version="1.0" | ||
| 2 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | ||
| 3 | xmlns:d="http://docbook.org/ns/docbook" | ||
| 4 | xmlns="http://www.w3.org/1999/xhtml" | ||
| 5 | exclude-result-prefixes="d"> | ||
| 6 | |||
| 7 | <xsl:template name="component.title"> | ||
| 8 | <xsl:param name="node" select="."/> | ||
| 9 | |||
| 10 | <xsl:variable name="level"> | ||
| 11 | <xsl:choose> | ||
| 12 | <xsl:when test="ancestor::d:section"> | ||
| 13 | <xsl:value-of select="count(ancestor::d:section)+1"/> | ||
| 14 | </xsl:when> | ||
| 15 | <xsl:when test="ancestor::d:sect5">6</xsl:when> | ||
| 16 | <xsl:when test="ancestor::d:sect4">5</xsl:when> | ||
| 17 | <xsl:when test="ancestor::d:sect3">4</xsl:when> | ||
| 18 | <xsl:when test="ancestor::d:sect2">3</xsl:when> | ||
| 19 | <xsl:when test="ancestor::d:sect1">2</xsl:when> | ||
| 20 | <xsl:otherwise>1</xsl:otherwise> | ||
| 21 | </xsl:choose> | ||
| 22 | </xsl:variable> | ||
| 23 | <xsl:element name="h{$level+1}" namespace="http://www.w3.org/1999/xhtml"> | ||
| 24 | <xsl:attribute name="class">title</xsl:attribute> | ||
| 25 | <xsl:if test="$generate.id.attributes = 0"> | ||
| 26 | <xsl:call-template name="anchor"> | ||
| 27 | <xsl:with-param name="node" select="$node"/> | ||
| 28 | <xsl:with-param name="conditional" select="0"/> | ||
| 29 | </xsl:call-template> | ||
| 30 | </xsl:if> | ||
| 31 | <xsl:apply-templates select="$node" mode="object.title.markup"> | ||
| 32 | <xsl:with-param name="allow-anchors" select="1"/> | ||
| 33 | </xsl:apply-templates> | ||
| 34 | <xsl:call-template name="permalink"> | ||
| 35 | <xsl:with-param name="node" select="$node"/> | ||
| 36 | </xsl:call-template> | ||
| 37 | </xsl:element> | ||
| 38 | </xsl:template> | ||
| 39 | </xsl:stylesheet> \ No newline at end of file | ||
