summaryrefslogtreecommitdiff
path: root/bin/html-windex
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-23 04:30:06 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-23 04:30:06 +0000
commit615c6979c0b339c7e2c89477899d63bf87e1dd93 (patch)
tree7e633c5be1c568b2e00f6ec8a2b6b3e6dbf3bd58 /bin/html-windex
parent34cd7dceb74cbcc62c09c388504bec353bed4881 (diff)
downloadATCD-TAO-0_2_32.tar.gz
This commit was manufactured by cvs2svn to create tag 'TAO-0_2_32'.TAO-0_2_32
Diffstat (limited to 'bin/html-windex')
-rwxr-xr-xbin/html-windex33
1 files changed, 0 insertions, 33 deletions
diff --git a/bin/html-windex b/bin/html-windex
deleted file mode 100755
index 2a80ae85f6b..00000000000
--- a/bin/html-windex
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-#
-# This script generates automatically to its stdout a windex.html file;
-# this file is useful just after running man2html.
-# All the html man pages must be located under an html directory at the
-# same level as the generated windex.html file.
-#
-
-
-WINDEX=$1
-
-cat <<EOF
- <!-- This is an automatically generated file. Do Not Edit!
- Use windex2html to generate it -->
- <center><h1>ACE Wrappers Man Pages Index</h1></center>
- <p>
- This file has been generated from the <i>windex</i> file from the ACE package
- and it contains a list of pointers to the man2html'ed man pages.
- <p>
- <HR>
- <UL>
-EOF
-
-cat $WINDEX | \
- sed -e 's/ / /g' \
- -e 's%\(3\).*-%3\)</a>%g' \
- -e 's/^[a-zA-Z_]*/&\.html">/g' \
- -e 's/\.PP/<BR>/g' \
- -e 's%^%<li><a HREF="html/%g' \
- -e 's%\\f(CO[a-zA-Z_]*%<CODE>&</B></I></CODE>%g' \
- -e 's%\\f(CO%%g'
-
-echo "</UL>"