#!/bin/sh
#

usage="\
Usage: gtkdoc-mkhtml MODULE DRIVER_FILE"

if test "x$1" = "x--version"; then
      echo "1.1"
      exit 0
fi

if test $# -ne 2; then
      echo "${usage}" 1>&2
      exit 1
fi

module=$1
document=$2

prefix=/opt/freeware
gtkdocdir=${prefix}/share/gtk-doc/data

declaration=$gtkdocdir/gtk-doc.dcl

if head -1 $document | grep "<?xml" > /dev/null; then
  is_xml=true
else
  is_xml=false
fi

# Delete the old index.sgml file, if it exists.
if test -f index.sgml; then
	mv -f index.sgml index.sgml.prev
fi

if $is_xml; then
  /gestconf/project/GNOME_ACL/GNOME/build/sh_build_GNOME/export/power_510_32/usr/bin/xsltproc --nonet --xinclude \
      --stringparam gtkdoc.bookname $module \
      --stringparam gtkdoc.version "1.1" \
      $gtkdocdir/gtk-doc.xsl $document
else
   -t sgml -w no-idref -d $gtkdocdir/gtk-doc.dsl \
      -V "gtkdoc-bookname=$module" -V "gtkdoc-version=1.1" \
      $gtkdocdir/gtk-doc.dcl $document
fi

if test ! -e index.sgml
then
      # if jade fails, we wan't to restore old index.sgml
      mv -f index.sgml.prev index.sgml
fi

# copy navigation images to html directory ...
cp -f $gtkdocdir/*.png .


echo "timestamp" > ../html.stamp

