src/Tools/WWW_Find/Start_WWW_Find.thy
author wenzelm
Mon, 27 May 2013 22:26:08 +0200
changeset 52190 c87b7f26e2c7
parent 52057 69137d20ab0b
child 52926 6415d95bf7a2
permissions -rw-r--r--
merged

(* 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 {*
  YXML_Find_Theorems.init ();
  val port = Markup.parse_int (getenv "SCGIPORT");
  ScgiServer.server' 10 "/" port;
*}

end