diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-05-01 13:58:48 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-05-01 13:58:48 +0000 |
commit | 5e887315cffee97cba366e304ce85458c5fea6aa (patch) | |
tree | 16998d0fde4f8696a3b8926649e7bf46e09d898d /docs | |
parent | b39559c4e52b9f83a9f57510e490d0a75dbbe0df (diff) | |
download | samba-5e887315cffee97cba366e304ce85458c5fea6aa.tar.gz samba-5e887315cffee97cba366e304ce85458c5fea6aa.tar.bz2 samba-5e887315cffee97cba366e304ce85458c5fea6aa.zip |
Remove obsolete file (no longer necessary with docbook XML)
(This used to be commit 3994ac4d22e666ae5ba38d2e6040fbf7b6e04617)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docbook/scripts/strip-links.pl | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/docbook/scripts/strip-links.pl b/docs/docbook/scripts/strip-links.pl deleted file mode 100644 index 66bc101e08..0000000000 --- a/docs/docbook/scripts/strip-links.pl +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/perl - -## small script to strip the <URL:...> tags from -## manpages generated from docbook2man. we'll leave -## the <URL:ftp://...> and <URL:mailto:...> links for now - -while (<STDIN>) { - - chomp ($_); - $_ =~ s/\s*<URL:.*html.*>\s+/ /g; - $_ =~ s/\s*<URL:.*html.*>\S//g; - $_ =~ s/\s*<URL:.*html.*>$//g; - print "$_\n"; - -} -exit 0; |