src/Tools/WWW_Find/Start_WWW_Find.thy
author traytel
Tue, 26 Nov 2013 10:17:14 +0100
changeset 54589 d65c6d613633
parent 52926 6415d95bf7a2
permissions -rw-r--r--
made SML/NJ happier

(* Load this theory to start the WWW_Find server on port defined by environment
   variable "SCGIPORT". Used by the isabelle wwwfind tool.
*)

theory Start_WWW_Find imports WWW_Find begin

ML {*
  val port = Markup.parse_int (getenv "SCGIPORT");
  ScgiServer.server' 10 "/" port;
*}

end