diff options
| author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2014-06-05 16:42:03 +0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-18 10:30:46 +0100 |
| commit | 90497d8fffb2789b996cff160b2d401126db7151 (patch) | |
| tree | b2bc50fd2299cbfd13dbde3cfea1c24c4fb066c8 /documentation/template/division.title.xsl | |
| parent | 1f6c99d0b69cf650e5d487bf99b16fc7d6f0bb74 (diff) | |
| download | poky-90497d8fffb2789b996cff160b2d401126db7151.tar.gz | |
template: Added XSL stylesheets to support permalinks.
Fixes [YOCTO #5772]
These five style sheets support creation of permalinks in the
HTML formatted output.
(From yocto-docs rev: 7467ad6518c0fc0eb829b9432dc113bd0cdb6807)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/template/division.title.xsl')
| -rw-r--r-- | documentation/template/division.title.xsl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/documentation/template/division.title.xsl b/documentation/template/division.title.xsl new file mode 100644 index 0000000000..8cd70a595b --- /dev/null +++ b/documentation/template/division.title.xsl | |||
| @@ -0,0 +1,24 @@ | |||
| 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="division.title"> | ||
| 8 | <xsl:param name="node" select="."/> | ||
| 9 | |||
| 10 | <h1> | ||
| 11 | <xsl:attribute name="class">title</xsl:attribute> | ||
| 12 | <xsl:call-template name="anchor"> | ||
| 13 | <xsl:with-param name="node" select="$node"/> | ||
| 14 | <xsl:with-param name="conditional" select="0"/> | ||
| 15 | </xsl:call-template> | ||
| 16 | <xsl:apply-templates select="$node" mode="object.title.markup"> | ||
| 17 | <xsl:with-param name="allow-anchors" select="1"/> | ||
| 18 | </xsl:apply-templates> | ||
| 19 | <xsl:call-template name="permalink"> | ||
| 20 | <xsl:with-param name="node" select="$node"/> | ||
| 21 | </xsl:call-template> | ||
| 22 | </h1> | ||
| 23 | </xsl:template> | ||
| 24 | </xsl:stylesheet> \ No newline at end of file | ||
