#! /bin/sh -e

TITLE="Debian Reference"
PACKAGE="debian-reference" # Yes this has been changed
DOC_ROOT=${DOC_ROOT:-/usr/share/doc/debian-reference-common/html}
HTML_ROOT=${HTML_ROOT:-html}
README="/usr/share/doc/debian-reference-common/README.gz"

# Echo Language name
echolang () {
  case "$1" in
    "en") echo "<dt>English</dt>";;
    "fr") echo "<dt>French</dt>";;
    "it") echo "<dt>Italian</dt>";;
    "es") echo "<dt>Spanish</dt>";;
    "de") echo "<dt>German</dt>";;
    "pl") echo "<dt>Polish</dt>";;
    "pt-br") echo "<dt>Portuguese (Brazil)</dt>";;
    "zh-tw") echo "<dt>Chinese (Traditional)</dt>";;
    "zh-cn") echo "<dt>Chinese (Simplified)</dt>";;
    "fi") echo "<dt>Finnish</dt>";;
    "ja") echo "<dt>Japanese</dt>";;
    "ko") echo "<dt>Korean</dt>";;
    "ru") echo "<dt>Russian</dt>";;
    "nl") echo "<dt>Nederlands</dt>";;
     *) echo "<dt>$1</dt>";;
  esac
}

# Echo index page
echoindex () {
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\">" 
echo "<html>" 
echo "<head>" 
echo "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">"
echo "<title>${TITLE}</title>" 
echo "</head>" 
echo "<body>" 
echo "<hr>" 
echo "<h1>${TITLE}</h1>" 
if [ -n "${LANGS}" ]; then
  echo "<hr>" 
  echo "<p>" 
  echo "<dl>" 
  for lang in ${LANGS}; do
    echolang "$lang"
    echo "<dd>"
    echo "<a href=\"index.$lang.html\">HTML (multi files)</a>"
    if [ -f $PACKAGE.$lang.html ]; then
      echo ", <a href=\"$PACKAGE.$lang.html\">HTML (single file)</a>"
    fi
    if [ -f $PACKAGE.$lang.txt.gz ]; then
      echo ", <a href=\"$PACKAGE.$lang.txt.gz\">plain text</a>"
    elif [ -f $PACKAGE.$lang.txt ]; then
      echo ", <a href=\"$PACKAGE.$lang.txt\">plain text</a>"
    fi
#    echo ", <a href=\"$PACKAGE.$lang.ps.gz\">PS</a>"
#    echo ", <a href=\"$PACKAGE.$lang.pdf.gz\">PDF</a>"
    echo "</dd>"
  done
  echo "</dl>"
  echo "</p>"
fi
echo "<hr>" 
echo "<p>All plain text are encoded in UTF-8.  HTML (single) file format is provided as substitute for PS/PDF format for full text serach.</p>"
echo "English is now in version 2 series based on XML source.  Translations: French, German, Italian, Spanish, Polish, Portuguese (Brazil), Chinese (Traditional), and Chinese (Simplified) are based on older version 1 English SGML source.  </p>"
echo "<p>If your favorite language is not found in this list, please install the corresponding <tt>debian-reference-*</tt> package.</p>"
echo "<p>Some browsers may not be setup to read compressed plain text. Use appropriate file viewer system to read them directly from <a href=\"$DOC_ROOT\">$DOC_ROOT</a>. See <a href=\"$README\">README.gz<a> for more help and information.</p>"
#echo "<p>For your handy short hard copy reference, excerpt versions "
#echo "are available as <tt>quick-reference-*</tt> package and"
#echo "files are installed into $QHTMLROOT.</p>"
echo "</body>" 
echo "</html>"
}

# Always remove index page and move to the $HTML_ROOT directory
if [ -d $HTML_ROOT ]; then
  cd $HTML_ROOT
  # index.html can be symlink or file
  rm -f index.html
else
  # You may have removed the $HTML_ROOT directory
  exit 0
fi
# Always sort language with English as top.
LANGS="$(ls -1 --color=never index.*.html 2> /dev/null | \
	sed 's/index\.//g;s/\.html//g;s/en/00/' | \
	sort | sed 's/00/en/')"

HTML_INSTALLED=$(echo "${LANGS}" | wc -w)

# Create single index page for menu:
if [ $HTML_INSTALLED = 0 ]; then
  # remove index file only
  # keep images/ and debian-reference.css
  rm -f index.html
elif [ $HTML_INSTALLED = 1 ]; then
  # one file only, link it
  ln -sf index.*.html index.html
else
  echoindex > index.html
fi

exit 0
