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.
yesodMiddleware :: (Yesod site, ToTypedContent res) => HandlerFor site res -> HandlerFor site resyesod-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
yesodRender :: Yesod y => y -> ResolvedApproot -> Route y -> [(Text, Text)] -> Textyesod-core Yesod.Core No documentation available.
-
yesod-core Yesod.Core No documentation available.
yesodSubDispatch :: YesodSubDispatch sub master => YesodSubRunnerEnv sub master -> Applicationyesod-core Yesod.Core No documentation available.
-
yesod-core Yesod.Core No documentation available.
-
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
-
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).
-
integration testing for WAI/Yesod Applications API docs and the README are available at http://www.stackage.org/package/yesod-test
yesodSpec :: YesodDispatch site => site -> YesodSpec site -> Specyesod-test Yesod.Test No documentation available.
yesodSpecApp :: YesodDispatch site => site -> IO Application -> YesodSpec site -> Specyesod-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