summaryrefslogtreecommitdiffstats
path: root/xsl
diff options
context:
space:
mode:
authorKarsten Wade <kwade@redhat.com>2005-06-02 18:23:16 +0000
committerKarsten Wade <kwade@redhat.com>2005-06-02 18:23:16 +0000
commita5dd01d7df9a67035815e6ad916d1e551d608e4d (patch)
tree1e8febd435567b57cb802b52a5ab5c42a9c28b56 /xsl
parent0394017bf4dcf0ec4d21e0647449acc35539a79b (diff)
downloadfedora-doc-utils-a5dd01d7df9a67035815e6ad916d1e551d608e4d.tar.gz
fedora-doc-utils-a5dd01d7df9a67035815e6ad916d1e551d608e4d.tar.xz
fedora-doc-utils-a5dd01d7df9a67035815e6ad916d1e551d608e4d.zip
The release notes needs it's own XSL for makign it literally and entirely one single document, legalnotice included.
Diffstat (limited to 'xsl')
-rw-r--r--xsl/html-common.xsl3
-rw-r--r--xsl/main-html-nochunks-relnotes.xsl47
2 files changed, 47 insertions, 3 deletions
diff --git a/xsl/html-common.xsl b/xsl/html-common.xsl
index 49564d9..70cd0e9 100644
--- a/xsl/html-common.xsl
+++ b/xsl/html-common.xsl
@@ -25,10 +25,7 @@ procedure after
<xsl:output method="html" indent="no"/>
-<!--
-disable for FC4
<xsl:param name="generate.legalnotice.link" select="1"></xsl:param>
--->
<xsl:param name="html.stylesheet" select="'fedora.css'"></xsl:param>
<xsl:param name="html.stylesheet.type">text/css</xsl:param>
diff --git a/xsl/main-html-nochunks-relnotes.xsl b/xsl/main-html-nochunks-relnotes.xsl
new file mode 100644
index 0000000..5e98541
--- /dev/null
+++ b/xsl/main-html-nochunks-relnotes.xsl
@@ -0,0 +1,47 @@
+<!-- created by Tammy Fox tfox@redhat.com for the Fedora Project -->
+<!-- License: GPL -->
+<!-- Copyright 2003 Tammy Fox, Red Hat, Inc. -->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:exsl="http://exslt.org/common"
+ version="1.0"
+ exclude-result-prefixes="exsl">
+
+<xsl:import href="redhat.xsl"/>
+<xsl:import href="/usr/share/sgml/docbook/xsl-stylesheets/html/docbook.xsl"/>
+<xsl:include href="html-common-relnotes.xsl"/>
+
+<!-- TOC -->
+<xsl:param name="toc.section.depth">3</xsl:param>
+<xsl:param name="section.autolabel" select="1" />
+<xsl:param name="section.label.includes.component.label" select="1"></xsl:param>
+<xsl:param name="generate.toc">
+book toc,title,figure,table,example,equation
+article toc
+chapter nop
+qandadiv toc
+qandaset toc
+sect1 nop
+sect2 nop
+sect3 nop
+sect4 nop
+sect5 nop
+section nop
+</xsl:param>
+
+<!-- Navigation
+<xsl:param name="navig.graphics" select="1"></xsl:param>
+<xsl:param name="navig.graphics.extension" select="'.png'"></xsl:param>
+<xsl:param name="navig.graphics.path">nav-images/</xsl:param>
+<xsl:param name="navig.showtitles">1</xsl:param>
+-->
+
+<!-- one page -->
+<xsl:param name="onechunk" select="1"/>
+
+<!-- Generate UTF-8 html == only applies to the one chunk-->
+<xsl:output method="html"
+ encoding="UTF-8"
+ indent="yes"/>
+
+</xsl:stylesheet>