#!/bin/sh

# might need xml files:
#   ln -s ../../shared .

for x in d[0-9][0-9]; do
  echo -n '=== ' $x
  if [ -f $x/Overview.xml ]; then
    echo
    cd $x
    #if [ -f xmlspec.xsl ]; then
    #  xsltproc xmlspec.xsl Overview.xml > Overview.html
    #else
      xsltproc Overview.xml > Overview.html
    #fi
    cd ..
  else
    echo '   not xmlspec'
  fi
done


    