Matt Westcott
Matt Westcott
Proposed approach for disabling free tag creation (i.e. only allowing existing tags to be selected, through autocomplete): * Patch tag-it.js with https://github.com/aehlke/tag-it/pull/322 * Add a flag to AdminTagWidget to pass...
@rgs258 Yep - this is now implemented and will be part of Wagtail 2.9, due for release at the beginning of May: https://docs.wagtail.io/en/latest/reference/pages/model_recipes.html#disabling-free-tagging
Have created a proof-of-concept of what a Javascript API for form field manipulation might look like... https://github.com/gasman/telepath-poc
I agree this aspect of Wagtail is badly in need of a clean-up - thanks for tackling it @timheap! I like the idea of 'wrapping' models in helper classes that...
@jacobtoppm My feeling is that showing the full set of available permissions against each row (as opposed to just the currently selected ones) is too much information to be manageable,...
As an addendum, the same feature has been requested for Collection-based models (Image and Document). However, as there are some extra technical details to resolve there (updating the `wagtail.core.permission_policies.collections` module,...
I now have a clear idea of why this is happening: By the time we call [`ImportPlanner.run()`](https://github.com/wagtail/wagtail-transfer/blob/933d69e0100aea63490663021be507d346e5f23d/wagtail_transfer/operations.py#L444), it's correctly determined that: * creating level1 has a soft dependency on level3...
> Incidentally, I think the except KeyError: logic might also be (harmlessly) incorrect: it's based on the misconception that the previous _check_satisfiable step was populating the resolutions lookup table, and...
Code looks good to me. One thing I'm not clear on, though: given that `PillowAnimatedImage` can presumably do everything `PillowImage` can do and more, is there any reason for the...
Relevant blog post: https://paulbakaus.com/2020/01/17/gifs-must-die/ Historically Wagtail has deliberately shied away from dealing with video because doing it well (handling arbitrary format conversions, extracting metadata, generating thumbnails, dealing with large file...