blob: 7b03f829505c6075a6d1553e6431679febd2c28b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?xml version='1.0'?>
<!--
Convert DocBook to XML validating against the Pearson DTD
(C) Jelmer Vernooij <jelmer@samba.org> 2004
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
exclude-result-prefixes="doc"
version="1.1" >
<xsl:import href="docbook2pearson.xsl"/>
<xsl:template match="smbfile">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="smbconfexample/smbconfsection">
<xsl:value-of select="."/><xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="smbconfexample/smbconfoption">
<xsl:value-of select="name"/><xsl:text> = </xsl:text><xsl:value-of select="value"/><xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="smbconfexample">
<listing>
<xsl:if test="title != ''">
<description><xsl:value-of select="title"/></description>
</xsl:if>
<listingcode>
<xsl:apply-templates/>
</listingcode>
</listing>
</xsl:template>
</xsl:stylesheet>
|