diff options
author | Tom Rhodes <trhodes@FreeBSD.org> | 2003-01-03 05:06:14 +0000 |
---|---|---|
committer | Tom Rhodes <trhodes@FreeBSD.org> | 2003-01-03 05:06:14 +0000 |
commit | 2139c3a789bdab3de15ea838f3297a86ec08e887 (patch) | |
tree | 7cfaf45110982e71a97914202dfdd381a723f610 /share/xsl/freebsd-fo.xsl | |
parent | 5a7e615440940cf2e864ca5528ed7e2b7b1c5d54 (diff) |
Notes
Diffstat (limited to 'share/xsl/freebsd-fo.xsl')
-rw-r--r-- | share/xsl/freebsd-fo.xsl | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/share/xsl/freebsd-fo.xsl b/share/xsl/freebsd-fo.xsl new file mode 100644 index 0000000000..6731261a3e --- /dev/null +++ b/share/xsl/freebsd-fo.xsl @@ -0,0 +1,31 @@ +<?xml version='1.0'?> + +<!-- $FreeBSD$ --> + +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0' + xmlns="http://www.w3.org/TR/xhtml1/transitional" + exclude-result-prefixes="#default"> + + <!-- Pull in the base stylesheets --> + <xsl:import href="/usr/local/share/xsl/docbook/fo/docbook.xsl"/> + + <!-- Redefine variables, and replace templates as necessary here --> + + <xsl:param name="freebsd.output.print" + select="'0'"/> + <xsl:param name="freebsd.output.print.pdf" + select="'0'"/> + <xsl:param name="freebsd.output.print.justify" + select="'0'"/> + <xsl:param name="freebsd.output.print.twoside" + select="'0'"/> + + <!-- Include the common stylesheets --> + + <xsl:include href="freebsd-common.xsl"/> + + <!-- FO specific customisation goes here --> + +</xsl:stylesheet> + |