Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. yesodMiddleware :: (Yesod site, ToTypedContent res) => HandlerFor site res -> HandlerFor site res

    yesod-core Yesod.Core

    A Yesod middleware, which will wrap every handler function. This allows you to run code before and after a normal handler. Default: the defaultYesodMiddleware function. Since: 1.1.6

  2. yesodRender :: Yesod y => y -> ResolvedApproot -> Route y -> [(Text, Text)] -> Text

    yesod-core Yesod.Core

    No documentation available.

  3. yesodRunner :: (ToTypedContent res, Yesod site) => HandlerFor site res -> YesodRunnerEnv site -> Maybe (Route site) -> Application

    yesod-core Yesod.Core

    No documentation available.

  4. yesodSubDispatch :: YesodSubDispatch sub master => YesodSubRunnerEnv sub master -> Application

    yesod-core Yesod.Core

    No documentation available.

  5. yesodVersion :: String

    yesod-core Yesod.Core

    No documentation available.

  6. yesodWithInternalState :: Yesod site => site -> Maybe (Route site) -> (InternalState -> IO a) -> IO a

    yesod-core Yesod.Core

    How to allocate an InternalState for each request. The default implementation is almost always what you want. However, if you know that you are never taking advantage of the MonadResource instance in your handler functions, setting this to a dummy implementation can provide a small optimization. Only do this if you really know what you're doing, otherwise you can turn safe code into a runtime error! Since 1.4.2

  7. package yesod-form

    Form handling support for Yesod Web Framework API docs and the README are available at http://www.stackage.org/package/yesod-form. Third-party packages which you can find useful: yesod-form-richtext - richtext form fields (currently it provides only Summernote support).

  8. package yesod-test

    integration testing for WAI/Yesod Applications API docs and the README are available at http://www.stackage.org/package/yesod-test

  9. yesodSpec :: YesodDispatch site => site -> YesodSpec site -> Spec

    yesod-test Yesod.Test

    No documentation available.

  10. yesodSpecApp :: YesodDispatch site => site -> IO Application -> YesodSpec site -> Spec

    yesod-test Yesod.Test

    Same as yesodSpec, but instead of taking a site it takes an action which produces the Application for each test. This lets you use your middleware from makeApplication

Page 9 of many | Previous | Next