diff options
author | Nicolas Dechesne <nicolas.dechesne@linaro.org> | 2020-10-05 16:30:32 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-06 13:56:17 +0100 |
commit | 43d07a285181e64c30d98d10ff93ef50391efe59 (patch) | |
tree | 78918fc94d55d44d35e1e3e61c7a6fccc28bca24 /documentation/template/qa-code-permalinks.xsl | |
parent | 1fd9c4b2c0ae927df29f7a0d34c3e595bcf48e89 (diff) | |
download | poky-43d07a285181e64c30d98d10ff93ef50391efe59.tar.gz |
sphinx: remove DocBook files
The Yocto Project documentation was migrated to Sphinx. Let's remove
the deprecated DocBook files.
(From yocto-docs rev: 28fb0e63b2fbfd6426b00498bf2682bb53fdd862)
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/template/qa-code-permalinks.xsl')
-rw-r--r-- | documentation/template/qa-code-permalinks.xsl | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/documentation/template/qa-code-permalinks.xsl b/documentation/template/qa-code-permalinks.xsl deleted file mode 100644 index a309095c60..0000000000 --- a/documentation/template/qa-code-permalinks.xsl +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | <!-- | ||
2 | This XSL sheet enables creation of permalinks for <para><code> | ||
3 | constructs. Right now, this construct occurs only in the ref-manual | ||
4 | book's qa issues and warnings chapter. However, if the construct | ||
5 | were to appear anywhere in that ref-manual, a permalink would be | ||
6 | generated. I don't foresee any <para><code> constructs being used | ||
7 | in the future but if they are then a permalink with a generically | ||
8 | numbered permalink would be generated. | ||
9 | --> | ||
10 | <xsl:stylesheet version="1.0" | ||
11 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | ||
12 | xmlns:d="http://docbook.org/ns/docbook" | ||
13 | xmlns="http://www.w3.org/1999/xhtml"> | ||
14 | |||
15 | <xsl:template match="para/code"> | ||
16 | <xsl:apply-imports/> | ||
17 | <xsl:if test="$generate.permalink != 0"> | ||
18 | <xsl:call-template name="permalink"> | ||
19 | <xsl:with-param name="node" select=".."/> | ||
20 | </xsl:call-template> | ||
21 | </xsl:if> | ||
22 | </xsl:template> | ||
23 | </xsl:stylesheet> | ||