diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-02-02 15:02:49 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-02-02 15:02:49 +0100 |
commit | b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73 (patch) | |
tree | 4361edef0d42d5bf5ac984ef72b4fac35426eae7 /nx-X11/extras/rman/contrib/man2html | |
parent | 0d5a83e986f39982c0924652a3662e60b1f23162 (diff) | |
download | nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.tar.gz nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.tar.bz2 nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.zip |
massive reduction of unneeded files
Diffstat (limited to 'nx-X11/extras/rman/contrib/man2html')
-rw-r--r-- | nx-X11/extras/rman/contrib/man2html | 108 |
1 files changed, 0 insertions, 108 deletions
diff --git a/nx-X11/extras/rman/contrib/man2html b/nx-X11/extras/rman/contrib/man2html deleted file mode 100644 index 3df77a3a8..000000000 --- a/nx-X11/extras/rman/contrib/man2html +++ /dev/null @@ -1,108 +0,0 @@ -#!/bin/ksh - -# Take a man tree and make an html tree out of it - -DOMAIN=$(domainname) -ARCH=$(arch) - -case ${DOMAIN} in - acf) localeo=reo1 ;; - bwfid) localeo=reo1 ;; - chfid) localeo=neo1 ;; - hkfid) localeo=teo1 ;; - lnfid) localeo=leo1 ;; - nyfid) localeo=neo1 ;; - psfid) localeo=leo1 ;; - sffid) localeo=neo1 ;; - tkfid) localeo=teo1 ;; - esac - -sections="{1,2,3,4,5,6,7,8}" -from=/usr/man -to=/u/eo/repository/system/unix/man - -function disambiguate -{ -newbase=${1} -newname="${newbase}.1" -dis=2 -while [ -a "${newname}" ] - do - newname=$newbase"."$dis - dis=$(expr $dis + 1) - done -} - -while getopts f:t:l:is:v c - do - case $c in - f) from=$OPTARG ;; - t) to=$OPTARG ;; - l) localeo=$OPTARG ;; - i) indexonly=1 ;; - s) sections=$OPTARG ;; - v) verbose=1 ;; - esac - done -shift OPTIND-1 - -if [ "${verbose}" ] - then - print "from: $from" - print "to: $to" - print "localeo: $localeo" - print "sections: $sections" - if [ "${indexonly}" ] - then - print "indexonly: 1" - fi - fi - -cd $from - -if [ ! "${indexonly}" ] - then - print "Processing the man pages ..." - for i in man${sections}/* - do - if [ "$verbose" ] - then - print $i - fi - # n=${i%.*} - name=${to}/${i} - if [ -a "${name}" ] - then - oldname=$name - disambiguate $name - name=$newname - print "Collision - ${oldname} will be stored as ${name}" - fi - eqn $i | tbl | nroff -man | rman -f HTML | sed -e "s/MS_LOCAL_HOST/${localeo}/g" > ${name} - done - fi - -print "Building the index.html files ..." -cd $to -for i in man${sections} - do - if [ "$verbose" ] - then - print $i - fi - cd $i - rm -f index.html - echo '<ul>' > ../new.html - for j in * - do - if [ "$verbose" ] - then - print -n "$j " - fi - print - print "<li> <a href=$j>$j</a>" >> ../new.html - done - echo '</ul>' >> ../new.html - mv ../new.html index.html - cd .. - done |