My patches to the Yesod Web Framework

fr33domlover da3b437189 yesod-auth: Use cryptonite instead of deprecated cryptohash 8 gadi atpakaļ
demo 5ca0dd7468 Added an example with email auth and an ses mailer 9 gadi atpakaļ
yesod 4d6448b0dd Use Data.Yaml.Config module to decrease code duplication 8 gadi atpakaļ
yesod-auth da3b437189 yesod-auth: Use cryptonite instead of deprecated cryptohash 8 gadi atpakaļ
yesod-auth-oauth e6216fa289 Version bump 8 gadi atpakaļ
yesod-bin 120c236fc5 More changelog updates 8 gadi atpakaļ
yesod-core bf0ca2bc10 Version bump 8 gadi atpakaļ
yesod-eventsource bed6dafce8 Doc link updates 10 gadi atpakaļ
yesod-form 465210d131 Version bump 8 gadi atpakaļ
yesod-newsfeed 806dc5c629 Fuller docs + version bump 9 gadi atpakaļ
yesod-persistent d101c8eebe yesod-persistent: Make it work with persistent 2.5 8 gadi atpakaļ
yesod-sitemap bed6dafce8 Doc link updates 10 gadi atpakaļ
yesod-static d785094ec9 Version bump 9 gadi atpakaļ
yesod-test 6addf3923d Changes spec name and bump version to 1.5.1.1 8 gadi atpakaļ
yesod-websockets ae0608bc21 Bump yesod-websockets version. 9 gadi atpakaļ
.gitignore aa94e5e249 add a stack.yaml file 9 gadi atpakaļ
.travis.yml be9d0a281d Better Travis caching 9 gadi atpakaļ
CODE_OF_CONDUCT.md bb7f0afe34 CODE_OF_CONDUCT spacing and problem resolution 9 gadi atpakaļ
Dockerfile 82da9b0fe8 add a Dockerfile for haskell development 9 gadi atpakaļ
LICENSE 20015aa6ee Update license with MIT license 12 gadi atpakaļ
README edd163da33 Formatted README a bit 15 gadi atpakaļ
README.md 8de3e80c94 Simplify README based on stack #1021 9 gadi atpakaļ
ReleaseNotes.md d6a59cee3b notes were out of date, seem to be maintained on wiki, noted such 12 gadi atpakaļ
sources.txt def48d8a45 Version bumps for 1.4 release 10 gadi atpakaļ
stack.yaml d99de61554 Use CPP to maintain backward compat 8 gadi atpakaļ

README

Authentication methods for Haskell web applications.

Note for Rpxnow:
By default on some (all?) installs wget does not come with root certificates
for SSL. If this is the case then Web.Authenticate.Rpxnow.authenticate will
fail as wget cannot establish a secure connection to rpxnow's servers.

A simple *nix solution, if potentially insecure (man in the middle attacks as
you are downloading the certs) is to grab a copy of the certs extracted from
those that come with firefox, hosted by CURL at
http://curl.haxx.se/ca/cacert.pem , put them somewhere (for ex,
~/.wget/cacert.pem) and then edit your ~/.wgetrc to include:
ca_certificate=~/.wget/cacert.pem

This should fix the problem.