Alexander Thiemann

Results 76 comments of Alexander Thiemann

The size check will be executed when the body is actually consumed and that's when the exception will trigger. It seems that you are correct that the exception will never...

It's all there? https://spockdocs.s3.eu-central-1.amazonaws.com/Spock-0.11.0.0/Web-Spock.html https://spockdocs.s3.eu-central-1.amazonaws.com/Spock-core-0.11.0.0/index.html https://spockdocs.s3.eu-central-1.amazonaws.com/Spock-api-0.11.0.0/index.html > Am 19.09.2016 um 23:58 schrieb Profpatsch [email protected]: > > Hackage isn’t building and there are no docs on the AWS instance (like for...

It's right there: https://spockdocs.s3.eu-central-1.amazonaws.com/Spock-api-server-0.11.0.0/index.html ;-)

Here's the whole ecosystem: https://spockdocs.s3.eu-central-1.amazonaws.com/index.html

Only the docs for `Spock-api-ghcjs` are missing, which is essentially: https://github.com/agrafix/Spock/blob/0.11.0.0/Spock-api-ghcjs/src/Web/Spock/Api/Client.hs#L27-L40

Yeah, the problem is that HTTPS won't work anymore with plain `S3` if you use custom domains. The options are to configure `CloudFront` in top of `S3` or just a...

Maybe another way to approach this would be to get the Hackage-Docs working again. This is probably currently timing out because the package constraints are not "good" enough...

Nice, thanks for the feedback! 👍 I'm pretty busy atm, but I took a quick look at your project. Note that this might not be exhaustive. From a security perspective,...

You have to include the `csrfToken` from `getCsrfToken` in your form as hidden input named `__csrf_token` (you can changes the name of the field in the configuration).

I'd move the CSRF token handling out of the digestive functor machinery, that way you don't need to do this. Just statically add the mentioned hidden input field to all...