Dan Braghiș
Dan Braghiș
When `WAGTAILADMIN_COMMENTS_ENABLED = False`, we still have a number of areas that do unncessary processing. e.g. `PageSubscription`s get created (https://github.com/wagtail/wagtail/blob/1af0815af0baaca801e2a09169d461a259f731ea/wagtail/admin/views/pages/edit.py#L353-L360) Would be great to treat `WAGTAILADMIN_COMMENTS_ENABLED` as a feature flag
Fixes #9561 Django's `ImageField` will happily accept a filepath and will handle it with Pillow. With our change to using Willow, that no longer is the case as Willow's image...
https://github.com/wagtail/wagtail/blob/main/wagtail/admin/views/account.py#L226-L238 Use case: I want to selectively disable certain panels (e.g. password change form) depending on some conditions. We allow this for the home panels - https://github.com/wagtail/wagtail/blob/main/wagtail/admin/views/home.py#L277-L289
Currently StreamField follows old InlinePanel behavior when it comes to reordering items. With https://github.com/torchbox/wagtail/compare/901b68c85f...46b77d49a4 in, it would be great to get drag-and-drop support. Currently implemented in https://github.com/wagtail/wagtail/blob/master/wagtail/wagtailadmin/templates/wagtailadmin/pages/index.html#L26
We switched to using Tippy for the action menu in #11456 While we don't necessarily describe how the action bar behaves when `extra_footer_actions` is in use, it currently breaks. See...
As per https://drive.google.com/file/d/1Ks5_RrT_J64hOtGsRK3MMdovM_otvxDR/view?usp=sharing it makes sense to limit coverage to a couple of full tox targets (e.g. `py311-wagtail5.2-django-4.2-{sqlite,postgres}`, as well we only run the sqlite tests for the same target....
Refs: - https://github.com/graphql-python/graphene/issues/772 - https://github.com/saleor/saleor/blob/fa288358ab8dfecb0f862c12edbc512ad0f3f000/saleor/graphql/views.py#L296-L302 #325 could help with some of the nesting for pages
e.g. > https://wagtail-grapple.readthedocs.io/en/latest/general-usage/decorators.html is a little outdated, at least some fields are not imported correctly (Eg: `from wagtail.admin.edit_handlers import FieldPanel`) h/t @paragliding-nsk
Ref: https://github.com/pygments/pygments/pull/2428