aeda1b043c
* Sat Mar 24 2001 Tim Waugh <twaugh@redhat.com> - Fix man pages (bug #32820). * Mon Mar 12 2001 Tim Waugh <twaugh@redhat.com> - Fix argument parsing in docbook2xxx (bug #31518). - Fix argument passing in db2html (bug #31520). - Fix pdf generation (bug #31524). * Fri Feb 23 2001 Tim Waugh <twaugh@redhat.com> - Allow the use of custom backends and frontends (bug #29067). * Fri Feb 16 2001 Tim Waugh <twaugh@redhat.com> - Use gdp-both.dsl as the default stylesheet. * Mon Feb 12 2001 Tim Waugh <twaugh@redhat.com> - REALLY only create output directory for db2html (duh). - Handle filenames with dots in properly. * Sun Feb 11 2001 Tim Waugh <twaugh@redhat.com> - Only create output directory for db2html (bug #27092). (docbook2html does not create an output directory in the upstream version, but the compatibility script has been made to do so.) * Mon Jan 22 2001 Tim Waugh <twaugh@redhat.com> - Move the jadetex requirement to the -pdf subpackage. * Tue Jan 16 2001 Tim Waugh <twaugh@redhat.com> - Put output files in new directory instead of current directory. * Mon Jan 15 2001 Tim Waugh <twaugh@redhat.com> - Don't play so many macro games. - Be sure to own utils directory. * Fri Jan 12 2001 Tim Waugh <twaugh@redhat.com> - Split off docbook2pdf into subpackage for dependency reasons. * Mon Jan 08 2001 Tim Waugh <twaugh@redhat.com> - Change group. - Use %{_mandir} and %{_prefix}. - db2* symlinks. - Obsolete stylesheets (and -db2pdf). - Change Copyright: to License:. - Remove Packager: line. - Reword description. * Mon Jan 08 2001 Tim Waugh <twaugh@redhat.com> - Based on Eric Bischoff's new-trials packages.
30 lines
482 B
Bash
Executable File
30 lines
482 B
Bash
Executable File
#! /bin/sh
|
|
output=docbook2html-dir
|
|
skip=0
|
|
for arg in $*
|
|
do
|
|
if [ $skip -gt 0 ]
|
|
then
|
|
skip=$(($skip - 1))
|
|
continue
|
|
fi
|
|
case $arg in
|
|
-h|--help|-v|--version) break
|
|
;;
|
|
-n|--nostd|-u|--nochunks) ;;
|
|
-*) skip=1
|
|
;;
|
|
*) output="$(echo $arg | sed 's,\.sgml$,,;s,\.sgm$,,')"
|
|
echo "output is $output"
|
|
break
|
|
;;
|
|
esac
|
|
done
|
|
if [ -d ${output} ]
|
|
then
|
|
rm -rf ${output}.junk
|
|
mv ${output} ${output}.junk
|
|
fi
|
|
mkdir ${output}
|
|
jw -f docbook -b html -o ${output} "$@"
|