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/upgrade.pl | |
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/upgrade.pl')
-rw-r--r-- | docs/xslt/upgrade.pl | 12 |
1 files changed, 0 insertions, 12 deletions
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 $_; -} |