[oe-commits] Koen Kooi : usermanual: fix 'nochunk' types

GIT User account git at amethyst.openembedded.net
Fri Feb 27 14:13:48 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 433e8f22bbb1e2baa7875f6d1f1c88804d6d7e7c
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=433e8f22bbb1e2baa7875f6d1f1c88804d6d7e7c

Author: Koen Kooi <koen at openembedded.org>
Date:   Fri Feb 27 15:12:11 2009 +0100

usermanual: fix 'nochunk' types

---

 docs/usermanual/Makefile       |    4 +-
 docs/usermanual/chunk-utf8.xsl |   52 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+), 2 deletions(-)

diff --git a/docs/usermanual/Makefile b/docs/usermanual/Makefile
index 5649442..305448a 100644
--- a/docs/usermanual/Makefile
+++ b/docs/usermanual/Makefile
@@ -6,7 +6,7 @@ types = $(xmltotypes) $(htmltypes) $(docbooktotypes)
 xmltotypes = 
 docbooktotypes = dvi pdf ps rtf tex texi txt
 htmltypes = html xhtml
-htmlxsl = $(if $(filter $@,$(foreach type,$(htmltypes),$(type)-nochunks)),docbook-utf8.xsl,http://docbook.sourceforge.net/release/xsl/current/$@/chunk.xsl)
+htmlxsl = $(if $(filter $@,$(foreach type,$(htmltypes),$(type)-nochunks)),docbook-utf8.xsl,chunk-utf8.xsl)
 htmlcssfile = docbook.css
 htmlcss = $(topdir)/html.css
 # htmlcssfile =
@@ -20,7 +20,7 @@ endef
 else
 define command
 	@echo $(2) $(3) $(4)
-	@$(1) >/dev/null
+	@$(1) 
 endef
 endif
 
diff --git a/docs/usermanual/chunk-utf8.xsl b/docs/usermanual/chunk-utf8.xsl
new file mode 100644
index 0000000..5d979ac
--- /dev/null
+++ b/docs/usermanual/chunk-utf8.xsl
@@ -0,0 +1,52 @@
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+                xmlns:exsl="http://exslt.org/common"
+		version="1.0"
+                exclude-result-prefixes="exsl">
+
+<!-- ********************************************************************
+     $Id: chunk.xsl 6910 2007-06-28 23:23:30Z xmldoc $
+     ********************************************************************
+
+     This file is part of the XSL DocBook Stylesheet distribution.
+     See ../README or http://docbook.sf.net/release/xsl/current/ for
+     copyright and other information.
+
+     ******************************************************************** -->
+
+<!-- ==================================================================== -->
+
+<!-- First import the non-chunking templates that format elements
+     within each chunk file. In a customization, you should
+     create a separate non-chunking customization layer such
+     as mydocbook.xsl that imports the original docbook.xsl and
+     customizes any presentation templates. Then your chunking
+     customization should import mydocbook.xsl instead of
+     docbook.xsl.  -->
+<xsl:import href="docbook-utf8.xsl"/>
+
+<!-- chunk-common.xsl contains all the named templates for chunking.
+     In a customization file, you import chunk-common.xsl, then
+     add any customized chunking templates of the same name. 
+     They will have import precedence over the original 
+     chunking templates in chunk-common.xsl. -->
+<xsl:import href="chunk-common.xsl"/>
+
+<!-- The manifest.xsl module is no longer imported because its
+     templates were moved into chunk-common and chunk-code -->
+
+<!-- chunk-code.xsl contains all the chunking templates that use
+     a match attribute.  In a customization it should be referenced
+     using <xsl:include> instead of <xsl:import>, and then add
+     any customized chunking templates with match attributes. But be sure
+     to add a priority="1" to such customized templates to resolve
+     its conflict with the original, since they have the
+     same import precedence.
+     
+     Using xsl:include prevents adding another layer
+     of import precedence, which would cause any
+     customizations that use xsl:apply-imports to wrongly
+     apply the chunking version instead of the original
+     non-chunking version to format an element.  -->
+<xsl:include href="chunk-code.xsl"/>
+
+</xsl:stylesheet>





More information about the Openembedded-commits mailing list