úÎ'â&Ö     :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 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.    portable experimentalartyom.shalkhakov@gmail.com?Given path and a sequence of actions chained using combinators 7 defined in controller API, run them in the CGI monad. $path (hierarchical part of the URL) AThe same as runUrlDisp, but yields CGIResult. If URL dispatching 1 failed, then a 404 not found error is returned.         UrlDisp-0.1.3Network.UrlDispNetwork.UrlDisp.TypesNetwork.UrlDisp.ControllerUrlDispUrlSpathmethparamreadPathtakePathendPathh|/|//|?|\|\\|. runUrlDisp evalUrlDisppPath maybeRead