Matthias Kestenholz

Results 228 comments of Matthias Kestenholz

@tim-schilling Sure! I think that's a great idea. django-debug-toolbar is a relevant project for the Django ecosystem and may motivate people to generally contribute to (somewhat) well-known bigger open source...

Thanks for the report! I don't have a good answer right away. I certainly prefer too much logging to no logging at all in development. It's not good that this...

I have some code in a project of mine which works quite well. The idea is to add an additional setting, `BUNDLE_PATH`, and a template tag which first tries to...

@liuliangsir `STATICFILES_DIRS` and `WEBPACK_BUNDLE_DIR` both are not guaranteed to be set. I'd much rather have an additional key in the `WEBPACK_LOADER` dicts than some non-obvious (to me) concatenation of other...

I published a good enough solution here: https://pypi.org/project/django-webpack-bundle/ It's not perfect and it especially does not support remove static assets but that's out of scope for me.

I have tried it again just now, and it seems to work for me. Are you maybe using CKEditor 5? I'm only using CKEditor 4 (by way of https://github.com/django-ckeditor/django-ckeditor) It...

This would certainly be doable; the problem is that django-tree-queries doesn't add much API at all. It has almost no extension points. What you write would probably be more straightforward...

Hi It's definitely possible to query these values with SQL directly. But, the CTE starts [from the roots of the tree](https://github.com/matthiask/django-tree-queries/blob/c337ee81d5e830c3ac70c23436edbd853006919c/tree_queries/compiler.py#L64) and [recursively fetches the children](https://github.com/matthiask/django-tree-queries/blob/c337ee81d5e830c3ac70c23436edbd853006919c/tree_queries/compiler.py#L74) so adding the cumulative...

Yes, that's true. Django's file fields generally do not remove the base file; I think it would be unexpected and a possible source of data loss if we started removing...