Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. forMonoid :: Monoid i => (i -> IO ()) -> Args i i

    fold-debounce Control.FoldDebounce

    Args for monoids. Input events are appended to the tail.

  2. forStack :: ([i] -> IO ()) -> Args i [i]

    fold-debounce Control.FoldDebounce

    Args for stacks. Input events are accumulated in a stack, i.e., the last event is at the head of the list.

  3. forVoid :: IO () -> Args i ()

    fold-debounce Control.FoldDebounce

    Args that discards input events. Although input events are not folded, they still start the timer and activate the callback.

  4. formatRequestCombined :: FormatTime t => String -> String -> t -> String -> Int -> Integer -> String -> String -> String

    happstack-server Happstack.Server.Internal.LogFormat

    Format the request as describe in the Apache combined log format. http://httpd.apache.org/docs/2.2/logs.html#combined The format is: "%h - %u %t "%r" %>s %b "%{Referer}i" "%{User-agent}i"" %h: This is the IP address of the client (remote host) which made the request to the server. %u: This is the userid of the person requesting the document as determined by HTTP authentication. %t: The time that the request was received. %r: The request line from the client is given in double quotes. %>s: This is the status code that the server sends back to the client. %b: The last part indicates the size of the object returned to the client, not including the response headers. %{Referer}: The Referer (sic) HTTP request header. %{User-agent}: The User-Agent HTTP request header.

  5. formatTimeCombined :: FormatTime t => t -> String

    happstack-server Happstack.Server.Internal.LogFormat

    Format the time as describe in the Apache combined log format. http://httpd.apache.org/docs/2.2/logs.html#combined The format is: [daymonthyear:hour:minute:second zone] day = 2*digit month = 3*letter year = 4*digit hour = 2*digit minute = 2*digit second = 2*digit zone = (+ | -) 4*digit

  6. formDecode :: String -> [(String, Input)]

    happstack-server Happstack.Server.Internal.MessageWrap

    Decodes application/x-www-form-urlencoded inputs. TODO: should any of the [] be error conditions?

  7. formDecodeBS :: ByteString -> [(String, Input)]

    happstack-server Happstack.Server.Internal.MessageWrap

    Decodes application/x-www-form-urlencoded inputs. TODO: should any of the [] be error conditions?

  8. forceTimeout :: Handle -> IO ()

    happstack-server Happstack.Server.Internal.TimeoutManager

    No documentation available.

  9. forceTimeoutAll :: Manager -> IO ()

    happstack-server Happstack.Server.Internal.TimeoutManager

    terminate all threads immediately

  10. forbidden :: FilterMonad Response m => a -> m a

    happstack-server Happstack.Server.Response

    Respond with 403 Forbidden.

    main = simpleHTTP nullConf $ forbidden "Sorry, it is forbidden."
    

Page 113 of many | Previous | Next