|
|
|
|
|
|
Synopsis |
|
|
|
Documentation |
|
type CGIProgram = CGIInfo -> CGIParameters -> IO () |
|
data CGIOption |
Constructors | NoPort | do not include port number in generated URLs | AutoPort | include automatically generated port number in generated URLs | Port Int | use this port number in generated URLs | NoHttps | do not attempt to detect Https | AutoHttps | autodetect Https by checking for port number 443 and env var HTTPS |
| Instances | |
|
|
type CGIOptions = [CGIOption] |
|
start :: CGIOptions -> (CGIInfo -> CGIParameters -> IO ()) -> IO () |
Main entry point for low-level CGI scripts. Takes a list of CGIOption and
a CGIProgram and runs it as a CGI script. |
|
Produced by Haddock version 0.5 |