Matthias Kestenholz
Matthias Kestenholz
@surfer190 https://github.com/matthiask/django-admin-sso This is the somewhat maintained version of django-admin-sso.
django-tree-queries is a small library inspired by django-cte-trees; it has less features, a smaller API surface but on the upside it does support sqlite and mariadb too, not only postgres...
> I have to think of other options for the button and make proposal. I really like the way it's done in the Furo sphinx theme: https://pradyunsg.me/furo/ (Sorry for the...
There were reasons (tm) for the addition of the `StopConsumer` and `self.disconnect` lines, but I'm not sure I understand them after rereading the pulls. Maybe now we're back to the...
I'd try overriding `SHOW_TOOLBAR_CALLBACK` with a version that always returns `True` during development. Maybe that's sufficient?
I didn't, it was just a suggestion. Something like: ``` # app/utils.py from django.conf import settings def show_toolbar(request): return bool(settings.DEBUG) ``` and ``` # app/settings.py SHOW_TOOLBAR_CALLBACK = 'yourapp.utils.show_toolbar' ``` I'm...
Is it possible that your filesystem encoding (in Python) isn't set to UTF-8? My systemd user units always contain the following environment variables: `Environment=LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_CTYPE=en_US.UTF-8` I remember that we...
... that being said, maybe the toolbar should expect filenames which cannot be properly converted to UTF-8...
Oh yeah, it's complicated and very annoying. I'm unsure what we should do. On one hand django-debug-toolbar shouldn't crash, on the other hand it's documented that Django expects an UTF-8...
We already discussed adding checks for issues which are (arguably) only surfaced but not really caused by django-debug-toolbar in the past; the last time it was about static files as...