src/Tools/WWW_Find/Start_WWW_Find.thy
author wenzelm
Thu, 08 Aug 2013 23:52:35 +0200
changeset 52926 6415d95bf7a2
parent 52057 69137d20ab0b
permissions -rw-r--r--
removed unused YXML_Find_Theorems and Legacy_XML_Syntax;

(* 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