Matthias Kestenholz
Matthias Kestenholz
Sorry for the plug, but if you're only using HTTP you might want to switch to https://github.com/matthiask/django-http-fallback-storage. (Related: https://twitter.com/suppensud/status/769102478918942720)
If you're absolutely sure that your app can only ever be accessed over HTTPS you could set some headers on the ingress controller or maybe even in a Django or...
That's an excellent idea! This is a related issue: https://github.com/matthiask/feincms3/issues/2 My current thinking is: - Add a `position` field - Set `position = tree_id * 100000 + lft` - Ensure...
That's interesting. I had the suspicion that maybe the toolbar JS fails since it hooks into XHR/fetch but it doesn't look as if a failure should hide the toolbar.
I'm not completely sure that works, since Django automatically wraps `get_response` to be either a coroutine or not depending on whether the current middleware (and maybe other middlewares in the...
I think checking the type of the request may be fine? I'm thinking if there are other signals such as the presence of an event loop (https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.get_running_loop), but it seems...
I'm not sure. We have removed the logging panel some time ago and I'm not sure we want to reintroduce it since we had so many hard to find bugs...
Ah yes, something like that would certainly be nice.
I think this is ready to merge, or is there anything left to do?
@tim-schilling It would be great if we were able to inspect all of Jinja2's rendering but maybe that's harder because of Jinja2's template compilation, or what do you think? I...