diff options
author | Gerald Carter <jerry@samba.org> | 2002-09-26 19:33:30 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2002-09-26 19:33:30 +0000 |
commit | 13f7c502149f184089117a061f5238901df45f8b (patch) | |
tree | db852608e1e9e1f66b68c6fd52233693883d8bd8 /docs/docbook/scripts/make-article.pl | |
parent | 7d1eb6f7b62300e2f0a84f045f5885118c6ffa1b (diff) | |
download | samba-13f7c502149f184089117a061f5238901df45f8b.tar.gz samba-13f7c502149f184089117a061f5238901df45f8b.tar.bz2 samba-13f7c502149f184089117a061f5238901df45f8b.zip |
syncing with HEAD some more
(This used to be commit 805a89fbb771659ce9d397daad59f47d8b5fefcc)
Diffstat (limited to 'docs/docbook/scripts/make-article.pl')
-rw-r--r-- | docs/docbook/scripts/make-article.pl | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/docs/docbook/scripts/make-article.pl b/docs/docbook/scripts/make-article.pl deleted file mode 100644 index d1f8c66832..0000000000 --- a/docs/docbook/scripts/make-article.pl +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/perl - -$ignore = 0; - -print "<!DOCTYPE article PUBLIC \"-//OASIS//DTD DocBook V4.1//EN\">\n"; - -while (<STDIN>) { - - $_ =~ s/<chapter/<article/g; - $_ =~ s/<\/chapter/<\/article/g; - - if ( $_ =~ '<articleinfo>') { - $ignore = 1; - } - - if ( $_ =~ '</articleinfo>') { - $ignore = 0; - $_ = ""; - } - - - if (! $ignore) { print "$_"; } - - -} |