src/Tools/install_html.sh
author clasohm
Wed, 13 Dec 1995 14:14:06 +0100
changeset 1403 cdfa3ffcead2
parent 1349 ef26adb4e5b6
child 1406 dc73ca67b5ac
permissions -rwxr-xr-x
renamed parents_of to parents_of_name to avoid name clash with function from thm.ML

#!/bin/csh
# Executed from the main Isabelle directory, this script transfers all
# files needed for the HTML version of Isabelle's theories to the HTTP
# server.
# If you don't want to copy all the logics, you can supply the names of
# the wanted ones as parameters as in "install_html.sh HOL HOLCF".

if ( "$*" == "" ) then
  rsh hpbroy12 "rm -r .html-data/isabelle/*; mkdir .html-data/isabelle/Tools"
endif

rcp index.html hpbroy12:.html-data/isabelle
rcp Tools/*_arrow.gif hpbroy12:.html-data/isabelle/Tools

if ( "$*" == "" ) then
  rcp -r CCL CTT Cube FOL FOLP HOL HOLCF LCF LK Modal ZF \
         hpbroy12:.html-data/isabelle
else
  rcp -r $* hpbroy12:.html-data/isabelle
endif