aboutsummaryrefslogtreecommitdiff
path: root/share/xsl/default.xsl
diff options
context:
space:
mode:
authorNik Clayton <nik@FreeBSD.org>2002-05-05 16:22:15 +0000
committerNik Clayton <nik@FreeBSD.org>2002-05-05 16:22:15 +0000
commit06a6db06508a47d42377220fe85910cf834d7308 (patch)
tree0171a47c6d7f9278d98fd227ad785ed74d326ccd /share/xsl/default.xsl
parent3fb94de348a5545ab02dc6fd5028a5ab0b73a5bf (diff)
downloaddoc-06a6db06508a47d42377220fe85910cf834d7308.tar.gz
doc-06a6db06508a47d42377220fe85910cf834d7308.zip
Add two new stylesheet driver files. default.xsl is the analogue of
default.dsl, and just calls freebsd.xsl. freebsd.xsl is where the project-specific customisations for the XSL stylesheets will go.
Notes
Notes: svn path=/head/; revision=12970
Diffstat (limited to 'share/xsl/default.xsl')
-rw-r--r--share/xsl/default.xsl15
1 files changed, 15 insertions, 0 deletions
diff --git a/share/xsl/default.xsl b/share/xsl/default.xsl
new file mode 100644
index 0000000000..5ebd6ce790
--- /dev/null
+++ b/share/xsl/default.xsl
@@ -0,0 +1,15 @@
+<!-- $FreeBSD$ -->
+
+<?xml version='1.0'?>
+<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="freebsd.xsl"/>
+
+<!-- Redefine variables, and replace templates as necessary here -->
+
+</xsl:stylesheet>
+