Skip to content
Snippets Groups Projects
Commit e77791e6 authored by Reuben Thomas's avatar Reuben Thomas
Browse files

[project @ 2000-05-12 15:45:48 by rrt]

db2html is now produced from db2html.sh
parent b36d01c8
No related merge requests found
These files are copyright Cygnus Solutions, and distributed under the GNU The db* files are copyright Cygnus Solutions and the GHC Team, and
General Public License. distributed under the GNU General Public License. They're derived from the
Cygnus DocBook tools scripts.
#! /bin/sh #! /bin/sh
DB_STYLESHEET=$SGML_TOP/stylesheets/cygnus-both.dsl
ADMON_GRAPHICS=$SGML_TOP/stylesheets/nwalsh-modular/images/*.gif
# Dave Mason's option to specify a different stylesheet # Dave Mason's option to specify a different stylesheet
case $1 in case $1 in
-d) DB_STYLESHEET=$2 -d) DB_STYLESHEET=$2
......
#! /bin/sh
DB_STYLESHEET=$SGML_TOP/stylesheets/cygnus-both.dsl
HTML_STYLESHEET=$SGML_TOP/stylesheets/nwalsh-modular/test/docbook.css
ADMON_GRAPHICS=$SGML_TOP/stylesheets/nwalsh-modular/images/*.gif
output=db2html-dir
TMPDIR=DBTOHTML_OUTPUT_DIR$$
echo TMPDIR is $TMPDIR
# Dave Mason's option to specify a different stylesheet
case $1 in
-d) DB_STYLESHEET=$2
shift 2
;;
esac
echo "Using stylesheet: \"${DB_STYLESHEET}\""
if [ $# -gt 2 ]
then
echo "Usage: `basename $0` [filename.sgml]" >&2
exit 1
fi
if [ $# -eq 1 ]
then
if [ ! -r $1 ]
then
echo Cannot read \"$1\". Exiting. >&2
exit 1
fi
if echo $1 | egrep -i '\.sgml$|\.sgm$' >/dev/null 2>&1
then
# now make sure that the output directory is always a subdirectory
# of hte current directory
echo
input_file=`basename $1`
output="`echo $input_file | sed 's,\.sgml$,,;s,\.sgm$,,'`"
echo "input file was called $input_file -- output will be in $output"
echo
fi
fi
# we used to generate a single file, but with the modular DB_STYLESHEETs
# it's best to make a new directory with several html files in it
#cat $* | jade -d $DB_STYLESHEET -t sgml -V nochunks > $TMPFN
mkdir $TMPDIR
SAVE_PWD=`pwd`
if [ $1 = `basename $1` ]; then
echo "working on ../$1"
(cd $TMPDIR; jade -t sgml -ihtml -d ${DB_STYLESHEET}\#html ../$1; cd $SAVE_PWD)
else
echo "working on $1"
(cd $TMPDIR; jade -t sgml -ihtml -d ${DB_STYLESHEET}\#html $1; cd $SAVE_PWD)
fi
if [ $# -eq 1 ]
then
if [ -d ${output}.junk ]
then
/bin/rm -rf ${output}.junk
fi
if [ -d ${output} ]
then
mv $output ${output}.junk
fi
echo "about to copy cascading stylesheet and admon graphics to temp dir"
cp ${HTML_STYLESHEET} ${TMPDIR}/
mkdir ${TMPDIR}/stylesheet-images
cp ${ADMON_GRAPHICS} ${TMPDIR}/stylesheet-images
echo "about to rename temporary directory to $output"
mv ${TMPDIR} $output
else
cat $TMPDIR/*
fi
rm -rf $TMPDIR
exit 0
...@@ -33,9 +33,6 @@ then ...@@ -33,9 +33,6 @@ then
fi fi
fi fi
#rm -f ${TMPFN}.dvi
#cat $* | db2dvi > ${TMPFN}.dvi
db2dvi $1 db2dvi $1
if [ ! -f ${TMPFN}.dvi ] if [ ! -f ${TMPFN}.dvi ]
...@@ -43,9 +40,6 @@ then ...@@ -43,9 +40,6 @@ then
exit 1 exit 1
fi fi
# dvips ${TMPFN}.dvi
dvips $outdvi -o $output dvips $outdvi -o $output
if [ -f ${TMPFN}.ps ] if [ -f ${TMPFN}.ps ]
......
#! /bin/sh #! /bin/sh
DB_STYLESHEET=$SGML_TOP/stylesheets/cygnus-both.dsl
ADMON_GRAPHICS=$SGML_TOP/stylesheets/nwalsh-modular/images/*.gif
output=db2rtf.rtf output=db2rtf.rtf
#TMPFN=db2rtf$$.rtf
# setting SGML_CATALOG_FILES should be done in the Makefile at build time
# of jade but I set it here anyway in case someone forgets.
# Dave Mason's option to specify a different stylesheet # Dave Mason's option to specify a different stylesheet
case $1 in case $1 in
...@@ -37,9 +30,6 @@ then ...@@ -37,9 +30,6 @@ then
fi fi
fi fi
### echo "about to copy admon graphics to this dir"
### cp ${ADMON_GRAPHICS} .
cat $* | jade -t rtf -d ${DB_STYLESHEET}\#print cat $* | jade -t rtf -d ${DB_STYLESHEET}\#print
if [ $# -eq 1 ] if [ $# -eq 1 ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment