summaryrefslogtreecommitdiff
path: root/src/server/CGI.hs
blob: 1a77351e20cb5bf0687ab0b22873548e35a1baeb (plain)
1
2
3
4
5
6
7
8
9
10
11
-- | Isolate dependencies on the problematic cgi package to this module
module CGI(module C) where
import Network.CGI as C(
       CGI,ContentType(..),Accept(..),Language(..),
       getVarWithDefault,readInput,negotiate,requestAcceptLanguage,getInput,
       setHeader,output,outputFPS,outputError,
       handleErrors,catchCGI,throwCGI,
       liftIO)
import Network.CGI.Protocol as C(CGIResult(..),CGIRequest(..),Input(..),
                                 Headers,HeaderName(..))
import Network.CGI.Monad as C(runCGIT)