#! /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";
fi

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

		      # save to docbook, rename to .xml
		      $ABI_DOC_PROG --to=dbk $i 2>/dev/null
		      mv $n.dbk $n.xml
		done

		cd $CVS
	done

	gnome_help_language=`echo $help_language|cut -f1 -d -`

	cd $CVS/ABW/$help_language
	rm -rf $ABI_DOC_DEST/help/$gnome_help_language
	mkdir -p $ABI_DOC_DEST/help/$gnome_help_language
	cp -r */ $ABI_DOC_DEST/help/$gnome_help_language
	cp *.xml $ABI_DOC_DEST/help/$gnome_help_language
	#find $ABI_DOC_DEST/help -name CVS -exec rm -fr {} \;

	for i in $(ls -1d $CVS/help/$gnome_help_language/*/ )
	do
		rm -f $i/*.info
		rm -f $i/*.xhtml
		rm -f $i/*.abw
	done

	cd $CVS
done

# move english help to "C"
mv $CVS/help/en $CVS/help/C