blob: 193737dc2a1edeba603ae8a01e77f20b65ae3377 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:samba="http://samba.org/common"
version="1.1">
<xsl:output method="xml" encoding="UTF-8" doctype-public="-//OASIS//DTD DocBook XML V4.2//EN" indent="yes" doctype-system="http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"/>
<!-- This is needed to copy content unchanged -->
<xsl:template match="@*|node()|processing-instruction()">
<xsl:copy>
<xsl:apply-templates select="@*|node()|processing-instruction()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
|