diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-06-12 16:46:09 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:46 -0500 |
commit | 5cec435fda2f812ef47185e331979e1072d62f43 (patch) | |
tree | 6a0524579d3a7a7316d2720ce1afaf6c59cfb10b /docs/xslt | |
parent | 112fced252d5d398765fdbf3052f62c25bd6d67a (diff) | |
download | samba-5cec435fda2f812ef47185e331979e1072d62f43.tar.gz samba-5cec435fda2f812ef47185e331979e1072d62f43.tar.bz2 samba-5cec435fda2f812ef47185e331979e1072d62f43.zip |
Remove references to Samba4 manpages
(This used to be commit a09660ccdae98c0b630b732c6c46dc7735a1798d)
Diffstat (limited to 'docs/xslt')
-rw-r--r-- | docs/xslt/latex.xsl | 1 | ||||
-rw-r--r-- | docs/xslt/upgrade.pl | 12 |
2 files changed, 1 insertions, 12 deletions
diff --git a/docs/xslt/latex.xsl b/docs/xslt/latex.xsl index b7159b15fe..ac9d2fe423 100644 --- a/docs/xslt/latex.xsl +++ b/docs/xslt/latex.xsl @@ -2,6 +2,7 @@ <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'> <xsl:import href="../settings.xsl"/> <xsl:import href="http://db2latex.sourceforge.net/xsl/docbook.xsl"/> +<xsl:import href="strip-references.xsl"/> <xsl:param name="latex.mapping.xml" select="document('latex.overrides.xml')"/> diff --git a/docs/xslt/upgrade.pl b/docs/xslt/upgrade.pl deleted file mode 100644 index bcd9d2f6ec..0000000000 --- a/docs/xslt/upgrade.pl +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/perl -# Update documents to the Samba DTD V1.0 - -undef $/; - -while(<>) { - s/<smbconfoption><name>(.*?)<\/name><value>(.*?)<\/value><\/smbconfoption>/<smbconfoption name=\"\1\">\2<\/smbconfoption>/g; - s/<smbconfoption><name>(.*?)<\/name><\/smbconfoption>/<smbconfoption name=\"\1\"\/>/g; - s/<smbconfsection>(.*?)<\/smbconfsection>/<smbconfsection name=\"\1\"\/>/g; - s/xmlns:samba=\"http:\/\/samba.org\/common\"/xmlns:samba=\"http:\/\/www.samba.org\/samba\/DTD\/samba-doc\"/g; - print $_; -} |