summaryrefslogtreecommitdiffstats
path: root/xsl
diff options
context:
space:
mode:
authorKarsten Wade <kwade@redhat.com>2005-06-02 18:23:47 +0000
committerKarsten Wade <kwade@redhat.com>2005-06-02 18:23:47 +0000
commitc4f58bf6957f480f975acc5265ceab8f19bfd29f (patch)
tree5208dee242ad41278f3b0881d2487a16a0fd8003 /xsl
parenta5dd01d7df9a67035815e6ad916d1e551d608e4d (diff)
downloadfedora-doc-utils-c4f58bf6957f480f975acc5265ceab8f19bfd29f.tar.gz
fedora-doc-utils-c4f58bf6957f480f975acc5265ceab8f19bfd29f.tar.xz
fedora-doc-utils-c4f58bf6957f480f975acc5265ceab8f19bfd29f.zip
Part of making the relnotes have it's own XSL.
Diffstat (limited to 'xsl')
-rw-r--r--xsl/html-common-relnotes.xsl40
1 files changed, 40 insertions, 0 deletions
diff --git a/xsl/html-common-relnotes.xsl b/xsl/html-common-relnotes.xsl
new file mode 100644
index 0000000..49564d9
--- /dev/null
+++ b/xsl/html-common-relnotes.xsl
@@ -0,0 +1,40 @@
+<!-- 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">
+
+<!-- Admonition Graphics -->
+
+<xsl:param name="admon.graphics" select="1"></xsl:param>
+<xsl:param name="admon.graphics.path">./stylesheet-images/</xsl:param>
+<xsl:param name="callout.graphics.path">./stylesheet-images/</xsl:param>
+
+<!-- titles after all elements -->
+
+<xsl:param name="formal.title.placement">
+figure after
+example after
+equation after
+table after
+procedure after
+</xsl:param>
+
+<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>
+
+<xsl:param name="html.cleanup" select="1"></xsl:param>
+
+
+
+</xsl:stylesheet>