diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-03-20 19:09:48 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:22 -0500 |
commit | eacbb262965ddb6d0dbc1d688f23fedb6983f8de (patch) | |
tree | 37a504c07866a02a602cb71c306094362191f1c1 /docs/xslt | |
parent | e78fbd8e0f7dab3fea51beccb43ea0561807b93c (diff) | |
download | samba-eacbb262965ddb6d0dbc1d688f23fedb6983f8de.tar.gz samba-eacbb262965ddb6d0dbc1d688f23fedb6983f8de.tar.bz2 samba-eacbb262965ddb6d0dbc1d688f23fedb6983f8de.zip |
Remove pretty formatting script (it is not used at all)
(This used to be commit 4d7803626b7d7d95259243dcee4458c5c72b8369)
Diffstat (limited to 'docs/xslt')
-rw-r--r-- | docs/xslt/pretty-format.xsl | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/xslt/pretty-format.xsl b/docs/xslt/pretty-format.xsl deleted file mode 100644 index 6b12f9a048..0000000000 --- a/docs/xslt/pretty-format.xsl +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:samba="http://www.samba.org/samba/DTD/samba-doc" - 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> |