#! /bin/sh # The AbiWord Document Merger # # Copyright (C) 2002 Free Software Foundation. # # make-html.sh is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # make-html.sh is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # if [ -n "$ABI_DOC_SOURCE" ]; then CVS="$ABI_DOC_SOURCE"; else CVS=`pwd -P`; fi if [ -z "$ABI_DOC_DEST" ]; then ABI_DOC_DEST="$CVS"; fi if [ -z "$ABI_DOC_PROG" ]; then ABI_DOC_PROG="AbiWord-2.2"; fi html_export_options="html4: no; use-awml: no; embed-css: yes; embed-images:yes" for help_language in en-US fr-FR pl-PL #de-DE do for dir in ./ howto info interface problems tutorial plugins do cd $CVS/ABW/$help_language/$dir for i in $(echo *.abw) do n=`echo $i|cut -f1 -d .` echo $i $ABI_DOC_PROG --to=html --exp-props=$html_export_options $i 2>/dev/null $CVS/make-abidoc.pl -I $n.info -S header.xhtml -F footer.xhtml > $n.xhtml cp $n.xhtml $n.html rm -f $n.xhtml done cd $CVS done cd $CVS/ABW/$help_language rm -rf $ABI_DOC_DEST/help/$help_language mkdir -p $ABI_DOC_DEST/help/$help_language cp -r */ $ABI_DOC_DEST/help/$help_language cp *.html $ABI_DOC_DEST/help/$help_language cp *.css $ABI_DOC_DEST/help/$help_language #You can comment out the next line or ignore the errors if you lack find find $ABI_DOC_DEST/help -name CVS -exec rm -fr {} \; for i in $(echo $ABI_DOC_DEST/help/$help_language/*/ ) do rm -f $i/*.xhtml rm -f $i/*.info rm -f $i/*.abw done cd $CVS done