Go to file
Maximilian Tagher 1275cce1af Give better error messages when CSRF validation fails
* This is important because historically these errors have tripped people up
* Making security as easy as possible is important so that it doesn't just get turned off
* Giving clear directions about where to get the CSRF token (a cookie) and where to send it (a header/param) is especially helpful to frontend developers not necessarily familiar with the backend codebase
2017-11-26 09:00:30 -05:00
.github Respond to @psibi's comments 2017-11-08 22:43:51 -08:00
demo Added an example with email auth and an ses mailer 2015-12-05 20:21:38 -07:00
yesod Version bumps/changelog updates 2017-02-08 11:20:31 +02:00
yesod-auth extend docs of defaultMaybeAuthId (#1453) 2017-11-08 12:36:39 +00:00
yesod-auth-oauth Fix some version issues 2017-07-23 11:10:47 +03:00
yesod-bin Drop an upper bound 2017-11-07 06:03:59 +02:00
yesod-core Give better error messages when CSRF validation fails 2017-11-26 09:00:30 -05:00
yesod-eventsource Version bumps/changelog updates 2017-02-08 11:20:31 +02:00
yesod-form yesod-form version bump 2017-09-06 18:28:00 +03:00
yesod-newsfeed Fuller docs + version bump 2016-02-02 08:59:01 -08:00
yesod-persistent Version bump for get404 and getBy404 constraint changes. 2017-11-17 14:41:57 -05:00
yesod-sitemap Doc link updates 2014-12-21 15:23:52 +02:00
yesod-static Version bump 2017-07-23 07:27:14 +03:00
yesod-test Fix typo in Haddocks of assertEq 2017-11-15 11:32:59 -08:00
yesod-websockets Fix yesod-websockets/sample.hs example 2017-03-15 11:54:45 +09:00
.gitignore add a stack.yaml file 2015-06-07 21:41:18 -04:00
.travis.yml Revert "Always use solver on Travis" 2017-07-23 16:45:47 +03:00
appveyor.yml Add curl for AppVeyor 2017-03-23 11:40:27 +02:00
CODE_OF_CONDUCT.md CODE_OF_CONDUCT spacing and problem resolution 2015-10-07 06:18:03 -07:00
CONTRIBUTING.md Respond to @psibi's comments 2017-11-08 22:43:51 -08:00
Dockerfile add a Dockerfile for haskell development 2015-05-27 11:43:16 -04:00
LICENSE Switch to copyright year range #617 2017-02-27 09:47:45 +02:00
README Formatted README a bit 2009-07-14 20:52:09 +03:00
README.md Add travis badge to README 2016-09-01 19:54:18 +03:00
ReleaseNotes.md notes were out of date, seem to be maintained on wiki, noted such 2013-01-03 21:09:54 -08:00
sources.txt Version bumps for 1.4 release 2014-09-21 11:41:37 +03:00
stack.yaml Reduce extra-deps, drop LTS 2 and 3 2017-07-23 13:04:40 +03:00

Build Status

Yesod Web Framework

An advanced web framework using the Haskell programming language. Featuring:

  • safety & security guaranteed at compile time
  • developer productivity: tools for all your basic web development needs
  • raw performance
    • fast, compiled code
    • techniques for constant-space memory consumption
  • asynchronous IO
    • this is built in to the Haskell programming language (like Erlang)

Learn more about Yesod on its main website. If you want to get started using Yesod, we strongly recommend the quick start guide, based on the Haskell build tool stack.

Hacking on Yesod

Yesod consists mostly of four repositories:

git clone --recursive http://github.com/yesodweb/shakespeare
git clone --recursive http://github.com/yesodweb/persistent
git clone --recursive http://github.com/yesodweb/wai
git clone --recursive http://github.com/yesodweb/yesod

Each repository can be built with stack build.