blob: 0d0e09fa1ca72d4556345e54e7a6c0ae26ba1f71 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?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 -->
<!-- XXX hardcoded path. Very bad. Should be turned in to a paramater -->
<xsl:import href="/usr/local/share/xml/docbook/xsl/modular/html/docbook.xsl"/>
<!-- Redefine variables, and replace templates as necessary here -->
<xsl:template match="hostid|username|groupname|devicename|maketarget|makevar">
<xsl:call-template name="inline.monoseq"/>
</xsl:template>
</xsl:stylesheet>
|