Add a local customization layer for the stylesheets.
authorRalph Giles <giles@xiph.org>
Sat, 26 Oct 2002 13:22:30 +0000 (13:22 +0000)
committerRalph Giles <giles@xiph.org>
Sat, 26 Oct 2002 13:22:30 +0000 (13:22 +0000)
svn path=/trunk/vorbis/; revision=4051

doc/xml/Vorbis_I_spec.xml
doc/xml/spec-common.xsl [new file with mode: 0644]
doc/xml/spec-fo.xsl [new file with mode: 0644]
doc/xml/spec-html.xsl [new file with mode: 0644]

index f341da9..aef0241 100644 (file)
@@ -1,4 +1,4 @@
-<?xml version="1.0" standalone="no"?>
+<?xml version='1.0' standalone='no'?>
 <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
                "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
 [
diff --git a/doc/xml/spec-common.xsl b/doc/xml/spec-common.xsl
new file mode 100644 (file)
index 0000000..b6aa036
--- /dev/null
@@ -0,0 +1,17 @@
+<?xml version='1.0'?>
+<xsl:stylesheet  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  version="1.0">
+<!--  elements of customization for Xiph.org specs
+      common to all docbook output formats
+
+      this file is included by the format-specific stylesheets
+      $Id: spec-common.xsl,v 1.1 2002/10/26 13:22:30 giles Exp $
+-->
+
+  <xsl:param name="use.svg" select="'0'"/>
+
+  <xsl:param name="section.autolabel" select="'1'"/>
+  <xsl:param name="section.label.includes.component.label" select="'1'"/>
+  <xsl:param name="appendix.autolabel" select="'1'"/>
+
+<!-- end common elements -->
+</xsl:stylesheet>
diff --git a/doc/xml/spec-fo.xsl b/doc/xml/spec-fo.xsl
new file mode 100644 (file)
index 0000000..8fefe76
--- /dev/null
@@ -0,0 +1,6 @@
+<?xml version='1.0'?> 
+<xsl:stylesheet  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  version="1.0"> 
+  <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl"/> 
+  <xsl:include href="spec-common.xsl"/>
+  <xsl:param name="paper.type" select="'A4'"/> 
+</xsl:stylesheet>  
diff --git a/doc/xml/spec-html.xsl b/doc/xml/spec-html.xsl
new file mode 100644 (file)
index 0000000..964fe82
--- /dev/null
@@ -0,0 +1,5 @@
+<?xml version='1.0'?> 
+<xsl:stylesheet  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  version="1.0"> 
+  <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/> 
+  <xsl:include href="spec-common.xsl"/>
+</xsl:stylesheet>