src/Tools/WWW_Find/Start_WWW_Find.thy
author blanchet
Fri, 23 Aug 2013 13:30:25 +0200
changeset 53152 cbd3c7c48d2c
parent 52926 6415d95bf7a2
permissions -rw-r--r--
learn new facts on query if there aren't too many of them in MaSh

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