úÎ&Ñ%‘     MUnpacks a UrlDisp into a plain old ServerMonad. Used as a top-level wrapper. :Filters on and consumes the next element of the url path.   path "str" 0 will match requests whose next path element is "str" 8 Consumption of the path element backtracks on failure. Filters on the request method.   meth "GET" % will match requests made using get. +Filters on any parameter (via put or get).   param ("cmd", "foo")  will match on ?cmd=foo OReturns a string representation of a parameter, if available. Otherwise fails. AReturns Just a string representation of a parameter, or Nothing. 5Matches and consumes the next element of the path if F that element can be successfully read as the proper type. The parsed  element is returned. DCombinator that consumes the next element of the path and passes it = as an unparsed string into the following lambda expression.   h  \x -> output (x++"99")  will match on "/12" and  output "1299" 8 Consumption of the path element backtracks on failure. -Only matches if the remaining path is empty. >A null CGI action, used to begin a string of path combinators DCombinator that filters on and consumes the next element of the url  path.   h |/ "dir" |/ "subdir"  will match "/dir/subdir". 7 Consumtion of the path element backtracks on failure. /Combinator that filters on the request method.   h |// "GET" % will match requests made using get. ;Combinator that filters on any parameter (via put or get).   h |? ("cmd","foo")  will match on ?cmd=foo BCombinator that matches and consumes the next element of the path H if path element can be successfully read as the proper type and passed % to the following lambda expression.   h |\ \x -> output (x + (1.5::Float))  will match on "/12"  and output "13.5"-. Consumption of the path element backtracks  on failure. DCombinator that consumes the next element of the path and passes it = as an unparsed string into the following lambda expression.   h |\\ \x -> output (x++"99")  will match on "/12"  and output "1299" 7 Consumtion of the path element backtracks on failure. =Combinator that only matches if the remaining path is empty.           urldisp-happstack-0.1Happstack.UrlDispUrlDisp unUrlDispUrlSpPathspCatch runUrlDisppathmethparamgetInput getInputMayreadPathtakePathendPathh|/|//|?|\|\\|. maybeRead