src/Tools/WWW_Find/Start_WWW_Find.thy
author wenzelm
Sun, 25 Aug 2013 14:35:25 +0200
changeset 53188 bb5433b13ff2
parent 52926 6415d95bf7a2
permissions -rw-r--r--
some secondary shortcuts derived from 5.1.0/keymaps/German_Keyboard_keys.props (using CIRCUMFLEX instead of S+1); tuned;

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