summaryrefslogtreecommitdiffstats
path: root/libtecla/update_html
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2015-05-27 13:48:33 -0700
committerJoel Sherrill <joel.sherrill@oarcorp.com>2015-05-27 13:48:33 -0700
commite96199c670ce672049d7f009bd03258649352fc5 (patch)
treee5f30408253b02c04b349c262d8d9fddfed76d25 /libtecla/update_html
parentAdd libtecla 1.6.3 (diff)
downloadrtems-addon-packages-e96199c670ce672049d7f009bd03258649352fc5.tar.bz2
Rename libtecla to a versioned directory (1.6.3)
Diffstat (limited to 'libtecla/update_html')
-rwxr-xr-xlibtecla/update_html29
1 files changed, 0 insertions, 29 deletions
diff --git a/libtecla/update_html b/libtecla/update_html
deleted file mode 100755
index b6a5613..0000000
--- a/libtecla/update_html
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-
-# Convert man pages to html files.
-
-for dir in man/prog man/libr man/func man/misc man/file; do
- for template in $dir/*.in;do
- page=`basename "$template" .in`
- if [ `wc -l < $template` -gt 1 ]; then
- html="html/$page.html"
- man2html -r $dir/$page | sed -s 's/\.\.\/man[0-9]*\///g' | sed -s 's/HREF="\.\.\//HREF="/g' | sed -s 's/\.[0-9][0-9]*\.html/.html/g' > $html
- fi
- done
-done
-
-# Convert the change log into a web page.
-
-cd html
-echo '<html><head><title>The tecla library change log</title></head>' > changes.html
-echo '<body bgcolor="#add8e6"><pre>' >> changes.html
-sed 's/&/&amp;/g; s/</\&lt;/g; s/>/\&gt;/g' ../CHANGES >> changes.html
-echo '</pre></body></html>' >> changes.html
-
-# Do the same to the release-notes file.
-
-cd ../html
-echo '<html><head><title>The tecla library release notes</title></head>' > release.html
-echo '<body bgcolor="#add8e6"><pre>' >> release.html
-sed 's/&/&amp;/g; s/</\&lt;/g' ../RELEASE.NOTES >> release.html
-echo '</pre></body></html>' >> release.html