diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2014-05-22 11:31:41 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-30 16:32:14 +0100 |
commit | 59d810eacae56c126e819a40e017d2819513dc72 (patch) | |
tree | cefaf1349472c58449b6985afae5b5df110f751e /documentation/ref-manual/ref-manual-customization.xsl | |
parent | ba2221f71667e36037f85e113281de8133c1efc4 (diff) | |
download | poky-59d810eacae56c126e819a40e017d2819513dc72.tar.gz |
ref-manual: Added new chapter on QA error and warning messages.
This new chapter is a reference on the default configuration
QA check messages you can get from errors and warnings.
(From yocto-docs rev: 04d766b4e1235ae46df38c4b296cb2729b6a439f)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual/ref-manual-customization.xsl')
-rw-r--r-- | documentation/ref-manual/ref-manual-customization.xsl | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/documentation/ref-manual/ref-manual-customization.xsl b/documentation/ref-manual/ref-manual-customization.xsl index 3ad3a315c0..f1e6e0dcf8 100644 --- a/documentation/ref-manual/ref-manual-customization.xsl +++ b/documentation/ref-manual/ref-manual-customization.xsl | |||
@@ -1,6 +1,6 @@ | |||
1 | <?xml version='1.0'?> | 1 | <?xml version='1.0'?> |
2 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0"> | 2 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0"> |
3 | 3 | ||
4 | <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl" /> | 4 | <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl" /> |
5 | 5 | ||
6 | <xsl:param name="html.stylesheet" select="'ref-style.css'" /> | 6 | <xsl:param name="html.stylesheet" select="'ref-style.css'" /> |
@@ -8,4 +8,14 @@ | |||
8 | <xsl:param name="appendix.autolabel" select="A" /> | 8 | <xsl:param name="appendix.autolabel" select="A" /> |
9 | <xsl:param name="section.autolabel" select="1" /> | 9 | <xsl:param name="section.autolabel" select="1" /> |
10 | <xsl:param name="section.label.includes.component.label" select="1" /> | 10 | <xsl:param name="section.label.includes.component.label" select="1" /> |
11 | |||
12 | <xsl:attribute-set name="normal.para.spacing"> | ||
13 | <xsl:attribute name="text-indent"> | ||
14 | <xsl:choose> | ||
15 | <xsl:when test="self::para">2em</xsl:when> | ||
16 | <xsl:otherwise>inherit</xsl:otherwise> | ||
17 | </xsl:choose> | ||
18 | </xsl:attribute> | ||
19 | </xsl:attribute-set> | ||
20 | |||
11 | </xsl:stylesheet> | 21 | </xsl:stylesheet> |