Admin/init_components
author wenzelm
Fri, 24 Aug 2012 20:47:33 +0200
changeset 48924 27d8ccd1906c
parent 48842 ac976e51cb67
permissions -rw-r--r--
report source path and let front-end resolve implicit master location (e.g. URL);

# -*- shell-script -*- :mode=shellscript:
#
# Author: Florian Haftmann, TU Muenchen
#
# init_components - bash source script to initialize components
# as specified in the Admin directory

while { unset REPLY; read -r; test "$?" = 0 -o -n "$REPLY"; }
do
  case "$REPLY" in
    \#* | "") ;;
    /*) init_component "$REPLY" ;;
    *) init_component "$COMPONENT/$REPLY" ;;
  esac
done < "$ISABELLE_HOME/Admin/components_old"