diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-08-17 21:16:59 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:00 -0500 |
commit | 3582b295f628cdb3181cf60583b340f87477ae71 (patch) | |
tree | db527f803fec13ecf7b9b3f7c0e3612fd98e6a28 /docs/xslt | |
parent | aed1af463588316d456cebd7a00da6b51f95e775 (diff) | |
download | samba-3582b295f628cdb3181cf60583b340f87477ae71.tar.gz samba-3582b295f628cdb3181cf60583b340f87477ae71.tar.bz2 samba-3582b295f628cdb3181cf60583b340f87477ae71.zip |
Couple of typo fixes
(This used to be commit 1e49c292c8444ebbbede1dbc6625d097c8cfc2eb)
Diffstat (limited to 'docs/xslt')
-rw-r--r-- | docs/xslt/pretty-format.xsl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/xslt/pretty-format.xsl b/docs/xslt/pretty-format.xsl new file mode 100644 index 0000000000..193737dc2a --- /dev/null +++ b/docs/xslt/pretty-format.xsl @@ -0,0 +1,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> |