YPCrumble

Results 66 comments of YPCrumble

@peterbe thoughts on the `FANCY_USE_REST_FRAMEWORK_ETAG` setting I mentioned above? My current solution is to use `never_cache` on all endpoints I'm using fancy-cache for...and I suppose incorporating `etag` would reduce the...

@peterbe makes sense - and this is exactly what I'm currently doing everywhere I'm using fancy cache's cache_page decorator. What I was considering was whether A/ many users would want...

@peterbe reopening because I just realized that the latest version of our middleware, which follows the Django cache middleware, does not cache the response if the `Cache-Control: private` header is...

I could see an argument like mitigating the size of a request object should be done at the webserver level, but want to raise the question just in case!

It looks like https://github.com/dmtrKovalenko/date-io might work as a wrapper around whichever date library a user chooses.

@timonweb I'm having a similar issue, in that by using the `is_superuser` permission, it means that I would have to grant permission to everything in my entire site for a...

@saintger Thanks for submitting this! One issue I have as a new user is that the example site is broken with Django 1.10, at least per the instructions in the...

@azin634 this seems to help with the first two types of newlines, but not all. I'm now getting this error: > UnicodeDecodeError: 'utf-8' codec can't decode byte 0xd4 in position...

Actually, this is probably more related to django-sanitized-dump interacting with this line. Somehow a particular line is getting exported from django-sanitized-dump with an extra tab character. I'm not sure why...

@rajasegar thanks for building this! I'm getting the same error - here's a very simple file that throws the error: ``` import ReactDOM from 'react-dom' import App from './App' ReactDOM.hydrate(...