mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

Fixes [YOCTO #5772] This file enables creation of permalinks for variables defined in the glossary. (Bitbake rev: 772f2bdc10fa242646e4d09f6bdbaf8558f06b22) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
464 B
XML
15 lines
464 B
XML
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:d="http://docbook.org/ns/docbook"
|
|
xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<xsl:template match="glossentry/glossterm">
|
|
<xsl:apply-imports/>
|
|
<xsl:if test="$generate.permalink != 0">
|
|
<xsl:call-template name="permalink">
|
|
<xsl:with-param name="node" select=".."/>
|
|
</xsl:call-template>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|