Porównaj commity

...

950 Commity
v6.2.3 ... main

Autor SHA1 Wiadomość Data
LB 46c7c60b49 Add changelog & release considerations #12882 2025-04-03 12:19:54 +10:00
the-r3aper7 9f04de83d5 Remove shared admin imports from `_editor_js.html` & remove unnecessary usage
- Fixes #2936
- Deprecate the usage of _editor_js.html
2025-04-03 12:19:54 +10:00
Srishti-j18 97975b5293 Increase the gap of columns within row fields for comment button #12806 2025-04-02 08:35:40 +10:00
Srishti-j18 cc345cff54 Fix comment button positioning next to fields #12807
- Fixes #12687
- Fields fixed; radio checkbox, radio, multi checkbox, select
2025-04-02 06:36:22 +10:00
Matt Westcott edf7c66fac Mention third-party StreamField form builder packages in form builder docs
As per https://github.com/wagtail/wagtail/pull/12287#issuecomment-2769692508
2025-04-02 06:17:47 +10:00
Matt Westcott db3a695695
Ensure ImproperlyConfigured is thrown from db_field on unbound FieldPanels as intended
Since the refactor of the base panel class in b599fce714, self.model is always defined (initially as None) so the ImproperlyConfigured exception would never be thrown.
2025-03-27 13:57:02 +07:00
Matt Westcott 125a749a9a Defer validation of min_num constraints on InlinePanel when saving drafts 2025-03-25 09:17:37 +00:00
Matt Westcott d0f28a1a69 Defer validation of required fields in InlinePanel when saving drafts 2025-03-25 09:17:37 +00:00
Matt Westcott 39e4db4e39 Release note for #12976 2025-03-24 20:25:44 +00:00
Sage Abdullah 5c97298e15 Use underscore-separated keys in setup.cfg for setuptools >= v78 2025-03-24 20:08:30 +00:00
Sage Abdullah 45f89a335d Use WagtailAdminModelForm as the base for RedirectForm and SearchPromotionForm 2025-03-24 20:08:30 +00:00
Sage Abdullah 2fbf6b5f06 Remove FORMS_URLFIELD_ASSUME_HTTPS stop-gap in CI tests 2025-03-24 20:08:30 +00:00
Sage Abdullah 7b5d772b21 Avoid deprecation warnings about URLField assume_scheme on Django 5.x 2025-03-24 20:08:30 +00:00
Sébastien Corbin 6a7917697c
Fix typo in preview blocks documentation 2025-03-24 10:01:52 +01:00
Sage Abdullah d3341e8fa7 Make title and slug optional in page previews 2025-03-21 17:47:27 +00:00
Sage Abdullah 9eac93a565 Defer validation of required text fields in previews 2025-03-21 17:47:27 +00:00
Sage Abdullah 6b40a38346 Ignore AVIF deprecation in pillow-heif
A stop-gap until https://github.com/wagtail/Willow/issues/166 is resolved
2025-03-21 16:47:17 +00:00
Jake Howard 8faa15175c
Make GitHub highlight html files as Django templates
Shamelessly stolen from https://github.com/django/django/pull/19279
2025-03-21 23:20:06 +07:00
Matt Westcott 103ea61702
Document that request_or_site is optional on BaseGenericSetting.load 2025-03-20 19:11:19 +07:00
Matt Westcott 68a3bd4725 Ignore minimum block_counts constraints when deferring validation 2025-03-19 18:27:09 +00:00
Matt Westcott 6938786444 Ignore min_num constraints when deferring validation 2025-03-19 18:27:09 +00:00
Matt Westcott 6d01356ec6 Rework deferring validation on StreamField
Overwriting a block's `required` option is not safe, as a block object is part of a class-level definition and is thus shared by all block instances, not just the one currently being validated. Instead, introduce a flag to Block.clean to skip 'required' validation.
2025-03-19 18:27:09 +00:00
Matt Westcott c38db51559 Add versionchanged note for new Page.save validation 2025-03-19 14:22:45 +00:00
Matt Westcott 04a174f0f2 Make get_latest_str fallback translatable 2025-03-19 14:22:45 +00:00
Matt Westcott 6a0bd93e5b Add an empty_value_display property on Column for use when value is blank
This surfaces an issue with SearchPromotion having a broken string representation when the query string is None, so fix that too
2025-03-19 14:22:45 +00:00
Matt Westcott 397edf2ec5 Support deferring validation on StreamField 2025-03-19 14:22:45 +00:00
Matt Westcott 5015eddef3 Preserve required asterisks on validation-deferred fields when re-showing form after an error 2025-03-19 14:22:45 +00:00
Matt Westcott 2ab55ac3c8 Use fallback for blank string representations on model index and edit views 2025-03-19 14:22:45 +00:00
Matt Westcott 3f70a0a52f Add fallback for blank string representations in audit log, and add tests for creating/editing invalid draft snippets 2025-03-19 14:22:45 +00:00
Matt Westcott f649856cf4 Defer validation when saving snippets as draft 2025-03-19 14:22:45 +00:00
Matt Westcott 0745ae53da Test that validation is still enforced on save_revision when saving or scheduling
As per https://github.com/wagtail/rfcs/pull/104#issuecomment-2691145020 - unless clean=False is explicitly passed, validation should be applied, including on fields that would accept nulls at the database level.
2025-03-19 14:22:45 +00:00
Matt Westcott 2b882743ec Enforce validation on save for FieldPanels corresponding to non-null, non-text-type model fields 2025-03-19 14:22:45 +00:00
Matt Westcott 96f9ebe3f6 Recognise required_on_save flag being set on model fields
It is clear from the test models and bakerydemo that title is frequently declared with a plain FieldPanel rather than TitleFieldPanel, so we should not rely on the presence of TitleFieldPanel or an explicit required_on_save flag on the FieldPanel to enforce form-level validation on the title.
2025-03-19 14:22:45 +00:00
Matt Westcott abb7a687e4 Add tests for creating / publishing EventPage with a blank (required) from_date field
The fix to EventPageForm.clean addresses a logic bug that existed before the change to validation - if `date_from` was left blank, it would be omitted from `cleaned_data` and so retrieving it would raise an uncaught KeyError.
2025-03-19 14:22:45 +00:00
Matt Westcott a20c55a9bc Add tests for validate-on-publish when editing 2025-03-19 14:22:45 +00:00
Matt Westcott 51629e8488 Add tests for validate-on-publish when creating pages 2025-03-19 14:22:45 +00:00
Matt Westcott a56888a7ab Defer validation on FieldPanel unless required_on_save passed 2025-03-19 14:22:45 +00:00
Matt Westcott d0e106b403 Fix test models to use TitleFieldPanel for the title field 2025-03-19 14:22:45 +00:00
Matt Westcott 1f210831dd Relax model validation when saving pages as draft 2025-03-19 14:22:45 +00:00
Matt Westcott 13dbf61323 Set default slug / draft_title / locale independently of full_clean method 2025-03-19 14:22:45 +00:00
Matt Westcott a80f40999e Refactor page create/edit views to decouple identifying the action from performing it 2025-03-19 14:22:45 +00:00
Matt Westcott 8cdbbcfe29 Add mechanism for deferring required field validation on WagtailAdminModelForm 2025-03-19 14:22:45 +00:00
LB 8f640a8cdb Add changelog for #12448 2025-03-15 15:51:57 +10:00
Andy Babic a983dc220b
Frontend cache: Fix n+1 query issues when batch purging page urls (#12448)
* Update tests to highlight the current issues
* Optimise PurgeBatch and util methods, and add docstrings
* Use page objects as the site_cache_target in tests
* Use 'cache_object' instead of 'site_cache_target' to better match terminology in Page methods
* Ensure self.captureOnCommitCallback() is applied when performing purges in tests
* Ensure tests check PURGED_URLS outside of captureOnCommitCallback()
2025-03-15 15:48:58 +10:00
LB de99b8b90f Docs - Minor whitespace cleanup 2025-03-15 15:25:30 +10:00
LB 57fcb353d8 Add changelog for #12278 2025-03-15 15:23:54 +10:00
smark-1 322d7e1620 Add documentation for setting the default privacy option on pages 2025-03-15 15:23:54 +10:00
smark-1 6bbd109072 Support showing the default (or parent) privacy setting on page edit/create
Fixes #3708
2025-03-15 15:23:54 +10:00
smark-1 8654aadb63 Add method to set a default privacy option on Page models
Fixes #3708
2025-03-15 15:23:54 +10:00
LB f0c7e88d0e Add changelog for CI test fixes #12960 & #12961 2025-03-15 11:20:41 +10:00
Sage Abdullah 8e4a721525 Fix nondeterministic page order in test_ordering_by_content_type 2025-03-15 11:18:04 +10:00
Sage Abdullah 8e8770d334
Release note for #12958 2025-03-13 21:29:42 +07:00
ashish-nagmoti 52ac35acea
Add color-scheme meta tag to Wagtail admin 2025-03-13 21:29:42 +07:00
Sage Abdullah ee83938fa5
Release note for #12555 2025-03-13 20:03:15 +07:00
LB 3c628b8ad2 Add Python unit tests to ensure the skip link element is present 2025-03-13 21:27:23 +10:00
LB 1772909551 Add FocusController story 2025-03-13 21:27:23 +10:00
LB 3c09da2fb8 Enhance & rework FocusController
- Update the Controller import & identifier to be `w-focus` not `w-skip-link`
- Rework methods to be easier to maintain, pull out the focus event attachment handler to a function
- Add JSDoc examples & refine description
- Only add then remove the tabindex attribute if needed
- Rework unit tests to be the emerging common structure, add unit test coverage & test for the preservation of existing tabindex attributes
2025-03-13 21:27:23 +10:00
LB 472c1e95c2 Create a force focus util for common forced focus usage 2025-03-13 21:27:23 +10:00
LB 5ccea76e3d Rename SkipLinkController to FocusController 2025-03-13 21:27:23 +10:00
Sage Abdullah 9edb8be32d
Release note for #12952 2025-03-13 17:53:52 +07:00
LB 7b7dd98c19 Stimulus controllers - Move repeated no-param-reassign declarations to top of file 2025-03-13 05:51:08 +10:00
LB 85665af504 Update Stimulus controller `@example` JSDoc items
- Use consistent ```html markdown blocks
- Use consistent two space indentation
- Move the description to the example row, not on the new line where applicable
- Add missing examples were practical
2025-03-13 05:51:08 +10:00
LB 83ec67d6c1 Update Stimulus JSDoc to use US English spelling 2025-03-13 05:50:41 +10:00
LB c793d302b4 Fix alpha sorting of Stimulus controller imports 2025-03-13 05:50:41 +10:00
LB bfcd0c7496
Clean up stubs & adapter
- Ensure Jest only adapter items are in adapter.js
- Ensure Jest AND Storybook items are in stubs.js
- Add mock for someElement.scrollIntoView in the adapter
2025-03-12 21:06:08 +07:00
Sage Abdullah 3d9a868a97
Fix LocaleController tests 2025-03-12 15:39:23 +07:00
LB cbfaecdfae Add changelog for #12805 2025-03-10 09:30:59 +10:00
joelwilliam2005 b82f0fb150 Add unit tests for InlinePanel initial min_num fix #12805 2025-03-10 09:30:59 +10:00
elhussein almasri 9dcdaeecfc Fix the initial order of InlinePanel with min_num set #11889
Fixes #9391
2025-03-10 09:30:59 +10:00
Baptiste Mispelon dbf920e00c Fix incorrect column label in promoted search tables (#12941)
The promoted search tables are not filtered by date.
2025-03-05 17:19:37 +00:00
Matt Westcott d9de2d781f Release note for #12886 2025-03-05 16:20:04 +00:00
Sage Abdullah a81b119821 Bump ruff to 0.9.6 2025-03-05 16:15:13 +00:00
Mohammad Fathi Rahman 8998549807 Update third_party_tutorials.md 2025-03-05 14:21:42 +00:00
Sage Abdullah 871f12934f
Release note for #12895 2025-02-24 15:16:50 +00:00
Thibaud Colas da57f04b80
Use identical button styles for comment and comment replies 2025-02-24 11:46:31 +00:00
Thibaud Colas aae7d85153
Refactor comment styles to use new Sass module system and avoid duplication 2025-02-24 11:46:31 +00:00
Thibaud Colas 21b5e3114f
Add focus-outline mixin to global set 2025-02-24 11:46:30 +00:00
Thibaud Colas 2d2953a28a
Stop using box mixin for a11y result row 2025-02-24 11:46:30 +00:00
Thibaud Colas e8a3d753e3
Refactor minimap styles 2025-02-24 11:46:30 +00:00
Thibaud Colas e67836da34
Remove unused Draftail ImageBlock styles 2025-02-24 11:46:30 +00:00
Thibaud Colas b59539c7d6
Update Draftail stylesheets to resolve all Sass warnings 2025-02-24 11:46:29 +00:00
Sage Abdullah df6a3d8256
Release note for #12894 2025-02-24 11:38:32 +00:00
Sage Abdullah 4016cbeafb
Reinstate WorkflowManager availability in wagtail.models 2025-02-24 11:36:31 +00:00
Matt Westcott a6f2a68aae Set module path for Page to appease Sphinx autodoc 2025-02-22 01:16:02 +00:00
Matt Westcott 8559ae9d68 Move remaining models to pages submodule 2025-02-22 01:15:50 +00:00
Matt Westcott 1f1956246e Move WorkflowMixin to workflows submodule 2025-02-22 01:14:05 +00:00
Matt Westcott 6505a02d61 Move TaskState model to workflows submodule 2025-02-22 01:14:05 +00:00
Matt Westcott 855dcd4bb6 Move GroupApprovalTask to workflows submodule 2025-02-22 01:14:05 +00:00
Matt Westcott eb36ff3570 Move Task model to workflows submodule 2025-02-22 01:14:05 +00:00
Matt Westcott 41a36333ff Move WorkflowTask model to workflows submodule 2025-02-22 01:14:05 +00:00
Matt Westcott de30668dad Move Orderable to orderable submodule 2025-02-22 01:14:05 +00:00
Matt Westcott 4a1497437c Move WorkflowState model to workflows submodule 2025-02-22 01:14:05 +00:00
Matt Westcott 399df657a9 Move WorkflowContentType to workflows submodule 2025-02-22 01:14:05 +00:00
Matt Westcott 35b71a0b7b Move Workflow model to workflows submodule 2025-02-22 01:14:04 +00:00
Matt Westcott 0c168e302a Move LockableMixin to locking submodule 2025-02-22 01:14:04 +00:00
Matt Westcott f2ebae3343 Move PreviewMixin to preview submodule 2025-02-22 01:14:04 +00:00
Matt Westcott 204df71f40 Move DraftStateMixin to draft_state submodule 2025-02-22 01:14:04 +00:00
Matt Westcott b3202ebf20 Move RevisionMixin to revisions submodule 2025-02-22 01:14:04 +00:00
Matt Westcott 33ef3d5317 Move revision model/manager to its own submodule 2025-02-22 01:14:04 +00:00
Sage Abdullah 732ac35b3f fixup! fixup! Validate against invalid characters in Lexeme values 2025-02-21 21:07:45 +00:00
Sage Abdullah fcbd114936 Do not run MySQL tests in parallel 2025-02-21 21:07:45 +00:00
Sage Abdullah add5b57b18
fixup! Validate against invalid characters in Lexeme values 2025-02-21 18:41:40 +00:00
Matt Westcott 6a22961ff2
Validate against invalid characters in Lexeme values 2025-02-21 17:59:33 +00:00
Sage Abdullah 7e299fb267
Recompile German translation to allow test_context_i18n to pass 2025-02-21 17:49:28 +00:00
Sage Abdullah 43220b9dde
Update latest.txt for 6.3.1 2025-02-21 16:47:21 +00:00
Sage Abdullah 78a239175d
Fill in release date for 6.4.1 2025-02-21 16:15:34 +00:00
Sage Abdullah dad755eee8
Fetch new translations from Transifex 2025-02-21 16:15:34 +00:00
Thibaud Colas 3a2792ea88 Release notes for #12845 2025-02-21 13:50:21 +00:00
Bernhard Bliem 5b2791f18e Make 'Actions' string in Draftail widget translatable 2025-02-21 13:50:21 +00:00
Bernhard Bliem c09bd91db9 Generate translations for rich text headings 2025-02-21 13:50:21 +00:00
Bernhard Bliem 3f381892cd Use gettext_lazy instead of gettext in rich-text editor 2025-02-21 13:50:21 +00:00
Thibaud Colas 7c284d9e31 Release notes for #12782 2025-02-21 11:24:10 +00:00
Sage Abdullah cbbc571867 Fix white text on white background in previews for sites that use color-scheme without a background-color 2025-02-21 11:24:10 +00:00
Thibaud Colas 311d49b04a Add release notes for #12903 2025-02-21 10:38:00 +00:00
Sage Abdullah e8b3cd885d Add missing aria-label to upgrade banner dismiss button 2025-02-21 10:38:00 +00:00
Sage Abdullah a668dea376
Release note for #12905 in 6.4.1 2025-02-20 20:46:59 +00:00
Baptiste Mispelon b1fad0cb61
Fix typo in docstring 2025-02-20 20:41:29 +00:00
Sage Abdullah 411088da71
Release note for #12907 in 6.4.1 2025-02-20 20:37:58 +00:00
Sage Abdullah 5ee7e62074
Bump sphinx-wagtail-theme to 6.5.0 2025-02-20 17:33:45 +00:00
Sage Abdullah f714f8d219
Fix console errors in Draftail tests 2025-02-20 13:53:35 +00:00
Sage Abdullah 2fb27ed018
Release note for #12869 2025-02-20 13:51:59 +00:00
Sage Abdullah fd7ec28e3d
Force preview panel scroll behavior to instant to avoid flickering 2025-02-20 13:34:12 +00:00
Sage Abdullah 786d9eb854
Release note for #12901 in 6.4.1 2025-02-20 11:32:12 +00:00
Matt Westcott 8393c5ad2a Relax upper bounds of django-taggit (<7) and beautifulsoup (<5)
Fixes #12884
2025-02-19 17:20:05 +00:00
Matt Westcott 0bcdc4359f Release note for #12880 in 6.5 2025-02-19 16:09:26 +00:00
Matt Westcott c986bacd77 Release note for SubqueryConstraint fix from #12880 in 6.4.1 2025-02-19 16:08:16 +00:00
Sage Abdullah 1c973a7605 Fix 'in' lookup with an explicit subquery on Elasticsearch 2025-02-19 16:03:47 +00:00
Sage Abdullah 297a810d10 Fix 'exact' lookup with an explicit subquery on Elasticsearch 2025-02-19 16:03:47 +00:00
Sage Abdullah bcf9f55b96 Fix 'exact' lookup with an implicit subquery on Elasticsearch 2025-02-19 16:03:47 +00:00
Sage Abdullah aa7b1d58ef Remove obsolete SubqueryConstraint check in search backends 2025-02-19 16:03:47 +00:00
Matt Westcott 6847656406 Ensure that bugfixes in 6.4.1 are mentioned in the release notes there and not in 6.5 2025-02-19 14:16:31 +00:00
Matt Westcott f7695bc4e7 remove spurious period from 6.4.1 release note 2025-02-19 14:10:19 +00:00
Matt Westcott d1b7c38fa8 remove spurious period from 6.3.4 release note 2025-02-19 14:08:51 +00:00
Thibaud Colas 451195a3de Add v6.3.4 release notes to release index 2025-02-19 14:08:47 +00:00
Thibaud Colas 952ee04f08 Use the correct event listener to adjust minimap positioning (#12896) 2025-02-19 13:43:44 +00:00
Sage Abdullah 3e24fee094 Fix invisible nested menu items #12847 2025-02-19 13:25:42 +00:00
zerolab 81171b1eae
fixup! Unpin django-filter's top boundary (#12885) 2025-02-17 14:53:25 +00:00
zerolab 8dd59b149a
Unpin django-filter's top boundary (#12885) 2025-02-17 14:33:31 +00:00
Matt Westcott cbca63c1a3 Release note for #12874 2025-02-13 15:43:57 +00:00
Matt Westcott 995203f42e Pass image PK to set_image_focal_point_task as a string
Using a non-integer primary key on an image model is not formally supported or tested, but it's possible someone might try it, and there's no harm in getting into the habit of stringifying PKs that we pass to tasks.
2025-02-13 14:21:53 +00:00
Matt Westcott c865c8a1f3 Fix handling of models with UUID primary keys in search indexing 2025-02-13 14:18:06 +00:00
Matt Westcott fcf3e257ec Fix handling of models with UUID primary keys in reference index 2025-02-13 13:49:46 +00:00
Matt Westcott 88abe5872c Support searching `none()` querysets (#12873) 2025-02-13 12:52:04 +00:00
Matt Westcott e01aaed00c Add release notes for 6.4.1 including #12862 2025-02-13 01:12:13 +00:00
Sage Abdullah 3c81589250 Prevent error when filtering by locale and searching with Elasticsearch (#12862) 2025-02-13 01:09:18 +00:00
LB (Ben Johnston) 33d30d8105
NPM package updates; `downshift`, `focus-trap-react`, `immer`, `redux`, `uuid` (#12540)
* Update NPM packages (focus-trap-react, downshift, uuid, immer, redux)

## Relevant upgrade release notes

- `focus-trap-react` - v8 to v10
  - https://github.com/focus-trap/focus-trap-react/releases/tag/v9.0.0
  - https://github.com/focus-trap/focus-trap-react/releases/tag/v10.0.0
- `downshift` - v7 to v9
  - https://github.com/downshift-js/downshift/releases/tag/v9.0.0
  - https://github.com/downshift-js/downshift/releases/tag/v8.0.0
  - https://github.com/downshift-js/downshift/blob/master/src/hooks/MIGRATION_V8.md
- `uuid` - v9 to v11
  - https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md#1100-2024-10-26
  - https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md#1000-2024-06-07
- `immer` v9 to v10
  - https://github.com/immerjs/immer/releases/tag/v10.0.0
- Update Redux ecosystem
  - https://github.com/reduxjs/redux-thunk/releases/tag/v3.1.0
  - https://github.com/reduxjs/redux/releases/tag/v5.0.0
  - https://github.com/reduxjs/reselect/releases/tag/v5.0.1
  - https://github.com/reduxjs/react-redux/releases/tag/v8.0.0 (note: react-redux cannot be updated further due to React dependency, which is blocked by Draftail)

* Add release notes

---------

Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2025-02-12 03:51:27 +00:00
naina35 182ae8488c
Apply Sass mixed declarations migration in preparation for CSS nesting. Fix #12720 (#12733)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2025-02-12 03:15:56 +00:00
Srishti Jaiswal e23096f354
Migrate away from deprecated Sass import rules to module system (#12734) 2025-02-11 14:58:31 +00:00
mahmoud 8f6b72b19a Docs - Fix word order in Headless GraphQL section
Fixes #12852
2025-02-11 06:00:29 +10:00
Sage Abdullah 31f547e103 Include Python version in CircleCI cache key
Ref: https://discuss.circleci.com/t/how-to-use-python-version-or-image-name-in-cache-key/41108/2
2025-02-10 16:30:51 +00:00
Srishti-j18 6c7e45b894
Do not show the content type column as sortable when searching pages 2025-02-10 15:05:13 +00:00
Matt Westcott 225d3f384c Use standard tokenizer for Elasticsearch to preserve numeric tokens (#12851)
Since its inception the Elasticsearch backend has defaulted to the `lowercase` tokenizer (https://www.elastic.co/guide/en/elasticsearch/reference/current/analysis-tokenizers.html#_word_oriented_tokenizers), which treats non-letter characters as separators. This means that numbers within text (surrounded by whitespace) are skipped when indexing and cannot be searched.

Change to the `standard` tokenizer, but apply the `lowercase` filter to keep searches case-insensitive.
2025-02-10 12:55:38 +00:00
Thibaud Colas 801b1bb067
Add more details of legacy rich text behavior
This is to hopefully make it easier to look up with search.
2025-02-06 16:34:49 +00:00
Sage Abdullah a812b61f60
Release note for #8716 2025-02-06 11:54:51 +00:00
Sage Abdullah ad70e5fdb6
Simplify UniqueConstraint check for custom rendition models 2025-02-06 11:46:26 +00:00
Cynthia Kiser 530cc5c355
Added tests for AbstractRendition's unique constraint check
Co-authored-by: Sage Abdullah <sage.abdullah@torchbox.com>
2025-02-06 11:40:15 +00:00
Sage Abdullah 1aecddf34a
Improve unique constraint check error message for custom rendition models
Co-authored-by: Cynthia Kiser <cnk@caltech.edu>
2025-02-06 11:40:15 +00:00
Oliver Parker ea30d636d4
Adds support for constraints on AbstractRendition, as an alternative to unique_together 2025-02-06 11:38:52 +00:00
Sage Abdullah 9294907f31
Release note for #12849 2025-02-06 10:47:18 +00:00
Matt Westcott 2acd50c2db Simplify example of appending a rich text block to a streamfield 2025-02-05 20:38:19 +00:00
Matt Westcott a61cfa678d Apply normalization when modifying a StreamBlock
Fixes #12827
2025-02-05 20:37:00 +00:00
Matt Westcott 09c7f66e03 Add release note for #12639 to 6.5 release page 2025-02-05 18:39:10 +00:00
Sage Abdullah 794fe25e97 Add normalize() implementation to TypedTableBlock (#12808) 2025-02-05 18:38:16 +00:00
Matt Westcott 58584896df Add Seb Corbin to core team 2025-02-05 09:35:43 +00:00
Matt Westcott 78ba5f3625 Update latest.txt for 6.4 and 6.3.3 2025-02-05 09:34:32 +00:00
Sage Abdullah 9de2f4ddd6
Add Bernhard Bliem to contributors 2025-02-04 13:47:41 +00:00
Bernhard Bliem 9c4136635b
Activate user's preferred language in JavaScriptCatalog view 2025-02-04 13:36:12 +00:00
Aayushman Singh 4f37b011f5
Add WAGTAIL_ prefix to non-taggit settings 2025-02-04 10:34:25 +00:00
Sage Abdullah 251d1d188c Expand docs for StreamField block previews 2025-02-03 16:43:29 +00:00
Sage Abdullah f309a44075 Add reference docs for Block.get_template and Block.get_context 2025-02-03 16:43:29 +00:00
Sage Abdullah 88bb61d32e Minor tweaks to StreamField block previews documentation 2025-02-03 16:43:29 +00:00
Matt Westcott f04af6cc16 Fill in release date for 6.3.3 2025-02-03 15:11:44 +00:00
Matt Westcott c6923f43c4 Fill in release date for 5.2.8 2025-02-03 15:11:28 +00:00
Matt Westcott af7254a808 Fill in release date for 6.4 final 2025-02-03 15:11:18 +00:00
Matt Westcott cb0a358022 Fetch new translations from Transifex 2025-02-03 15:10:49 +00:00
Sage Abdullah c70719bfa6
Ensure block preview is hidden when the user clears out the search input 2025-02-03 14:45:37 +00:00
Matt Westcott 14d3341ffd Release note for #12829 in 6.4 2025-01-31 18:09:49 +00:00
Matt Westcott 58ff3e1067 Release note for #12829 in 6.3.3 2025-01-31 18:09:49 +00:00
Matt Westcott 2970a1531e Release note for #12829 in 5.2.8 2025-01-31 18:09:49 +00:00
Matt Westcott 7722ffed1e Prevent syntax error on MySQL search when query includes symbols
Fixes #8614 and #12811

We match MySQL's behaviour of treating non-alphanumeric characters as token separators, equivalent to spaces. This way, the Lexeme instances consist of alphanumerics only, avoiding escaping issues that lead to these syntax errors.

(note: the \w class in regexp also counts underscores as "alphanumeric", but this is also consistent with the MySQL behaviour and presents no issues with escaping.)
2025-01-31 17:49:28 +00:00
Matt Westcott 88cbfb2875 Don't break on blank search queries 2025-01-31 17:49:28 +00:00
Sage Abdullah e4748e45de Fix Block.is_previewable detection on blocks with non-None unset default values 2025-01-31 15:37:44 +00:00
Thibaud Colas b365206d05
Switch block previews from hover + toggle to toggle only 2025-01-31 15:34:17 +00:00
Thibaud Colas 0193cad5ea
Adjust block chooser styles to match latest designs 2025-01-31 14:48:40 +00:00
Matt Westcott 6cad9c4397 More descriptive release note for #12322 in 6.4 2025-01-31 13:05:37 +00:00
Matt Westcott 6a8298879d Release note for #12322 in 5.2.8 2025-01-31 13:05:37 +00:00
Matt Westcott d9e2714c56 Release note for #12322 in 6.3.3 2025-01-31 13:05:37 +00:00
Matt Westcott bdde31c9ed Release note for #12837 2025-01-31 11:09:33 +00:00
Mohamed-Rabiaa f2f94c4d12 docs: Add django.contrib.admin to INSTALLED_APPS in add_to_django_project guide 2025-01-31 11:02:30 +00:00
Sage Abdullah db87deb0c8 Improve block preview layout for responsiveness and reduced shifting 2025-01-30 15:40:49 +00:00
Sage Abdullah f71be48bb3 Add block- CSS class in block preview template
This matches the behaviour of {% include_block %} inside a StreamBlock
2025-01-30 15:40:49 +00:00
Matt Westcott 259770f56d Release note for #12831 in 6.4 2025-01-29 20:53:52 +00:00
Matt Westcott a7f00156ad Release note for #12831 in 6.3.3 2025-01-29 20:53:52 +00:00
Matt Westcott 335817e289 Revert "Simplify example of appending a rich text block to a streamfield" (#12831)
See #12827 - `normalize` is not applied on append, so the value type must match.

This reverts commit b0cda80626.
2025-01-29 20:53:51 +00:00
Thibaud Colas eb4b240791
Add unit tests for rich text block chooser initialisation based on capabilities 2025-01-28 11:11:56 +00:00
Thibaud Colas 4d6c8b87a1
Configure block previews and descriptions in block chooser within rich text 2025-01-28 11:11:56 +00:00
Matt Westcott 2a42ae4edd Add release note stubs for 6.5 2025-01-27 18:54:25 +00:00
Matt Westcott b66a9bfb64 Version bump to 6.5a0 2025-01-27 18:54:25 +00:00
Matt Westcott a2eb6ea8ca Drop support for Django 5.0
This will end security support on 30 Apr 2025, immediately before the release of Wagtail 6.5.
2025-01-27 18:54:25 +00:00
Matt Westcott 695ff86c87 Remove versionchanged note for ImageChooserBlock to ImageBlock migration
Leave other versionadded/versionchanged notes intact, as they relate to deprecated features that are not yet removed and should thus be left in place until 7.0.
2025-01-27 18:54:25 +00:00
Matt Westcott cf19e6ea8e Release notes for #12097 and #12394 in 5.2.8 2025-01-27 17:03:49 +00:00
Matt Westcott 4301d4ded2 Release note for #12812 in 6.4 2025-01-27 16:49:58 +00:00
Matt Westcott 11f7997227 Release note for #12812 in 6.3.3 2025-01-27 16:49:58 +00:00
Matt Westcott 30deac59d0 Release note for #12812 in 5.2.8 2025-01-27 16:49:58 +00:00
Matt Westcott 6489eae6cf Prevent database error when calling permission_order.register on app ready
Fixes #12742

Previously, `permission_order.register` performed a database lookup for the content type. This is invalid if called from an app `ready` method as the documentation suggests, because this may run before the database has been initialised. Instead, `register` now queues up the arguments it receives, and the content type lookup is constructed lazily on first call to `get_content_type_order_lookup` (which happens when the group edit view is requested).
2025-01-27 16:14:51 +00:00
dependabot[bot] 77a55e3f60 Bump store2 from 2.14.2 to 2.14.4
Bumps [store2](https://github.com/nbubna/store) from 2.14.2 to 2.14.4.
- [Commits](https://github.com/nbubna/store/compare/2.14.2...2.14.4)

---
updated-dependencies:
- dependency-name: store2
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-01-25 11:43:42 +00:00
Thibaud Colas 9d496be14c Fix incorrect documentation reference 2025-01-23 17:07:48 +00:00
Thibaud Colas 29e41ea6fc Add separate release notes for performance optimizations 2025-01-23 16:54:05 +00:00
Thibaud Colas 484c71c539 Add separate release notes for search terms report 2025-01-23 16:40:57 +00:00
Matt Westcott 4b99a17554 Extend LTS period to 18 months 2025-01-23 13:15:33 +00:00
LB 2ce58fed95 Refine 6.4 release notes
- Fix a few small typos & formatting issues
- Ensure the form builder changes are better documented
- Add links to other docs pages where possible
- Improve consistency with usage of `code` backticks on modules
- Add docs reference for StreamField `get_template` docs
2025-01-22 10:31:35 +00:00
LB 1dd3dbea87 Fix spelling of `CloudFront` in docs & release notes 2025-01-22 10:31:35 +00:00
LB 0bf909414a Fix minor whitespace formatting issues in docs 2025-01-22 10:31:35 +00:00
LB 1422a9d6c4 Add third party tutorials from late 2024 2025-01-22 10:21:02 +00:00
Matt Westcott 22061091cf Add correct indent for 6.3.3 release notes 2025-01-21 21:24:46 +00:00
Matt Westcott 80c2f928fd Release note for #12394 in 6.4 2025-01-21 21:24:14 +00:00
Matt Westcott 834afaea54 Release note for #12394 in 6.3.3 2025-01-21 21:23:11 +00:00
Joshua Munn 8fbd74a2f0 Rename operations_and_block_path identifiers for consistency 2025-01-21 21:23:05 +00:00
Joshua Munn 3949026270 Fix StreamChildrenToListBlockOperation sharing model instance state 2025-01-21 21:23:05 +00:00
Mohamed-Rabiaa f25a95deee Fix typo: Replace 'another field' with 'an author field' in writing_templates documentation (#12799) 2025-01-21 20:35:26 +00:00
Matt Westcott 01d7858ba4 Fix typo 2025-01-21 11:10:02 +00:00
Matt Westcott 7f39750de9 Clarify lack of support for filtering across relations in RelatedFields docs
Fixes #11757
2025-01-21 11:07:12 +00:00
Matt Westcott 4244943300 Fix typo in block preview example 2025-01-20 18:19:32 +00:00
Matt Westcott 9a024bcb42 Generate new translation strings 2025-01-20 18:00:22 +00:00
Matt Westcott c17c1c859b Fetch new translations from Transifex 2025-01-20 17:59:24 +00:00
Matt Westcott 1309f5e7cc Remove unused heading 2025-01-20 17:48:47 +00:00
Sage Abdullah ac4bd79e40
Add initial docs for StreamField block previews 2025-01-20 17:35:06 +00:00
Sage Abdullah 476e7aa35c
Ensure block label and description are scrollable in previews 2025-01-20 17:30:27 +00:00
Sage Abdullah 00fd54acda
Add body block in block_preview.html to ease customisations 2025-01-20 17:30:27 +00:00
Sage Abdullah 63d5ce9d11
Remove color-scheme from default block_preview.html template 2025-01-20 17:30:27 +00:00
Sage Abdullah 28d8ba6af7
Improve responsiveness of block preview layout 2025-01-20 17:30:26 +00:00
Sage Abdullah 77bcbf702d
Add preview button with eye icon in block chooser 2025-01-20 17:30:25 +00:00
Sage Abdullah d25a67a4b8
Implement block previews in StreamField block chooser 2025-01-20 17:29:53 +00:00
Thibaud Colas efc73a649d Release notes for #12790 2025-01-20 17:05:08 +00:00
Thibaud Colas e236919a79 Implement dragndrop safeguard for rich text fields 2025-01-20 17:05:08 +00:00
Thibaud Colas 3cbca376a9 Implement dragndrop for StreamField with sortable.js 2025-01-20 17:05:08 +00:00
Thibaud Colas 1636059bef Fix Tippy destroy preventing further instantiations 2025-01-20 17:05:08 +00:00
Thibaud Colas fe9409f99c Add drag and drop support to InlinePanel 2025-01-20 17:05:08 +00:00
Thibaud Colas 1c3f84f9c2 Clean up inline panel tests, using correct markup 2025-01-20 17:05:08 +00:00
Matt Westcott 03f5352fe0 Full release note for FieldPanel / InlinePanel shorthand 2025-01-20 16:16:42 +00:00
Matt Westcott ab7547c6cb
Add upgrade note about fixing tests for background tasks (#12794)
* Add upgrade note about fixing tests for background tasks

Addition to the upgrade note added in https://github.com/wagtail/wagtail/pull/12787 to cover how to update tests that make database changes and expect to see the results reflected immediately in search queries and other processes that now only happen at the end of a transaction.

* Update docs/releases/6.4.md

Co-authored-by: sag​e <laymonage@gmail.com>

---------

Co-authored-by: sag​e <laymonage@gmail.com>
2025-01-20 16:08:47 +00:00
Sage Abdullah 6a7792e910 Use unreleased django-modelcluster main branch to test against Django's main 2025-01-20 15:18:10 +00:00
Sage Abdullah 5cfc4aac6e Test against Django stable/5.2.x branch 2025-01-20 15:18:10 +00:00
Jatin Bhardwaj b4781e2a90
Added scroll offset to ensure visibility of fields when typing. Fix #7777 (#12759)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2025-01-20 13:24:33 +00:00
Thibaud Colas a2038727a7 Add more release notes sections 2025-01-20 12:06:44 +00:00
Thibaud Colas 72808487cd Add missing release notes for #12766 2025-01-20 11:51:50 +00:00
Thibaud Colas 1e0b0f3508
Enable alt text quality check by default. Fix #12636 (#12793) 2025-01-20 11:49:58 +00:00
Thibaud Colas ca66dcc6af Release notes for #12766 2025-01-20 11:46:54 +00:00
Cynthia Kiser e6f27c95e8 Update accessibility concerns docs in light of GSOC contextual alt text project
This also documents default_alt_text, providing a stricter example that does not fall back to image title
2025-01-20 11:46:54 +00:00
Cynthia Kiser 3f551f212c Insert default_alt_text when auto-converting from ImageChooserBlock to ImageBlock 2025-01-20 11:46:54 +00:00
Sage Abdullah fc4a892aad
Do not check for is_previewable in block preview template
We'll allow the view to render it anyway, but the block chooser won't show the preview
2025-01-20 10:03:59 +00:00
Sage Abdullah 4c8ea0e54c
Move default block preview template definition to Block.DEFAULT_PREVIEW_TEMPLATE 2025-01-20 10:03:59 +00:00
Sage Abdullah 3b8e15561d
Require block previews to override the global template if only preview value is provided 2025-01-20 10:03:59 +00:00
Sage Abdullah 7055155183
Move block preview template to wagtailcore
This allows us to use it in wagtail.blocks without depending on wagtail.admin
2025-01-20 10:03:59 +00:00
Sage Abdullah 839f95f50b
Add template_is_overridden utility function 2025-01-20 10:03:59 +00:00
Sage Abdullah c13caa952f
Add Block.is_previewable to avoid showing previews without proper configuration 2025-01-20 10:03:59 +00:00
Sage Abdullah adf52d85c7
Add Block.get_description() to be used in block preview 2025-01-20 10:03:58 +00:00
Sage Abdullah 3bad585b74
Add mechanism for previewing StreamField blocks 2025-01-20 10:03:58 +00:00
Sage Abdullah 7c0712cc38
Include Block.definition_prefix as blockDefId in blocks' Telepath metadata 2025-01-20 10:03:58 +00:00
Sage Abdullah 3ea241370d
Store block definitions in Block.definition_registry 2025-01-20 10:03:58 +00:00
sag​e 841b36ed18
Prevent main menu from re-rendering when clicking outside while the menu is closed (#12755)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2025-01-20 07:33:36 +00:00
Thibaud Colas 06ce7d2868 Release notes for #12723 2025-01-20 07:20:49 +00:00
Matt Westcott 0ccd99c867 Only replace alt text field if it hasn't been edited from the previous default 2025-01-20 07:20:49 +00:00
Matt Westcott 26f4d07ee1 Populate ImageBlock alt text from default_alt_text when an image is chosen
Fixes #12660
2025-01-20 07:20:49 +00:00
Matt Westcott 1db66a7ded Add default_alt_text to the state dictionary returned by ImageChooser view and used by AdminImageChooser widget 2025-01-20 07:20:49 +00:00
Matt Westcott a6b64dc42e Release notes for #12040 / #12787 2025-01-17 20:37:09 +00:00
Jake Howard bc9d5da38f Move deleting old image / document files to task 2025-01-17 19:01:22 +00:00
Jake Howard 0da3c731a5 Move updating search index to task 2025-01-17 19:01:17 +00:00
Jake Howard 5a0ecb9b30 Move setting image focal point to task 2025-01-17 18:08:50 +00:00
Jake Howard 78cd283b9e Move updating reference index to task 2025-01-17 18:08:39 +00:00
Jake Howard 79d129f8c2 Move frontend cache purging to task 2025-01-17 16:34:41 +00:00
Jake Howard 65d3b34698 Install `django-tasks`
The default configuration is to run tasks in-band, resulting in no change in functionality when simply adding tasks.
2025-01-17 15:48:56 +00:00
Thibaud Colas 7af2ca013e Release notes for #11257 2025-01-17 13:50:12 +00:00
Thibaud Colas 3e09c75814 Update documented Safari support version numbers 2025-01-17 13:50:12 +00:00
Thibaud Colas dcf523416c Switch TypeScript target to ES2023 2025-01-17 13:50:12 +00:00
Thibaud Colas 14d16ae823 Remove now-unneeded focus-visible backwards compat 2025-01-17 13:50:12 +00:00
Thibaud Colas be9b462947 Update Storybook Babel browser support configuration 2025-01-17 13:50:12 +00:00
Thibaud Colas 8d5fc606a8 Remove unneeded IE11 reference from browserslist 2025-01-17 13:50:12 +00:00
Thibaud Colas fc6aee2318 Update browserslist definition to remove Safari 15 2025-01-17 13:50:12 +00:00
Thibaud Colas 7ec01f813e Update caniuse-lite DB 2025-01-17 13:50:12 +00:00
Stéphane Blondon 3329e6dadf fix: add missing space between two words (#12781)
Otherwise, logs show such lines:
HINT: Ensure that MainMenu uses `panels` instead of `content_panels`or set up an `edit_handler` ...
2025-01-16 17:35:14 +00:00
Mike Gifford 4298665bfd Update guideline links in sustainability_considerations.md (#12762)
One of your links was busted, so I figured I'd suggest some updates.
2025-01-16 17:31:41 +00:00
Matt Westcott 7e1832a4eb Prevent error when searching and filtering by locale (#12772)
Ref: https://github.com/wagtail/wagtail/issues/6616#issuecomment-2590737050

The current locale filter logic performs a related field filter on `locale__language_code` which isn't supported when searching, as per #6616. Change this to look up the locale object in a separate query.
2025-01-16 16:38:25 +00:00
Matt Westcott b2958e2b4c Work around Sphinx failing to resolve HttpRequest in type annotations
Fixes #12777
2025-01-16 16:00:14 +00:00
Matt Westcott c561977e8d Move 6.3.3 changelog entry to the right place 2025-01-16 14:57:44 +00:00
Matt Westcott 9511d7f3ac Release note for #12778 2025-01-16 14:54:29 +00:00
Matt Westcott 581bb5ccd7 Use double quotes in code snippet
Co-authored-by: sag​e <laymonage@gmail.com>
2025-01-16 14:53:16 +00:00
Matt Westcott 54797e3826 Document Block.get_template in StreamField usage guide 2025-01-16 14:53:16 +00:00
Cynthia Kiser f3d1765353
Update example for customizing "p-as-heading" check (#12763)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2025-01-15 16:34:13 +00:00
Matt Westcott 8b3eb44340 Fix TestFormPageWithCustomFormBuilder assertion against Django 5.1.5 and other security releases
Django 5.1.5 (and other security releases released today) has added a `max_length` attribute to GenericIPAddressField, which breaks an assertion in the form builder tests that compares HTML directly. Change this to a BeautifulSoup-based test so that it works on older and newer releases.
2025-01-15 10:58:27 +00:00
Andy Babic 88a3a397ca Prevent redundant calls to Site.find_for_request() from Page.get_url_parts() (#12454) 2025-01-15 00:41:57 +00:00
Rishabh Sharma 782aa0e16b
Reduce confusing spacing below StreamField blocks help text. Fix #11888 (#11934)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2025-01-14 10:00:09 +00:00
Ayaan cb11ec3e01
Upgraded sass-loader to remove Sass warnings (#12728)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2025-01-14 08:44:47 +00:00
Tom Usher 75e07498f4 Add support for specifying an operator on Fuzzy queries (#12714) 2025-01-13 17:04:35 +00:00
Thibaud Colas d20c1b66bf release notes for #12751 2025-01-13 13:05:53 +00:00
Sage Abdullah da12f4a284 Use explicit label for defaulting to server language in account settings 2025-01-13 13:05:53 +00:00
Sage Abdullah 944fd02dc3 Replace l18n library with Intl-based LocaleController 2025-01-13 13:05:53 +00:00
Sage Abdullah 983a86b0b8 Fix missing heading and breadcrumbs in Account view 2025-01-13 13:05:53 +00:00
Thibaud Colas f0b04200a4 Add v6.3.3 release notes 2025-01-13 12:14:56 +00:00
Srishti-j18 c63ac0af4a
Add FilterField('created_at') to fix sorting by created_at when searching in documents index view 2025-01-13 12:12:09 +00:00
Srishti Jaiswal 0bba5da337
Correct positioning of comment buttons with DateField, TimeField and DateTimeField. Fix #12214 (#12685)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2025-01-13 12:08:56 +00:00
sag​e 99a9317eea
Avoid loading icons sprite and JS files in 404 page (#12745)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2025-01-13 11:29:17 +00:00
Joren Hammudoglu 4fc2c2abac
Improve deprecation warning for `WidgetWithScript` by raising it with `stacklevel=3` 2025-01-07 16:27:26 +00:00
Sage Abdullah 7a59c9cc20
Release note for #12735 2025-01-07 13:34:37 +00:00
Sage Abdullah 9b3acffaac
Fix crash when loading the dashboard with only the "bulk_delete" page permission 2025-01-07 12:23:26 +00:00
Unyime Emmanuel Udoh d8d75bddf0
Fix crash when loading the dashboard with only the "unlock" page permission 2025-01-07 12:03:11 +00:00
Matt Westcott 216b80111b
Upgrade consideration note for change of Page panel definitions 2025-01-07 11:05:11 +00:00
Matt Westcott 3f91fcb3a3
Define base Page panels as placeholders within wagtail.models
This ensures that code such as `content_panels = Page.content_panels + [...]` works as expected even if wagtail.admin has not been loaded.

Fixes #12747
2025-01-07 11:01:08 +00:00
Matt Westcott 09e26c3c2b
Add failing test for page model defined before wagtail.admin is loaded 2025-01-07 10:22:12 +00:00
Matt Westcott a2407c0027 Release note for #12697 2025-01-06 23:44:28 +00:00
Matt Westcott f9debd9084 Continuity fixes for tutorial 2025-01-06 23:11:53 +00:00
Matt Westcott 82c42d1ecc Nest code snippets for string panel definitions inside the note 2025-01-06 19:29:44 +00:00
USER 961aa07547 Addressed feedback: Updated FieldPanel documentation 2025-01-06 19:26:26 +00:00
USER da818b562f “Update-FieldPanel-documentation-to-encourage-use-of-strings-in-panel-definitions” 2025-01-06 19:26:26 +00:00
Matt Westcott 7cfae8c3b5 Update latest.txt for 6.3.2 2025-01-02 12:18:57 +00:00
Matt Westcott b97ac14cba Fill in release date for 6.3.2 2025-01-02 11:09:43 +00:00
Matt Westcott 50fb7b21bb Fetch new translations from Transifex 2025-01-02 11:09:17 +00:00
Daniel Kirkham 996484099b Insert missing space into 6.3 release notes 2025-01-02 09:16:49 +00:00
Artem Kamyshansky f90fae1aee typo fix 2025-01-02 09:16:07 +00:00
Matt Westcott 784f4bbbb9 Don't set aria-expanded=false on clear(), because clearing in itself doesn't close the menu 2024-12-19 14:10:30 +00:00
Ayaan 1cbb1e8fb2 Remove - extra addClass & aria-label in appendColumnButton and restore aria-expanded="false" in clear method 2024-12-19 13:23:24 +00:00
Ayaan df8a6f219c Added aria-expanded attribute to add new column button (#12680) 2024-12-18 18:03:24 +00:00
Matt Westcott 2e08d84332 Release note for #12702 in 6.4 2024-12-18 16:07:58 +00:00
Matt Westcott 5a17312e42 Release note for #12702 in 6.3.2 2024-12-18 16:07:25 +00:00
Matt Westcott 3cfbd028e9 Implement get_block_by_content_path on ImageBlock (#12702)
Fixes #12688. Without this, commenting on a field of an ImageBlock will cause subsequent loads of the edit view to fail at the point that the comments validate that they are attached to a valid block path.
2024-12-18 16:07:25 +00:00
Matt Westcott ac08838115 Update James Harrington's name in credits 2024-12-18 16:01:06 +00:00
ankit02327 7745aa628d Separate creation and activation steps in tutorial document (#12695) 2024-12-18 15:30:53 +00:00
Sage Abdullah 23b9f4aca9 Move images and documents get_usage().count() call to view code (#12691)
The get_usage() method returns a ReferenceGroups instance that defines a
__getitem__ method. Accessing get_usage().count() from the template
means that Django tries to access the count via ["count"], which fails,
then continues by using getattr(reference_groups, "count") before
finally calling the count method.

We have seen reports where the blocktranslate tag fails because the
usage_count_val is not a number. We haven't got a reproducible example,
but this would help surface any errors, as the exception would be raised
from the Python code rather than the template.
2024-12-18 14:58:28 +00:00
Jake Howard 57d141c701 Don't persist credentials in CI
There's no vulnerability here, especially since the token explicitly only has read access anyway, but it's worth improving regardless.
2024-12-18 14:37:54 +00:00
Sage Abdullah 6b33690cd3 Refactor pages revisions_revert view to be a subclass of EditView (#12690)
Currently, the code that handles the POST request for reverting a
revision lives in the EditView class, while the revisions_revert view is
a smaller view that tries to "mimic" the EditView for rendering the view
as part of a GET request. The view injects the revision ID into the
form, which has the action URL hardcoded to the EditView. Including the
revision ID in the form allows the EditView to tell whether it's in a
"reverting" mode or not, and adjust the POST logic accordingly.

However, this results in possible inconsistencies in both views.
Whenever we want to change EditView code or template, we need to make
sure to also update the revisions_revert view. The fact that the
revisions_revert view is a function-based view doesn't help.

Instead of copying the view code and reusing the template with the
addition of injecting the revision ID in the form, turn it into a proper
subclass of the EditView, and make use of Django's URL patterns to
retrieve the revision ID in the EditView.

This approach is similar to how reverting revisions is handled for
snippets.

Ideally, all the code for handling revisions revert should live in the
RevisionsRevertView, and the EditView shouldn't know about it at all.
This is how it's done for snippets: all the revisions revert-related
code is put in RevisionsRevertMixin.

However, this is currently not possible for pages without more
significant refactoring, so this commit does the minimal change needed
to achieve the goal of keeping the revisions_revert view in sync with
the EditView.
2024-12-18 14:36:39 +00:00
Matt Westcott 8bb2a18cd7 Release note for #12676 2024-12-18 12:55:43 +00:00
Sage Abdullah 130a9ebd93 Enable breadcrumbs by default 2024-12-18 12:52:31 +00:00
Sage Abdullah 58d9f9bc72 Make generic/confirm_unschedule.html template extend generic/base.html template 2024-12-18 12:52:31 +00:00
Sage Abdullah faa37c0068 Make generic/confirm_unpublish.html template extend generic/base.html template 2024-12-18 12:52:31 +00:00
Sage Abdullah e63b42b547
Add explicit path to Sphinx configuration in .readthedocs.yml 2024-12-18 11:34:31 +00:00
Sage Abdullah 286d7cbd6b Enable breadcrumbs in revisions compare view (#12675) 2024-12-18 00:45:43 +00:00
Matt Westcott 01e7291486 Handle old construct_wagtail_userbar signature in ChecksSidePanel 2024-12-18 00:41:31 +00:00
Claude Meyer 268174b781 Release notes for #12678 2024-12-17 22:10:23 +00:00
Claude Meyer aa08e86cba Fixes #3847 by adding page as a third argument to construct_wagtail_userbar hooks along with a deprecation warning. 2024-12-17 22:10:09 +00:00
Jake Howard 076af8bec8 Automatically set CSP when serving images and documents (#12672)
Addresses #12617
2024-12-17 21:06:39 +00:00
jhrr 5402010d16 Allow hook override of user profile avatar url in admin tags (#12689)
Fixes #12661
2024-12-17 20:42:36 +00:00
Matt Westcott 9889bddcb8 Release notes for #11633 2024-12-10 01:54:54 +00:00
LB Johnston ae89829661 Deprecate & rework imports for `window.buildExpandingFormset`
- window.buildExpandingFormset and using the base class `ExpandingFormset` can now be deprecated.
- Move the window global setting to core.js which avoids the need to add the import in editor_js, to align with other future deprecations in core.js
- Add upgrade considerations in release notes
- `ExpandingFormset` is still needed for other existing usage (InlinePanel/MultipleChooserPanel)
- Add additional JSDoc and updates to Eslint to advise developers that this feature is not to be used for new code
2024-12-10 01:42:32 +00:00
LB Johnston 6bc9b0ea40 Adopt Stimulus `w-formset` attributes in Group edit/create view
- Use the Wagtail admin formset mixin to adopt new data attributes on core form parts
- Update the edit/create templates to put the attributes on the remaining elements
- Add basic unit tests for smoke testing data attributes
- Remove CSP incompatible inline scripts approach
- Remove the now unused standalone static build/imports for the group edit view as this will not be needed
- Update Eslint accordingly
2024-12-10 01:42:32 +00:00
LB Johnston 585d3e3385 Adopt Stimulus `w-formset` attributes in Workflow pages basic formset
- Use the Wagtail admin formset mixin to adopt new data attributes on core form parts
- Update the edit/create templates to put the attributes on the remaining elements
- Add basic unit tests for smoke testing data attributes
- Remove CSP incompatible inline scripts approach
- Remove the now unused standalone static build/imports for the group edit view as this will not be needed
- Ensure that the edit workflow form does not render any JS or attributes when the pages are not actually editable (workflow disabled)
2024-12-10 01:42:32 +00:00
LB Johnston 3d6f1c366f Prepare Wagtail admin formset mixin
- Leverage the new Django 4.0 feature `deletion_widget` for formsets to attach data attributes and make the input a HiddenInput for existing and 'blank' forms.
- Add support for data attributes used by the new Stimulus FormsetController
2024-12-10 01:42:32 +00:00
LB Johnston 8d35cc57e6 Add initial Stimulus FormsetController `w-formset`
Replaces the core functionality in `client/src/components/ExpandingFormset/index.js` and the Delete callbacks in other usage of the `window.buildExpandingFormset` function.

Provides limitations on add/delete once the min/max have been reached but does not set up any disabling of these buttons as this is currently in the remit of `InlinePanel`.

Includes a full test suite for error handling, updating inputs and nested usage which leverages Stimulus' scope management.

Does not rely on any id attribute structure or wrangling.

Relates to #7915
2024-12-10 01:42:32 +00:00
LB 4020efc4d0 Add JSDoc to exported function in runInlineScripts 2024-12-10 01:42:32 +00:00
LB d42af56220 Create `transition` util to resolve a promise when an animation ends 2024-12-10 01:42:32 +00:00
Sage Abdullah 4760509d65
Release note for #12681 2024-12-09 11:06:26 +00:00
Sage Abdullah c7700feae2
Use built-in venv instead of pipenv in CircleCI 2024-12-09 10:38:44 +00:00
Ayaan 3e75c018be Add support for query string params in WAGTAIL_GRAVATAR_PROVIDER_URL
- Enhance capabilities for WAGTAIL_GRAVATAR_PROVIDER_URL URL to support merging of URL params.
- Fixes #12659
- Rework of original PR #11077
2024-12-07 21:23:13 +10:00
Krystian Magdziarz 32417f9adc Fix Missing Cache-Control Headers for Password-Protected Pages (#12465)
Fixes #12455
2024-12-07 02:49:16 +00:00
Matt Westcott 94d3557cea Release note for #12614 2024-12-06 19:58:16 +00:00
Sage Abdullah 5f3235fa4f Add permission tests for search promotions views
This ensures we don't miss adding permission_policy to the views
2024-12-06 19:56:10 +00:00
Sage Abdullah 4bbd26d5a4 Refactor search_promotions delete view to extend generic DeleteView 2024-12-06 19:56:10 +00:00
Sage Abdullah 0d7ea86b2d Unify more code into SearchPromotionCreateEditMixin 2024-12-06 19:56:10 +00:00
Sage Abdullah 5e88817d2e Extract more common code into SearchPromotionCreateEditMixin 2024-12-06 19:56:10 +00:00
Sage Abdullah d811066a5b Refactor save_searchpicks into a view mixin method 2024-12-06 19:56:10 +00:00
Sage Abdullah 4e60e0a82b Make search promotions index view page_title consistent with the breadcrumbs item 2024-12-06 19:56:10 +00:00
Sage Abdullah 0c23ebed87 Refactor search_promotions edit view to extend generic EditView 2024-12-06 19:56:10 +00:00
Sage Abdullah 6db13fb704 Use breadcrumbs and simplify template overrides in search promotions CreateView 2024-12-06 19:56:10 +00:00
Sage Abdullah c498be3234 Reuse get_page_subtitle() for breadcrumbs label in CreateView 2024-12-06 19:56:10 +00:00
Sage Abdullah e9ffe38943 Ensure search promotions formset does not get reset if the query form is invalid 2024-12-06 19:56:10 +00:00
Sage Abdullah 93382d3f21 Ensure log entries are only created once for each search pick 2024-12-06 19:56:10 +00:00
Sage Abdullah 4ad08ddf6a Refactor search_promotions create view to extend generic CreateView 2024-12-06 19:56:10 +00:00
Sage Abdullah a506b7f0e2 Change QueryForm into a ModelForm subclass 2024-12-06 19:56:10 +00:00
Sage Abdullah e547f5e040 Add commented-out test to ensure search promotions formset does not get reset if the query form is invalid 2024-12-06 19:56:10 +00:00
Sage Abdullah 3d915733e6 Add test for creating multiple search picks at once
Also add commented-out assertions that log entries are only created
once for each search pick, which currently would fail due to a bug in
the implementation.
2024-12-06 19:56:10 +00:00
Sage Abdullah e79aed3616 Add test for adding promoted search results with an existing query_string 2024-12-06 19:56:10 +00:00
Sage Abdullah 63da8b2733 Improve form validation in search promotions form
Move the individual form validation to the SearchPromotionForm class
instead of the formset.

Do not assume external_link_url and the other fields are available in
cleaned_data, which can cause a crash if the input is invalid.

Attach validation errors to the most relevant section instead of bunging
everything as a non-field error.
2024-12-06 19:56:10 +00:00
Mauro Soche f177c02da8 Ensure the copy page form only allows choosing valid parents for the copy
Ensure the Page chooser disables the types of pages that do not follow the content hierarchy when trying to copy a page.

Fixes #11593
2024-12-06 15:07:32 +10:00
hsd2514 547e4d3731 Changing default value for Gravatar URL from ( mm -> mp )
- See https://docs.gravatar.com/api/avatars/images/#default-image
- Fixes #12658
2024-12-06 13:46:12 +10:00
Sage Abdullah 23275a4cef
Release note for #12643 2024-12-04 10:56:03 +00:00
Matt Westcott 8cdeb23a43
Preserve URL parameters on parent link in page chooser search results
Fixes #11955
2024-12-04 10:48:46 +00:00
Matt Westcott 28cde800d9
Correctly initialize page chooser search results for multiple selection 2024-12-04 10:48:46 +00:00
Matt Westcott 8da1796d53
Pass all URL parameters to page chooser search action, including multiple and user_perms 2024-12-04 10:48:45 +00:00
Srishti-j18 c2676af857 Ensure new ListBlock instances get created with unique IDs
Fixes #10074
2024-12-04 19:10:04 +10:00
elhussein almasri cd7977ada8 Fix image/document chooser using `MultipleChooserPanel` within `InlinePanel`
Ensure `MultipleChooserPanel` using images or documents work when nested within an `InlinePanel` when no other choosers are in use within the model.

Fixes #11233
2024-12-04 18:35:32 +10:00
Ayaan 5837d346d9 Fix initial mode value logic in modeValueChanged
Fix from #12641
2024-12-04 17:35:01 +10:00
Jaivignesh-afk 13951cf7a5 Fix empty `th` elements in admin (accessibility)
- Headings cannot be empty (https://dequeuniversity.com/rules/axe/4.9/empty-table-header)
- Added aria-hidden=true or a suitable label to empty <th> across admin
- Fixes #11596
- Additional related fixes provided in #12203 & #11465
2024-12-04 12:50:13 +10:00
SebCorbin fceda14872 Use openpyxl at runtime
- See discussion 'import openpyxl' #12125
- Projects that don't use ReportView (or SpreadsheetExportMixin) and wagtail.contrib.redirects should see a memory use decrease
2024-12-04 08:49:13 +10:00
LB bc34020e0d Docs - Ensure documents overview section renders Django template syntax 2024-12-04 08:48:45 +10:00
LB d48cf61701 Docs - Use consistent indents for CSS snippets 2024-12-04 08:48:45 +10:00
LB eac7dd92b6 Docs - fix up whitespace issues 2024-12-04 08:48:45 +10:00
LB 047ecff2bb Release notes - use consistent whitespace above headings 2024-12-04 08:48:45 +10:00
LB 233ff2b419 Add docs contributor Alex Fulcher for #12039 2024-12-04 08:13:01 +10:00
Sævar Öfjörð Magnússon 8ec4ed0127 Incorporate 'are we headless' content into documentation
- API chapters from https://areweheadlessyet.wagtail.org/
2024-12-04 08:10:15 +10:00
Matt Westcott 6047a66663 Allow using plain strings in panel definitions in place of FieldPanel / InlinePanel (#12557) 2024-12-03 19:50:07 +00:00
Srishti-j18 6054245548 Remove unused `is_active` & `active_menu_items` from `wagtail.admin.menu.MenuItem`
These methods are no longer utilized in the codebase and have been superseded by JavaScript-based handling of active menu items. Specifically, the sidebar-menu-item--active class, responsible for theming active menu items via CSS, is now exclusively managed by JavaScript.

Cleaned up the related test from wgatail.admin.tests.tests.py : wagtail.admin.tests.tests.TestMenuItem.test_menuitem_reverse_lazy_url_pass

Fixes #11433
2024-12-03 08:26:38 +10:00
LB 585b9b4b04 Add changelog for #12641 2024-12-03 07:53:40 +10:00
ayaan-qadri acdeb4f8d9 Update privacy-switch class toggle targets to use ZoneController
- Refactor styles for status tag to be more easily used across multiple elements
- Fixes #12611 (accessibility issue with the live link not reflecting update title/tooltips)
2024-12-03 07:53:40 +10:00
ayaan-qadri 4ea2c661c8 Update privacy-switch to avoid toggling classes & instead dispatch an event 2024-12-03 07:53:40 +10:00
ayaan-qadri 3a50b2467a Added switch method & inactive class support to ZoneController
- fixes #12611
2024-12-03 07:53:40 +10:00
LB 3a19f450f6 Fixup changelog typo 2024-12-03 07:53:40 +10:00
LB 26442631c7 Add changelog for #11202 2024-12-03 07:15:09 +10:00
LB Johnston 97d2332ba4 Migrate image-url-generator conditional fields to w-rules/RulesController
See #11045
2024-12-03 07:15:09 +10:00
LB Johnston 4438f13d5c Add initial implementation of w-rules/RulesController
- Allows a controlled form to have targets that are conditionally enabled based on a rule to match against the form data
- Partial progress for #11045
2024-12-03 07:15:09 +10:00
LB Johnston 918ceebc17 Create a JavaScript util `castArray`
- Allows easy conversion of any value/s supplied into an array or keep as an array if it's already one
2024-12-03 07:15:09 +10:00
Sage Abdullah f8f99833f2 Refactor settings EditView to make better use of generic EditView (#12635) 2024-12-02 15:18:09 +00:00
Matt Westcott b81b899c0c credit Sage on search term report 2024-12-02 15:02:39 +00:00
Sage Abdullah 217751e747 Remove unnecessary search_terms_report_results.html template 2024-12-02 15:01:53 +00:00
Sage Abdullah 76925488ad Allow sorting by each column in search terms report 2024-12-02 15:01:53 +00:00
Sage Abdullah 789a0c2572 Change created_at filter param to hit_date in search terms report view 2024-12-02 15:01:53 +00:00
Sage Abdullah 9a1c7126e2 Change query_string filter on search term reports into a search field
Also fix and add the tests. The previous test for search was wrong:
the assertion passed because the search query is found in the form input
(and URLs), and does not actually assert the results. The query_string
is always normalized to lowercase, so the expected result would be
'found' and not 'Found'. Change this to use a more descriptive string
and ensure that the search works by using an icontains lookup.
2024-12-02 15:01:53 +00:00
Sage Abdullah bda83b061c Use gettext_lazy for search terms report views strings
And do not capitalize 'Term'
2024-12-02 15:01:53 +00:00
Clifford Gama a142363a80 Add missing backticks on image tag 2024-12-02 12:10:10 +00:00
Clifford Gama a1de5bdbd7 Introduce tags and filters as they are in user-guide docs (#12647) 2024-12-02 12:07:48 +00:00
Sage Abdullah 839193ff3c Remove unused LinkController
See #11736
2024-11-29 18:17:00 +10:00
Sage Abdullah b7a4271930
Move release note for #12570 to 6.3.2 2024-11-28 10:06:16 +00:00
Sage Abdullah e74703d9ab
Remove duplicate entry in CONTRIBUTORS
We already credited Bartosz under the name "Bart Cieliński" as per the
GitHub profile.
2024-11-28 09:56:59 +00:00
Bartosz Cieliński 5815a7e1ef Ensure Draftail features wrap in case there is a lot of added features 2024-11-28 08:11:12 +10:00
Strapchay b3ba89b2ec Fix commenting not working on pages with read_only FieldPanels
Fixes #11838
2024-11-28 07:12:54 +10:00
ankit02327 79c9ce266c Update community guidelines link in first contribution guide 2024-11-28 06:55:39 +10:00
LB c416cfb7d6 Fix minor typos
Update to US spelling
2024-11-27 15:33:59 +00:00
LB f5a08646c9 Add changelog for #12579 2024-11-27 20:34:42 +10:00
Sage Abdullah 94de52e912 Avoid loading icons sprite in preview error page 2024-11-27 20:34:42 +10:00
Sage Abdullah 6ec4dafc6a Avoid loading default radio input icon for preview size buttons 2024-11-27 20:34:42 +10:00
Matt Westcott 836b8138d3 Prevent generic model edit view from unquoting non-integer primary keys multiple times
Fixes #12599
2024-11-27 20:11:52 +10:00
Srishti-j18 ffe294bc7b Added unit tests, storybook & JSDoc items for DrilldownController
Fixes #12511
2024-11-27 19:29:10 +10:00
Matt Westcott 8026108fa4 Update Noah van der Meer's name in contributors 2024-11-26 15:39:26 +00:00
LB dddac974d2 Add changelog #12535 2024-11-26 08:23:33 +10:00
Aayushman Singh 712374072d Update AdminTagWidget to use delay for debouncing autocomplete
- Fixes #12415
- See also #12564
2024-11-26 08:23:33 +10:00
Aayushman Singh 62109ba75e Update TagController to support debounced tag async autocomplete 2024-11-26 08:23:33 +10:00
joelwilliam2005 dd4b40d467 Show the correct privacy status in the sidebar when creating a new page
Fixes #12277
2024-11-26 07:47:21 +10:00
Clifford Gama 7566fb84e0 Docs: Use sentence case for titles in pages/theory.md 2024-11-26 06:46:21 +10:00
Clifford Gama 8df6cae90c Docs: Break Scheduled Publishing into multiple subheadings 2024-11-26 06:38:26 +10:00
Sage Abdullah 6b84e93259 Link to HTTPMethod in Page.handle_options_request() docs 2024-11-26 06:32:45 +10:00
LB cc335cad5f
Reinstate modal-workflow self.ajaxifyForm & add unit tests
- Fixes #12618
- Regression from #12380
2024-11-22 16:14:32 +00:00
Matt Westcott 9cacfe0dc2 Release note for #12612 2024-11-22 16:13:35 +00:00
Sage Abdullah ba54c5cce6 Refactor Redirects delete view to use generic DeleteView and template 2024-11-22 16:12:29 +00:00
Sage Abdullah 975e07bbdd Create separate blocks in generic confirm_delete.html template to ease overrides 2024-11-22 16:12:29 +00:00
Sage Abdullah 6be7ed2e49 Replace <input type="button"> with <button> in generic confirm_delete.html template 2024-11-22 16:12:29 +00:00
Sage Abdullah 3f6b919c7b Refactor redirects create view to use generic CreateView and template 2024-11-22 16:12:29 +00:00
Matt Westcott f9e4e10fce Release note for #12608 in 6.4 2024-11-22 12:30:03 +00:00
Matt Westcott 98f0cd5d79 Release note for #12608 in 6.3.2 2024-11-22 12:29:38 +00:00
Jake Howard 62d2d78f17 Ensure cloudfront purges are called with lists 2024-11-22 12:19:07 +00:00
Jake Howard 6b44838841 Use correct connection when searching (#12508)
- Use the indexes preferred DB, not the indexing model
- Use write connections for writes, and reads for reads
2024-11-22 10:23:26 +00:00
Matt Westcott 2b05b6a295 Release note for #12589 in 6.3.2 2024-11-22 09:56:28 +00:00
LB 4bd95942e7 Docs: Fix up formatting on tutorial 'create' pages 2024-11-22 17:16:03 +10:00
Clifford Gama 7aeadde451 Update tutorial instructions to use icon for adding children pages
- Reflects changes added in #11012
2024-11-22 17:16:03 +10:00
Matt Westcott 09a9261f7d Add release note for #12341 2024-11-21 18:37:24 +00:00
Matt Westcott 5b57bd3d85 Move report view into a submodule of wagtail.contrib.search_promotions.views 2024-11-21 18:33:44 +00:00
n_w_vd_meer@proton.me 94bdc200f2 Implementation of search term based reports 2024-11-21 18:27:58 +00:00
Matt Westcott 252ca973d3 Release note for #12566 2024-11-21 18:00:54 +00:00
Sage Abdullah 87dcaf6338 Silence wagtailadmin.W001 in project template test
We don't need to compile the CSS for this
2024-11-21 17:50:02 +00:00
Sage Abdullah f65282f482 Handle deprecated CheckConstraint.check in 0087 migration 2024-11-21 17:50:02 +00:00
Sage Abdullah 9b8015bb5f Suppress locale.getdefaultlocale warning in project template test
It comes from l18n
2024-11-21 17:50:02 +00:00
Sage Abdullah 9e843af55a Test project template against Django's branches 2024-11-21 17:50:02 +00:00
LB 57f7abda43 Add a changelog entry for #12569
Fixes #12563
2024-11-20 16:31:49 +10:00
ayaan-qadri 87f22bebf0 Remove unused jQuery add-multiple / core.js
- Class changes & event handling is now located within the HTML / ZoneController Stimulus usage
2024-11-20 16:31:49 +10:00
ayaan-qadri cc342bbd1c Adopt ZoneController (w-zone) in images/documents add views 2024-11-20 16:31:49 +10:00
ayaan-qadri 31ccda4501 Create new Stimulus ZoneController (w-zone) 2024-11-20 16:31:49 +10:00
LB Johnston b9575f3498 ModalWorkflow - Add JSDoc description & adopt linting recommendations 2024-11-20 12:46:40 +10:00
Andy Babic 66f1e817eb
Allow page types to easily restrict what type of requests they respond to (#12473)
* Allow page types to specify the request methods they support and block unsupported requests in serve()
* Use 'before_serve_page' hook to serve OPTIONS responses
* Add checks to RoutablePageMixin.serve() where the parent implementation is bypassed
* Rename check_http_method to check_request_method and actually use the return value
* Support Python 3.9 through to current approaches for `http` method strings
* Include documentation, docstrings & changelog entry
2024-11-20 10:15:36 +10:00
LB 3697ee1f2a Eslint - fix location of storybook folder & remove eslint ignore 2024-11-20 07:52:43 +10:00
LB acd2c535f6 Remove canvas-to-blob polyfill
Historic recommendation for jQuery image upload before all browsers supported `canvas.toBlob`.

All modern browsers supported by Wagtail have had support for this for many years now.

- See https://caniuse.com/?search=toblob
- See https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toBlob
2024-11-20 07:46:40 +10:00
Matt Westcott 5be9bd12d3 Update latest.txt for 6.3.1 2024-11-19 17:00:25 +00:00
Matt Westcott 3697501426 Fill in release date for 6.3.1 2024-11-19 15:56:45 +00:00
Matt Westcott 73445ef175 Fetch new translations from Transifex 2024-11-19 15:56:20 +00:00
Matt Westcott 2d2fb11bf8 Fetch translations from Transifex 2024-11-19 15:56:11 +00:00
Sage Abdullah ae1dab03ab Lower docs search ranking for release notes (#12586)
Except for the 'upgrading' section, as it's still generally useful
2024-11-19 15:24:22 +00:00
Matt Westcott f833a2f520 Remove forced capitalization of site name on admin dashboard (#12601)
Fixes #12592
2024-11-19 15:14:04 +00:00
helloshiv f0d3edfad6
Fix wagtailcache and wagtailpagecache examples to not use quotes for the fragment_name 2024-11-19 14:18:17 +00:00
Sage Abdullah f741f9f333
Release note for #12576 in 6.3.1 2024-11-19 14:16:50 +00:00
Sage Abdullah b1251d8279
Release note for #12573, #12587, #12590, #12591 in 6.3.1 2024-11-19 14:13:29 +00:00
Sage Abdullah a5761bc2a9 Improve spacing of page permissions table in Group settings (#12585) 2024-11-18 16:45:54 +00:00
Matt Westcott d2b9bd224d Release note for #12571 in 6.3.1 2024-11-18 15:51:08 +00:00
Matt Westcott 58f849a294 Handle None in ImageBlock.to_python 2024-11-18 15:47:09 +00:00
Matt Westcott 0dd9b7dcb1 Switch cases in `ImageBlock.bulk_to_python` so that the ImageChooserBlock logic is the special case rather than the default 2024-11-18 15:47:09 +00:00
Storm B. Heg 17378e06c8 Refactor ImageBlock.bulk_to_python to handle more cases of bad data
Specifically, cases where an ImageChooserBlock to ImageBlock migration
results in `[None]` as a value.

ref: https://github.com/wagtail/wagtail/issues/12514
2024-11-18 15:47:09 +00:00
Clifford Gama f4d3c80e2f Fix typo: remove reference to PublishingPanel as a method 2024-11-18 12:49:15 +00:00
Clifford Gama ed084ae3bd Fix misleading wording - clarify that get_site_root is created, not used 2024-11-18 12:48:39 +00:00
Clifford Gama 791f031e16 Fix minor typo - capitalize Page model 2024-11-18 12:40:12 +00:00
Thibaud Colas cd8c19d762 Rename tutorial blog index page to reduce the likelihood of slug issues (#12576) 2024-11-15 16:24:52 +00:00
Matt Westcott 1af469cbd6 Update Emily's name in contributors list 2024-11-15 16:22:39 +00:00
Clifford Gama 9509d6409f Clarify get_context() usage in BlogTagIndexPage example (#12573) 2024-11-15 16:21:10 +00:00
Matt Westcott e7dd00e427 Ensure that creation of image/document choose permissions happens after access_admin permission exists
As per https://github.com/wagtail/wagtail/issues/12581#issuecomment-2478983521.
Fixes #12581
2024-11-15 16:18:20 +00:00
Steve Stein 220a621a88 Add Steve to CONTRIBUTORS.md
docs(contributors): Add Steven to contributors list
2024-11-15 09:51:58 +00:00
Sage Abdullah 5eca192bd2
Release note for #12564 2024-11-13 16:30:50 +00:00
Sage Abdullah d36cb87299
Use values_list() to optimise tag autocomplete view 2024-11-13 16:30:50 +00:00
Aayushman Singh ce0601b77c
Limit autocomplete results view to 10
Prevent performance issues when there are many tags available.
2024-11-13 16:12:57 +00:00
Matt Westcott 5212061485
Normalize StreamField.get_default to prevent creation forms from breaking
Fixes #12561

When a ModelForm is constructed without passing an `initial` instance, the result of `StreamField.get_default()` will become the default value of the form field without the intermediate step of being set on a model instance and read back (which would have the side effect of calling `normalize()`). Form rendering only works with normalized values (e.g. StreamValue rather than list-of-tuples for a StreamBlock), so the return value from `get_default()` needs to be normalized.
2024-11-13 15:46:07 +00:00
Sage Abdullah 210f35f7ec
Release note for #12556 2024-11-13 14:20:10 +00:00
Matt Westcott 7a923de427
Set sensible defaults for InlinePanel heading and label 2024-11-13 14:18:49 +00:00
Matt Westcott 253c401ae2
Pass InlinePanel heading rather than label to use as the label for comparisons
Conventionally `label` is singular (used on individual forms as "Speaker 1", "Speaker 2" etc as well as the "Add speaker" button), while `heading` is plural ("Speakers" or "Speaker lineup", used as the main heading for the list). The plural is most appropriate for the comparison view.

Also fix the test for MultipleChooserPanel, which was copied across from the InlinePanel test without actually setting a label/heading on the panel.
2024-11-13 14:18:49 +00:00
Matt Westcott aa31d329ab
Stop invalid Site hostname records from breaking preview
As made famous by https://youtu.be/v3KEaMTfKg0?t=319 :-)

By design, Wagtail tolerates the default Site record being left at its default value of 'localhost' up to a certain point. Ideally, that point should be when it becomes strictly necessary for Wagtail to care about hostnames (such as when setting up the second site of a multi-site installation) and it should be clear to the developer what has happened and how to fix it.

In practice, that point often comes when the developer deploys their site to production, sets `DEBUG=False`, and is then required by Django to set `ALLOWED_HOSTS` to their real domain name. At this point, front-end page requests work (because the initial site record is default=True, matching any domain including the live one) but previews are broken (because the dummy request object is still formed using localhost as per the site's hostname field, which is disallowed by ALLOWED_HOSTS).

This is unnecessary, and can be avoided by validating the hostname against ALLOWED_HOSTS and substituting one that _is_ allowed if necessary, as we already do for pages that don't have an associated site record.
2024-11-13 13:57:14 +00:00
Sage Abdullah 6315d3c1cc
Release note for #12551 2024-11-12 10:59:57 +00:00
Sage Abdullah 92714d87e7
Minor tweaks per code review 2024-11-12 10:58:04 +00:00
Sage Abdullah 533481b0f4
Add note about extending section not subject to deprecation policy 2024-11-08 20:09:39 +00:00
Sage Abdullah 991d9bcab5
Update release process documentation 2024-11-08 20:09:39 +00:00
Sage Abdullah f43cf941d5
Improve upgrade guide to reflect current versioning scheme and highlight important steps 2024-11-08 20:09:39 +00:00
Sage Abdullah 246f3c7eb5 Fix profile picture upload not working in account settings (#12548)
Fixes #12547
2024-11-07 13:03:20 +00:00
Matt Westcott 122b9683fa Add 6.3.1 release notes 2024-11-07 13:03:13 +00:00
Matt Westcott e7e57cd29e Release note for #12488 2024-11-05 22:36:43 +00:00
Jake Howard 98a141cbc3 Assert query counts for page publishing 2024-11-05 22:35:35 +00:00
Jake Howard f68dd505d0 Don't fetch all related instances when creating revision object 2024-11-05 22:35:35 +00:00
Jake Howard aa1a848bf2 Don't fetch entire live revision 2024-11-05 22:35:35 +00:00
Jake Howard 9efdadb68a Only update changed field 2024-11-05 22:35:35 +00:00
Jake Howard 24726b3797 Optimise resetting comment position from revision 2024-11-05 22:35:35 +00:00
Jake Howard 59ac877063 Don't evaluate expired objects 2024-11-05 22:35:35 +00:00
Jake Howard 37567dfe18 Check workflow cancel before getting workflow 2024-11-05 22:35:35 +00:00
ayaan-qadri b0c90d4be2 Removed preventDefault from openPreviewInNewTab in PreviewController
Relates to #10356
2024-11-06 07:47:10 +10:00
LB 825a77d6c2 Remove all eslint-disable no-undef & use global comments (#12527)
Recommendation is to either declare globals in config or in a `/* global ` comment
See https://eslint.org/docs/latest/rules/no-undef#rule-details
2024-11-05 20:11:09 +00:00
LB cae3229716 Remove unnecessary DOM Range polyfill (#12496)
- Remove DOM Range polyfill provided by https://developer.mozilla.org/en-US/docs/Web/API/Range
- All Wagtail supported browsers, as of a few years ago, have built in support for `document.createRange`, see https://developer.mozilla.org/en-US/docs/Web/API/Range
2024-11-05 20:01:31 +00:00
Matt Westcott 3013673c55 Release notes for #12480 2024-11-05 19:48:24 +00:00
LB 281efdbc88 Fix - Ensure `WagtailAdminFormPageForm.clean` works for any related name
Dynamically detect the `related_name` of any form fields attached to the page so that validation is actually run for custom related_names.

This also will apply validation even if there are multiple `AbstractFormField` subclasses related to the page.

Add unit test to ensure that duplicate clean name validation correctly runs on FormPage models with a custom related name.

Originally from #10375
2024-11-05 19:22:33 +00:00
John-Scott Atlakson 9d31fd3fa5 Fix - Ensure `WagtailAdminFormPageForm.clean` returns `cleaned_data`
Return `cleaned_data` for more consistent subclassing.

Updated documentation with an example of adding custom page validation for form fields.

Add unit test to ensure that the documented usage of extending `WagtailAdminFormPageForm` works as expected.

Originally from #10375
2024-11-05 19:22:33 +00:00
minusf f600a356e6
Add missing apostrophe in settings documentation (#12542) 2024-11-05 16:09:55 +00:00
Sage Abdullah f21f6dd884
Release note for #12525 2024-11-05 12:56:59 +00:00
Sage Abdullah 794fa3bcaf
Improve documentation guidelines on writing docstrings and API reference 2024-11-05 12:52:57 +00:00
Sage Abdullah a81cc7345d
Remove e.g. in documentation guidelines 2024-11-05 12:45:26 +00:00
Sage Abdullah 17ce66ad45
Update outdated Pillow links 2024-11-05 10:44:41 +00:00
Sage Abdullah f54b03d595
Use intersphinx to link to treebeard docs 2024-11-05 10:44:41 +00:00
Sage Abdullah da3e0ade37
Use intersphinx to link to MyST-Parser docs 2024-11-05 10:44:41 +00:00
Sage Abdullah ddf8423f3c
Use stable link to Wand docs
There's only one link to Wand's docs, not worth adding an
intersphinx_mapping entry.
2024-11-05 10:44:40 +00:00
Sage Abdullah b7cf847d69
Replace outdated Wagtail editor manual link with link to the editor guide 2024-11-05 10:44:40 +00:00
Sage Abdullah 503d1a743a
Replace hardcoded Python docs links with intersphinx 2024-11-05 10:44:40 +00:00
Sage Abdullah 5615deb5b1
Add Django's custom Sphinx roles and use them to link to settings
This is necessary for rST docs, i.e. in docstrings and in eval-rst
blocks. Without this, Sphinx cannot seem to understand the role. See:
https://stackoverflow.com/questions/13387125

MyST-Parser seems to be smarter, it can figure out these custom
roles without having to register the types ourselves. This is evident in
the previous commits where I already use the :setting: role in markdown
docs.
2024-11-05 10:44:40 +00:00
Sage Abdullah 9a5be8f180
Replace more hardcoded Django links with intersphinx in rST docs
Some link labels are changed to just the code part, because using Sphinx
roles for code objects (e.g. methods, attributes) would always format the
text as inline code.

It's currently impossible to customize the formatting of a link's text in
rST. See https://stackoverflow.com/questions/4743845
2024-11-05 10:44:39 +00:00
Sage Abdullah 857b26e5a0
Replace hardcoded Django docs links to intersphinx links 2024-11-05 10:44:39 +00:00
Sage Abdullah 9d69863f3c
Use intersphinx to link to Sphinx docs 2024-11-05 10:44:39 +00:00
Sage Abdullah 795ca50dc8
Improve clarity between Markdown/MyST, rST, and Sphinx in docs guidelines
Add more emphasis on the divide between when to use Markdown and when to
use rST.

Also improve examples for versionadded and versionchanged directives.
2024-11-05 10:44:39 +00:00
Sage Abdullah 0dc1698857
Do not index autodoc examples 2024-11-05 10:44:39 +00:00
Sage Abdullah 443ccb23a8
Update docs for writing admonitions
It's MyST syntax, not rST, so it's OK to use it (sparingly).

Custom admonitions are possible with the `admonition` directive.
2024-11-05 10:44:38 +00:00
Sage Abdullah 81e6d79c5e
Improve guidelines for writing links in docs 2024-11-05 10:44:38 +00:00
Sage Abdullah dddf9bfd81
Highlight Markdown vs reStructuredText differences for inline styles 2024-11-05 10:24:51 +00:00
Sage Abdullah 121624d5b1
Add syntax highlighting to code block examples 2024-11-05 10:24:51 +00:00
Jake Howard 71c93cb39c Remove non-unsert support for Postgres indexing (#12509)
PostgreSQL 9.4 support was dropped with the release of Django 3.0.
2024-11-04 18:19:29 +00:00
rahulsamant37 5e4c3f12c3 Remove defunct oEmbed providers (#12537)
Fixes #12054
2024-11-04 18:04:33 +00:00
Matt Westcott 0cab6641cc Release note for #12539 2024-11-04 15:40:44 +00:00
LB f1597b61ed NPM package updates - minor updates & security fixes 2024-11-04 15:40:27 +00:00
LB 2e87f4ddec Update to Node 22 (active LTS)
- See https://nodejs.org/en/blog/release/v22.11.0
- Fixes #12531
2024-11-04 15:40:27 +00:00
LB 21206dc3e7 Clean up JS comments to be aligned to JSDoc where suitable 2024-11-04 21:14:04 +10:00
LB 6f34d3c299 Add changelog for #12503
Fixes #12498
2024-11-02 10:29:19 +10:00
Aayushman Singh 71a735476c Docs - images/documents title generation - update for CSP compliant examples
- Add helpful intro content, insure formatting of Python/JS is consistent
- Avoid inline scripts, instead ensure the example shows external script usage
2024-11-02 10:29:19 +10:00
Aayushman Singh 7f6e7d4062 Docs - Improve hooks & extending pages with CSP compliant examples
- Avoid `mark_safe` and use `format_html` where possible
- Avoid inline scripts, instead ensure the example shows external script usage
2024-11-02 10:29:19 +10:00
Aayushman Singh b0479592ff Docs - Update extending/admin_views to have CSP compliant examples
- Changed style tag, to an external style file
- Also fixed minor spelling mistake "calender" -> "calendar" in line 190
- Avoid inline styles, instead ensure the example shows external style usage
2024-11-02 10:29:19 +10:00
Aayushman Singh e28beb5b45 Docs - Writing guidelines - Add code example considerations
Start a small section to offer some guidance to ensure that code examples are secure, accessible and easier to use.
2024-11-02 10:29:19 +10:00
manu b2cd95bf3b Fix sidebar page explorer transitions - avoid overflow 2024-11-02 09:59:21 +10:00
LB 114998fa21 Fix changelog for #12495 add changelog for #12510 2024-11-02 09:04:55 +10:00
LB 940ac10a9c Remove unused uuid module 2024-11-02 09:02:09 +10:00
Matt Westcott 54e1dc875a Update latest.txt for v6.3 2024-11-01 14:13:23 +00:00
Matt Westcott 793539d208 Fill in release date for 6.3 final 2024-11-01 13:21:07 +00:00
Matt Westcott f110ddd934 Fill in release date for 6.2.3 2024-11-01 13:20:09 +00:00
Matt Westcott e8ca33b023 Fill in release date for 5.2.7 2024-11-01 13:20:08 +00:00
Matt Westcott a8e243d36b Release note for #12521 in 6.2.3 2024-11-01 13:14:05 +00:00
Matt Westcott e931a40451 Release note for #12427 in 6.2.3 2024-11-01 12:50:09 +00:00
Matt Westcott 9ef8c834d2 Release note for #12367 in 6.2.3 2024-11-01 12:33:45 +00:00
Matt Westcott 0313522d38 Release note for #12367 in 5.2.7 2024-11-01 12:33:35 +00:00
Bojan Mihelac cc1805dc86
Fix sub-menus within the main menu cannot be closed on mobile (#10747) 2024-11-01 12:10:53 +00:00
Ayaan 0913118da4
Replaced Twitter references in the docs with more appropriate alternatives (#12516). Fix #12483
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2024-11-01 11:03:54 +00:00
Thibaud Colas bfd7e46496 Add release notes for #12521 2024-11-01 10:01:34 +00:00
Thibaud Colas b1fc61a5a2 Add release notes for ##12521 2024-11-01 10:01:01 +00:00
Matt Westcott 593b95cad9
Document the ability to migrate from ImageChooserBlock to ImageBlock (#12518) 2024-11-01 09:58:42 +00:00
Matt Westcott cda72797c5
Correctly handle None values in ImageBlock.bulk_to_python (#12517) 2024-11-01 09:56:54 +00:00
Thibaud Colas d7ccda33f6
Update sphinx-wagtail-theme and search implementation (#12521) 2024-11-01 09:35:43 +00:00
LB 93384a062e Update CloneController - added/cleared events should not be cancelable
- While no code uses the event.preventDefault on these it's good practice to advise when cancelling will do nothing
2024-10-31 22:10:00 +10:00
LB b903b572d9 Update changelog for 6.3 cherry-pick #12490 #12506 #12507
Offline formats cherry-picked to 6.3 release
2024-10-31 08:12:48 +10:00
LB 9b4999ed9d Add changelog for #12507
Fixes #12484
2024-10-31 07:52:49 +10:00
Sage Abdullah 49a1e56d10 Replace Torchbox with 'Wagtail core team and contributors' in docs config 2024-10-31 07:52:49 +10:00
Sage Abdullah b6abec16d0 Add minimal epub metadata
Ref: 97a6a678c4/docs/conf.py (L380-L386)
2024-10-31 07:52:49 +10:00
Sage Abdullah 3802f8bf46 Fix remaining XHTML errors in docs to remove ePub build errors
Had to remove the <details> element for the section linking example in
the "Reference links" section.

This is because Sphinx/MyST renders a <section> element for each heading
and closes it when the next heading starts. If we create a heading
inside a <details> element, the <section> element will not be closed
until the next heading starts, which generates invalid HTML.
2024-10-31 07:52:49 +10:00
Sage Abdullah 78120671da Ensure docs template layout override is XHTML-compatible for ePub 2024-10-31 07:52:49 +10:00
Sage Abdullah 7955b815ce Fix HTML errors in wagtail_icons_table.txt 2024-10-31 07:52:49 +10:00
Sage Abdullah a2c8e2b26f Suppress unknown files warning when building the ePub docs 2024-10-30 14:29:22 +00:00
Joel William 7b2b44b541 Documentation - Configure RTD to build all offline formats
- https://docs.readthedocs.io/en/stable/config-file/v2.html#formats

Fixes #12484
2024-10-30 18:26:31 +10:00
Jake Howard f08a947f8e Bypass ALLOWED_HOSTS checks when resolving Site for request (#12129) 2024-10-29 19:41:23 +00:00
LB 3a5ae9c695 Docs - Ensure core models module level docstring does not appear in docs
Avoid the docstring being shared in the model reference documentation, this content is for core development only.
Update name of core modules.
2024-10-29 15:47:39 +00:00
LB b6b9c003ff Doc - Fix minor spelling inconsistency 2024-10-29 15:47:39 +00:00
Srishti-j18 fd9b1ca22b Docs - Update spelling to US customize variants
Fixes #12476
2024-10-29 18:47:43 +10:00
Storm B. Heg d404d37ba5 Extend Pillow version range to allow v11 (#12475) 2024-10-28 18:23:31 +00:00
LB a562d4db6a Docs - Align spelling of 'subpages' to be consistent with rest of docs 2024-10-28 08:34:59 +10:00
Srishti-j18 652de3fcb3 Documentation - Improve code highlighting & formatting for Python docstrings in core models 2024-10-28 08:34:38 +10:00
Matt Westcott 37d9d7eb06 Increase DATA_UPLOAD_MAX_NUMBER_FIELDS in project template & docs
Also recommend increasing this in the "Integrating into Django" docs.

Fixes #12452

- Don't use commas for thousand separator
- Co-authored-by: Jake Howard <RealOrangeOne@users.noreply.github.com>
2024-10-28 08:27:29 +10:00
Andy Babic e451bbd96a Support application of select_related and prefetch_related lookups to subqueries made by SpecificIterable
- Add queryset methods to reference docs, and provide performance considerations for prefetch_related()
2024-10-28 08:06:03 +10:00
fazledyn fde2e6f26a Close open files when reading within utils/setup.py 2024-10-28 08:04:52 +10:00
Stefan Hammer e7b4daaf32 Fix StreamValue._prefetch_blocks() to skip manually inserted items
Fixes #12320
2024-10-28 07:31:25 +10:00
LB 5477a872c7 Changelog for #11122 & #12418 2024-10-27 20:20:02 +10:00
Joel William 4a933df9fb Rich Text (Draftail) - Ensure SVG paths are correctly handled for custom features #12418
Ensure the documented support for providing an array of SVG paths to the 'icon' attribute when using `register_rich_text_features` is correctly supported.

Fixes #11777
Fixes #11051
Fixes #10319

See https://docs.wagtail.org/en/stable/extending/extending_draftail.html#creating-new-blocks
> It can also be an array of strings, to use SVG paths, or SVG symbol references for example 'icon': ['M100 100 H 900 V 900 H 100 Z'],. The paths need to be set for a 1024x1024 viewbox.
2024-10-27 20:20:02 +10:00
Temidayo32 c611dd4056 Ensure the Icon react component can support custom icon paths #11122
- When provided with children (e.g. custom paths), render these instead of the `use` symbol reference
- Allow any valid SVG attribute to be passed to the component to render on the `svg` element
- Clean up rendering of className to avoid extra whitespace
- Clean up ordering of the props to be alphabetically sorted
- Update unit tests to be focused more on testing and less on snapshots
2024-10-27 20:20:02 +10:00
Srishti-j18 d2f476c050 Documentation - Update page titles to align with Style Guide
- Use sentence case for headings and titles. (as per the Google Developer Documentation Style Guide)
- Fixes #12466
2024-10-27 15:27:03 +10:00
Thibaud Colas b970f635e3 Update developer documentation screenshots for Wagtail 6.3 2024-10-26 01:50:46 +01:00
Thibaud Colas 987bd2a054 Update documentation colors based on latest color theming for more-contrast 2024-10-25 17:11:38 +01:00
LB (Ben Johnston) 61fe21af16
Documentation - Add recent third party tutorials (#12442)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2024-10-25 13:50:50 +01:00
activus-d 97a1f5aabd Documentation - Improve project template (wagtail start) & add to management commands reference
Fixes #11938

* Add `wagtail start` to the management commands reference
* Add detail on how to creating templates with the need to escape template syntax by using the verbatim tag
2024-10-25 21:15:30 +10:00
LB fa81e2dbbe Docs - update spelling to US 'customizations' 2024-10-25 21:14:52 +10:00
LB bd2a035439 Remove duplicate contributor name 2024-10-25 21:14:52 +10:00
Alessandro Chitarrini b9e13077bb Documentation - Refine the adding reports page
- Move all generic (page/non-page) class references to the top of the documentation
- Use better heading level nesting cleanly isolate the full page report example
- Relates to #12428
2024-10-25 20:40:02 +10:00
LB d5b56e00f6 Add changelog entry for docs changes #12437
Fixes #12435
2024-10-25 20:30:12 +10:00
Srishti-j18 2d644dd8e2 Documentation - Move tags out from pages model recipes to a standalone advanced topic 2024-10-25 20:30:12 +10:00
Srishti-j18 f588fcf249 Documentation - Reposition model & panel references
- Move model reference to directly under the references section, not the reference/pages section
- Move panel reference to directly under the references section, not the reference/pages section
- Merge panel API with panels reference pages
- Fix confusing heading levels in the page model recipes page
- Fix title in model reference to align with docs style guide
- Adopt US spelling for customize (panels) reference key
2024-10-25 20:30:12 +10:00
Thibaud Colas 25de8011d5 Release notes for #12460 2024-10-24 12:14:09 +01:00
Alex Morega e4e94a5640
Replace X links with Mastodon (#12460)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2024-10-24 12:09:59 +01:00
LB c0b2977647 Add links to 6.3 release notes documentation items 2024-10-24 11:51:15 +01:00
LB d459bdb5dc Clean up whitespace items in documentation markdown 2024-10-24 11:51:15 +01:00
Thibaud Colas 46d2e44cd1 Release notes for #12393 2024-10-24 10:18:19 +01:00
Thibaud Colas b680536286 Add release note template for 5.2.7 2024-10-24 09:57:11 +01:00
Thibaud Colas 3895136fd0 Add release note template for 6.2.3 2024-10-24 09:53:53 +01:00
sag​e 3f6cd8c18f
Fix font size for custom listing button styles (#12456) 2024-10-24 09:33:28 +01:00
Matt Westcott e9af16b48d Improve i18n of success message for bulk page actions (#12453)
Previously, translations for messages such as "1 page and 3 child pages have been published" were handled with separate branches for the "one parent page" vs "multiple parent pages" cases, to work around ngettext only being able to handle pluralisation for one item in the string. This fails for languages such as Polish where the pluralisation does not follow the straightforward one/many distinction.

Instead, we can translate "N pages" and "N child pages" separately before forming the final message. We generally avoid translating sentence fragments in isolation as this can make things difficult for translators if the sentence structure does not match the English version - but this is hopefully an improvement over the current situation, as well as simplifying the code and reducing repetition.
2024-10-23 15:54:11 +01:00
Matt Westcott 34cbec36b2 Start new release notes sections for 6.4 2024-10-23 16:45:46 +10:00
Matt Westcott bff75a2d08 Version bump to start work on 6.4 2024-10-23 16:45:46 +10:00
Matt Westcott bbb50459c9 Remove versionadded / versionchanged notes for 6.2
However, leave behind notes that mark settings/features that are deprecated but not yet removed, as this would be removing information that isn't in the main body of the text (and moving it out of a versionchanged note would make it harder to find when we come to remove it properly in 7.0).
2024-10-23 16:45:46 +10:00
Matt Westcott 4d31bd0a29 Add clarification on using versionadded / versionchanged directives 2024-10-22 22:13:36 +01:00
Matt Westcott c1ce58fb42 Add Uyghur language support to release notes 2024-10-22 17:13:26 +01:00
sumana sree d35eb68b78 Fix: Update `can_handle` method to check for AbstractGroupApprovalTask instances
- Fixes #12328
- Regression from #11653
2024-10-22 08:19:38 +10:00
Matt Westcott f265896267 Only add Uyghur to supported languages under Django 5.x 2024-10-21 18:35:17 +01:00
Matt Westcott 76070a037c Remove unused headings from 6.3 upgrade considerations 2024-10-21 18:03:59 +01:00
Matt Westcott 113aaf90c9 Mark 6.3 as an LTS release 2024-10-21 18:02:48 +01:00
Matt Westcott 55516cd67a Move headline features to the top of the changelog 2024-10-21 18:00:06 +01:00
Matt Westcott e305906b9c Generate new translation strings 2024-10-21 17:54:34 +01:00
Matt Westcott c4a48fffbb Release note for #12434 2024-10-21 17:51:34 +01:00
Sage Abdullah 0a4f145044 Improve default column widths of page report tables 2024-10-21 17:49:40 +01:00
Sage Abdullah df37c239b0 Adjust column widths of page types usage report table 2024-10-21 17:49:40 +01:00
Sage Abdullah 58cae920fa Show '-' instead of 'None' for unfinished workflow tasks in the report view 2024-10-21 17:49:40 +01:00
Matt Westcott 6c589cb678 Fetch new translations from Transifex 2024-10-21 17:48:20 +01:00
Thibaud Colas caec6d3a82 Release notes for #12419 2024-10-21 17:30:33 +01:00
Thibaud Colas ac3bc56337 Fix dismissiable upgrade banner color contrast in dark theme 2024-10-21 17:30:33 +01:00
Sage Abdullah f2ed3605c6 Make the upgrade banner dismissible 2024-10-21 17:30:33 +01:00
Sage Abdullah bf842b32ef Check for last dismissed upgrade check in UpgradeController using data-w-dismissible-value-param 2024-10-21 17:30:33 +01:00
Sage Abdullah 098b48e074 Allow DismissibleController to patch non-boolean values via params 2024-10-21 17:30:33 +01:00
Sage Abdullah f1c63186fd Improve typings in UpgradeController 2024-10-21 17:30:33 +01:00
Sage Abdullah 88342e944b Fix incorrect UpgradeController test
The current version is set to 2.3 at the top level of the test. If the
test case uses 5.15.1 as the latest version, then the test should've
failed – but it didn't because we're missing a few promises to be
awaited.

To verify, try reverting the version diff and re-run the test. It would
fail with the new assertions.
2024-10-21 17:30:33 +01:00
Sage Abdullah 0f0d871c5e Replace UpgradeController hiddenClass with the HTML hidden attribute 2024-10-21 17:30:33 +01:00
Sage Abdullah 0dd7d12aaf
Release note for #12393 2024-10-21 16:53:30 +01:00
Sage Abdullah 0b45e6112c
Drop all trailing punctuations from URLs in a pasted text
This matches the common behaviour of various places, e.g. GitHub and
Slack.
2024-10-21 16:53:00 +01:00
Thibaud Colas 6b04961654
Account for terminal punctuation right after a pasted URL within text 2024-10-21 16:53:00 +01:00
Thibaud Colas b31319934a
Add unit tests for new auto-link paste behavior 2024-10-21 16:53:00 +01:00
Thibaud Colas ba6360446e
Add support for auto-linking URLs and emails within pasted rich text 2024-10-21 16:53:00 +01:00
Thibaud Colas 611d942c10
Refactor onPasteLink implementation to better support multi-link pasting 2024-10-21 16:53:00 +01:00
Thibaud Colas 9b6f617be1
Fix link paste detection concatenating URLs. Fix #12393 2024-10-21 16:52:59 +01:00
Bojan Mihelac 83a390661f Fix child restriction admin form when ancestors page view restrictions exists (#12124)
Fixes #4277
2024-10-21 16:29:19 +01:00
Matt Westcott 93f8600c31
ImageBlock for StreamField (rebase of #11791) (#12416)
Co-authored-by: Chiemezuo <chiemezuoakujobi@gmail.com>
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2024-10-21 16:11:34 +01:00
Rohit Singh 105338d0d6
Fix datetime fields overflowing its parent wrapper in listing filters 2024-10-21 09:45:19 +01:00
frankyiu 97fadba582 Fix long name issue in document chooser table cell (#12430, #12431)
Fixes #12357
2024-10-20 13:47:35 +01:00
Ankit Kumar 329db8e58a
Added missing link to the Code of Conduct in the community guidelines… (#12432)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2024-10-20 11:27:21 +01:00
Matt Westcott 72fb0e9880 Stop history view from breaking if a log entry's revision is missing (#12427)
e.g. after the purge_revisions management command has been run
2024-10-18 18:52:47 +01:00
Sævar Öfjörð Magnússon 207e9e50d9 StaticBlock renders empty in templates (#12425) 2024-10-18 18:27:33 +01:00
Sage Abdullah ee635534af
Release note for #12414 and #12130 2024-10-18 18:19:18 +01:00
Sage Abdullah bf139d688c
Tweak preview panel styles to accommodate more than three preview device sizes 2024-10-18 18:19:18 +01:00
Sage Abdullah aa4ceaddd0
Remove data-default-size from preview panel
Now that the preview sizes are customizable, we can't rely on the
default being the mobile size when we want to force the size of the
preview unavailable screen.
2024-10-18 18:19:18 +01:00
Sage Abdullah 5909d3e822
Apply suggestions from code review 2024-10-18 18:19:18 +01:00
alexkiro b38141ad82
Allow customization of preview device sizes
Co-authored-by: Bartosz Cieliński <bart@fullfatthings.com>
2024-10-18 18:19:17 +01:00
Sage Abdullah 49f9ae3a96 Fix error in workflows listing with multiple snippets assigned on PostgreSQL (#12367)
Fixes #12364
2024-10-18 17:43:49 +01:00
Matt Westcott 0d0700207d Release note for #12384 2024-10-18 13:02:24 +01:00
Matt Westcott 15abe65eb4 Fix saving as .heic 2024-10-17 23:28:31 +01:00
Matt Westcott 92567f6203 Document HEIC image support 2024-10-17 23:12:27 +01:00
Matt Westcott d02e09e00e Explicitly add image/heic to 'accept' attribute on image fields
File upload dialogs (at least on Chrome / Mac) don't count heic as part of image/*, as it's not a web-safe format.
2024-10-17 23:12:27 +01:00
Matt Westcott 670b721565 Recognise HEIC as an image format 2024-10-17 23:12:27 +01:00
Thibaud Colas 4725b80a13 Release notes for #12400. Fixes #9030, #9869 2024-10-17 13:33:08 +01:00
Sage Abdullah 5262b95a87 Add tests for custom media in default footer action items
And test it doesn't crash when there are no items
2024-10-17 13:33:08 +01:00
Sage Abdullah b022ae135a Ensure default footer actions' media is included
It was popped from the menu_items, so it's not in that list when we loop
through to collect the media files.

And add an early return if the default item is undefined (e.g. if a
construct hook caused the list to be empty), so it doesn't crash when it
tries to render to action menu.
2024-10-17 13:33:08 +01:00
Sage Abdullah ea61e39728 Reuse submit button strings from generic EditView in AccountView
Avoid adding new translatable strings
2024-10-17 13:33:08 +01:00
Sage Abdullah eecc4ff895 Make redirects add view and searchpromotions add/edit view templates extend the generic ones
Some hacks required until we properly refactor the views to be subclasses of the generic views
2024-10-17 13:33:08 +01:00
Sage Abdullah e231a13dbc Disable copy view for groups 2024-10-17 13:33:08 +01:00
Sage Abdullah d8d129450d Add submit_button_active_label to create/edit views 2024-10-17 13:33:08 +01:00
Sage Abdullah b934b6d089 Add copy and inspect buttons to edit view's header 'more' buttons 2024-10-17 13:33:08 +01:00
Sage Abdullah ef5ccea61d Standardise delete button label in edit views to 'Delete' 2024-10-17 13:33:08 +01:00
Sage Abdullah 47c2c0c82e Fix color contrast of bulk actions' 'Select all' button 2024-10-17 13:33:08 +01:00
Sage Abdullah efaa00d57c Remove action-secondary class from footer actions
It doesn't have good color contrast with the background, and these
'potentially-destructive' actions have a confirmation step anyway.
2024-10-17 13:33:08 +01:00
Sage Abdullah 5c4f83df72 Apply new footer actions styles 2024-10-17 13:33:08 +01:00
Sage Abdullah 037a71b679 Make pages create/edit templates extend from generic create/edit templates
and reuse the markup for footer actions.

With this commit, all form footer actions are now using the single
implementation in generic/form.html template.
2024-10-17 13:33:08 +01:00
Sage Abdullah 30048e5284 Move edit and delete links in inspect view to header 'more' buttons 2024-10-17 13:33:08 +01:00
Sage Abdullah ff17060a15 Simplify template for settings edit view
This also introduces the footer actions and unsaved changes warning to
these views.
2024-10-17 13:33:08 +01:00
Sage Abdullah 6fef75376e Simplify group create/edit templates
This also introduces the footer actions and unsaved changes warning
to these views.
2024-10-17 13:33:08 +01:00
Sage Abdullah fc05b3eb59 Add footer actions to account view 2024-10-17 13:33:08 +01:00
Sage Abdullah 13e52dcc13 Simplify user create/edit templates
This also adds the footer actions and unsaved changes warning.
2024-10-17 13:33:08 +01:00
Sage Abdullah 00655b55ec Simplify workflow and tasks create/edit templates
This allows us to reuse more markup from the generic templates,
including the code for footer actions dropdown. This also gives us the
unsaved changes warning to these views.
2024-10-17 13:33:08 +01:00
Sage Abdullah 5e766e2d13 Use w-progress and w-kbd for submit button in generic create/edit template
This gives us the disabled button with spinner upon clicking, as well as
the ability to use ctrl+s to save.

Note that we do not introduce a custom label for the in-progress state
of the button yet.
2024-10-17 13:33:08 +01:00
Sage Abdullah 2c4a8bac4d Add unsaved changes warning to generic create/edit template
With this added, we can now simplify the overrides in snippets templates
for the footer actions to only override the action buttons to use the
class component.
2024-10-17 13:33:08 +01:00
Sage Abdullah 45d9efdf99 Move delete button in edit view to a header 'more' button 2024-10-17 13:33:08 +01:00
Sage Abdullah 040065c73e Use dropdown button for default delete button in generic edit view via extra_actions block
This now gives us the dropdown button for the footer actions in most
areas of the admin:

- Generic views (ModelViewSets)
- Images
- Documents
- Sites
- Locales
- Collections
- Redirects (edit view, create view TBC)

The following areas have footer actions with their own implementation,
and will be refactored in subsequent commits:

- Workflows
- Workflow tasks
- Settings

The following areas need further work before it can use footer actions,
as they still use function-based view and may not work with the generic
templates yet:

- Redirects create view
- Search promotions

Lastly, for pages and snippets, they have their own footer actions
implementation for now because they use the ActionMenu class components.

Despite this, we also want to move the 'Delete' action to the header
'more' actions dropdown rather than the footer actions. This means we'll
get rid of the extra_actions block in generic/edit.html template in the
next commit. However, we'll keep the actual dropdown markup in
generic/form.html as it's still going to be needed by the workflows and
tasks edit templates to show the enable/disable buttons.
2024-10-17 13:33:08 +01:00
Sage Abdullah f08147193f Extract shared/action_menu/menu.html and menu_item.html templates 2024-10-17 13:33:08 +01:00
Sage Abdullah 3986b45dec Introduce footer actions container to generic create/edit template
This only moves the buttons to the buttom inside the indigo/black
container as a single row. It does not introduce the dropdown
button yet.
2024-10-17 13:33:08 +01:00
Sage Abdullah 5b79c27dc9 Rename 'fields' block in generic/form.html template to form_content
This was only recently introduced in
08fd30cb65 (not yet released).

We already have a documented 'fields' block in groups and users' create
and edit views for customisation. Using the same name for the overall
form content (other than the actions) would prevent us from making use
of this block for those documented templates.

Rename the block to form_content, so we can override the block while
also defining the documented 'fields' block in groups and users' create
and edit views.
2024-10-17 13:33:08 +01:00
Sage Abdullah 2f476e10b0 Use teal background color for footer actions when reverting revisions
Fixes color contrast issue with the buttons and makes them more
consistent with the 'normal' variant (not reverting a revision).
2024-10-17 13:33:08 +01:00
Sage Abdullah 4b54e79d7b Fix rounded border radius after closing footer actions dropdown 2024-10-17 13:33:08 +01:00
Albina 488c3583b7
'Prefers-contrast' admin theming (#12348)
Co-authored-by: Victoria Ottah <82820329+Toriasdesign@users.noreply.github.com>
2024-10-17 09:13:22 +01:00
Robin Varghese 576eaf37b2
Add support for specifying different preview modes to the "View draft" URL for pages 2024-10-15 17:38:34 +01:00
Thibaud Colas 28fcd01a31 Update colors table with new theme tokens 2024-10-14 14:40:00 +01:00
Albina 9a7427a589
Incremental dashboard enhancements. Fix #12089 (#12233)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2024-10-14 14:39:39 +01:00
LB Johnston 309e47f0cc Add changelog for adding warning for unsaved edits in snippets
Closes #8453
2024-10-11 17:52:59 +10:00
Sage Abdullah f29d55be44 Enable unsaved changes check for snippets 2024-10-11 17:52:59 +10:00
Sage Abdullah a4f0c2138e Change page-specific message in unsaved_changes_warning.html 2024-10-11 17:52:59 +10:00
Sage Abdullah 91a6e02b20 Rename pages/_unsaved_changes_warning.html to shared/unsaved_changes_warning.html 2024-10-11 17:52:59 +10:00
Matt Westcott efa2a88642 Ensure that TypedTableBlock uses the correct API representations of child blocks
TypedTableBlock did not provide a `get_api_representation` method, so it fell back on returning the database JSON representation as returned by `get_prep_value`. This resulted in an API representation that was mostly usable, but failed to respect child blocks that override `get_api_representation` themselves.
2024-10-11 17:07:19 +10:00
Chiemezuo 5cc22f3f75 Add "description" field to AbstractImage
- Baseline support for upcoming alt text capabilities
2024-10-11 17:07:06 +10:00
Sage Abdullah 897b0415cd Ensure form is always dirty after doing edits when forceValue is true 2024-10-11 16:33:28 +10:00
Rohit Singh ff4f27b131 Update README with links to release notes and roadmap
Closes #12399
2024-10-11 16:26:14 +10:00
dependabot[bot] 23387fa2f6 Bump cookie and express
Bumps [cookie](https://github.com/jshttp/cookie) and [express](https://github.com/expressjs/express). These dependencies needed to be updated together.

Updates `cookie` from 0.6.0 to 0.7.1
- [Release notes](https://github.com/jshttp/cookie/releases)
- [Commits](https://github.com/jshttp/cookie/compare/v0.6.0...v0.7.1)

Updates `express` from 4.21.0 to 4.21.1
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/4.21.1/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.21.0...4.21.1)

---
updated-dependencies:
- dependency-name: cookie
  dependency-type: indirect
- dependency-name: express
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-11 16:25:48 +10:00
Matt Westcott 27b972d30f Add support for Python 3.13 2024-10-11 16:10:07 +10:00
Matt Westcott a199096af3 Attempt to fix CircleCI pipenv cache issues 2024-10-10 20:02:32 +01:00
Gabriel Getzie 9933432ec7 change document file_size to PositiveBigIntegerField (#12397)
Fixes #12396
2024-10-10 19:54:58 +01:00
Matt Westcott a8b4a13920 Release note for #12382 2024-10-10 19:14:26 +01:00
Matt Westcott c2782e5089 Remove image_format_name_to_content_type function
Fixes #12098

This was used in two places: in WagtailImageField.to_python (where it can be replaced with willow's mime_type as per the TODO note) and wagtail.images.models.Picture (where it's applied to a fixed list of image formats, so we can just specify the mime types directly in that list).
2024-10-10 19:03:32 +01:00
LB Johnston 912c0881f9 Remove window.fileupload_opts global usage, use data attributes instead
jQuery data is used by the jQuery file upload widget and will automatically parse data attributes as objects/or JS primitive values - see https://api.jquery.com/data/

jquery File Upload will automatically parse the data attributes and treat as the default options for initialisation (already used for the url) - see https://github.com/blueimp/jQuery-File-Upload/wiki/API#data-attributes

- Closes #9771 - avoiding globals for UI specific configs
- Relates to #1288 - ongoing work for CSP compliance
2024-10-09 08:01:44 +10:00
LB Johnston 9cbe1a507a Deprecate `window.wagtailConfig.BULK_ACTION_ITEM_TYPE` usage in JS
- Avoid using a window global and inline scripts to declare the current bulk action's item time
- Deprecate the usage of `window.wagtailConfig.BULK_ACTION_ITEM_TYPE` with a release note and code comment so that it can be removed in a future release
- Update bulk actions footer template to accept a `item_type` arg, adding this to the DOM element for access within the JavaScript
- Allow a fallback on the model name for core models (e.g. page)
- Also ensure that `{{ block.super }}` is consistently added at the top of the `{% block extra_js %}` (as it is with most usage)
- Relates to #9771 and supports a future migration for bulk actions towards Stimulus
- Relates to ongoing work for CSP compliance #1288
2024-10-08 17:55:28 +10:00
LB Johnston 39e188d040 Use correct `ACTIVE_CONTENT_LOCALE` name in wagtailConfig stubs
Fix up from #11166
2024-10-03 13:26:53 +10:00
LB Johnston d80193ff30 Fix bulk controller example code in JSDoc 2024-10-03 13:26:34 +10:00
LB Johnston 3d5c20863c Clean up JSDoc on Slugify
- Ensure it's added directly above the function
- Update the description to match the options
2024-10-02 20:02:01 +10:00
Jake Howard 4727663fa6 Remove multi-line icon comments
Ensure multi-line comments are cleaned from custom icons in addition to just single line comments.
This doesn't affect Wagtail's, but could reduce the size of 3rd-party icons.
2024-10-02 15:52:09 +10:00
rahulsamant37 50ba3a9c44 Update email notification header to new logo
- Fixes #12369
- Relates to logo update #10404
2024-10-02 15:43:57 +10:00
Matt Westcott 665b9a073e Update django-taggit dependency to allow 6.1.x
Fixes #12372
2024-09-30 17:34:18 +01:00
Krzysztof Jeziorny 72292d4d01
Documentation: Configure API to use the DRF's TokenAuthentication (#12363)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2024-09-29 15:59:15 +01:00
Ishwari8104 f86161ba00
Ensure dropdown toggles show with border in high contrast mode
Update _dropdown.scss (#12365)
2024-09-29 16:37:38 +10:00
Matthew Scouten 1f7710c4d8 oEmbed - Update polldaddy to crowdsignal & remove polleverywhere
- Update polldaddy oEmbed to crowdsignal (changed in 2018) https://crowdsignal.com/2018/10/18/introducing-crowdsignal/
- Remove polleverywhere as it no longer supports oEmbed
2024-09-28 18:26:53 +10:00
Drikus Roor 6aa4647120 docs: Clarify file location, add missing imports 2024-09-28 17:45:32 +10:00
Sage Abdullah 3a9b975ba1 Fix UnsavedController.forceValue not immediately notifying the unsaved changes
Fixes #12355
2024-09-28 17:41:48 +10:00
Shubham e7de2f8955 Refactor UnsavedController to use event.preventDefault() to trigger browser confirmation dialog
Per https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event

"best practice is to trigger the dialog by invoking `preventDefault()`
on the event object, while also setting `returnValue` to support legacy
cases."

We don't need to support legacy cases, as our supported browsers all
support the `preventDefault()` approach.

See also:
https://caniuse.com/mdn-api_window_beforeunload_event_preventdefault_activation

Fixes #12132

From PR #12139
2024-09-28 17:41:48 +10:00
Coen van der Kamp abcb2da372 Add translatable model copy for translation done signal (#12362) 2024-09-27 16:01:52 +01:00
LB Johnston a5c31f91c2
Mark js_translation_strings template tag for deprecation
- `js_translation_strings` is no longer used by Wagtail admin code
- It was historically used for generating the JS config strings within templates, we now do this in Python and expose as JSON via the `wagtail_config` template tag
- Add a warning for deprecation so that we can remove this unused template tag in the next major version of Wagtail
- See #9771 for context
2024-09-26 01:12:31 -04:00
Sage Abdullah 53f55a8786
Release note for #11166 2024-09-25 14:52:50 -04:00
LB Johnston 429732f09e
Start deprecation for the `locales` as a template tag
- This was only used by our JS config globals and can now be removed in a future release
2024-09-25 14:45:45 -04:00
LB Johnston ee1cb9108a
Remove inline scripts that re-declare wagtailConfig.ACTIVE_CONTENT_LOCALE
This will now be set in one place centrally (admin_tags)
2024-09-25 14:45:44 -04:00
LB Johnston fa8fdaf72d
Simplify wagtailConfig.ts mocks in unit tests
- Avoid mock values that are already in the stub
- Only mock values that are needing to be mocked for unit tess
2024-09-25 14:45:43 -04:00
Sage Abdullah 4bb47f7e25
Move wagtailConfig values to wagtail_config template tag
The first step on cleaning up our client-side metadata configuration. With this approach, the values are computed in the `wagtail_config` template tag and passed into the template using Django's json_script.

Then, it's parsed on the client-side and set as `global.wagtailConfig` to retain compatibility with existing code that rely on `window.wagtailConfig`.

This allows us to remove our existing approach of putting metadata values in a `<script>` tag using Django templates directly in the HTML, without changing too much of the existing code, and allowing new code to import the values as `WAGTAIL_CONFIG` from `wagtailConfig.js` instead of using `window.wagtailConfig`. It also means we remove the inline script tag from the core admin base template.

Refactor wagtailConfig util

- Avoid extraneous named exports when they are included in the named WAGTAIL_CONFIG
- Simplify locale map generation
- Avoid reading from global, instead export util that can be used as a global
- Update unit tests for more robust checks
2024-09-25 14:45:09 -04:00
LB Johnston b52ca03702
Rename wagtailConfig.js to ts file 2024-09-25 14:45:07 -04:00
LB Johnston 46947fe740
Simplify unit tests for TooltipEntity
- Avoid the entire stubbed document element being in snapshots
- Reset the JSDom each test for better snapshot usage
2024-09-25 14:21:20 -04:00
SebCorbin 83f00a8363 Capfirst should be used on model verbose name instead of title (#12358) 2024-09-25 17:13:21 +01:00
Cynthia Kiser d526612e4b
Added example for customizing a default accessibility check (#12267)
Co-authored-by: Albina <51043550+albinazs@users.noreply.github.com>
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2024-09-24 11:00:20 +01:00
Albina 722b79d9be
Fix minimap toggle visibility (#12279)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2024-09-24 10:58:23 +01:00
Thibaud Colas c2b35b8945 Release notes for #12045 2024-09-24 10:52:01 +01:00
Sage Abdullah 3b22cbf0a5 Fix content path links in usage view to scroll to the correct element 2024-09-24 10:52:01 +01:00
Sage Abdullah 86610560e6 Fix scrolling to anchored panels on Chromium-based browsers
On Chrome, using scrollIntoView() while elements are still being
rendered does not work as expected (i.e. it would intermittently stop
midway).

We start by using getElementById instead of selecting :target, as the
latter doesn't always yield result until the 'load' event is fired. This
does not fix the issue.

The initAnchoredPanels() function is already being called in a 'load'
event handler, so this is as late as it can be, even after the
StreamField blocks have been initialized. However, clearly this doesn't
seem to be enough.

The only solution that seems to work is to use setTimeout, and that does
not even consistently work if the delay isn't high enough for the
elements to render. For now, use 100ms as it seems to be enough in most
cases.
2024-09-24 10:52:01 +01:00
Sage Abdullah 42262484ce Fix editor crash when the URL anchor starts with a number 2024-09-24 10:52:01 +01:00
Sage Abdullah 3388f265a3 Remove ineffective code for scrolling to top on tab select
This never really had any effect. Since the new tabs and slim header
designs in v3.0, window.scrollY always equals 0 because the scroll
container is a content element rather than the window itself.

You can verify this by opening the page editor, scrolling down a bit,
and checking window.scrollY on the browser console. It will print 0,
and if you call window.scrollTo(0, 0) it does not do anything.

Even if it did work, we don't want this behaviour either, because this
would interfere with the functionality of scrolling into a panel that
is selected by the URL anchor (#).
2024-09-24 10:52:01 +01:00
Matt Westcott a8ff831615 Update latest.txt for 6.2.2 2024-09-24 10:47:03 +01:00
Matt Westcott 246aaa42d9 Fill in release date for 6.2.2 2024-09-24 10:09:12 +01:00
Matt Westcott a97599bb96 Fetch new translations from Transifex 2024-09-24 10:00:49 +01:00
Matt Westcott f43a516219 Release note for #12352 in 6.3 2024-09-24 09:26:57 +01:00
Matt Westcott 281d600db3 Release note for #12352 in 6.2.2 2024-09-24 09:26:19 +01:00
Matt Westcott d6ef9b5752 Stop PopularTagsFilter from applying an IN clause when not filtering
Fixes #12349
2024-09-23 21:34:41 +01:00
Matt Westcott 5aa0673452 Update `WAGTAIL_WORKFLOW_REQUIRE_REAPPROVAL_ON_EDIT` docs to indicate that default is False (#12340)
Fixes #12329
2024-09-19 16:41:17 +01:00
Matt Westcott 7083bc9460 Docs - Update spelling & reference in release notes for UserViewSet for 6.2.2 2024-09-19 10:12:34 +01:00
LB Johnston 7a03106ddd Docs - Update spelling & reference in release notes for UserViewSet 2024-09-19 10:11:42 +01:00
LB Johnston 8b3540de0d Simplify Wagtail docs section titles
- Avoid additional 'Wagtail' names in the docs titles (inc. contributing)
2024-09-19 10:09:46 +01:00
LB Johnston 8f215bda5f Rename deploy URL to deployment + update title 2024-09-19 10:09:46 +01:00
Matt Westcott a3d06be90c Release note for #12332 in 6.3 2024-09-19 10:01:27 +01:00
Matt Westcott 2cc5cea4c7 Release note for #12332 in 6.2.2 2024-09-19 10:01:05 +01:00
Matt Westcott 926cece82b Remove unnecessary filters from redirects index
Fixes #12330

The filters "Redirect from", "Redirect to a page", "Target page route", "Redirect to any URL", "Automatically created" and "Created at" were introduced when `exclude = []` was set on the filter class in https://github.com/wagtail/wagtail/pull/8851/files#diff-a1afb82083d526ca8eee0f70b714bea11910ca7b12b8efe8acdcb3b8fc6c0519, and there's good reason to believe that this change was unintentional - there's no acknowledgement of it in the PR comments, the "Created at" filter is essentially non-functional since it filters on an exact timestamp rather than a date range, and the labels have not been changed from the verbose_name field defaults (which are somewhat confusing when used outside the context of the create/edit form).

The "Redirect to a page" filter in particular is causing issues on large sites as this dropdown can legitimately run to many thousands of entries and exceed web server resource limits.

Thus, roll back this filter set to its previous state of just `is_permanent` and `site`. If a user needs to find all redirects pointing to a given page, searching on the page title will generally be sufficient.
2024-09-19 09:54:55 +01:00
sag​e e529b5b84e
Fix content metrics plugin to work on the main element before falling back to `body` (#12295)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2024-09-19 08:53:12 +01:00
LB Johnston d677b1fa24 Add changelog for migrate preview-panel.js to Stimulus PreviewController
- Closes #11677
2024-09-19 08:22:54 +10:00
Sage Abdullah 706b95f670 Deprecate the WAGTAIL_AUTO_UPDATE_PREVIEW setting 2024-09-19 08:22:54 +10:00
Sage Abdullah b9f1585a70 Add tests for WAGTAIL_AUTO_UPDATE_PREVIEW_INTERVAL
Surprisingly we didn't have any tests for this...
2024-09-19 08:22:54 +10:00
Sage Abdullah e851717d9c Update Python tests to reflect the new PreviewController changes 2024-09-19 08:22:54 +10:00
Sage Abdullah e6bcfb710b Remove focus-visible fallback in preview panel code
We're dropping support for Safari 15 soon
2024-09-19 08:22:54 +10:00
Sage Abdullah 8d6d772da0 Final clean up of PreviewController and usage
Move all bind() to connect()

Add renderUrl value to use different URLs for sending vs rendering preview data

Add docstrings for PreviewController properties

Rename cleared property to ready and dispatch w-preview:ready

Add events to PreviewController update lifecycle

Use zero interval delay to disable preview auto update

Rearrange PreviewController methods to better follow the update flow

Ensure only one preview iframe has the w-preview-iframe ID at a given time

This doesn't really affect how it functions, but it's semantically more correct

Ensure runContentChecks function does not crash in tests

Only clear stale data if there is a valid stale preview available

Fix preview on Firefox by not removing the only iframe

Reorder targets and values alphabetically and add JSDoc for events

Introduce w-preview__proxy class for invisible elements in preview panel
2024-09-19 08:22:54 +10:00
Sage Abdullah 054e72b4c2 Setup main PreviewController unit tests
Test loading the last device size from localStorage

Ensure selected device size class is applied on connect

Add test for using ResizeObserver in PreviewController

Add tests for default PreviewController behaviour

Add test for opening preview in a new tab

Add test for handling a request error when opening preview in a new tab

Add test for showing the spinner when loading the preview

Add test for enforcing rendered preview width when there are errors

Split PreviewController tests into separate describe blocks

Use fake timers for all PreviewController tests

Add more detailed assertions in initializeOpenedPanel

Add assertions for setTimeout in PreviewController test

Add test for auto-update cycle

Add test for disabling auto update on panel close

Add tests for manually updating the preview

Add tests for switching preview modes

Only add the mode select element for these tests, to ensure that the
preview panel works even without it (e.g. for models that only define a
single preview mode)

Add tests for PreviewController.disconnect and for requiring the url value

Add test for assuming the first size input is the default

Add ResizeObserver test for preview controller

Reuse url variable in PreviewController tests
2024-09-19 08:22:54 +10:00
Sage Abdullah 0b14ae31dc Add block markers to preview.html to ease customisability
This allows developers to more easily customise the panel, e.g. customising the device sizes
2024-09-19 08:22:54 +10:00
Sage Abdullah db4e86a2c1 Rename preview-panel class to w-preview 2024-09-19 08:22:54 +10:00
Sage Abdullah 55d57be7c5 Initial migration of preview panel to Stimulus PreviewController
Initialise preview panel as a Stimulus PreviewController

Fix TypeScript issues in PreviewController

Use Stimulus targets for preview device size inputs

Use Stimulus target for preview panel new tab button

Use Stimulus target for preview panel loading spinner

Use Stimulus target for preview panel refresh button

Use Stimulus target for preview panel mode select

Use Stimulus target for preview panel iframe

Also rename the id to w-preview-iframe to follow our new conventions for
singleton elements

Rely on Stimulus to replace the iframe target

Because we copy all the attributes from the old iframe to the new one,
this means that the new iframe will also become a target. When we remove
the old iframe, the target is disconnected, and subsequent references to
this.iframeTarget should point to the new one.

Access the preview panel's parent side panel element via this.element.parentElement

Bind preview device size inputs using Stimulus data-action

Extract PreviewController.observePanelSize() method

Extract PreviewController.restoreLastSavedPreferences() method

Use Stimulus value for preview panel url

Use Stimulus value for preview panel pending update state

Move edit form and spinner timeout references into instance variables

Extract PreviewController.finishUpdate() method

Extract PreviewController.reloadIframe() method

Extract PreviewController.clearPreviewData() and setPreviewData() methods

Replace preview panel refresh button target with data-action

Extract openPreviewInNewTab method and use it via data-action

Do not close the preview tab if the data is not valid

Use Stimulus values for preview panel auto update config

Extract PreviewController.initAutoUpdate() method

Extract handlePreviewModeChange method and use it via data-action

Use Stimulus classes for preview panel unavailable and has-errors CSS classes

Use Stimulus class for preview panel selected input size

This removes the reliance of having a predefined set of classes for each
device name, making it easier to add support for custom sizes later.

The outline styles have also been updated to make use of focus-visible
when available.

Use hidden attribute for hiding preview panel spinner

Replace PreviewController isUpdating value with an updatePromise instance variable

Extract PreviewController.hasChanges() method

Extract PreviewController.checkAndUpdatePreview() method

Add default values for PreviewController values

Use ProgressController outlet for preview panel refresh button

This allows the use of the button-longrunning handling for the loading state.

Also, turn the button into an icon-only button as there might not be enough space when the panel is resized to the smallest size

Use cloneNode() instead of manually copying the attributes

Extract PreviewController.replaceIframe() and use it as the iframe's action

Extract PreviewController.sidePanelContainer instance attribute

Extract PreviewController.checksSidePanel instance attribute

Extract PreviewController.updateInterval instance attribute

Clean up PreviewController event listeners on disconnect

Extract preview panel device localStorage key into PreviewController Stimulus value

Extract preview panel's width CSS property names into Stimulus values

Disconnect preview panel ResizeObserver on controller disconnect

Use an instance variable for tracking preview availability
2024-09-19 08:22:54 +10:00
Sage Abdullah 5aa0dde2a4 Move preview-panel.js to PreviewController.ts 2024-09-19 08:22:54 +10:00
Sage Abdullah a5b42936ec Extract setOptionalInterval util from SessionController 2024-09-19 08:22:54 +10:00
Sage Abdullah 7b67723da9 Fix error if the preview iframe does not have the userbar loaded 2024-09-19 08:22:54 +10:00
Sage Abdullah 014ffb5ce9 Ensure the side panel's show event is dispatched after any hide events
If the event is dispatched in the loop, then the show event may be
dispatched before the hide event is dispatched. For example, if you're
switching from the checks panel to the preview panel, as the preview
panel is ordered before the checks panel in the DOM.

This could cause an issue with the preview panel code, where we listen
for the show event to activate the auto update, and listen to the hide
event to deactivate it. We're listening to both the preview and checks
side panels.

Without this fix, the preview auto-update will get deactivated upon
switching from the checks panel to the preview panel, as the hide event
is dispatched after the show event.
2024-09-19 08:22:54 +10:00
Sage Abdullah 30f1115353 Fix debounce() return type to follow original function
Without typing Promise and Promise.resolve with R, it defaults to
unknown, so the R generic type can't be used.

Also, the debounced function's args should take the generic A parameter
instead of redefining it as any[].
2024-09-19 08:22:54 +10:00
LB Johnston 6bb0c7597f Docs - Hacktoberfest - Remove reference to the t-shirt
There is no longer a t-shirt reward as of 2023
https://hacktoberfest.com/participation/#faq
2024-09-19 08:03:36 +10:00
sanjeevholla26 aa3be4b888 [UI]: Changed class from warning to failure for confirm delete message
Ensure the contrast of the message is suitable
Fixes #12232
2024-09-18 09:48:41 +10:00
Matt Westcott 9c153d27ea Release note for #12327 2024-09-17 18:12:50 +01:00
Matt Westcott a26bd1d6aa Omit messages about root / unroutable pages when searching or filtering
In this view the results include descendant pages, for which the information is not necessarily accurate.
2024-09-17 18:11:25 +01:00
Matt Westcott 42aa0c027e Move messages about root / unroutable parent pages to a new explorable_index_results template 2024-09-17 18:11:25 +01:00
Matt Westcott baa2e15d82 Update Atif Khan's name in release notes 2024-09-17 17:23:31 +01:00
Sage Abdullah 59689600e9 Fix missing JS in pages/explorable_index.html template 2024-09-17 16:12:58 +01:00
Matt Westcott 66ff3c52cc Use non-tracked links in Divio hosting details
As per https://github.com/wagtail/wagtail/pull/12250#discussion_r1762523573
2024-09-17 14:37:08 +01:00
Sage Abdullah 65efe1f160 Ensure form pages listing tests have consistent ordering 2024-09-17 14:12:50 +01:00
Sage Abdullah 621998f233 Use lru_cache for get_form_types caching 2024-09-17 14:12:50 +01:00
Atif2077 96f8324458 Modified slugify/urlify to according to django's slug validator (#12319)
Fixes #12300
2024-09-17 13:14:51 +01:00
Sage Abdullah 6affa04d32 Add search and filters from PageListingMixin to form pages listing (#12324) 2024-09-17 09:58:12 +01:00
Matt Westcott a7ad9ba5f1 Release note for #12275 2024-09-16 20:27:12 +01:00
Sage Abdullah dfc4a5b2ed Enable breadcrumbs in images URL Generator view 2024-09-16 20:26:14 +01:00
Sage Abdullah 4245d7f619 Use grid and simplify the template for image edit view 2024-09-16 20:26:14 +01:00
Sage Abdullah d3d3299c22 Refactor images edit view to use generic EditView 2024-09-16 20:26:14 +01:00
Sage Abdullah ed2f0c4720 Refactor images single upload view to use generic CreateView 2024-09-16 20:26:14 +01:00
Sage Abdullah 89bd68b0dc Enable breadcrumbs in images multiple upload view 2024-09-16 20:26:14 +01:00
Sage Abdullah 3b07d32fb8 Add missing index_url_name and edit_url_name in images UsageView
And reduce 1 query by using select_related for uploaded_by_user.
2024-09-16 20:26:14 +01:00
Matt Westcott 63fb2b123d Release note for #12248 2024-09-16 14:23:59 +01:00
Sage Abdullah c50f7d1918 Remove .filter() from PageListingMixin.annotate_queryset() 2024-09-16 14:23:06 +01:00
Sage Abdullah 1449a64329 Do not define permission_policy/any_permission_required in PageListingMixin
Require the concrete views to define them instead, as PageListingMixin
should not make any assumptions how the view should behave.
2024-09-16 14:23:06 +01:00
Sage Abdullah e46f6920b6 Make PageListingMixin.annotate_queryset public and use page_permission_policy directly 2024-09-16 14:23:06 +01:00
Sage Abdullah d8bdc900c8 Filter PageListingMixin.columns by name instead of using pop() by index 2024-09-16 14:23:06 +01:00
Sage Abdullah b1a1989899 Use content type cache in page search view 2024-09-16 14:23:06 +01:00
Sage Abdullah f45b0a4ad5 Show locale labels on treeless page listings 2024-09-16 14:23:06 +01:00
Sage Abdullah ef2dad9dd9 Add parent page query optimisation in PageListingMixin if ParentPageColumn is used 2024-09-16 14:23:06 +01:00
Sage Abdullah cc56f0b6ba Use PageListingMixin for page SearchView 2024-09-16 14:23:06 +01:00
Sage Abdullah 2ad8c7286e Use PageListingMixin in page ContentTypeUseView 2024-09-16 14:23:06 +01:00
Sage Abdullah ed45350e8c Reimplement workflow usage view with PageListingMixin and BaseListingView 2024-09-16 14:23:06 +01:00
Sage Abdullah 028fabbd6a Add parent page column to PageListingMixin.columns
In a treeless page listing, it can be quite useful to know the parent page
of each page in the listing.
2024-09-16 14:23:06 +01:00
Sage Abdullah 08cb3a88a9 Extract PageListingMixin from page IndexView 2024-09-16 14:23:06 +01:00
Sage Abdullah 639586423f Rename ExplorablePageFilterSet to GenericPageFilterSet
The main difference is that it has the content_type filter, which means
it's intended for listings that show the generic base Page type.
2024-09-16 14:23:06 +01:00
Matt Westcott 84ab70d3a1 Release note for #12272 2024-09-16 09:27:23 +01:00
Sage Abdullah f99a66a709 Use grid and simplify the template for documents edit view 2024-09-16 09:24:09 +01:00
Sage Abdullah 08fd30cb65 Add fields block to generic/form.html template for easier customisation 2024-09-16 09:24:09 +01:00
Sage Abdullah 054dea5302 Refactor documents edit view to use generic EditView 2024-09-16 09:24:09 +01:00
Sage Abdullah a28cb84b80 Refactor documents single upload view to use generic CreateView
This view isn't actually used anymore and is only accessible via direct
URL. We might want to deprecate them instead.
2024-09-16 09:24:09 +01:00
Sage Abdullah 36fc9615ae Enable breadcrumbs in documents multiple upload view 2024-09-16 09:24:09 +01:00
Sage Abdullah a5ff33ebe2 Add missing index_url_name and edit_url_name in documents UsageView 2024-09-16 09:24:09 +01:00
Sage Abdullah ca4a1575ad Remove unused window.fileupload_opts.simple_upload_url
The usage was removed in fd8277bcf7, so
these are just unused leftovers.
2024-09-16 09:24:09 +01:00
Daniel Black 93b9c04ce7
Update MySQL and MariaDB healthcheck commands for GitHub Actions
mysqladmin ping and mariadb-admin ping can return healthy during their
initialization stage as by default these connect over unix socket.

Add --protocol=tcp to mysqladmin to report healthy when a TCP
connection occurs. The initial startup uses --skip-networking.

MariaDB has a built-in healthcheck.sh in its container:
https://mariadb.com/kb/en/using-healthcheck-sh-script/
2024-09-13 11:22:47 +01:00
Matt Westcott bd90802877 Release note for #12261 2024-09-13 09:23:59 +01:00
Sage Abdullah ed430b40df Fix ordering of workflow history detail view's tasks tab 2024-09-13 09:20:36 +01:00
Sage Abdullah 4097f54824 Reduce queries in workflow history detail view 2024-09-13 09:20:36 +01:00
Sage Abdullah 85bd9212be Add tests for rendering workflow history detail view
and update the docstring of the revision query to reflect the actual
behaviour. The query does:

- a filter on TaskState to get the ones that are associated with the
  current workflow state, then gets the IDs of the revisions associated
  with those task states, and
- use it as a subquery to get the revisions with those IDs

TaskState objects are only created when a task's state changes – this
means we don't create new TaskState objects when you save the
page/snippet without performing a workflow action.

This means the query will only result in revisions that were made as
part of a workflow action, not just any edits.
2024-09-13 09:20:36 +01:00
Sage Abdullah 1b691a905f Fix RevisionQuerySet.for_instance() when used with a non-specific instance
If the method was used with a base Page instance, it wouldn't return any
revisions because we would be filtering on the content_type FK using the
current model (the base Page model) instead of the specific model.

Filter on base_content_type and make use of
RevisionMixin.get_base_content_type() instead, which will
resolve to the base Page model (and the correct the most basic
non-abstract model for non-Page models with MTI).

Use the old logic if the instance's model does not use RevisionMixin for
some reason.

This logic is similar to WorkflowStateQuerySet.for_instance() and
TaskQuerySet.for_instance().
2024-09-13 09:20:36 +01:00
Sage Abdullah d79a2e7012 Use breadcrumbs and header buttons for workflow history detail 2024-09-13 09:20:36 +01:00
Sage Abdullah 05230388d8 Fix GenericPageBreadcrumbsMixin to correctly take the specified number of items
The old code was taking the N-th item from the view's generic breadcrumbs instead of taking the last N items as the comment suggests
2024-09-13 09:20:36 +01:00
Sage Abdullah 98bbded2a8 Use BaseListingView with breadcrumbs and header buttons for workflow history view 2024-09-13 09:20:36 +01:00
dependabot[bot] 816ec2e6c5 Bump serve-static and express
Bumps [serve-static](https://github.com/expressjs/serve-static) and [express](https://github.com/expressjs/express). These dependencies needed to be updated together.

Updates `serve-static` from 1.15.0 to 1.16.2
- [Release notes](https://github.com/expressjs/serve-static/releases)
- [Changelog](https://github.com/expressjs/serve-static/blob/v1.16.2/HISTORY.md)
- [Commits](https://github.com/expressjs/serve-static/compare/v1.15.0...v1.16.2)

Updates `express` from 4.19.2 to 4.21.0
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/4.21.0/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.19.2...4.21.0)

---
updated-dependencies:
- dependency-name: serve-static
  dependency-type: indirect
- dependency-name: express
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-09-12 19:21:35 +01:00
Matt Westcott 4e0236d5c2 Release note for #12298 in 6.3 2024-09-12 19:18:12 +01:00
Matt Westcott 31a3a47263 Release note for #12298 in 6.2.2 2024-09-12 19:17:49 +01:00
smark-1 acb1208abb Fix link to Users search in the "Other searches" bar
Regression in b6fdd8c408
2024-09-12 19:17:49 +01:00
Matt Westcott 4e4fac003b Release note for #12310 / document support for MariaDB 2024-09-12 19:11:22 +01:00
Sage Abdullah 2eb976a96b Do not disable timezone when testing against MySQL
MySQL cannot load timezone-aware fixtures when USE_TZ = False.
2024-09-12 19:05:24 +01:00
Sage Abdullah 38b624d301 Disable parallel mode when testing against MariaDB
Not supported yet due to https://code.djangoproject.com/ticket/33537
2024-09-12 19:05:24 +01:00
Sage Abdullah 9914349a43 Add MariaDB to test matrix
Use the 10.11 LTS (2028-02-16) and 11.4 LTS (2029-05-29).

Also use the email user model and disable timezone for the 11.4
strategy.
2024-09-12 19:05:24 +01:00
Sage Abdullah 170487e0c5 Update MySQL test matrix
MySQL 8.1 has been EOL since 2023-10-25. Use the next LTS 8.4
(2032-04-30). Add MYSQL_ROOT_PASSWORD to ensure the root password
is set.

Also use email user model and disable timezone on the 8.4 strategy to
ensure we test these configurations with MySQL as well.
2024-09-12 19:05:24 +01:00
Matt Westcott de2be5270e Roll back codecov CI task to v3
As per #12303
2024-09-12 14:32:07 +01:00
smark-1 14c2150f29
Add generated `test-media` to .gitignore 2024-09-12 14:18:34 +01:00
Matt Westcott 0183876669 Force refresh of CircleCI pipenv cache
Attempt to resolve semgrep not found errors
2024-09-11 20:32:47 +01:00
Matt Westcott 48b3a52c92 Release note for #12268 in 6.2.2 2024-09-11 19:48:35 +01:00
Matt Westcott 2b481e677c Release note for #12268 in 6.3 2024-09-11 19:47:02 +01:00
Sage Abdullah 50a1aba134 Clarify UserViewSet customization to avoid confusion with the custom user model's app config 2024-09-11 19:44:36 +01:00
Thibaud Colas 84b3bf7034
Add new Puppeteer cache location to fix CircleCI ui_tests (#12293) 2024-09-09 10:20:26 +01:00
Matt Westcott 7cad7c4f0e Reinstate support for generic IndexView without model attribute
000d417ec9 (in #12236) skips the check that `self.model` is non-null in `is_searchable`. This means that it is no longer possible to define IndexView subclasses without a model property, which was previously valid - for example this one from wagtail-review:

ce2f6d814b/wagtail_review/views/admin.py (L98-L104)
2024-09-09 09:42:52 +01:00
smark-1 467cced098 Fix typo advantage in docs/deploy/under_the_hood.md 2024-09-08 19:08:29 +01:00
Matt Westcott cf07674b92 Release note for #12276 2024-09-06 12:13:29 +01:00
Sage Abdullah 50b99c7643 Update GitHub Actions workflow configuration 2024-09-06 11:55:46 +01:00
Sage Abdullah d6d0d4df5a Use ModelIterable as the base class for SpecificIterable
We don't really need its __iter__ implementation, but Django added a
check in
e4a2e22ddb
that requires ModelIterable to be used when using in_bulk() with
values() or values_list().
2024-09-06 11:55:46 +01:00
Thibaud Colas 74681487e0 Release notes for #12203 2024-09-06 11:46:43 +01:00
Matt Westcott b3e68b69fc Upgrade puppeteer to 22.x 2024-09-06 11:46:43 +01:00
Matt Westcott 3567c15e72 Upgrade puppeteer to 21.x 2024-09-06 11:46:43 +01:00
Matt Westcott 726d4c05e1 Upgrade puppeteer to 19.x 2024-09-06 11:46:43 +01:00
Matt Westcott 83562ab03c Upgrade puppeteer to 16.x 2024-09-06 11:46:43 +01:00
Matt Westcott 0c411651b8 Address test failures on empty table headings 2024-09-06 11:46:43 +01:00
Matt Westcott 41f768b2ab Bump patch versions in wagtail/client/tests/integration/package-lock.json 2024-09-06 11:46:43 +01:00
Matt Westcott 6593615a60 Run integration tests in debug mode so that static files are served 2024-09-06 11:46:43 +01:00
Matt Westcott d87d34b7d1 update caniuse-lite to prevent warning about outdated browser list 2024-09-06 11:46:43 +01:00
Matt Westcott 482f5a0ec7 Set timeouts of 30 seconds for axe tests 2024-09-06 11:46:43 +01:00
Sage Abdullah 5038418b1e
Release note for #12236 2024-09-06 11:41:00 +01:00
Sage Abdullah 9d8507bc37
Move no_results_message to a cached_property in BaseListingView 2024-09-05 18:31:44 +01:00
Sage Abdullah d8f2eb3d75
Use the same pages/listing.html template for both base page IndexView and the SearchView 2024-09-05 18:31:12 +01:00
Sage Abdullah 587ddbae54
Rename wagtailadmin/pages/index.html to wagtailadmin/pages/listing.html
This template is useful for other page listings where we may also want
to enable bulk actions, e.g. the search view – and later, the workflows
usage view, as well as the page type usage view.

This is a separate commit just so git knows we're just renaming. We'll
reinstate the pages/index.html as a no-op extension of this
pages/listing.html template.
2024-09-05 18:31:12 +01:00
Sage Abdullah 51b5075090
Remove unnecessary overrides in page listing IndexView 2024-09-05 18:31:12 +01:00
Sage Abdullah ff0cd42a6c
Include ordering in BaseListingView context 2024-09-05 18:31:11 +01:00
Sage Abdullah f155546f65
Ensure non-IndexView BaseListingView subclasses use the correct base templates
Now that the listing_results.html template supports rendering the "There
are x matches" message, we can enforce the consistency between the view
class and the template. Previously there were BaseListingView subclasses
(that are not IndexView subclasses) that used the index_results.html
template just to get that message when filtering.
2024-09-05 18:31:11 +01:00
Sage Abdullah e302c62ef2
Refactor page search view to be closer to universal listings implementation
- Use a single class with index_url_name, index_results_url_name,
  template_name, and results_template_name
- Extend generic/listing.html and generic/listing_results.html templates
- Set page_title and header_icon to show breadcrumbs properly
- Set is_searchable = True and keep using the custom search and
  filtering logic with the full get_queryset override to prevent scope
  creep for now
2024-09-05 18:31:11 +01:00
Sage Abdullah 000d417ec9
Move search implementation from IndexView to BaseListingView 2024-09-05 18:31:11 +01:00
Sage Abdullah c36b891e35
Replace IndexView.get_filterset_class with filterset_class cached property
This is now possible thanks to ViewSet.UNDEFINED. Previously, we would
be getting the unbound cached property instance from the view class,
only to pass it back to the view during as_view() – which results in a
broken state.
2024-09-05 18:31:10 +01:00
Sage Abdullah 9e36fa74b6
Move all interim support of non-breadcrumbs listing views to the index.html template
We want to remove all breadcrumbs_items check in the templates
eventually (as we want all listing views to use breadcrumbs). Instead of
having both BaseListingView's listing.html and IndexView's index.html
templates support the non-breadcrumbs case, do this only for the
index.html template.

The reasoning is because the BaseListingView was extracted more recently
as part of the Universal Listings work. When the filtering support was
moved from the IndexView to BaseListingView in 130c7ff, we still had to
support the non-breadcrumbs case due to the report views still using the
old filters implementation.

Now that we have migrated the report views to use the new AJAX-based
filtering, it's much less likely there's a BaseListingView subclass out
there that uses the non-breadcrumbs version. For such views, it's likely
they would work with IndexView too (as we haven't really documented
BaseListingView since its creation). So, put the interim support in the
IndexView template for now.

We could also completely drop the non-breadcrumbs case for both views,
but this would mean any custom listing view that uses filters now _must_
implement a results-only view _and_ enable breadcrumbs, or include the
filtering template themselves...
2024-09-05 18:31:10 +01:00
Sage Abdullah 3e758e65fd
Enforce breadcrumbs on all listing views
Add a base implementation of get_breadcrumbs_items() in BaseListingView
that uses the page_title and page_subtitle for the main breadcrumbs item
(the final, big one).

Then, remove the implementation in generic IndexView in favour of the base
one. Note that this changes the main breadcrumbs item label on IndexView
subclasses to prioritise the page_title attribute over the model's
verbose name plural.

This makes more sense – if you set page_title, you'd presumably want this
to be the one that shows up as the big title at the top too. This also
makes it consistent with how the <title> tag is generated. Previously,
they would go out of sync, as can be seen in Tasks and Users: the
breadcrumbs say 'Tasks' while the <title> tag says 'Workflow tasks', and
if a custom user model is used, the breadcrumbs say 'Custom user' while
the <title> tag only says Users.

---

Most of core views that extend from BaseListingView (including IndexView
subclasses) already use breadcrumbs at this point. Any custom listing
views, provided that they use the documented approaches, i.e.:

- ModelViewSet and SnippetViewSet index views
- Custom report views
- Custom form submission listing views
- Custom GroupViewSet and UserViewSet index views

also already use the breadcrumbs.

In core, the only BaseListingView subclass that doesn't yet use
breadcrumbs is the ContentTypeUseView (the "pages that use X type"
view). With this change, the view now nicely uses the breadcrumbs.

As for the generic/listing.html template, the only non-BaseListingView
view that uses it without breadcrumbs is the workflows usage view. It's
currently still a function-based view and the template overrides the
whole 'content' block, so it's unaffected.

Other than the above two, the only possible cases of a listing view that
doesn't use breadcrumbs in Wagtail core mean that they are:
- not a BaseListingView subclass, or
- not using a template that extends generic/listing.html

For code outside of Wagtail core, the only likely possibilities of a listing
view without breadcrumbs that would be affected by this change are:

- if a BaseListingView or IndexView subclass is registered directly (without
  being part of the above viewsets). In this case, they can set
  _show_breadcrumbs to False to undo the effect (but they really shouldn't).
- if the _show_breadcrumbs flag is already set to False on the view class
  or via the viewset. In this case, they won't be affected by the change.

For both cases, instead of setting _show_breadcrumbs to False
(essentially ignoring any problems), they should start looking into
fixing any issues they find with the breadcrumbs (if any – there likely
isn't).

We are planning to enforce breadcrumbs everywhere, so eventually we'll
drop the _show_breadcrumbs flag altogether. This commit starts from the
listing views, by setting it to True directly on the BaseListingView
instead of the subclasses.
2024-09-05 18:31:10 +01:00
Vince Salvino 9545193907 Add official hosting documentation
- Create a deploy section of the documentation
- Move fly.io deployment from tutorial to it's own page under deploy
- Clean up deployment docs and references throughout documentation
2024-09-03 07:59:20 +10:00
LB Johnston 4af8ab528b Documentation - formatting clean up 2024-08-29 18:32:20 +01:00
LB Johnston 7f2bcb677b Update 6.3 release notes (clean up + docs links) 2024-08-29 18:28:07 +01:00
LB Johnston 29d9b0d72e Add docs links for 6.2 release notes 2024-08-29 18:28:07 +01:00
LB Johnston 1790bdd158 Align recent docs & release notes to US spelling 2024-08-29 18:28:07 +01:00
LB Johnston 23d32faf36 Update NPM packages (minor only) 2024-08-29 18:25:19 +01:00
Matt Westcott 05d40271ae Test against psycopg 2 and 3 2024-08-29 18:04:06 +01:00
Matt Westcott 0d8b8386e2 Refactor StreamField get_prep_value for closer alignment with JSONField (#12269) 2024-08-29 18:04:06 +01:00
Matt Westcott 7051363f9f Change Twitter to X in security.md 2024-08-27 15:32:17 +01:00
Matt Westcott c574954a0a Release note for #12244 in 6.2.2 2024-08-27 15:06:15 +01:00
Matt Westcott ce5ba9efdf Add release note template for 6.2.2 2024-08-27 15:06:13 +01:00
Matt Westcott 50c4d32a54 Release note for #12251 2024-08-27 14:16:03 +01:00
Matt Westcott 2b96c3e364 Add clarifying comment to Column 2024-08-27 14:15:34 +01:00
Matt Westcott b670a3251b Remove now-unnecessary str wrapper 2024-08-27 14:15:34 +01:00
Matt Westcott 490acebcf5 Only patch number formatting functions if WAGTAIL_CHECK_TEMPLATE_NUMBER_FORMAT environment variable is set
The patch for filesizeformat in particular is quite heavyweight, and we don't want our CI to never test against the real version (for example, if it changes in a future Django release).
2024-08-27 14:15:34 +01:00
Matt Westcott ff7e016eb5 Patch number formatting functions during tests to flag up potential USE_THOUSAND_SEPARATOR issues 2024-08-27 14:15:34 +01:00
Matt Westcott 85c0047268 Audit all uses of localized/unlocalized numbers in templates
Address bugs caused by the `USE_THOUSAND_SEPARATOR=True` setting inserting commas where they are invalid, such as image width/height attributes. All numbers output on templates are now passed through one of `|unlocalize` (for numbers that must never have separators), `|intcomma` (for numbers displayed to users which should always include separators) or `|localize` (for when the choice is delegated to the project-wide setting).
2024-08-27 14:15:32 +01:00
Matt Westcott cbf06df4eb Prevent versioned_static failure when INSTALLED_APPS is a tuple
Fixes #12253
2024-08-27 08:55:05 +01:00
Matt Westcott 6857f6431a Release note for #12217 2024-08-23 16:18:18 +01:00
Jake Howard db331618b4 Ensure hashes are the correct length 2024-08-23 16:12:10 +01:00
Jake Howard 3fd329339e Use `INSTALLED_APPS` as a unique-ish id for masking version 2024-08-23 16:12:10 +01:00
Jake Howard f263f2a40f Use shorter digest for version hash
This helps protect the secret key by using a smaller digest, ensuring the previously-discarded data is included in the output hash. Using a salt and personalization also goes to further obscure the values.
2024-08-23 16:12:10 +01:00
Jake Howard 35c0d5d6e0 Remove secret key from icon sprite hash
This is just the hash of a file returned to the user - there's no need to salt it
2024-08-23 16:12:10 +01:00
Matt Westcott 5014d50490 Release note for #12226 2024-08-23 15:54:02 +01:00
Sage Abdullah a99df18f6c Optimise logic for showing 'Translate' button on the page listing
External translation packages e.g. wagtail-localize can make use of the annotation to get the same performance benefit
2024-08-23 15:53:16 +01:00
Sage Abdullah c5a90d3c7c Add missing globe icon in 'Translate' button in page listing dropdown 2024-08-23 15:53:16 +01:00
Sage Abdullah c46e07ef63 Use approved_schedule property for detecting ScheduledForPublishLock
We only need to know about the existence of a scheduled revision,
and not the revision itself.

This method is used by 'PagePermissionTester.can_unpublish', which
in turn is used by the 'Unpublish' button in the page listing 'more'
button. As a result, this method is run on every single item in the
listing.

We already have annotate_approved_schedule to optimise the display
of the 'scheduled' status tag (for pages). Use the approved_schedule
property so we can reuse that annotation instead of performing an
N+1 query.
2024-08-23 15:53:16 +01:00
SebCorbin d0098f394d Fix duplicate class attribute in image chooser (#12245) 2024-08-23 15:40:07 +01:00
vossisboss 7582a9932a Adding updated tutorial link requested by DIVIO. 2024-08-23 15:31:24 +01:00
SebCorbin b0b33514dd Fix typo in attribute (#12246) 2024-08-23 15:28:26 +01:00
Matt Westcott a59a2d0585 Update latest.txt for 6.2.1 2024-08-20 16:48:00 +01:00
Matt Westcott 688d833451 Fill in release date for 6.2.1 2024-08-20 16:20:46 +01:00
Matt Westcott 1ebe9a1a13 Fetch new translations from Transifex 2024-08-20 16:20:26 +01:00
Matt Westcott 9c921481dd Release note for #12237 2024-08-20 16:04:15 +01:00
Matt Westcott a7d243b9b6 Ensure that moderators without explicit edit permission on snippets are granted access to the ping endpoint
Fixes #12209
2024-08-16 13:21:37 +02:00
Matt Westcott deaf45309a Ensure that moderators without explicit edit permission on pages are granted access to the ping endpoint 2024-08-16 09:36:15 +01:00
Matt Westcott df08f99945 Avoid importing custom user models at load time in wagtail.admin.models
As per https://docs.djangoproject.com/en/5.0/topics/auth/customizing/#referencing-the-user-model , module-level code such as ForeignKey definitions should use `AUTH_USER_MODEL` rather than `get_user_model()`.

Probably fixes #12228 (unconfirmed)
2024-08-15 11:08:24 +01:00
Matt Westcott bd87ccf517 Release note for #12223 2024-08-13 20:23:56 +01:00
Sage Abdullah 986c08789a Add small gap between permissions in 'Custom permissions' column 2024-08-13 19:14:54 +01:00
Sage Abdullah 1825f5c60f Fix error when shift+clicking across groups in object permissions table 2024-08-13 19:14:54 +01:00
Sage Abdullah cf90275196 Move publish, lock, and unlock permissions to 'Custom permissions' column
These permissions only show up for models that have the corresponding
mixins enabled, which are likely to be the minority – which results in
the other rows having an empty cell for the column. This takes up space
in an already crowded table.

Move them to the "Custom permissions" column so we can reclaim the space
for other, more important columns.
2024-08-13 19:14:54 +01:00
Sage Abdullah f8589b3dcd Fix text alignment of model names in object permissions section 2024-08-13 19:14:54 +01:00
Matt Westcott 72b965cd94 Formalise support for Django 5.1 2024-08-12 11:26:44 +01:00
Sage Abdullah e83d23ca2a Fix broken task type filter in workflow task chooser modal (#12213)
Fixes #12210
2024-08-08 18:52:26 +01:00
Matt Westcott 0cf52a6175 Remove pre-Django 4.2 fallback code from JSONField null handling migration 2024-08-08 16:56:48 +01:00
Matt Westcott 4e6eaab241 Remove Django <4.2 fallback code from images migrations
(these files were using CRLF line endings for some reason; changed to LF)
2024-08-08 16:56:48 +01:00
Matt Westcott c7a42c4b34 Update django-taggit dependency to allow 6.0.x (#12220) 2024-08-08 16:19:41 +01:00
Matt Westcott e06ec6d28e Generate new strings for translation 2024-08-07 10:11:19 +01:00
Jake Howard 22fe143d36 Purge frontend cache when modifying redirects (#12185) 2024-08-06 19:25:28 +01:00
Matt Westcott ca63bdf5ee Release note for #12156 2024-08-06 17:52:21 +01:00
Sage Abdullah afea1e1599 Allow reordering pages that violate the parent's subpage_types 2024-08-06 17:42:02 +01:00
Andy Babic 3935770020 Don't prevent reordering of subpages when there are no 'creatable' page types: That mechanism is to prevent manual creation, but it doesn't mean that children aren't editable 2024-08-06 17:42:02 +01:00
Matt Westcott d327a0dd50 Handle `child_block` being passed as a kwarg in ListBlock.deconstruct_with_lookup (#12208)
Fixes #12202
2024-08-06 14:37:33 +01:00
Matt Westcott 5281432127 Add release notes template for 6.2.1 2024-08-06 14:37:23 +01:00
Matt Westcott 82aa1c1a61 Add Nayanshi Singh to contributors 2024-08-05 13:55:12 +01:00
NayanshiSingh bf91e185bf Update twitter link in support docs to x.com (#12205)
Fixes #12206
2024-08-05 13:54:37 +01:00
NayanshiSingh a8dcf2a492 Twitter link updated to x (#12205)
Fixes #12204
2024-08-05 13:54:26 +01:00
Vince Salvino 067ebc01ec Add example date/time formatting for the Wagtail admin settings. (#12083) 2024-08-02 13:54:13 +01:00
Matt Westcott 8a590283a9 Remove Wagtail Space promotion 2024-08-02 09:51:51 +01:00
parasite-68 b767533acd Changed Twitter links in readme to x.com (#12199)
Fixes #12198
2024-08-02 09:49:40 +01:00
Matt Westcott 93368f04c2 Update latest.txt for 6.2 2024-08-01 14:59:44 +01:00
Matt Westcott 98705762bf Fill in release date for 6.2 2024-08-01 13:02:20 +01:00
Matt Westcott 0ebcda6533 Fetch new translations from Transifex 2024-08-01 13:01:56 +01:00
smark-1 6672f4b518
Fix typo in admin url finder docs (#12193) 2024-08-01 11:48:20 +01:00
DK a11414447d
Fix typo in 6.2 release notes and changelog (#12192)
Co-authored-by: Daniel Kirkham <d.kirkham@kirkham.id.au>
2024-08-01 11:44:56 +01:00
Vaughn Dickson 0dc233b0fa Add missing getTextLabel implementation for BaseDateTimeWidget, so the value is displayed if it is available instead of a JavaScript 'null'. (#12162)
Fixes #12094
2024-07-31 18:05:37 +01:00
Sage Abdullah aadad14ee8
Improve styles for overly long selectors in checks results 2024-07-31 11:10:49 +01:00
Thibaud Colas 96db233bf0 Disable pointer events on checker highlights to simplify DevTools inspections 2024-07-31 10:43:07 +02:00
Thibaud Colas aa070ef08e Log accessibility checker results when present 2024-07-31 10:43:07 +02:00
Thibaud Colas a684273227 Re-instate accessibility check selectors in CMS. Fix #12157 2024-07-31 10:43:07 +02:00
Matt Westcott b34f8b79a1 Release note for #12155 2024-07-29 18:36:43 +01:00
Sage Abdullah ac480f97ae Cache available time zones
From zoneinfo.available_timezones() docs:
https://docs.python.org/3/library/zoneinfo.html#zoneinfo.available_timezones

This function may open a large number of files, as the best way to determine if a file on the time zone path is a valid time zone is to read the “magic string” at the beginning.
2024-07-29 18:31:30 +01:00
Sage Abdullah dfe9638e7d Replace pytz.common_timezones with zoneinfo.available_timezones
and remove pytz dependency
2024-07-29 18:31:30 +01:00
Sage Abdullah b757524708 Do not suggest using the custom user model's app config as the custom wagtail.users app config
Doing so would mean the "models" module of the app that contains the
custom user model will be used in favour of the models module of the
wagtail.users app, which contains the UserProfile model. As a result,
the UserProfile model becomes mistakenly picked up by the wagtailcore
app, creating a bogus migration when makemigrations is run.

This partially reverts the docs to the version before
449a48d7f9, in particular the paragraphs
about creating the custom AppConfig subclass for wagtail.users.
2024-07-29 17:35:08 +01:00
Matt Westcott fa8f9415c9 Release note for #12084 2024-07-29 15:59:27 +01:00
Matt Westcott a6a1b942ae Give meaningful error when using SnippetChooserBlock on a non-snippet model
Ref #11702 - this is identified as a common cause of AttributeErrors during StreamField block serialization.
2024-07-29 15:30:17 +01:00
Matt Westcott ee374b40bc Prevent AttributeErrors thrown within StreamField block serialization from being masked
Ref #11702. Generally, the first call to _build_block_json happens when accessing the `media` property of the widget. Django wraps this in a try/except AttributeError to guard against the widget not defining a `media` property, so if an AttributeError occurs during the `JSContext.pack` operation, the error will be suppressed and the BlockWidget left in an invalid state where `_js_context` is defined but `_block_json` is not.

Fix this by wrapping exceptions raised during `JSContext.pack` with a ValueError (which is probably less likely to be caught), and updating BlockWidget to not assume that `_js_context` being defined implies `_block_json` is defined.
2024-07-29 15:30:17 +01:00
Sage Abdullah a5bb99bf67 Fix duplicated rich text input inside choosers (#12173)
Fixes #12002
2024-07-29 15:08:33 +01:00
Sage Abdullah 4f7db41030 Ensure submit buttons inside dialogs also trigger the overwrite confirmation dialog 2024-07-29 07:43:05 +01:00
Sage Abdullah 7eabf7eeb9 Clarify overwrite dialog message and remove reference to model name
Change 'session' to 'window' and remove mention of model name to avoid
issues with gendered languages
2024-07-29 07:17:53 +01:00
Sage Abdullah f21d8181ed Revert "Use the proper content type for confirmation messages"
This reverts commit 6c44d6113c.
2024-07-29 07:17:53 +01:00
Matt Westcott efc419a3a1 Use Nathanaël Jourdane's full name 2024-07-26 10:34:23 +01:00
Matt Westcott 4bed63dbb7 Prevent deconstruct_with_lookup from breaking on ListBlock subclasses with custom constructors
Fixes #12164
2024-07-25 15:28:39 +01:00
Matt Westcott 42c566b19b Remove note about database search not ordering by relevance
This text existed since Wagtail 1.x and is referring to the original database backend that just did substring matches (which is now the fallback backend), before we supported database-backed full-text search.
2024-07-24 22:31:53 +01:00
Matt Westcott 526c7da018 Make StreamField migration a headline release note for 6.2 2024-07-23 11:56:34 +01:00
Thibaud Colas 4616501fb9 Reorder and rewrite 6.2 release notes 2024-07-23 10:51:44 +01:00
Matt Westcott ed5749ca1e Release notes for #12149 and #12150 2024-07-23 10:15:30 +01:00
Matt Westcott f7fa20e600 Upgrade Sphinx to 7.3; use newer syntax for no-index directive and --fail-on-warning switch 2024-07-23 10:13:03 +01:00
Matt Westcott 80b1ebe40b Apply suggested rewrites from pyupgrade for Python 3.9 and up
```
git ls-files --others --cached --exclude-standard -- '*.py' | xargs pyupgrade --py39-plus
```
2024-07-23 10:12:45 +01:00
Matt Westcott 4ad2527824 Use correct package name libmariadb-dev for Debian bookworm 2024-07-23 10:12:45 +01:00
Matt Westcott cc1d4924bb Remove guard on usedforsecurity kwarg
This kwarg is always accepted as of Python 3.9 (see https://docs.python.org/3.10/library/hashlib.html#hash-algorithms)
2024-07-23 10:12:45 +01:00
Matt Westcott a8a29201c9 Drop support for Python 3.8 2024-07-23 10:12:45 +01:00
Sage Abdullah 012cd99c1b
Release note for #12017 2024-07-22 17:21:58 +01:00
Sage Abdullah 8217124799
Add default next_url value in form submissions delete view 2024-07-22 17:13:54 +01:00
Matthias Brück 4bfab460a4
Add next parameter to form submission delete view and bulk action 2024-07-22 16:35:27 +01:00
Matthias Brück 74df95d049
Revert 8e106f4 and move paginate_queryset() to BaseListingView. 2024-07-22 14:46:46 +01:00
Matt Westcott 0e60590676 Fix no-index directive for Sphinx 7.4.7 2024-07-22 14:21:16 +01:00
Matt Westcott 9cd2005a09 Add release note stubs for 6.3 2024-07-22 13:43:34 +01:00
Matt Westcott 6d6ec7762d Version bump to start work on 6.3 2024-07-22 13:43:34 +01:00
Matt Westcott e1f9d97238 Remove versionadded/versionchanged notes for 6.1 2024-07-22 13:43:34 +01:00
2588 zmienionych plików z 63700 dodań i 36553 usunięć

Wyświetl plik

@ -1,16 +1,7 @@
{
"sourceType": "unambiguous",
"presets": [
[
"@babel/preset-env",
{
"targets": {
"chrome": 100,
"safari": 15,
"firefox": 91
}
}
],
"@babel/preset-env",
"@babel/preset-typescript",
"@babel/preset-react"
],

Wyświetl plik

@ -3,37 +3,39 @@ version: 2
jobs:
backend:
docker:
- image: cimg/python:3.8.11
environment:
PIPENV_VENV_IN_PROJECT: true
- image: cimg/python:3.12
steps:
- checkout
- run: python --version > .python_version
- restore_cache:
key: pipenv-v1-{{ checksum "setup.py" }}
key: &venv-cache venv-v1-{{ checksum "setup.py" }}-{{ checksum ".python_version" }}
# Only install if .venv wasnt cached.
- run: |
if [[ ! -e ".venv" ]]; then
pipenv install -e .[testing,docs]
python -m venv .venv
source .venv/bin/activate
python -m pip install -e .[testing,docs]
fi
echo "source $(pwd)/.venv/bin/activate" >> $BASH_ENV
- save_cache:
key: pipenv-v1-{{ checksum "setup.py" }}
key: *venv-cache
paths:
- .venv
- run: pipenv run ruff check .
- run: pipenv run ruff format --check .
- run: pipenv run semgrep --config .semgrep.yml --error .
- run: git ls-files '*.html' | xargs pipenv run djhtml --check
- run: pipenv run curlylint --parse-only wagtail
- run: pipenv run doc8 docs
- run: ruff check .
- run: ruff format --check .
- run: semgrep --config .semgrep.yml --error .
- run: git ls-files '*.html' | xargs djhtml --check
- run: curlylint --parse-only wagtail
- run: doc8 docs
- run:
name: Run tests
command: |
export PYTHONUNBUFFERED=1
pipenv run python -u runtests.py --parallel=2
WAGTAIL_CHECK_TEMPLATE_NUMBER_FORMAT=1 python -u runtests.py --parallel=2
frontend:
docker:
- image: cimg/node:20.9
- image: cimg/node:22.11
steps:
- checkout
- restore_cache:
@ -62,44 +64,50 @@ jobs:
ui_tests:
docker:
- image: cimg/python:3.8.11-browsers
- image: cimg/python:3.12-browsers
environment:
PIPENV_VENV_IN_PROJECT: true
DJANGO_SETTINGS_MODULE: wagtail.test.settings_ui
DJANGO_DEBUG: true
DJANGO_DEBUG: 'true'
steps:
- checkout
- attach_workspace:
at: ~/project
- run: python --version > .python_version
- restore_cache:
key: pipenv-v1-{{ checksum "setup.py" }}
key: &ui_tests-venv-cache ui_tests-venv-v1-{{ checksum "setup.py" }}-{{ checksum ".python_version" }}
# Only install if .venv wasnt cached.
- run: |
if [[ ! -e ".venv" ]]; then
pipenv install -e .[testing]
python -m venv .venv
source .venv/bin/activate
python -m pip install -e .[testing]
fi
echo "source $(pwd)/.venv/bin/activate" >> $BASH_ENV
- save_cache:
key: pipenv-v1-{{ checksum "setup.py" }}
key: *ui_tests-venv-cache
paths:
- .venv
- restore_cache:
key: ui_tests-npm_integration-v1-{{ checksum "client/tests/integration/package-lock.json" }}
key: &ui_tests-npm-cache ui_tests-npm_integration-v3-{{ checksum "client/tests/integration/package-lock.json" }}
# Only install if node_modules wasnt cached.
- run: |
if [[ ! -e "client/tests/integration/node_modules" ]]; then
npm --prefix ./client/tests/integration ci
fi
- save_cache:
key: ui_tests-npm_integration-v1-{{ checksum "client/tests/integration/package-lock.json" }}
key: *ui_tests-npm-cache
paths:
- client/tests/integration/node_modules
- run: pipenv run ./wagtail/test/manage.py migrate
# Also cache the global location where Puppeteer stores browsers.
# https://pptr.dev/guides/configuration/#changing-the-default-cache-directory
- ~/.cache/puppeteer
- run: ./wagtail/test/manage.py migrate
- run:
command: pipenv run ./wagtail/test/manage.py runserver 0:8000
command: ./wagtail/test/manage.py runserver 0:8000
background: true
- run: pipenv run ./wagtail/test/manage.py createcachetable
- run: ./wagtail/test/manage.py createcachetable
- run:
command: pipenv run ./wagtail/test/manage.py createsuperuser --noinput
command: ./wagtail/test/manage.py createsuperuser --noinput
environment:
DJANGO_SUPERUSER_EMAIL: admin@example.com
DJANGO_SUPERUSER_USERNAME: admin
@ -109,16 +117,16 @@ jobs:
environment:
JEST_JUNIT_OUTPUT_DIR: reports/jest
- run:
command: pipenv run ./wagtail/test/manage.py collectstatic --noinput
command: ./wagtail/test/manage.py collectstatic --noinput
environment:
DJANGO_DEBUG: false
DJANGO_DEBUG: 'false'
STATICFILES_STORAGE: manifest
- store_test_results:
path: ./reports/jest
nightly-build:
docker:
- image: cimg/python:3.8.11-node
- image: cimg/python:3.12-node
steps:
- checkout
- run: pip install --user wheel boto3

Wyświetl plik

@ -11,7 +11,6 @@ wagtail/images/static
wagtail/embeds/static
wagtail/search/static
wagtail/snippets/static
wagtail/users/static
wagtail/contrib/*/static
.mypy_cache
/storybook-static

Wyświetl plik

@ -132,14 +132,14 @@ module.exports = {
files: [
'client/extract-translatable-strings.js',
'client/tests/**',
'webpack.config.js',
'tailwind.config.js',
'storybook/**/*',
'*.test.ts',
'*.test.tsx',
'*.test.js',
'webpack.config.js',
'*.stories.js',
'*.stories.tsx',
'*.test.js',
'*.test.ts',
'*.test.tsx',
'**/storybook/**',
],
rules: {
'@typescript-eslint/no-empty-function': 'off',
@ -167,7 +167,6 @@ module.exports = {
'wagtail/images/static_src/wagtailimages/js/add-multiple.js',
'wagtail/images/static_src/wagtailimages/js/focal-point-chooser.js',
'wagtail/images/static_src/wagtailimages/js/image-url-generator.js',
'wagtail/users/static_src/wagtailusers/js/group-form.js',
],
globals: { $: 'readonly', jQuery: 'readonly' },
},
@ -175,7 +174,6 @@ module.exports = {
{
files: ['wagtail/**/**'],
globals: {
buildExpandingFormset: 'readonly',
escapeHtml: 'readonly',
ModalWorkflow: 'readonly',
DOCUMENT_CHOOSER_MODAL_ONLOAD_HANDLERS: 'writable',

2
.gitattributes vendored 100644
Wyświetl plik

@ -0,0 +1,2 @@
# Make GitHub highlight html files as Django templates
*.html linguist-language=django

Wyświetl plik

@ -1,4 +1,4 @@
# Contributing to Wagtail
# Contributing
Thank you for considering to help Wagtail.

Wyświetl plik

@ -24,7 +24,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Initialize CodeQL
uses: github/codeql-action/init@v1

Wyświetl plik

@ -13,24 +13,25 @@ concurrency:
cancel-in-progress: true
# Our test suite should cover:
# - all supported databases against current Python and Django
# - all supported databases against current Python and Django (including psycopg v2 and v3)
# - at least one test run for each older supported version of Python and Django
# - at least one test run for each supported Elasticsearch version
# - a test run against Django's git main and active stable branch (allowing failures)
# - test runs with USE_EMAIL_USER_MODEL=yes and DISABLE_TIMEZONE=yes
# - test runs with USE_EMAIL_USER_MODEL=yes, DISABLE_TIMEZONE=yes and WAGTAIL_CHECK_TEMPLATE_NUMBER_FORMAT=1
# Current configuration:
# - django 4.2, python 3.8, postgres:12, parallel
# - django 4.2, python 3.9, mysql:8.0
# - django 4.2, python 3.10, sqlite
# - django 5.0, python 3.12, mysql:8.1, parallel
# - django 5.0, python 3.11, postgres:12, parallel, USE_EMAIL_USER_MODEL=yes
# - django 5.0, python 3.12, postgres:15, parallel, DISABLE_TIMEZONE=yes
# - django stable/5.1.x, python 3.11, postgres:15 (allow failures)
# - django main, python 3.12, postgres:latest, parallel (allow failures)
# - elasticsearch 7, django 4.2, python 3.8, postgres:latest
# - opensearch 2, django 4.2, python 3.9, sqlite
# - elasticsearch 8, django 5.0, python 3.11, sqlite, USE_EMAIL_USER_MODEL=yes
# - django 4.2, python 3.9, postgres:12, psycopg 2, parallel
# - django 4.2, python 3.10, mysql:8.0
# - django 4.2, python 3.11, mariadb:10.5
# - django 5.1, python 3.12, mysql:8.4, USE_EMAIL_USER_MODEL=yes
# - django 5.1, python 3.12, mariadb:11.4, USE_EMAIL_USER_MODEL=yes
# - django 5.1, python 3.13, sqlite, parallel, WAGTAIL_CHECK_TEMPLATE_NUMBER_FORMAT=1
# - django 5.1, python 3.13, postgres:15, psycopg 3, parallel, DISABLE_TIMEZONE=yes
# - django stable/5.2.x, python 3.12, postgres:15, psycopg 3 (allow failures)
# - django main, python 3.13, postgres:latest, psycopg 3, parallel (allow failures)
# - elasticsearch 7, django 4.2, python 3.9, postgres:latest, psycopg 2
# - opensearch 2, django 5.1, python 3.10, sqlite
# - elasticsearch 8, django 5.1, python 3.13, sqlite, USE_EMAIL_USER_MODEL=yes
# Some tests are run in parallel by passing --parallel to runtests.py.
# When running tests in parallel, some errors cannot be pickled and result in
@ -47,13 +48,17 @@ jobs:
strategy:
matrix:
include:
- python: '3.10'
django: 'Django>=4.2,<4.3'
- python: '3.13'
django: 'Django>=5.1,<5.2'
check_template_number_format: '1'
parallel: '--parallel'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
@ -65,14 +70,17 @@ jobs:
- name: Test
run: |
WAGTAIL_FAIL_ON_VERSIONED_STATIC=1 DJANGO_SETTINGS_MODULE=wagtail.test.settings django-admin check
coverage run --parallel-mode --source wagtail runtests.py
coverage run --parallel-mode --source wagtail runtests.py ${{ matrix.parallel }}
env:
DATABASE_ENGINE: django.db.backends.sqlite3
USE_EMAIL_USER_MODEL: ${{ matrix.emailuser }}
WAGTAIL_CHECK_TEMPLATE_NUMBER_FORMAT: ${{ matrix.check_template_number_format }}
- name: Upload coverage data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ github.job }}-${{ strategy.job-index }}
path: .coverage.*
include-hidden-files: true
test-postgres:
runs-on: ubuntu-latest
@ -80,30 +88,32 @@ jobs:
strategy:
matrix:
include:
- python: '3.8'
- python: '3.9'
django: 'Django>=4.2,<4.3'
psycopg: 'psycopg2>=2.6'
experimental: false
parallel: '--parallel'
- python: '3.11'
django: 'Django>=5.0,<5.1'
experimental: false
emailuser: emailuser
parallel: '--parallel'
- python: '3.12'
django: 'Django>=5.0,<5.1'
- python: '3.13'
django: 'Django>=5.1,<5.2'
psycopg: 'psycopg>=3.1.8'
postgres: 'postgres:15'
notz: notz
experimental: false
parallel: '--parallel'
- python: '3.11'
django: 'git+https://github.com/django/django.git@stable/5.1.x#egg=Django'
- python: '3.12'
django: 'git+https://github.com/django/django.git@stable/5.2.x#egg=Django'
psycopg: 'psycopg>=3.1.8'
postgres: 'postgres:15'
experimental: true
- python: '3.12'
- python: '3.13'
django: 'git+https://github.com/django/django.git@main#egg=Django'
psycopg: 'psycopg>=3.1.8'
experimental: true
postgres: 'postgres:latest'
parallel: '--parallel'
install_extras: |
pip uninstall -y django-modelcluster
pip install "git+https://github.com/wagtail/django-modelcluster.git@main#egg=django-modelcluster"
services:
postgres:
image: ${{ matrix.postgres || 'postgres:12' }}
@ -114,16 +124,18 @@ jobs:
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install "psycopg2>=2.6"
pip install "${{ matrix.psycopg }}"
pip install -e '.[testing]' --config-settings editable_mode=strict
pip install "${{ matrix.django }}"
${{ matrix.install_extras }}
@ -139,10 +151,29 @@ jobs:
USE_EMAIL_USER_MODEL: ${{ matrix.emailuser }}
DISABLE_TIMEZONE: ${{ matrix.notz }}
- name: Upload coverage data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ github.job }}-${{ strategy.job-index }}
path: .coverage.*
include-hidden-files: true
- name: Test project template
if: ${{ matrix.experimental }}
env:
PYTHONWARNINGS: error
run: |
wagtail start testproject
cd testproject
tee -a testproject/settings/local.py << EOF
from warnings import filterwarnings
SILENCED_SYSTEM_CHECKS = ["wagtailadmin.W001"]
# Remove when https://github.com/wagtail/Willow/issues/166 is resolved
filterwarnings(
"ignore", "The AVIF support in this library is marked as deprecated"
)
EOF
python manage.py makemigrations --check --dry-run
python manage.py migrate
python manage.py check --fail-level WARNING
test-mysql:
runs-on: ubuntu-latest
@ -150,28 +181,42 @@ jobs:
strategy:
matrix:
include:
- python: '3.9'
- python: '3.10'
django: 'Django>=4.2,<4.3'
experimental: false
- python: '3.12'
django: 'Django>=5.0,<5.1'
- python: '3.11'
django: 'Django>=4.2,<4.3'
experimental: false
parallel: '--parallel'
mysql: 'mysql:8.1'
mysql: 'mariadb:10.5'
- python: '3.12'
django: 'Django>=5.1,<5.2'
experimental: false
mysql: 'mariadb:11.4'
emailuser: emailuser
- python: '3.12'
django: 'Django>=5.1,<5.2'
experimental: false
mysql: 'mysql:8.4'
emailuser: emailuser
services:
mysql:
image: ${{ matrix.mysql || 'mysql:8.0' }}
env:
MARIADB_ROOT_PASSWORD: root
MYSQL_ROOT_PASSWORD: root
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: wagtail
HEALTH_CMD: ${{ startsWith(matrix.mysql, 'mariadb') && 'healthcheck.sh --connect --innodb_initialized' || 'mysqladmin --protocol=tcp ping' }}
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 --cap-add=sys_nice
options: --health-cmd=$HEALTH_CMD --health-interval=10s --health-timeout=5s --health-retries=3 --cap-add=sys_nice
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
@ -189,19 +234,23 @@ jobs:
DATABASE_ENGINE: django.db.backends.mysql
DATABASE_HOST: '127.0.0.1'
DATABASE_USER: root
DATABASE_PASSWORD: root
USE_EMAIL_USER_MODEL: ${{ matrix.emailuser }}
DISABLE_TIMEZONE: ${{ matrix.notz }}
- name: Upload coverage data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ github.job }}-${{ strategy.job-index }}
path: .coverage.*
include-hidden-files: true
test-sqlite-elasticsearch8:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python: '3.11'
django: 'Django>=5.0,<5.1'
- python: '3.13'
django: 'Django>=5.1,<5.2'
emailuser: emailuser
steps:
- name: Configure sysctl limits
@ -210,7 +259,7 @@ jobs:
sudo sysctl -w vm.swappiness=1
sudo sysctl -w fs.file-max=262144
sudo sysctl -w vm.max_map_count=262144
- uses: getong/elasticsearch-action@v1.2
- uses: getong/elasticsearch-action@v1.3
with:
elasticsearch version: 8.8.0
host port: 9200
@ -218,9 +267,11 @@ jobs:
host node port: 9300
node port: 9300
discovery type: 'single-node'
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
@ -238,10 +289,11 @@ jobs:
DATABASE_ENGINE: django.db.backends.sqlite3
USE_EMAIL_USER_MODEL: ${{ matrix.emailuser }}
- name: Upload coverage data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ github.job }}-${{ strategy.job-index }}
path: .coverage.*
include-hidden-files: true
test-postgres-elasticsearch7:
runs-on: ubuntu-latest
@ -249,7 +301,7 @@ jobs:
strategy:
matrix:
include:
- python: '3.8'
- python: '3.9'
django: 'Django>=4.2,<4.3'
experimental: false
@ -272,9 +324,12 @@ jobs:
- uses: elastic/elastic-github-actions/elasticsearch@master
with:
stack-version: 7.6.1
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
@ -296,10 +351,11 @@ jobs:
DATABASE_PASSWORD: postgres
USE_EMAIL_USER_MODEL: ${{ matrix.emailuser }}
- name: Upload coverage data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ github.job }}-${{ strategy.job-index }}
path: .coverage.*
include-hidden-files: true
test-sqlite-opensearch2:
runs-on: ubuntu-latest
@ -307,8 +363,8 @@ jobs:
strategy:
matrix:
include:
- python: '3.9'
django: 'Django>=4.2,<4.3'
- python: '3.10'
django: 'Django>=5.1,<5.2'
experimental: false
steps:
@ -321,9 +377,11 @@ jobs:
- uses: ankane/setup-opensearch@v1
with:
opensearch-version: 2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
@ -341,10 +399,11 @@ jobs:
DATABASE_ENGINE: django.db.backends.sqlite3
USE_EMAIL_USER_MODEL: ${{ matrix.emailuser }}
- name: Upload coverage data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ github.job }}-${{ strategy.job-index }}
path: .coverage.*
include-hidden-files: true
coverage:
needs:
@ -357,10 +416,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
@ -370,9 +431,10 @@ jobs:
pip install coverage
- name: Download coverage data
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-data
pattern: coverage-data-*
merge-multiple: true
- name: Combine coverage data
run: |
@ -384,12 +446,14 @@ jobs:
coverage html --skip-covered --skip-empty
- name: Upload HTML report as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage_html_report
include-hidden-files: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
flags: backend
token: ${{ secrets.CODECOV_TOKEN }}

1
.gitignore vendored
Wyświetl plik

@ -18,6 +18,7 @@ npm-debug.log*
/.cache/
/.pytest_cache/
/storybook-static
/wagtail/tests/test-media/
### JetBrains
.idea/

2
.nvmrc
Wyświetl plik

@ -1 +1 @@
20
22

Wyświetl plik

@ -3,7 +3,7 @@ default_language_version:
python: python3
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.1.5'
rev: 'v0.9.6'
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]

Wyświetl plik

@ -9,5 +9,11 @@ python:
path: .
extra_requirements:
- docs
formats: all
sphinx:
configuration: docs/conf.py
fail_on_warning: True
search:
ranking:
releases/*: -1
releases/upgrading.html: 0

Wyświetl plik

@ -39,6 +39,9 @@ rules:
- metavariable-regex:
metavariable: $STRING_ID
regex: ".*%\\w.*"
paths:
exclude:
- 'wagtail/test/numberformat.py'
message: >
Do not use anonymous placeholders for translations.
Use printf style formatting with named placeholders instead.

Wyświetl plik

@ -3,7 +3,7 @@ deployments:
dockerimage: python:3.11.4-slim-bullseye
build_steps:
- apt-get update && apt-get install -y libssl-dev libpq-dev git build-essential libfontconfig1 libfontconfig1-dev curl
- RUN bash -c "curl -sL https://deb.nodesource.com/setup_20.x | bash -"
- RUN bash -c "curl -sL https://deb.nodesource.com/setup_22.x | bash -"
- apt install -y nodejs
- pip install setuptools pip --upgrade --force-reinstall
- cd /code

Wyświetl plik

@ -23,12 +23,7 @@ module.exports = {
// Would be valuable for strict BEM components but is too hard to enforce with legacy code.
'no-descending-specificity': null,
// Refined ordering to align with media mixin usage - see https://github.com/wagtail/stylelint-config-wagtail/issues/37
'order/order': [
'dollar-variables',
'custom-properties',
{ type: 'at-rule', hasBlock: false }, // @-rules that have no nesting.
'declarations',
],
'order/order': ['dollar-variables', 'custom-properties', 'declarations'],
// Some parts of declaration-strict-value commented out until we are in a position to enforce them.
'scale-unlimited/declaration-strict-value': [
[
@ -56,6 +51,7 @@ module.exports = {
'none',
'unset',
'transparent',
'normal',
// System colors for forced-colors styling.
// See https://drafts.csswg.org/css-color-4/#css-system-colors.
'Canvas',

Wyświetl plik

@ -1,7 +1,373 @@
Changelog
=========
6.2 (xx.xx.xxxx) - IN DEVELOPMENT
6.5 (xx.xx.xxxx) - IN DEVELOPMENT
~~~~~~~~~~~~~~~~
* Add `WAGTAIL_` prefix to Wagtail-specific tag settings (Aayushman Singh)
* Implement `normalize` on `TypedTableBlock` to assist with setting `default` and `preview_value` (Sage Abdullah)
* Apply normalization when modifying a `StreamBlock`'s value to assist with programmatic changes to `StreamField` (Matt Westcott)
* Allow a custom image rendition model to define its unique constraint with `models.UniqueConstraint` instead of `unique_together` (Oliver Parker, Cynthia Kiser, Sage Abdullah)
* Default to the `standard` tokenizer on Elasticsearch, to correctly handle numbers as tokens (Matt Westcott)
* Add color-scheme meta tag to Wagtail admin (Ashish Nagmoti)
* Add the ability to set the default privacy restriction for new pages using `get_default_privacy_setting` (Shlomo Markowitz)
* Improve performance of batch purging page urls in the frontend cache, avoiding n+1 query issues (Andy Babic)
* Fix: Take preferred language into account for translatable strings in client-side code (Bernhard Bliem, Sage Abdullah)
* Fix: Do not show the content type column as sortable when searching pages (Srishti Jaiswal, Sage Abdullah)
* Fix: Support simple subqueries for `in` and `exact` lookup on Elasticsearch (Sage Abdullah)
* Fix: Force preview panel scroll behavior to instant to avoid flickering (Sage Abdullah)
* Fix: Support translating with the preferred language for rich text formatting labels (Bernhard Bliem, Sage Abdullah)
* Fix: Make "Actions" label translatable within the rich text toolbar (Bernhard Bliem, Sage Abdullah)
* Fix: Fix incorrect "Views (past week)" heading on promoted search results listing (Baptiste Mispelon)
* Fix: Ensure `InlinePanel` will be correctly ordered after the first save when `min_num` is used (Elhussein Almasri, Joel William)
* Fix: Avoid deprecation warnings about URLField `assume_scheme` on Django 5.x (Sage Abdullah)
* Fix: Fix setup.cfg syntax for setuptools v78 (Sage Abdullah)
* Fix: Ensure `ImproperlyConfigured` is thrown from `db_field` on unbound `FieldPanel`s as intended (Matt Westcott)
* Fix: Refine the positioning of the add comment button next to select, radio, checkbox fields and between field row columns (Srishti Jaiswal)
* Docs: Add missing `django.contrib.admin` to list of apps in "add to Django project" guide (Mohamed Rabiaa)
* Docs: Add tutorial on deploying on Ubuntu to third-party tutorials (Mohammad Fathi Rahman)
* Docs: Document that request_or_site is optional on BaseGenericSetting.load (Matt Westcott)
* Docs: Mention third-party StreamField based form builder packages in the form builder documentation (Matt Westcott)
* Maintenance: Migrate away from deprecated Sass import rules to module system (Srishti Jaiswal)
* Maintenance: Apply Sass mixed declarations migration in preparation for CSS nesting (Prabhpreet Kaur)
* Maintenance: Refactor styles for Draftail, minimap, and comments to fix remaining Sass migration warnings (Thibaud Colas)
* Maintenance: npm package updates; `downshift`, `focus-trap-react`, `immer`, `redux`, `uuid` (LB (Ben) Johnston)
* Maintenance: Validate against invalid characters in Lexeme values (Matt Westcott)
* Maintenance: Split up `wagtail.models` module into submodules (Matt Westcott)
* Maintenance: Update `ruff` to 0.9.6 (Sage Abdullah)
* Maintenance: Fix up `stubs` & `adapter` contents to better support Jest testing (LB (Ben) Johnston)
* Maintenance: Cleanup Stimulus controller imports, JSDoc & linting (LB (Ben) Johnston)
* Maintenance: Rename `SkipLinkController` to `FocusController` with improved reusability, updated unit tests, and added story (LB (Ben) Johnston)
* Maintenance: Fix CI testing issues with the Stimulus `LocaleController` time zones & non-deterministic page ordering tests (Sage Abdullah)
* Maintenance: Make GitHub highlight `.html` files as Django templates (Jake Howard)
* Maintenance: Remove admin JavaScript imports from shared template includes, moving the imports to the appropriate core admin inclusion locations (Sai Srikar Dumpeti)
* Maintenance: Remove non-editing view inclusions of the `insert_editor_js` hook output, deprecate the wrapper template tag `_editor_js.html` (Sai Srikar Dumpeti, LB (Ben) Johnston)
6.4.1 (21.02.2025)
~~~~~~~~~~~~~~~~~~
* Fix: Prevent error when filtering by locale and searching with Elasticsearch (Sage Abdullah)
* Fix: Support searching `none()` querysets (Matt Westcott)
* Fix: Correctly handle UUID primary keys when invoking background tasks (Matt Westcott)
* Fix: Fix regression where nested sub-menu items would not be visible (Sage Abdullah)
* Fix: Ensure the top of the minimap correctly adjusts when resizing the browser viewport (Thibaud Colas)
* Fix: Remove obsolete SubqueryConstraint check in search backends, for provisional Django 5.2 compatibility (Sage Abdullah)
* Fix: Add missing “Close” label to the upgrade notification dismiss button (Sage Abdullah)
* Fix: Fix white text on white background in previews for sites that use color-scheme without a background-color (Sage Abdullah)
* Docs: Fix typo in the headless documentation page (Mahmoud Nasser)
* Docs: Fix typo in `Page.get_route_paths` docstring (Baptiste Mispelon)
* Docs: Upgrade sphinx-wagtail-theme to v6.5.0 (Sage Abdullah)
* Maintenance: Remove upper version boundary for django-filter (Dan Braghis)
* Maintenance: Relax upper version boundaries for django-taggit and beautifulsoup4 (Matt Westcott)
6.4 (03.02.2025)
~~~~~~~~~~~~~~~~
* Support for background tasks using `django-tasks` (Jake Howard)
* Add search terms report (Noah van der Meer, Sage Abdullah)
* Add the ability to apply basic Page QuerySet optimizations to `specific()` sub-queries using `select_related` & `prefetch_related` (Andy Babic)
* Increase `DATA_UPLOAD_MAX_NUMBER_FIELDS` in project template (Matt Westcott)
* Stop invalid Site hostname records from breaking preview (Matt Westcott)
* Set sensible defaults for InlinePanel heading and label (Matt Westcott)
* Limit tags autocompletion to 10 items and add delay to avoid performance issues with large number of matching tags (Aayushman Singh)
* Add the ability to restrict what types of requests a Pages supports via `allowed_http_methods` (Andy Babic)
* Allow plain strings in panel definitions as shorthand for `FieldPanel` / `InlinePanel` (Matt Westcott)
* Only allow selection of valid new parents within the copy Page view (Mauro Soche)
* Add `on_serve_page` hook to modify the serving chain of pages (Krystian Magdziarz, Dawid Bugajewski)
* Add support for `WAGTAIL_GRAVATAR_PROVIDER_URL` URLs with query string parameters (Ayaan Qadri, Guilhem Saurel)
* Add `get_avatar_url` hook to customise user avatars (James Harrington)
* Set content security policy (CSP) headers to block embedded content when serving images and documents (Jake Howard, with thanks to Ali İltizar for the initial report)
* Add `page` as a third parameter to the `construct_wagtail_userbar` hook (claudobahn)
* Enable breadcrumbs in revisions compare view (Sage Abdullah)
* Skip loading of unused JavaScript to speed up 404 page rendering (Sage Abdullah)
* Replace l18n library with JavaScript Intl API for time zone options in Account view (Sage Abdullah)
* Use explicit label for defaulting to server language in account settings (Sage Abdullah)
* Add support for specifying an operator on `Fuzzy` queries (Tom Usher)
* Remove support for Safari 15 (Thibaud Colas)
* Populate the ImageBlock alt text from the images default alt text when selecting a new image (Matt Westcott)
* Prevent main menu from re-rendering when clicking outside while the menu is closed (Sage Abdullah)
* Fill in the ImageBlock alt text from the images default alt text when converting from ImageChooserBlock (Cynthia Kiser)
* Make sure typing text at the bottom of the page editor always scrolls enough to keep the text into view (Jatin Bhardwaj)
* Add StreamField and InlinePanel interfaces support for drag-and-drop reordering of items (Thibaud Colas, Sage Abdullah)
* Add previews support for StreamField blocks inside the block picker (Sage Abdullah, Thibaud Colas)
* Fix: Improve handling of translations for bulk page action confirmation messages (Matt Westcott)
* Fix: Ensure custom rich text feature icons are correctly handled when provided as a list of SVG paths (Temidayo Azeez, Joel William, LB (Ben) Johnston)
* Fix: Prevent error on lazily loading StreamField blocks after the stream has been modified (Stefan Hammer)
* Fix: Fix sub-menus within the main menu cannot be closed on mobile (Bojan Mihelac)
* Fix: Fix animation overflow transition when navigating through subpages in the sidebar page explorer (manu)
* Fix: Ensure form builder supports custom admin form validation (John-Scott Atlakson, LB (Ben) Johnston)
* Fix: Ensure form builder correctly checks for duplicate field names when using a custom related name (John-Scott Atlakson, LB (Ben) Johnston)
* Fix: Normalize `StreamField.get_default()` to prevent creation forms from breaking (Matt Westcott)
* Fix: Prevent out-of-order migrations from skipping creation of image/document choose permissions (Matt Westcott)
* Fix: Use correct connections on multi-database setups in database search backends (Jake Howard)
* Fix: Ensure CloudFront cache invalidation is called with a list, for compatibility with current botocore versions (Jake Howard)
* Fix: Show the correct privacy status in the sidebar when creating a new page (Joel William)
* Fix: Prevent generic model edit view from unquoting non-integer primary keys multiple times (Matt Westcott)
* Fix: Ensure comments are functional when editing Page models with `read_only` `Fieldpanel`s in use (Strapchay)
* Fix: Ensure the accessible labels and tooltips reflect the correct private/public status on the live link button within pages after changing the privacy (Ayaan Qadri)
* Fix: Fix empty `th` (table heading) elements that are not compliant with accessibility standards (Jai Vignesh J)
* Fix: Ensure `MultipleChooserPanel` using images or documents work when nested within an `InlinePanel` when no other choosers are in use within the model (Elhussein Almasri)
* Fix: Ensure `MultipleChooserPanel` works after doing a search in the page chooser modal (Matt Westcott)
* Fix: Ensure new `ListBlock` instances get created with unique IDs in the admin client for accessibility and mini-map element references (Srishti Jaiswal)
* Fix: Return never-cache HTTP headers when serving pages and documents with view restrictions (Krystian Magdziarz, Dawid Bugajewski)
* Fix: Implement `get_block_by_content_path` on `ImageBlock` to prevent errors on commenting (Matt Westcott)
* Fix: Add `aria-expanded` attribute to new column button on `TypedTableBlock` to reflect menu state (Ayaan Qadri, Scott Cranfill)
* Fix: Allow page models to extend base `Page` panel definitions without importing `wagtail.admin` (Matt Westcott)
* Fix: Fix crash when loading the dashboard with only the "unlock" or "bulk delete" page permissions (Unyime Emmanuel Udoh, Sage Abdullah)
* Fix: Improve deprecation warning for `WidgetWithScript` by raising it with `stacklevel=3` (Joren Hammudoglu)
* Fix: Correctly place comment buttons next to date / datetime / time fields. (Srishti Jaiswal)
* Fix: Add missing heading and breadcrumbs in Account view (Sage Abdullah)
* Fix: Reduce confusing spacing below StreamField blocks help text (Rishabh Sharma)
* Fix: Prevent redundant calls to `Site.find_for_request()` from `Page.get_url_parts()` (Andy Babic)
* Fix: Prevent error on listings when searching and filtering by locale (Matt Westcott, Sage Abdullah)
* Fix: Add missing space in panels check warning message (Stéphane Blondon)
* Fix: Make sure alt text quality check is on by default as documented (Thibaud Colas)
* Fix: Prevent `StreamChildrenToListBlockOperation` from duplicating data across multiple StreamField instances (Joshua Munn)
* Fix: Prevent database error when calling permission_order.register on app ready (Daniel Kirkham, Matt Westcott)
* Fix: Prevent syntax error on MySQL search when query includes symbols (Matt Westcott)
* Docs: Move the model reference page from reference/pages to the references section as it covers all Wagtail core models (Srishti Jaiswal)
* Docs: Move the panels reference page from references/pages to the references section as panels are available for any model editing, merge panels API into this page (Srishti Jaiswal)
* Docs: Move the tags documentation to standalone advanced topic, instead of being inside the reference/pages section (Srishti Jaiswal)
* Docs: Refine the adding reports page so that common (page/non-page) class references are at the top and the full page only example has correct heading nesting (Alessandro Chitarrini)
* Docs: Add the `wagtail start` command to the management commands reference page (Damilola Oladele)
* Docs: Refine the project template page sections and document common issues encountered when creating custom templates (Damilola Oladele)
* Docs: Refine titles, references and URLS to better align with the documentation style guide, including US spelling (Srishti Jaiswal)
* Docs: Recommend a larger `DATA_UPLOAD_MAX_NUMBER_FIELDS` when integrating Wagtail into Django (Matt Westcott)
* Docs: Improve code highlighting and formatting for Python docstrings in core models (Srishti Jaiswal)
* Docs: Update all JavaScript inline scripts & some CSS inline style tags to a CSP compliant approach by using external scripts/styles (Aayushman Singh)
* Docs: Update usage of `mark_safe` to `format_html` for any script inclusions, to better avoid XSS issues from example code (Aayushman Singh)
* Docs: Update documentation writing guidelines to encourage better considerations of security, accessibility and good practice when writing code examples (Aayushman Singh, LB (Ben) Johnston)
* Docs: Update documentation guidelines on writing links and API reference (Sage Abdullah)
* Docs: Replace absolute URLs with intersphinx links where possible to avoid broken links (Sage Abdullah)
* Docs: Update upgrading guide and release process to better reflect the current practices (Sage Abdullah)
* Docs: Document usage of custom validation for admin form pages when using `AbstractEmailForm` or `AbstractForm` pages (John-Scott Atlakson, LB (Ben) Johnston)
* Docs: Reword `BlogTagIndexPage` example for clarity (Clifford Gama)
* Docs: Change title of blog index page in tutorial to avoid slug issues (Thibaud Colas)
* Docs: Fix `wagtailcache` and `wagtailpagecache` examples to not use quotes for the `fragment_name` (Shiv)
* Docs: Update tutorial to reflect the move of the "Add child page" action to a top-level button in the header as a '+' icon (Clifford Gama)
* Docs: Fix link to `HTTPMethod` in `Page.handle_options_request()` docs (Sage Abdullah)
* Docs: Improve the Pages Theory page with added & more consistent section headings and admonitions to aid in readability (Clifford Gama)
* Docs: Fix non-functional link to the community guidelines in the Your first contribution page (Ankit Kumar)
* Docs: Introduce tags and filters by name in "Writing templates" docs (Clifford Gama)
* Docs: Add a new headless section to the documentation, incorporating parts of the 'are we headless' website content (Sævar Öfjörð Magnússon, Alex Fulcher)
* Docs: Fix Django HTML syntax formatting issue on the documents overview page (LB (Ben) Johnston)
* Docs: Separate virtual environment creation and activation steps in tutorial (Ankit Kumar)
* Docs: Update tutorial to use plain strings in place of `FieldPanel` / `InlinePanel` where appropriate (Unyime Emmanuel Udoh)
* Docs: Update example for customizing "p-as-heading" accessibility check without overriding built-in checks (Cynthia Kiser)
* Docs: Document `get_template` method on StreamField blocks (Matt Westcott)
* Docs: Update accessibility considerations on alt text in light of contextual alt text improvements (Cynthia Kiser)
* Docs: Revert incorrect example of appending a `RichTextBlock` to a `StreamField` (Matt Westcott)
* Maintenance: Close open files when reading within utils/setup.py (Ataf Fazledin Ahamed)
* Maintenance: Avoid redundant `ALLOWED_HOSTS` check in `Site.find_for_request` (Jake Howard)
* Maintenance: Update `CloneController` to ensure that `added`/`cleared` events are not dispatched as cancelable (LB (Ben) Johnston)
* Maintenance: Remove unused `uuid` UMD module as all code is now using the NPM module (LB (Ben) Johnston)
* Maintenance: Clean up JS comments throughout codebase to be aligned to JSDoc where practical (LB (Ben) Johnston)
* Maintenance: Replace `eslint-disable no-undef` linter directives with `global` comments (LB (Ben) Johnston)
* Maintenance: Upgrade Node tooling to active LTS version 22 (LB (Ben) Johnston)
* Maintenance: Remove defunct oEmbed providers (Rahul Samant)
* Maintenance: Remove obsolete non-upsert-based code for Postgres search indexing (Jake Howard)
* Maintenance: Remove unused Rangy JS library (LB (Ben) Johnston)
* Maintenance: Update `PreviewController` usage to leverage Stimulus actions instead of calling `preventDefault` manually (Ayaan Qadri)
* Maintenance: Various performance optimizations to page publishing (Jake Howard)
* Maintenance: Remove unnecessary DOM canvas.toBlob polyfill (LB (Ben) Johnston)
* Maintenance: Ensure Storybook core files are correctly running through Eslint (LB (Ben) Johnston)
* Maintenance: Add a new Stimulus `ZoneController` (`w-zone`) to support dynamic class name changes & event handling on container elements (Ayaan Qadri)
* Maintenance: Migrate jQuery class toggling & drag/drop event handling within the multiple upload views to the Stimulus ZoneController usage (Ayaan Qadri)
* Maintenance: Test project template for warnings when run against Django pre-release versions (Sage Abdullah)
* Maintenance: Refactor redirects create/delete views to use generic views (Sage Abdullah)
* Maintenance: Add JSDoc description, adopt linting recommendations, and add more unit tests for `ModalWorkflow` (LB (Ben) Johnston)
* Maintenance: Add support for for a `delay` value in `TagController` to debounce async autocomplete tag fetch requests (Aayushman Singh)
* Maintenance: Add unit tests, Storybook stories & JSDoc items for the Stimulus `DrilldownController` (Srishti Jaiswal)
* Maintenance: Enhance sidebar preview performance by eliminating duplicate asset loads on preview error (Sage Abdullah)
* Maintenance: Remove unused `LinkController` (`w-link`) (Sage Abdullah)
* Maintenance: Refactor settings `EditView` to make better use of generic `EditView` (Sage Abdullah)
* Maintenance: Add a new Stimulus `RulesController` (`w-rules`) to support declarative conditional field enabling from other field values in a form (LB (Ben) Johnston)
* Maintenance: Migrate the conditional enabling of fields in the image URL builder view away from ad-hoc jQuery to use the `RulesController` (`w-rules`) approach (LB (Ben) Johnston)
* Maintenance: Enhance the Stimulus `ZoneController` (`w-zone`) to support inactive class and a mechanism to switch the mode based on data within events (Ayaan Qadri)
* Maintenance: Use the Stimulus `ZoneController` (`w-zone`) to remove ad-hoc jQuery for the privacy switch when toggling visibility of private/public elements (Ayaan Qadri)
* Maintenance: Remove unused `is_active` & `active_menu_items` from `wagtail.admin.menu.MenuItem` (Srishti Jaiswal)
* Maintenance: Only call `openpyxl` at runtime to improve performance for projects that do not use `ReportView`, `SpreadsheetExportMixin` and `wagtail.contrib.redirects` (Sébastien Corbin)
* Maintenance: Adopt the update value `mp` instead of `mm` for 'mystery person' as the default Gravatar if no avatar found (Harsh Dange)
* Maintenance: Refactor search promotions views to use generic views and templates (Sage Abdullah, Rohit Sharma)
* Maintenance: Use built-in `venv` instead of `pipenv` in CircleCI (Sage Abdullah)
* Maintenance: Add a new Stimulus `FormsetController` (`w-formset`) to support dynamic formset insertion/deletion behavior (LB (Ben) Johnston)
* Maintenance: Enable breadcrumbs by default on admin views using generic templates (Sage Abdullah)
* Maintenance: Refactor pages `revisions_revert` view to be a subclass of `EditView` (Sage Abdullah)
* Maintenance: Move images and documents `get_usage().count()` call to view code (Sage Abdullah)
* Maintenance: Upgrade sass-loader to resolve Sass deprecation warnings (Ayaan Qadri)
6.3.4 (xx.xx.xxxx) - IN DEVELOPMENT
~~~~~~~~~~~~~~~~~~
* Fix: Add missing “Close” label to the upgrade notification dismiss button (Sage Abdullah)
* Fix: Fix white text on white background in previews for sites that use color-scheme without a background-color (Sage Abdullah)
* Maintenance: Remove upper version boundary for django-filter (Dan Braghis)
6.3.3 (03.02.2025)
~~~~~~~~~~~~~~~~~~
* Fix: Correctly place comment buttons next to date / datetime / time fields. (Srishti Jaiswal)
* Fix: Reduce confusing spacing below StreamField blocks help text (Rishabh Sharma)
* Fix: Make sure alt text quality check is on by default as documented (Thibaud Colas)
* Fix: Prevent `StreamChildrenToListBlockOperation` from duplicating data across multiple StreamField instances (Joshua Munn)
* Fix: Prevent database error when calling permission_order.register on app ready (Daniel Kirkham, Matt Westcott)
* Fix: Prevent error on lazily loading StreamField blocks after the stream has been modified (Stefan Hammer)
* Fix: Prevent syntax error on MySQL search when query includes symbols (Matt Westcott)
* Docs: Update example for customizing "p-as-heading" accessibility check without overriding built-in checks (Cynthia Kiser)
* Docs: Update accessibility considerations on alt text in light of contextual alt text improvements (Cynthia Kiser)
* Docs: Revert incorrect example of appending a `RichTextBlock` to a `StreamField` (Matt Westcott)
6.3.2 (02.01.2025)
~~~~~~~~~~~~~~~~~~
* Fix: Ensure CloudFront cache invalidation is called with a list, for compatibility with current botocore versions (Jake Howard)
* Fix: Ensure Draftail features wrap when a large amount of features are added (Bart Cieliński)
* Fix: Implement `get_block_by_content_path` on `ImageBlock` to prevent errors on commenting (Matt Westcott)
* Docs: Update tutorial to reflect the move of the "Add child page" action to a top-level button in the header as a '+' icon (Clifford Gama)
6.3.1 (19.11.2024)
~~~~~~~~~~~~~~~~~~
* Fix: Restore ability to upload profile picture through account settings (Sage Abdullah)
* Fix: Correctly handle `ImageChooserBlock` to `ImageBlock` data conversions where all inputs to `bulk_to_python` are null (Storm Heg, Matt Westcott)
* Fix: Improve spacing of page / collection permissions table in Group settings (Sage Abdullah)
* Fix: Remove forced capitalization of site name on admin dashboard (Thibaud Colas)
* Docs: Reword `BlogTagIndexPage` example for clarity (Clifford Gama)
* Docs: Change title of blog index page in tutorial to avoid slug issues (Thibaud Colas)
* Docs: Fix `wagtailcache` and `wagtailpagecache` examples to not use quotes for the `fragment_name` (Shiv)
* Docs: Lower search result ranking for release notes on readthedocs search (Sage Abdullah)
6.3 LTS (01.11.2024)
~~~~~~~~~~~~~~~~~~~~
* Add support for Python 3.13 (Matt Westcott)
* Add formal support for Django 5.1 (Matt Westcott)
* Add `ImageBlock` with alt text support (Chiemezuo Akujobi for Google Summer of Code, mentored by Storm Heg, Saptak Sengupta, Thibaud Colas and Matt Westcott)
* Implement incremental dashboard design enhancements (Albina Starykova, Ben Enright)
* Add a new enhanced contrast admin theming option for the admin interface (Albina Starykova, Victoria Ottah)
* Migrate workflow history views to universal listings (Sage Abdullah)
* Refactor documents views to use universal designs (Sage Abdullah)
* Refactor images views to use universal designs (Sage Abdullah)
* Implement universal listings for workflow usage and page type usage views (Sage Abdullah)
* Add search and filters to form pages listing (Sage Abdullah)
* Add support for uploading HEIC / HEIF images (Matt Westcott)
* Allow customization of preview device sizes in the live preview panel (Bart Cieliński, alexkiro, Sage Abdullah)
* Formalize support for MariaDB (Sage Abdullah, Daniel Black)
* Redirect to the last viewed listing page after deleting form submissions (Matthias Brück)
* Provide `getTextLabel` method on date / time StreamField blocks (Vaughn Dickson)
* Purge frontend cache when modifying redirects (Jake Howard)
* Deprecate the `WAGTAIL_AUTO_UPDATE_PREVIEW` setting, use `WAGTAIL_AUTO_UPDATE_PREVIEW_INTERVAL = 0` instead (Sage Abdullah)
* Consistently use `capfirst` for title-casing model verbose names (Sébastien Corbin)
* Fire `copy_for_translation_done` signal when copying translatable models as well as pages (Coen van der Kamp)
* Add support for an image `description` field across all images, to better support accessible image descriptions (Chiemezuo Akujobi)
* Prompt the user about unsaved changes when editing snippets (Sage Abdullah)
* Make dashboard upgrade banners dismissible (Sage Abdullah)
* Add support for specifying different preview modes to the "View draft" URL for pages (Robin Varghese)
* Implement new designs for the footer actions dropdown with more contrast and larger text (Sage Abdullah)
* All create/edit admin forms now use a sticky submit button, for consistency and to speed up edits (Sage Abdullah)
* Secondary form actions such as "Delete" are now in the header actions menu (Sage Abdullah)
* Allow setting page privacy rules when a restriction already exists on an ancestor page (Bojan Mihelac)
* Automatically create links when pasting content that contain URLs into a rich text input (Thibaud Colas)
* Add Uyghur language support
* Fix: Prevent page type business rules from blocking reordering of pages (Andy Babic, Sage Abdullah)
* Fix: Improve layout of object permissions table (Sage Abdullah)
* Fix: Fix typo in aria-label attribute of page explorer navigation link (Sébastien Corbin)
* Fix: Reinstate transparency indicator on image chooser widgets (Sébastien Corbin)
* Fix: Remove table headers that have no text (Matt Westcott)
* Fix: Fix broken link to user search (Shlomo Markowitz)
* Fix: Ensure that JS slugify function strips Unicode characters disallowed by Django slug validation (Atif Khan)
* Fix: Do not show notices about root / unroutable pages when searching or filtering in the page explorer (Matt Westcott)
* Fix: Resolve contrast issue for page deletion warning (Sanjeev Holla S)
* Fix: Make sure content metrics falls back to body element only when intended (Sage Abdullah)
* Fix: Remove wrongly-added filters from redirects index (Matt Westcott)
* Fix: Prevent popular tags filter from generating overly complex queries when not filtering (Matt Westcott)
* Fix: Fix content path links in usage view to scroll to the correct element (Sage Abdullah)
* Fix: Always show the minimap toggle button (Albina Starykova)
* Fix: Ensure that dropdown button toggles show with a border in high contrast mode (Ishwari8104, LB (Ben) Johnston)
* Fix: Update email notification header to the new logo design (Rahul Samant)
* Fix: Change `file_size` field on document model to avoid artificial 2Gb limit (Gabriel Getzie)
* Fix: Ensure that `TypedTableBlock` uses the correct API representations of child blocks (Matt Westcott)
* Fix: Footer action buttons now include their `media` definitions (Sage Abdullah)
* Fix: Improve the text contrast of the bulk actions "Select all" button (Sage Abdullah)
* Fix: Fix error on workflow settings view with multiple snippet types assigned to the same workflow on Postgres (Sage Abdullah)
* Fix: Fix datetime fields overflowing its parent wrapper in listing filters (Rohit Singh)
* Fix: Prevent multiple URLs from being combined into one when pasting links into a rich text input (Thibaud Colas)
* Fix: Improve layout of report listing tables (Sage Abdullah)
* Fix: Fix regression from creation of `AbstractGroupApprovalTask` to ensure `can_handle` checks for the abstract class correctly (Sumana Sree Angajala)
* Docs: Upgrade Sphinx to 7.3 (Matt Westcott)
* Docs: Upgrade sphinx-wagtail-theme to v6.4.0, with a new search integration and Read the Docs Addons bug fixes (Thibaud Colas)
* Docs: Document how to customize date/time format settings (Vince Salvino)
* Docs: Create a new documentation section for deployment and move fly.io deployment from the tutorial to this section (Vince Salvino)
* Docs: Clarify process for UserViewSet customization (Sage Abdullah)
* Docs: Correct `WAGTAIL_WORKFLOW_REQUIRE_REAPPROVAL_ON_EDIT` documentation to state that it defaults to `False` (Matt Westcott)
* Docs: Add an example of customizing a default accessibility check (Cynthia Kiser)
* Docs: Demonstrate access protection with `TokenAuthentication` in the Wagtail API v2 Configuration Guide (Krzysztof Jeziorny)
* Docs: Replace X links with Mastodon in the README (Alex Morega)
* Docs: Re-enable building offline formats in online documentation (Read the docs) for EPUB/PDF/HTML downloads (Joel William, Sage Abdullah)
* Docs: Resolve multiple output errors in the documentation ePub format (Sage Abdullah)
* Docs: Update social media examples to use LinkedIn, Reddit, Facebook (Ayaan Qadri)
* Maintenance: Removed support for Python 3.8 (Matt Westcott)
* Maintenance: Drop pytz dependency in favour of `zoneinfo.available_timezones` (Sage Abdullah)
* Maintenance: Relax django-taggit dependency to allow 6.0 (Matt Westcott)
* Maintenance: Improve page listing performance (Sage Abdullah)
* Maintenance: Phase out usage of SECRET_KEY in version and icon hashes (Jake Howard)
* Maintenance: Audit all use of localized and non-localized numbers in templates (Matt Westcott)
* Maintenance: Refactor StreamField `get_prep_value` for closer alignment with JSONField (Sage Abdullah)
* Maintenance: Move search implementation logic from generic `IndexView` to `BaseListingView` (Sage Abdullah)
* Maintenance: Upgrade Puppeteer integration tests for reliability (Matt Westcott)
* Maintenance: Restore ability to use `.in_bulk()` on specific querysets under Django 5.2a0 (Sage Abdullah)
* Maintenance: Add generated `test-media` to .gitignore (Shlomo Markowitz)
* Maintenance: Improve `debounce` util's return type for better TypeScript usage (Sage Abdullah)
* Maintenance: Ensure the side panel's show event is dispatched after any hide events (Sage Abdullah)
* Maintenance: Migrate preview-panel JavaScript to Stimulus & TypeScript, add full unit testing (Sage Abdullah)
* Maintenance: Move `wagtailConfig` values from inline scripts to the `wagtail_config` template tag (LB (Ben) Johnston, Sage Abdullah)
* Maintenance: Deprecate the `{% locales %}` and `{% js_translation_strings %}` template tags (LB (Ben) Johnston, Sage Abdullah)
* Maintenance: Ensure multi-line comments are cleaned from custom icons in addition to just single line comments (Jake Howard)
* Maintenance: Deprecate `window.wagtailConfig.BULK_ACTION_ITEM_TYPE` usage in JavaScript to reduce reliance on inline scripts (LB (Ben) Johnston)
* Maintenance: Remove `window.fileupload_opts` usage in JavaScript, use data attributes on fields instead to reduce reliance on inline scripts (LB (Ben) Johnston)
* Maintenance: Remove `image_format_name_to_content_type` helper function that duplicates Willow functionality (Matt Westcott)
* Maintenance: Improve code reuse for footer actions markup across generic views (Sage Abdullah)
* Maintenance: Deprecate internal `DeleteMenuItem` API for footer actions (Sage Abdullah)
* Maintenance: Update Pillow dependency to allow 11.x (Storm Heg)
6.2.3 (01.11.2024)
~~~~~~~~~~~~~~~~~~
* Fix: Prevent multiple URLs from being combined into one when pasting links into a rich text input (Thibaud Colas)
* Fix: Fix error on workflow settings view with multiple snippet types assigned to the same workflow on Postgres (Sage Abdullah)
* Fix: Prevent history view from breaking if a log entry's revision is missing (Matt Westcott)
* Docs: Upgrade sphinx-wagtail-theme to v6.4.0, with a new search integration and Read the Docs Addons bug fixes (Thibaud Colas)
6.2.2 (24.09.2024)
~~~~~~~~~~~~~~~~~~
* Fix: Fix various instances of `USE_THOUSAND_SEPARATOR` formatting numbers where formatting is invalid (Sébastien Corbin, Matt Westcott)
* Fix: Fix broken link to user search (Shlomo Markowitz)
* Fix: Make sure content metrics falls back to body element only when intended (Sage Abdullah)
* Fix: Remove wrongly-added filters from redirects index (Matt Westcott)
* Fix: Prevent popular tags filter from generating overly complex queries when not filtering (Matt Westcott)
* Docs: Clarify process for UserViewSet customization (Sage Abdullah)
6.2.1 (20.08.2024)
~~~~~~~~~~~~~~~~~~
* Fix: Handle `child_block` being passed as a kwarg in ListBlock migrations (Matt Westcott)
* Fix: Fix broken task type filter in workflow task chooser modal (Sage Abdullah)
* Fix: Prevent circular imports between `wagtail.admin.models` and custom user models (Matt Westcott)
* Fix: Ensure that concurrent editing check works for users who only have edit access via workflows (Matt Westcott)
6.2 (01.08.2024)
~~~~~~~~~~~~~~~~
* Optimize and consolidate redirects report view into the index view (Jake Howard, Dan Braghis)
@ -10,7 +376,7 @@ Changelog
* Allow custom permission policies on snippets to prevent superusers from creating or editing them (Sage Abdullah)
* Do not link to edit view from listing views if user has no permission to edit (Sage Abdullah)
* Allow access to snippets and other model viewsets to users with "View" permission (Sage Abdullah)
* Skip `ChooseParentView` if only one possible valid parent page availale (Matthias Brück)
* Skip `ChooseParentView` if only one possible valid parent page is available (Matthias Brück)
* Add `copy_for_translation_done` signal when a page is copied for translation (Arnar Tumi Þorsteinsson)
* Remove reduced opacity for draft page title in listings (Inju Michorius)
* Adopt more compact representation for StreamField definitions in migrations (Matt Westcott)
@ -27,6 +393,9 @@ Changelog
* Allow changing available privacy options per page model (Shlomo Markowitz)
* Add concurrent editing notifications for pages and snippets (Matt Westcott, Sage Abdullah)
* Add "soft" client-side validation for `StreamBlock` / `ListBlock` `min_num` / `max_num` (Matt Westcott)
* Log accessibility checker results in the console to help developers with troubleshooting (Thibaud Colas)
* Disable pointer events on checker highlights to simplify DevTools inspections (Thibaud Colas)
* `StaticBlock` now renders nothing by default when no template is specified (Sævar Öfjörð Magnússon)
* Fix: Make `WAGTAILIMAGES_CHOOSER_PAGE_SIZE` setting functional again (Rohit Sharma)
* Fix: Enable `richtext` template tag to convert lazy translation values (Benjamin Bach)
* Fix: Ensure permission labels on group permissions page are translated where available (Matt Westcott)
@ -50,6 +419,9 @@ Changelog
* Fix: Show not allowed extension in error message (Sahil Jangra)
* Fix: Fix focal point chooser when localization enabled (Sébastien Corbin)
* Fix: Ensure that system checks for `WAGTAIL_DATE_FORMAT`, `WAGTAIL_DATETIME_FORMAT` and `WAGTAIL_TIME_FORMAT` take `FORMAT_MODULE_PATH` into account (Sébastien Corbin)
* Fix: Prevent rich text fields inside choosers from being duplicated when opened repeatedly (Sage Abdullah)
* Fix: Prevent history view from breaking if a log entry's revision is missing (Matt Westcott)
* Fix: Prevent long filenames from breaking layout on document chooser listings (Frank Yiu, Shaurya Panchal)
* Docs: Remove duplicate section on frontend caching proxies from performance page (Jake Howard)
* Docs: Document `restriction_type` field on PageViewRestriction (Shlomo Markowitz)
* Docs: Document Wagtail's bug bounty policy (Jake Howard)
@ -60,16 +432,17 @@ Changelog
* Docs: Add better docs for generating URLs on creating admin views (Shlomo Markowitz)
* Docs: Document the `vary_fields` property for custom image filters (Daniel Kirkham)
* Docs: Fix documentation build errors (Himanshu Garg, Chris Shenton)
* Docs: Fix PDF export (Nathanaël)
* Docs: Fix PDF export (Nathanaël Jourdane)
* Maintenance: Use `DjangoJSONEncoder` instead of custom `LazyStringEncoder` to serialize Draftail config (Sage Abdullah)
* Maintenance: Refactor image chooser pagination to check `WAGTAILIMAGES_CHOOSER_PAGE_SIZE` at runtime (Matt Westcott)
* Maintenance: Exclude the `client/scss` directory in Tailwind content config to speed up CSS compilation (Sage Abdullah)
* Maintenance: Split `contrib.frontend_cache.backends` into dedicated sub-modules (Andy Babic)
* Maintenance: Remove unused `docs/autobuild.sh` script (Sævar Öfjörð Magnússon)
* Maintenance: Replace `urlparse` with `urlsplit` to improve performance (Jake Howard)
* Maintenance: Optimise embed finder lookups (Jake Howard)
* Maintenance: Optimize embed finder lookups (Jake Howard)
* Maintenance: Improve performance of initial admin loading by moving sprite hashing out of module import time (Jake Howard)
* Maintenance: Remove workaround and inline scripts for activating workflow actions (Sage Abdullah)
* Maintenance: Prevent `'BlockWidget' object has no attribute '_block_json'` from masking errors during StreamField serialization (Matt Westcott)
6.1.3 (11.07.2024)
@ -131,7 +504,7 @@ Changelog
* Update the minimum version of `djangorestframework` to 3.15.1 (Sage Abdullah)
* Add support for related fields in generic `IndexView.list_display` (Abdelrahman Hamada)
* Improve page fetching logic and cache route results per request (Gordon Pendleton)
* Optimise rewriting of links / embeds in rich text using bulk database lookups (Andy Chosak)
* Optimize rewriting of links / embeds in rich text using bulk database lookups (Andy Chosak)
* Add normalization mechanism to StreamField so that assignments and defaults can be passed in a wider range of data types (Joshua Munn, Matt Westcott)
* Allow specifying a `STORAGES` alias name for `WAGTAILIMAGES_RENDITION_STORAGE` (Alec Baron)
* Update `PASSWORD_REQUIRED_TEMPLATE` setting to `WAGTAIL_PASSWORD_REQUIRED_TEMPLATE` with deprecation of previous naming (Saksham Misra, LB (Ben) Johnston)
@ -163,6 +536,9 @@ Changelog
* Fix: Use correct URL when redirecting back to page search results after an AJAX search (Sage Abdullah)
* Fix: Reinstate missing static files in style guide (Sage Abdullah)
* Fix: Provide `convert_mariadb_uuids` management command to assist with upgrading to Django 5.0+ on MariaDB (Matt Westcott)
* Fix: Ensure invalid submissions are marked as dirty edits on load to trigger UI and browser warnings for unsaved changes, restoring previous behavior from Wagtail 5.2 (Sage Abdullah)
* Fix: Update polldaddy oEmbed provider to use the crowdsignal URL (Matthew Scouten)
* Fix: Remove polleverywhere oEmbed provider as it this application longer supports oEmbed (Matthew Scouten)
* Docs: Add contributing development documentation on how to work with a fork of Wagtail (Nix Asteri, Dan Braghis)
* Docs: Make sure the settings panel is listed in tabbed interface examples (Tibor Leupold)
* Docs: Update content and page names to their US spelling instead of UK spelling (Victoria Poromon)
@ -203,6 +579,7 @@ Changelog
* Maintenance: Remove jQuery usage in telepath widget classes (Matt Westcott)
* Maintenance: Remove `xregexp` (IE11 polyfill) along with `window.XRegExp` global util (LB (Ben) Johnston)
* Maintenance: Refactor the Django port of `urlify` to use TypeScript, officially deprecate `window.URLify` global util (LB (Ben) Johnston)
* Maintenance: Adopt the modern best practice for `beforeunload` usage in `UnsavedController` to trigger a leave page warning when edits have been made (Shubham Mukati, Sage Abdullah)
6.0.6 (11.07.2024)
@ -425,6 +802,23 @@ Changelog
* Maintenance: Remove support for Django 4.1 and below (Sage Abdullah)
5.2.8 (03.02.2025)
~~~~~~~~~~~~~~~~~~
* Fix: Prevent database error when calling permission_order.register on app ready (Daniel Kirkham, Matt Westcott)
* Fix: Handle StreamField migrations where the field value is null (Joshua Munn)
* Fix: Prevent `StreamChildrenToListBlockOperation` from duplicating data across multiple StreamField instances (Joshua Munn)
* Fix: Prevent error on lazily loading StreamField blocks after the stream has been modified (Stefan Hammer)
* Fix: Prevent syntax error on MySQL search when query includes symbols (Matt Westcott)
5.2.7 (01.11.2024)
~~~~~~~~~~~~~~~~~~
* Fix: Prevent multiple URLs from being combined into one when pasting links into a rich text input (Thibaud Colas)
* Fix: Fix error on workflow settings view with multiple snippet types assigned to the same workflow on Postgres (Sage Abdullah)
5.2.6 (11.07.2024)
~~~~~~~~~~~~~~~~~~
@ -540,7 +934,7 @@ Changelog
* Support extending Wagtail client-side with Stimulus (LB (Ben) Johnston)
* Update all `FieldPanel('title')` examples to use the recommended `TitleFieldPanel('title')` panel (Chinedu Ihedioha)
* The `purge_revisions` management command now respects revisions that have a `on_delete=PROTECT` foreign key relation and won't delete them (Neeraj P Yetheendran, Meghana Reddy, Sage Abdullah, Storm Heg)
* Add support for Shift + Click behaviour in form submissions and simple translations submissions (LB (Ben) Johnston)
* Add support for Shift + Click behavior in form submissions and simple translations submissions (LB (Ben) Johnston)
* Improve filtering of audit logging based on the user's permissions (Stefan Hammer)
* Fix: Ensure that StreamField's `FieldBlock`s correctly set the `required` and `aria-describedby` attributes (Storm Heg)
* Fix: Avoid an error when the moderation panel (admin dashboard) contains both snippets and private pages (Matt Westcott)
@ -602,7 +996,7 @@ Changelog
* Maintenance: Deprecate legacy URL redirects in `ModelViewSet` and `SnippetViewSet` (Sage Abdullah)
* Maintenance: Simplify code for registering page listing action buttons (Matt Westcott)
* Maintenance: Removed the unused, legacy, Wagtail userbar views set up for an old iframe approach (Sage Abdullah)
* Maintenance: Optimise `lru_cache` usage (Jake Howard)
* Maintenance: Optimize `lru_cache` usage (Jake Howard)
* Maintenance: Implement `date_since` in `get_most_popular` inside `search_promotions.models.Query` (TopDevPros)
* Maintenance: Refactor generic view subclasses to better reuse the generic templates and breadcrumbs (Sage Abdullah)
* Maintenance: Adopt consistent `classname` (not `classnames`) attributes for all `MenuItem` usage, including deprecation warnings (LB (Ben) Johnston)
@ -742,7 +1136,7 @@ Changelog
* Maintenance: Optimise use of `specific` on Task and TaskState (Matt Westcott)
* Maintenance: Use table UI component for workflow task index view (Matt Westcott)
* Maintenance: Make header search available on generic index view (Matt Westcott)
* Maintenance: Update pagination behaviour to reject out-of-range / invalid page numbers (Matt Westcott)
* Maintenance: Update pagination behavior to reject out-of-range / invalid page numbers (Matt Westcott)
* Maintenance: Remove color tokens which are duplicates / unused (Thibaud Colas)
* Maintenance: Add tests to help with maintenance of theme color tokens (Thibaud Colas)
* Maintenance: Split out a base listing view from generic index view (Matt Westcott)
@ -3981,7 +4375,7 @@ Changelog
* Fix: Fixed TypeError when getting embed HTML with oembed on Python 3 (John-Scott Atlakson)
* Fix: Made HTML whitelisting in rich text fields more robust at catching disallowed URL schemes such as "jav\tascript:" (Tim Heap)
* Fix: created_at timestamps on page revisions were not being preserved on page copy, causing revisions to get out of sequence
* Fix: When copying pages recursively, revisions of sub-pages were being copied regardless of the copy_revisions flag
* Fix: When copying pages recursively, revisions of subpages were being copied regardless of the copy_revisions flag
* Fix: Updated the migration dependencies within the project template to ensure that Wagtail's own migrations consistently apply first.
* Fix: The cache of site root paths is now cleared when a site is deleted.
* Fix: Search indexing now prevents pages from being indexed multiple times, as both the base Page model and the specific subclass

Wyświetl plik

@ -5,7 +5,7 @@
* Cynthia Kiser (Caltech)
* Dan Braghis (Torchbox)
* Dawn Wages (The Wharton School)
* Jacob Topp-Mugglestone (Torchbox)
* Emily Topp-Mugglestone (Torchbox)
* Jake Howard (Torchbox)
* Kalob Taulien
* LB Johnston
@ -15,6 +15,7 @@
* Sævar Öfjörð Magnússon (Overcast)
* Sage Abdullah (Torchbox)
* Scott Cranfill (JPL)
* Sébastien Corbin
* Stefan Hammer (wunderweiss)
* Storm Heg
* Thibaud Colas (Torchbox)
@ -719,7 +720,6 @@
* Kevin Chung (kev-odin)
* valnuro
* Vitaly Babiy
* Sébastien Corbin
* Sahil Jangra
* Henry Harutyunyan
* Alex Morega
@ -743,7 +743,6 @@
* Sandro Rodrigues
* Brian Mugo
* Panagiotis H.M. Issaris
* Damilola Oladele
* Olumide Micheal
* Chiemezuo Akujobi
* Krish Soni
@ -826,12 +825,62 @@
* Jeroen de Vries
* Romein van Buren
* Chris Shenton
* Nathanaël
* Nathanaël Jourdane
* Vaughn Dickson
* Ansuman Shukla
* Nayanshi Singh
* Daniel Black
* Atif Khan
* Sanjeev Holla S
* Shubham Mukati
* Matthew Scouten
* Ishwari8104
* Rahul Samant
* Gabriel Getzie
* Rohit Singh
* Robin Varghese
* Victoria Ottah
* Bart Cieliński
* alexkiro
* Ankit Kumar
* Frank Yiu
* Shaurya Panchal
* Sumana Sree Angajala
* Srishti Jaiswal
* Alessandro Chitarrini
* Joel William
* Ataf Fazledin Ahamed
* Ayaan Qadri
* manu
* Aayushman Singh
* Steven Steinwand
* Clifford Gama
* Noah van der Meer
* Strapchay
* Alex Fulcher
* Harsh Dange
* Mauro Soche
* Krystian Magdziarz
* Guilhem Saurel
* James Harrington
* Unyime Emmanuel Udoh
* Joren Hammudoglu
* Rishabh Sharma
* Mike Gifford
* Stéphane Blondon
* Jatin Bhardwaj
* Mohamed Rabiaa
* Bernhard Bliem
* Mahmoud Nasser
* Prabhpreet Kaur
* Baptiste Mispelon
* Mohammad Fathi Rahman
* Ashish Nagmoti
## Translators
* Afrikaans: Jaco du Plessis, Jared Osborn
* Arabic: Bashar Al-Abdulhadi, Abdulaziz Alfuhigi, Roger Allen, Khaled Arnaout, Amr Awad, Mohammed Abdul Gadir, Mohamed HossamElDin, Ahmad Kiswani, Waseem Kntar, Mahmoud Marayef, Mohamed Mayla, Ahmed Miske Sidi Med, Younes Oumakhou, Ultraify Media
* Arabic: Bashar Al-Abdulhadi, Abdulaziz Alfuhigi, Roger Allen, Khaled Arnaout, Amr Awad, Tarek Berkane, Mohammed Abdul Gadir, Mohamed HossamElDin, Ahmad Kiswani, Waseem Kntar, Mahmoud Marayef, Mohamed Mayla, Ahmed Miske Sidi Med, Younes Oumakhou, Ultraify Media
* Armenian: Vachagan
* Azerbaijani: Mirza Iskandarov
* Bangla: Mahmud Abdur Rahman
@ -847,11 +896,11 @@
* Czech: Ales Dvorak, Jan Feřtek, Martin Galda, IT Management, Tomáš Jeřábek, Vláďa Macek, Eva Mikesova, Mořeplavec, Sophy O, Martina Oleksakova, Kryštof Pilnáček, Tomáš Podivínský, Ivan Pomykacz, Jiri Stepanek, Marek Turnovec, Mirek Zvolský
* Danish: Benjamin Bach, Mads Kronborg, MRostgaard, Asger Sørensen
* Divehi: Fauzaan Gasim
* Dutch: benny_AT_it_digin.com, Bram, Ramon de Jezus Brecht Dervaux, Harmen, Storm Heg, Kees Hink, Huib Keemink, Franklin Kingma, Maarten Kling, Thijs Kramer, Samuel Leeuwenburg, mahulst, Meteor0id, Rob Moorman, Benjamin van Renterghem, Michael van Tellingen, Arne Turpyn, Coen van der Kamp
* Dutch: benny_AT_it_digin.com, Bram, Ramon de Jezus Brecht Dervaux, Harmen, Storm Heg, Kees Hink, Huib Keemink, Franklin Kingma, Maarten Kling, Thijs Kramer, Samuel Leeuwenburg, mahulst, Meteor0id, Rob Moorman, Benjamin van Renterghem, Michael van Tellingen, Arne Turpyn, Coen van der Kamp, Joeri Vlekken, Richard Voorhorst
* English (India): Neeraj PY, Apoorv Saini
* Estonian: Erlend Eelmets, Martin, Ragnar Rebase
* Finnish: Jiri Grönroos, Eetu Häivälä, Niklas Jerva, Aarni Koskela, Rauli Laine, Valter Maasalo, Glen Somerville, Juha Yrjölä
* French: Adrien, Timothy Allen, Sebastien Andrivet, Bertrand Bordage, André Bouatchidzé, Sébastien Corbin, Aurélien Debord, Romain Dorgueil, Tom Dyson, Antonin Enfrun, Axel Haustant, Renaud Kern, Fabien Le Frapper, Léo, Pierre Marfoure, nahuel, Sophy O, Aurel Pere, Dominique Peretti, fpoulain, Loïc Teixeira, Benoît Vogel
* French: Adrien, Timothy Allen, Sebastien Andrivet, Bertrand Bordage, André Bouatchidzé, Christophe Chauvet, Sébastien Corbin, Aurélien Debord, Romain Dorgueil, Tom Dyson, Antonin Enfrun, Axel Haustant, Renaud Kern, Fabien Le Frapper, Léo, Pierre Marfoure, nahuel, Sophy O, Aurel Pere, Dominique Peretti, fpoulain, Loïc Teixeira, Benoît Vogel
* Galician: X Bello, Amós Oviedo
* Georgian: André Bouatchidzé
* German: Ettore Atalan, Bohreromir, Matti Borchers, Benedikt Breinbauer, Donald Buczek, Patrick Craston, Peter Dreuw, Oliver Engel, Stefan Hammer, Patrick Hebner, Krzysztof Jeziorny, Benjamin Kaspar, Henrik Kröger, Tibor L, Tammo van Lessen, Martin Löhle, Wasilis Mandratzis-Walz, Daniel Manser, Matthias Martin, m0rph3u5, Max Pfeiffer, Moritz Pfeiffer, Herbert Poul, Karl Sander, Tobias Schmidt, Scriptim, Johannes Spielmann, Raphael Stolt, Benjamin Thurm, Norman Uekermann, unicode_it, Jannis Vajen, Florian Vogt, Alexander Weiß, Matthew Westcott, Benedikt Willi
@ -887,5 +936,6 @@
* Turkish: Saadettin Yasir Akel, Umut Bektaş, Halit Çelik, Zafer Cengiz, Cihad Gündoǧdu, Basitlik İyidir, Fatih Koç koç, José Luis, Py Data, Ahmet Sarıcan, Halim Turan, Ragıp Ünal, Suayip Uzulmez
* Turkish (Türkiye): Saadettin Yasir Akel, Basitlik İyidir, Umut Bektaş, Aydın Zafer Cengiz, lzm dgl, Cihad Gündoǧdu, Ahmet Serdar Karadeniz, Fatih Koç koç, José Luis, Py Data, Halim Turan, Ragıp Ünal
* Ukrainian: Yuri Fabirovsky, Vladislav Herasimenko, Mikolai Incognito, Anastasiia La, Sergiy Shkodenko, Viktor Shytiuk, Ivan Tyshchenko, Zoriana Zaiats, Mykola Zamkovoi
* Uyghur: Abduqadir Abliz, Azat
* Vietnamese: Amelia Dao, Duc Huynh, Hồng Quân Nguyễn, Luan Nguyen, Vu Pham, stdpi
* Welsh: Philip Crisp, Adam Hughes
* Welsh: Philip Lindsay-Crisp, Adam Hughes

Wyświetl plik

@ -19,8 +19,8 @@
<a href="https://pypi.python.org/pypi/wagtail/">
<img src="https://img.shields.io/pypi/dm/wagtail?logo=Downloads" alt="Monthly downloads" />
</a>
<a href="https://twitter.com/WagtailCMS">
<img src="https://img.shields.io/twitter/follow/WagtailCMS?style=social&logo=twitter" alt="follow on Twitter">
<a href="https://fosstodon.org/@wagtail">
<img src="https://img.shields.io/mastodon/follow/109308882653647818?domain=https%3A%2F%2Ffosstodon.org&style=social" alt="Follow @wagtail@fosstodon.org">
</a>
</p>
@ -28,13 +28,6 @@ Wagtail is an open source content management system built on Django, with a stro
![Wagtail screenshot](https://cdn.jsdelivr.net/gh/wagtail/wagtail@main/.github/wagtail-screenshot-with-browser.png)
### Join the Community at Wagtail Space! 🚀
Wagtail Space is coming in June 2024! Don't miss your chance to meet other Wagtailers in person. The Call for Participation and registration for both Wagtail Space 2024 events is open. We'd love to have you give a talk, contribute to a sprint, or join us as an attendee in June.
* [Wagtail Space NL](https://nl.wagtail.space/), Arnhem, The Netherlands. 2024-06-12 - 2024-06-14
* [Wagtail Space US](https://us.wagtail.space/), Philadelphia, PA. 2024-06-20 to 2024-06-22
### 🔥 Features
- A fast, attractive interface for authors
@ -77,7 +70,7 @@ Wagtail is used by [NASA](https://www.nasa.gov/), [Google](https://www.google.co
### 📖 Documentation
[docs.wagtail.org](https://docs.wagtail.org/) is the full reference for Wagtail, and includes guides for developers, designers and editors, alongside release notes and our roadmap.
[docs.wagtail.org](https://docs.wagtail.org/) is the full reference for Wagtail, and includes guides for developers, designers and editors, alongside [release notes](https://docs.wagtail.org/en/stable/releases/) and our [roadmap](https://wagtail.org/roadmap/).
For those who are **new to Wagtail**, the [Zen of Wagtail](https://docs.wagtail.org/en/stable/getting_started/the_zen_of_wagtail.html) will help you understand what Wagtail is, and what Wagtail is _not_.
@ -91,11 +84,11 @@ _(If you are reading this on GitHub, the details here may not be indicative of t
Wagtail supports:
- Django 4.2.x and 5.0.x
- Python 3.8, 3.9, 3.10, 3.11 and 3.12
- PostgreSQL, MySQL and SQLite (with JSON1) as database backends
- Django 4.2.x and 5.1.x
- Python 3.9, 3.10, 3.11, 3.12 and 3.13
- PostgreSQL, MySQL, MariaDB and SQLite (with JSON1) as database backends
[Previous versions of Wagtail](https://docs.wagtail.org/en/stable/releases/upgrading.html#compatible-django-python-versions) additionally supported Python 2.7, 3.7 and earlier Django versions.
[Previous versions of Wagtail](https://docs.wagtail.org/en/stable/releases/upgrading.html#compatible-django-python-versions) additionally supported Python 2.7, 3.8 and earlier Django versions.
---

Wyświetl plik

@ -13,7 +13,7 @@ The following organisations and individuals supported the [Wagtail's First Hatch
- [Taywa](https://www.taywa.ch/)
- [Rock Kitchen Harris](https://www.rkh.co.uk/)
- [The Motley Fool](https://www.fool.com/)
- [R Strother Scott](https://twitter.com/rstrotherscott)
- [R Strother Scott](https://x.com/rstrotherscott)
- [Beyond Media](https://www.beyond.works/)
The features below were developed thanks to the sponsorship of these organsations:
@ -38,7 +38,7 @@ The features below were developed thanks to the sponsorship of these organsation
- Page aliases - [The Mozilla Foundation](https://foundation.mozilla.org/en/)
- Hooks for Snippet customisation - [The Mozilla Foundation](https://foundation.mozilla.org/en/)
- Hooks for Snippet customization - [The Mozilla Foundation](https://foundation.mozilla.org/en/)
- Utility for testing hooks - [The Mozilla Foundation](https://foundation.mozilla.org/en/)

Wyświetl plik

@ -1 +1 @@
@import 'settings/variables';
@forward 'settings/variables';

Wyświetl plik

@ -3,8 +3,8 @@ These are functions and mixins.
No CSS should be produced by these files.
*/
@import 'tools/functions.breakpoints';
@import 'tools/mixins.breakpoints';
@import 'tools/mixins.general';
@import 'tools/mixins.grid';
@import 'tools/mixins.guide-line';
@forward 'tools/functions.breakpoints';
@forward 'tools/mixins.breakpoints';
@forward 'tools/mixins.general';
@forward 'tools/mixins.grid';
@forward 'tools/mixins.guide-line';

Wyświetl plik

@ -1,8 +1,22 @@
@use '../tools' as *;
.w-a11y-result__row {
@include box;
padding: theme('spacing.4');
display: flex;
justify-content: space-between;
background-color: theme('colors.surface-page');
padding: theme('spacing.4');
border-radius: theme('borderRadius.DEFAULT');
color: theme('colors.text-context');
border: 1px solid theme('colors.border-furniture');
// Shows additional details within the CMS only.
.form-side--checks & {
display: block;
}
@include more-contrast() {
border-color: theme('colors.border-furniture-more-contrast');
}
}
.w-a11y-result__header {
@ -43,6 +57,16 @@
height: theme('spacing.[7.5]');
width: theme('spacing.[7.5]');
.form-side--checks & {
background-color: theme('colors.surface-button-outline-hover');
margin-top: theme('spacing.[2.5]');
margin-inline-end: 0;
padding: theme('spacing.1');
gap: theme('spacing.[1.5]');
width: auto;
max-width: 100%;
}
&:hover,
&:focus {
background: theme('colors.surface-header');
@ -59,6 +83,12 @@
}
}
.w-a11y-result__selector-text {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.w-a11y-result__icon {
@apply w-transition hover:w-transform;

Wyświetl plik

@ -1,3 +1,5 @@
@use '../tools' as *;
// user avatars
.avatar {
border-radius: 100%;
@ -29,9 +31,12 @@
}
&.large {
width: 60px;
height: 60px;
@include media-breakpoint-up(sm) {
width: 70px;
height: 70px;
width: 80px;
height: 80px;
}
}
@ -39,3 +44,33 @@
border-radius: 0;
}
}
.avatar--edit {
overflow: visible;
flex-shrink: 0;
img {
border-radius: 50%;
z-index: auto;
}
}
.avatar__edit-link {
width: theme('spacing.5');
height: theme('spacing.5');
border-radius: 50%;
border: theme('spacing.px') solid theme('colors.border-furniture');
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 100%;
inset-inline-start: 50%;
transform: translate(calc(var(--w-direction-factor) * -50%), -50%);
background-color: theme('colors.surface-page');
.icon {
width: theme('spacing.[2.5]');
height: theme('spacing.[2.5]');
}
}

Wyświetl plik

@ -1,3 +1,5 @@
@use '../tools' as *;
.w-breadcrumbs:not(.editor-view .w-breadcrumbs) {
@apply sm:w-py-2.5;

Wyświetl plik

@ -1,3 +1,5 @@
@use '../tools' as *;
.bulk-actions-filter-checkbox {
.table-headers & {
> div {
@ -63,7 +65,10 @@
}
.num-objects-in-listing {
color: theme('colors.text-link-default');
// This is inside the footer, which has a dark indigo background in light
// mode, so we want to use the absolute value of dark mode's
// text-link-default instead of its dynamic value.
color: theme('colors.secondary.100');
background-color: transparent;
border: 0;
font-family: theme('fontFamily.sans');

Wyświetl plik

@ -3,6 +3,8 @@
// Core button styles
@use 'sass:color';
@use '../tools' as *;
@use '../settings' as *;
.button {
border-radius: theme('borderRadius.sm');
@ -325,7 +327,8 @@
align-items: center;
justify-content: center;
gap: theme('spacing.1');
height: theme('spacing.7');
height: theme('spacing.8');
min-width: theme('spacing.8');
appearance: none;
background-color: initial;
border: 1px solid transparent;
@ -335,6 +338,8 @@
font-weight: theme('fontWeight.medium');
cursor: pointer;
@include more-contrast-interactive();
.icon {
width: theme('spacing.4');
height: theme('spacing.4');

Wyświetl plik

@ -1,4 +1,5 @@
@use 'sass:math';
@use '../tools' as *;
$preview-size: 2.625rem; // 42px
@ -22,6 +23,8 @@ $preview-size: 2.625rem; // 42px
border-color: transparent;
padding: theme('spacing.[1.5]');
@include more-contrast-interactive();
.icon {
@include svg-icon(theme('spacing.4'), initial);
color: inherit;
@ -81,11 +84,6 @@ $preview-size: 2.625rem; // 42px
width: auto;
}
.chooser .w-dropdown__toggle--icon {
width: $preview-size;
height: $preview-size;
}
// Display these as inline block so that action icons such as comments can appear as close as possible
.w-field--admin_task_chooser,
.w-field--admin_page_chooser,

Wyświetl plik

@ -1,3 +1,5 @@
@use '../tools' as *;
.w-dialog {
--w-dialog-close-icon-color: theme('colors.icon-primary');

Wyświetl plik

@ -1,4 +1,7 @@
// stylelint-disable selector-attribute-name-disallowed-list
@use '../tools' as *;
@use '../settings' as *;
$separator: 1px solid theme('colors.white-15');
$radius: theme('borderRadius.sm');
@ -26,17 +29,7 @@ $radius: theme('borderRadius.sm');
width: 100%;
}
@supports not selector(:has(*)) {
// Use no corner radius and always-on borders if `:has` is not supported.
--primary-button-radius-top: 0;
--primary-button-radius-bottom: 0;
--toggle-button-radius-top: 0;
--toggle-button-radius-bottom: 0;
--first-item-border-top: #{$separator};
--last-item-border-top: #{$separator};
}
&:has([data-placement^='bottom']) {
&:has(:not([hidden]) > [data-placement^='bottom']) {
--primary-button-radius-top: #{$radius};
--primary-button-radius-bottom: 0;
--toggle-button-radius-top: #{$radius};
@ -46,7 +39,7 @@ $radius: theme('borderRadius.sm');
--first-item-border-top: #{$separator};
}
&:has([data-placement^='top']) {
&:has(:not([hidden]) > [data-placement^='top']) {
--primary-button-radius-top: 0;
--primary-button-radius-bottom: #{$radius};
--toggle-button-radius-top: 0;
@ -125,8 +118,3 @@ $radius: theme('borderRadius.sm');
border-bottom-color: theme('colors.warning.100');
}
}
// Reduces the visibility of secondary actions like "Unpublish" or "Delete".
.w-dropdown-button .action-secondary {
color: theme('colors.text-label-menus-default');
}

Wyświetl plik

@ -1,9 +1,9 @@
.w-dropdown__toggle {
@apply w-px-2 w-text-text-label w-bg-transparent;
@apply w-px-2 w-text-text-label w-bg-transparent w-border-2 w-border-transparent;
}
.w-dropdown__toggle--icon {
@apply w-w-8 w-h-8;
@apply w-w-8 w-h-8 more-contrast:w-p-0 more-contrast:w-border more-contrast:w-rounded-sm more-contrast:w-border-border-interactive-more-contrast hover:more-contrast:w-border-border-interactive-more-contrast-hover;
}
.w-dropdown__toggle-icon {

Wyświetl plik

@ -1,3 +1,5 @@
@use '../tools' as *;
.filterable {
display: grid;
grid-template-columns: 1fr minmax(theme('spacing.48'), theme('spacing.64'));
@ -34,6 +36,8 @@
color: theme('colors.text-link-default');
background-color: theme('backgroundColor.surface-header');
@include more-contrast-interactive();
.icon {
width: theme('fontSize.16');
height: theme('fontSize.16');

Wyświetl plik

@ -1,4 +1,6 @@
@use 'sass:math';
@use '../tools' as *;
@use '../settings' as *;
.footer {
@include transition(bottom 0.5s ease 1s);
@ -30,8 +32,9 @@
.footer__container {
border-radius: theme('borderRadius.sm') theme('borderRadius.sm') 0 0;
background: theme('colors.surface-menus');
color: theme('colors.text-label-menus-default');
color: theme('colors.text-button');
transition: transform 1s;
padding: theme('spacing.1');
@include media-breakpoint-down(xs) {
width: 100%;
@ -60,22 +63,18 @@
}
.footer__save-warning {
font-size: 0.95em;
font-size: theme('fontSize.14');
height: 100%;
display: flex;
flex-direction: row;
justify-content: center;
.icon {
font-size: 1.2em;
margin-inline-end: 0.5em;
}
p {
margin: -0.2em 0 0 0;
margin: 0;
}
@include media-breakpoint-up(sm) {
margin-inline-end: 50px;
margin-inline-end: theme('spacing[1.5]');
align-items: center;
}
}
@ -134,7 +133,13 @@
.actions .w-dropdown-button {
width: 100%;
.w-dropdown .button {
font-size: theme('fontSize.14');
font-weight: 500;
}
> .button {
font-size: theme('fontSize.16');
flex-grow: 1;
}
}

Wyświetl plik

@ -1,6 +1,7 @@
@use 'sass:color';
@use 'sass:map';
@use 'sass:math';
@use '../tools' as *;
.side-panel-open {
@apply w-overflow-y-hidden sm:w-overflow-y-auto;
@ -36,7 +37,8 @@
sm:w-max-w-[22.5rem]
md:w-max-w-[35.937rem]
lg:w-max-w-[31.25rem]
xl:w-max-w-[46.875rem];
xl:w-max-w-[46.875rem]
more-contrast:w-border-border-furniture-more-contrast;
z-index: calc(theme('zIndex.header') - 10);
width: var(--side-panel-width, 100%);
@ -84,13 +86,6 @@
&:focus-within:has(:focus-visible) {
@include focus-outline;
}
@supports not selector(:focus-visible) {
&:focus-within {
/* Fallback for browsers without :focus-visible support */
@include focus-outline;
}
}
}
&__resize-grip-icon {

Wyświetl plik

@ -1,3 +1,6 @@
@use '../tools' as *;
@use '../settings' as *;
.wrapper {
@include clearfix();
@apply w-transition-sidebar;
@ -14,27 +17,30 @@
}
/**
* Increase the scroll offset to account for pages with a sticky header.
* Increase the scroll offset to account for pages with sticky areas - header or footer.
* We apply this to all pages for simplicity.
*/
@mixin slim-header-scroll-offset() {
@mixin sticky-areas-scroll-offset() {
$gap: theme('spacing.4');
// For mobile viewports, expect a sticky header over two rows.
scroll-padding-top: calc(theme('spacing.slim-header') * 2 + $gap);
@include media-breakpoint-up(sm) {
scroll-padding-top: calc(theme('spacing.slim-header') + $gap);
// Increase the scroll offset to account for pages with sticky bottom button
scroll-padding-bottom: 100px;
}
}
.content-wrapper {
@include slim-header-scroll-offset();
scroll-behavior: smooth;
width: 100%;
height: 100%; // this has no effect on desktop, but on mobile it helps aesthetics of menu popout action
float: inline-start;
position: relative;
border-bottom: 1px solid theme('colors.border-furniture');
@include sticky-areas-scroll-offset();
}
.content {

Wyświetl plik

@ -1,5 +1,7 @@
@use 'sass:math';
@use 'sass:color';
@use '../tools' as *;
@use '../settings' as *;
.w-header {
@apply w-text-text-label;
@ -27,10 +29,6 @@
max-width: 1em;
max-height: 1em;
}
&.avatar {
margin-inline-start: calc(0 - theme('spacing.2'));
}
}
.w-header__subtitle {
@ -38,11 +36,6 @@
font-weight: theme('fontWeight.normal');
}
.w-header__description {
font-size: theme('fontSize.18');
font-weight: theme('fontWeight.normal');
}
// Give padding to the rows inside of headers so that nested breadcrumbs aren't padded by their parent header el.
// Use w-header--with-padding for headers that don't contain .row elements.
&.w-header--with-padding,
@ -104,10 +97,6 @@
margin-inline-end: 2em;
}
.avatar.small {
margin-inline-start: 0;
}
a {
font-weight: theme('fontWeight.bold');
}
@ -126,12 +115,6 @@
padding-inline-start: 0;
}
.w-header__glyph {
&.avatar {
margin-inline-start: calc(0 - theme('spacing.9'));
}
}
.left {
float: inline-start;
margin-inline-end: 0;
@ -170,6 +153,10 @@
}
.w-slim-header {
@include more-contrast() {
border-color: theme('colors.border-furniture-more-contrast');
}
&__search-form {
@apply w-mx-2 w-flex w-items-center w-gap-2;
}

Wyświetl plik

@ -1,5 +1,6 @@
@use 'sass:color';
@use 'sass:map';
@use '../tools' as *;
// Help text formatters
.help-block {
padding: 1em;

Wyświetl plik

@ -1,4 +1,6 @@
@use 'sass:string';
@use '../tools' as *;
@use '../settings' as *;
// Set SVG icons to use the current text color in the location they appear as
// their default fill color. Can be overridden for a specific icon by either

Wyświetl plik

@ -1,3 +1,17 @@
.indicator {
margin-inline-end: 0;
opacity: theme('opacity.70');
.icon {
padding: 2px;
vertical-align: middle; // reset vertical-align set by icon.initial
}
&--is-dimmed {
opacity: theme('opacity.50');
}
}
.privacy-indicator {
&.public {
.label-private {
@ -11,31 +25,3 @@
}
}
}
.indicator {
font-size: 1em;
margin-inline-end: 0;
opacity: theme('opacity.70');
.icon {
border: 1px solid transparent;
border-radius: 50%;
font-size: 1.25em;
padding: 2px;
vertical-align: middle; // reset vertical-align set by icon.initial
@media (forced-colors: active) {
background-color: ButtonText;
}
}
&.indicator--is-inverse {
.icon {
border-color: theme(
'colors.surface-page'
); // ensure border is available for high contrast mode
background-color: theme('colors.text-context');
color: theme('colors.surface-page');
}
}
}

Wyświetl plik

@ -1,3 +1,5 @@
@use '../tools' as *;
/* stylelint-disable selector-max-combinators */
// General listings, like for pages, images or snippets
ul.listing {
@ -27,6 +29,7 @@ ul.listing {
td,
th {
text-align: start;
padding: calc(1em * var(--w-density-factor)) 0.3em;
@include media-breakpoint-up(sm) {
@ -49,6 +52,7 @@ ul.listing {
td {
vertical-align: middle;
overflow-wrap: anywhere;
}
td.title {
@ -62,7 +66,6 @@ ul.listing {
th {
font-size: 0.9em;
text-align: start;
font-weight: normal;
white-space: nowrap;
}
@ -87,8 +90,8 @@ ul.listing {
}
&:has(
td:first-child input[type='checkbox'],
th:first-child input[type='checkbox']
td:first-child input[type='checkbox']:only-child,
th:first-child input[type='checkbox']:only-child
) {
td:first-child,
th:first-child {
@ -97,6 +100,7 @@ ul.listing {
width: theme('spacing.10');
text-align: center;
// stylelint-disable-next-line selector-max-specificity
input[type='checkbox'] {
margin-inline-end: 0;
}
@ -364,6 +368,79 @@ ul.listing {
@include transition(border-color 0.2s ease);
border: 3px solid theme('colors.surface-page');
}
&--dashboard {
margin-bottom: 0;
tbody {
border-bottom: 0;
}
td:first-child {
padding-inline-start: theme('spacing.6');
}
td:last-child {
padding-inline-end: theme('spacing.6');
}
.title a {
font-weight: theme('fontWeight.medium');
}
.w-status--label {
float: inline-end;
font-size: inherit;
}
.indicator .icon {
padding: 0;
}
.privacy-indicator {
margin-inline-end: theme('spacing.2');
// Adjust icon size to closely match the appearance of the adjacent 'locked' icon
.icon-no-view {
width: 1.1em;
height: 1.1em;
}
}
.tasks {
text-wrap: nowrap;
}
.actions li {
float: inline-end;
}
@include media-breakpoint-down(md) {
display: grid;
tr {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: theme('spacing.2');
padding: theme('spacing.5');
}
td,
td:first-child,
td:last-child {
padding: 0;
}
.title {
width: 100%;
}
.actions-container {
margin-inline-start: auto;
}
}
}
}
.image-choice {
@ -574,8 +651,8 @@ table.listing {
}
&:has(
td:first-child input[type='checkbox'],
th:first-child input[type='checkbox']
td:first-child input[type='checkbox']:only-child,
th:first-child input[type='checkbox']:only-child
) {
// Bulk actions, match the width of the header spacing up until
// the page title (final breadcrumb item):
@ -596,8 +673,8 @@ table.listing {
// custom ordering is active, as the padding to match the breadcrumbs is
// already handled by the first column.
&:has(
td:first-child input[type='checkbox'],
th:first-child input[type='checkbox'],
td:first-child input[type='checkbox']:only-child,
th:first-child input[type='checkbox']:only-child,
.ord
) {
th:nth-child(2),
@ -610,17 +687,19 @@ table.listing {
// - no nice padding is applied,
// - we're not in a report listing,
// - we're not in the editor view,
// - we're not in the dashboard view,
// and:
// - no bulk actions are present,
// - we're not in the "custom ordering" mode,
// then apply the same 80px padding via the first column's left padding.
&:not(.nice-padding &, .report &, .editor-view &):not(
&:not(.nice-padding &, .report &, .editor-view &, .w-dashboard &):not(
:has(
td:first-child input[type='checkbox'],
th:first-child input[type='checkbox'],
td:first-child input[type='checkbox']:only-child,
th:first-child input[type='checkbox']:only-child,
.ord
)
) {
// stylelint-disable-next-line selector-max-specificity
th:first-child,
td:first-child {
padding-inline-start: theme('spacing.20');

Wyświetl plik

@ -1,4 +1,5 @@
@use 'sass:map';
@use '../settings' as *;
// Loading mask: overlays a certain area with a loading spinner and a faded out cover to prevent interaction
.loading-mask {
&.loading {

Wyświetl plik

@ -1,3 +1,5 @@
@use '../tools' as *;
// Messages are specific to Django's 'Messaging' system which adds messages into the session,
// for display on the next page visited. These appear as an animated banner at the top of the page.
// For inline help text, see typography.scss
@ -58,6 +60,10 @@
.warning {
background-color: theme('colors.warning.100');
color: theme('colors.grey.600');
@include more-contrast() {
background-color: theme('colors.warning.75');
}
}
.info {

Wyświetl plik

@ -1,3 +1,5 @@
@use '../tools' as *;
$zindex-modal-background: 500;
.fade {

Wyświetl plik

@ -1,3 +1,6 @@
@use '../tools' as *;
@use '../settings' as *;
$header-icon-size: theme('spacing.4');
$header-button-size: theme('spacing.6');
@ -71,6 +74,8 @@ $header-button-size: theme('spacing.6');
width: $header-button-size;
height: $header-button-size;
@include more-contrast-interactive();
&:focus-visible,
&:hover {
color: theme('colors.icon-primary-hover');
@ -160,3 +165,26 @@ $header-button-size: theme('spacing.6');
.w-panel__wrapper {
@include max-form-width();
}
.w-panel--dashboard {
background-color: theme('colors.surface-dashboard-panel');
border: 1px solid theme('colors.border-furniture');
border-radius: 5px;
margin-bottom: calc(
theme('spacing.4') + theme('spacing.4') * var(--w-density-factor)
);
.w-panel__header {
padding: theme('spacing.5');
margin-inline-start: 0;
@include media-breakpoint-up(sm) {
margin-inline-start: calc(-1 * theme('spacing.5'));
}
}
.w-panel__heading {
margin-inline-start: theme('spacing.2');
white-space: wrap;
}
}

Wyświetl plik

@ -1,5 +1,8 @@
.preview-panel {
@use '../tools' as *;
.w-preview {
--w-preview-background-color: var(--w-color-white);
--w-preview-color-scheme: normal;
--preview-width-ratio: min(
1,
var(--preview-panel-width, 450) / var(--preview-device-width, 375)
@ -37,6 +40,16 @@
&:empty {
// Ensure that sites without a background show with a fallback, only when iframe has loaded
background-color: var(--w-preview-background-color);
// Sites that do not have a background but have color-scheme will have the
// colors (background, text, etc.) automatically styled by the browser.
// If the color-scheme matches Wagtail's current color-scheme, the browser
// will give the iframe a transparent background. If we only set the
// white background-color above, the white background will be used
// while the rest of the content follows the color-scheme of the site,
// which might result in white text on a white background.
// Since we cannot know the actual value of the content's color-scheme,
// we set the color-scheme to normal to ensure the iframe stays opaque.
color-scheme: var(--w-preview-color-scheme);
}
[dir='rtl'] & {
@ -59,6 +72,11 @@
gap: 0.75rem;
padding-bottom: 1rem;
margin-bottom: 1rem;
padding-inline: 1rem;
@include more-contrast() {
border-color: theme('colors.border-furniture-more-contrast');
}
}
&__size-button {
@ -73,7 +91,12 @@
place-items: center;
cursor: pointer;
&:focus-within {
&--selected,
&--selected:hover {
@apply w-bg-surface-menus w-text-text-button w-transform-none w-border w-border-transparent;
}
&:focus-within:has(:focus-visible) {
@include focus-outline;
}
@ -89,25 +112,25 @@
@include svg-icon(0.9rem);
}
}
input[type='radio'] {
position: absolute;
width: 0;
height: 0;
opacity: 0;
}
}
&__refresh-button.button--icon {
display: flex;
align-items: center;
gap: 0.5rem;
justify-content: center;
position: absolute;
top: 1.25rem;
top: 1rem;
width: 2rem;
height: 2rem;
padding: 0;
inset-inline-end: 1.5rem;
.icon {
@include svg-icon(0.9rem);
// Use element and class selectors to beat .button-longrunning specificity
svg.icon,
svg.icon-spinner {
margin-inline-end: 0;
width: 1rem;
height: 1rem;
}
}
@ -117,12 +140,6 @@
inset-inline-end: 1.5rem;
}
&--mobile &__size-button--mobile,
&--tablet &__size-button--tablet,
&--desktop &__size-button--desktop {
@apply w-bg-surface-menus w-text-text-button w-transform-none w-border w-border-transparent;
}
&__controls {
@apply w-border-t w-border-transparent w-duration-500 w-ease-in-out;
transition-property: border-color, margin-top, padding-top;
@ -131,7 +148,7 @@
// Show the border only if there's an error,
// but always show it if there are multiple preview modes
.preview-panel--has-errors &:not(&--multiple),
.w-preview--has-errors &:not(&--multiple),
&--multiple {
@apply w-border-border-furniture w-border-t;
padding-top: 1rem;
@ -184,4 +201,22 @@
&__mode-select {
@apply w-outline-offset-inside;
}
// A hidden element that is only rendered for functionality purposes,
// but is not visible to the user. Used by radio inputs for preview sizes and
// the iframe while it's loading. We nest the selector rather than suffixing
// the parent selector to beat the specificity of input[type="radio"] styles
.w-preview__proxy {
position: absolute;
width: 0;
height: 0;
opacity: 0;
// Remove mask-image from radio inputs to avoid loading the default icon,
// use extra specificity to beat the default styles
&:is(input[type='radio'])::before {
content: none;
mask-image: none;
}
}
}

Wyświetl plik

@ -1,3 +1,5 @@
@use '../tools' as *;
.progress {
border-radius: 1.2em;
background-color: theme('colors.surface-button-hover');

Wyświetl plik

@ -1,4 +1,5 @@
@use 'sass:color';
@use '../settings' as *;
.w-status {
border-radius: 2px;
@ -19,7 +20,6 @@
&.w-status--primary {
color: theme('colors.text-meta');
border: 1px solid theme('colors.text-meta');
background: theme('colors.surface-page');
}
@ -57,8 +57,10 @@ button.w-status:hover {
color: theme('colors.text-button-outline-hover');
}
// Special case for text-transform: uppercase.
.page-status-tag {
@apply w-inline-flex w-items-center w-justify-center w-whitespace-nowrap w-px-1 w-ml-3 w-text-11 w-rounded-sm w-bg-transparent w-text-text-meta w-border w-border-border-furniture w-no-underline w-font-semibold hover:w-border-surface-menus hover:w-text-text-label w-transition more-contrast:w-border more-contrast:w-border-border-interactive-more-contrast hover:more-contrast:w-border-border-interactive-more-contrast-hover;
// Special case for text-transform: uppercase.
// stylelint-disable-next-line property-disallowed-list
text-transform: uppercase;
}

Wyświetl plik

@ -1,69 +1,34 @@
.w-summary {
// set up responsive font size for icon and number as local custom property
--w-summary-item-font-size: clamp(
theme('fontSize.30') * 1.5,
6.5vw,
calc(theme('fontSize.30') * 3)
);
@use '../tools' as *;
.w-summary {
color: theme('colors.text-link-default');
margin-bottom: theme('spacing.8');
padding-top: theme('spacing.8');
margin-bottom: theme('spacing.3');
padding-top: theme('spacing.1');
.w-summary__list {
@include unlist();
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
width: 100%;
column-gap: theme('spacing.8');
}
/* Summary item */
li {
display: flex;
align-items: center;
flex: 1 1 auto;
flex-wrap: nowrap;
gap: theme('spacing.[2.5]');
margin-bottom: theme('spacing.6');
}
/* Summary icon */
.icon {
font-size: var(--w-summary-item-font-size);
height: 1em;
margin-inline-end: 0.15em;
width: 1em;
@include svg-icon(1.375rem);
color: theme('colors.icon-primary');
}
/* Summary label (a link, use parent colours ) */
a {
color: inherit;
text-align: start;
display: inline-flex;
flex-direction: column;
gap: theme('spacing.[1.5]');
@include media-breakpoint-up(sm) {
font-size: theme('fontSize.18');
}
/* Summary big number */
> span {
display: block;
font-size: calc(var(--w-summary-item-font-size) * 0.6);
font-weight: theme('fontWeight.bold');
line-height: 0.9em; // label underneath to come in tight against the number
}
}
}
// Media for Windows High Contrast Mode
@media (forced-colors: active) {
.w-summary {
.icon {
color: LinkText;
opacity: 1;
}
text-decoration: underline;
text-underline-offset: 3px;
}
}

Wyświetl plik

@ -1,4 +1,7 @@
@use 'sass:map';
@use '../tools' as *;
@use '../settings' as *;
// free tagging tags from taggit
.tag {
border-radius: 2px;
@ -37,16 +40,16 @@ a.tag:hover {
.tagfilter {
legend {
@include media-breakpoint-up(sm) {
@include column(2);
padding-inline-start: 0;
}
font-weight: 700;
color: theme('colors.text-context');
font-size: 1.1em;
display: block;
padding: 0 0 0.8em;
@include media-breakpoint-up(sm) {
@include column(2);
padding-inline-start: 0;
}
}
a {

Wyświetl plik

@ -1,6 +1,7 @@
@use 'sass:map';
@use 'sass:math';
@use 'sass:string';
@use '../tools' as *;
// =============================================================================
// Variables

Wyświetl plik

@ -1,3 +1,5 @@
@use '../tools' as *;
.workflow-timeline {
@apply w-label-3;
padding: 0;
@ -41,13 +43,14 @@
position: relative;
flex-shrink: 0;
background: theme('colors.surface-page');
@media (forced-colors: active) {
background: Canvas;
}
margin-inline-end: theme('spacing.[2.5]');
width: theme('spacing.5');
height: theme('spacing.5');
z-index: theme('zIndex.10');
@media (forced-colors: active) {
background: Canvas;
}
}
&__line {

Wyświetl plik

@ -1,3 +1,5 @@
@use '../tools' as *;
@include media-breakpoint-up(sm) {
.browsermessage {
margin: 0 0 0 -150px;

Wyświetl plik

@ -1,3 +1,5 @@
@use '../../settings' as *;
// file drop zones
.drop-zone {
border-radius: 5px;

Wyświetl plik

@ -1,4 +1,5 @@
@use 'sass:map';
@use '../../settings' as *;
.error-message {
border: 1px solid transparent; // ensure visible separation in Windows High Contrast mode

Wyświetl plik

@ -1,4 +1,5 @@
// Comments
@use '../../tools' as *;
$icon-size: theme('spacing.4');
$button-padding: theme('spacing.2');
@ -53,14 +54,6 @@ $button-padding: theme('spacing.2');
transform: translateY(0);
top: 0;
}
.w-field--date_field &,
.w-field--date_time_field &,
.w-field--time_field & {
position: relative;
transform: translateY(0);
top: 0;
}
}
.w-field__comment-button--add {

Wyświetl plik

@ -1,6 +1,9 @@
@use '../../tools' as *;
.w-field-row {
@include max-form-width();
gap: theme('spacing.5');
// Ensure there is enough room for a comment button within the gap.
gap: theme('spacing.7');
// For mobile viewports, we attempt to display all items in the row side by side even if not at the desired size.
display: flex;
flex-wrap: wrap;

Wyświetl plik

@ -1,4 +1,6 @@
@use 'sass:map';
@use '../../settings' as *;
@use './input-base' as *;
/**
* A container for rendering human-readable field values in forms in a way
@ -6,9 +8,7 @@
*/
.w-field__textoutput {
@include input-base();
@apply w-body-text-large;
background-color: theme('colors.surface-field-inactive');
width: 100%;
padding: theme('spacing.[1.5]') theme('spacing.5');
min-height: $text-input-height;
@ -16,6 +16,13 @@
overflow: hidden;
overflow-wrap: break-word;
@include input-base();
// stylelint-disable-next-line no-duplicate-selectors, scss/selector-no-redundant-nesting-selector
& {
background-color: theme('colors.surface-field-inactive');
}
&,
&:hover {
border-color: theme('colors.border-field-inactive');

Wyświetl plik

@ -1,4 +1,6 @@
@use 'sass:map';
@use '../../tools' as *;
@use '../../settings' as *;
/**
* The field component handles form fields layout and ancillary elements such as error messages and help text.

Wyświetl plik

@ -1,3 +1,6 @@
@use '../../tools' as *;
@use '../../settings' as *;
.w-form-width {
@include max-form-width();
}

Wyświetl plik

@ -1,3 +1,5 @@
@use '../../tools' as *;
/**
* Field styles reusable across **all** fields, including:
* Text input, textarea, checkbox, radio, select, etc.
@ -9,6 +11,8 @@
background-color: theme('colors.surface-field');
border: 1px solid theme('colors.border-field-default');
@include more-contrast-interactive();
&:hover {
border-color: theme('colors.border-field-hover');
}

Wyświetl plik

@ -1,3 +1,6 @@
@use '../../settings' as *;
@use './input-base' as *;
// All HTML5 input types, with irrelevant ones commented out.
// input[type="button"],
// input[type="checkbox"],
@ -22,11 +25,12 @@ input[type="time"],
input[type="url"],
input[type="week"],
textarea {
@include input-base();
@apply w-body-text-large;
width: 100%;
padding: theme('spacing.[1.5]') theme('spacing.5');
min-height: $text-input-height;
@include input-base();
}
// Multiline text fields have larger top-bottom padding.
@ -39,11 +43,15 @@ textarea {
resize: none;
}
// Make non-text field types with custom widgets have a smaller width.
.w-field--date_field,
.w-field--date_time_field,
.w-field--time_field {
// Make sure comment buttons are as close as possible.
display: inline-block;
// Make non-text field types with custom widgets have a smaller width.
input {
width: auto;
max-width: 100%;
}
}

Wyświetl plik

@ -1,3 +1,6 @@
@use '../../tools' as *;
@use '../../settings' as *;
$header-icon-size: theme('spacing.4');
$icon-center-offset: 2px;
$guide-line-bottom-margin: calc($form-field-spacing / 3);
@ -18,11 +21,11 @@ $guide-line-bottom-margin: calc($form-field-spacing / 3);
}
.w-panel__content {
@include guide-line-vertical();
// Center the vertical line.
margin-inline-start: calc(-1 * var(--nesting-indent));
padding-inline-start: var(--nesting-indent);
margin-bottom: $guide-line-bottom-margin;
@include guide-line-vertical();
@include media-breakpoint-up(sm) {
// Extra pixels for better alignment with center of icon.
@ -54,10 +57,11 @@ $guide-line-bottom-margin: calc($form-field-spacing / 3);
// Styles for nested panels excluding the top level.
.w-panel--nested .w-panel {
@include guide-line-nested();
margin-inline-start: var(--nesting-indent);
margin-bottom: 0;
@include guide-line-nested();
.w-panel__content {
margin-inline-start: calc(
-1 * (var(--nesting-indent) + $icon-center-offset - var(--header-gap) / 2)
@ -80,9 +84,10 @@ $guide-line-bottom-margin: calc($form-field-spacing / 3);
}
.w-panel__divider {
@include guide-line-horizontal();
// Slightly nicer text alignment.
margin-top: 1px;
@include guide-line-horizontal();
}
.w-panel__heading--label {

Wyświetl plik

@ -7,6 +7,9 @@
.w-field--checkbox_select_multiple_with_disabled_options,
.w-field--boolean_radio_select,
.w-field--radio_select {
// Make sure comment buttons are as close as possible.
display: inline-block;
ul {
list-style: none;
padding: 0;

Wyświetl plik

@ -1,4 +1,6 @@
@use 'sass:math';
@use '../../settings' as *;
@use './input-base' as *;
// 24px input widget size.
$size: 1.5rem;
@ -9,7 +11,6 @@ $radio-checkbox-label-gap: theme('spacing.[2.5]');
// Both input types are very similar in appearance and layout.
@mixin radio-checkbox-base() {
@include input-base();
display: inline-block;
position: relative;
height: $size;
@ -19,6 +20,8 @@ $radio-checkbox-label-gap: theme('spacing.[2.5]');
// Prevent the checkbox or radio button from shrinking when the label is long.
flex-shrink: 0;
@include input-base();
&::before {
content: '';
position: absolute;
@ -39,8 +42,11 @@ $radio-checkbox-label-gap: theme('spacing.[2.5]');
input[type='radio'] {
@include radio-checkbox-base();
display: inline-block;
border-radius: theme('borderRadius.full');
// stylelint-disable-next-line no-duplicate-selectors, scss/selector-no-redundant-nesting-selector
& {
border-radius: theme('borderRadius.full');
}
&:checked::before {
mask-image: url('#{$images-root}icons/radio-full.svg');
@ -49,9 +55,13 @@ input[type='radio'] {
input[type='checkbox'] {
@include radio-checkbox-base();
border-radius: theme('borderRadius.sm');
// Legacy alignment for checkboxes, particularly within listings.
vertical-align: bottom;
// stylelint-disable-next-line no-duplicate-selectors, scss/selector-no-redundant-nesting-selector
& {
border-radius: theme('borderRadius.sm');
// Legacy alignment for checkboxes, particularly within listings.
vertical-align: bottom;
}
&:checked::before {
mask-image: url('#{$images-root}icons/check.svg');

Wyświetl plik

@ -1,3 +1,5 @@
@use '../../tools' as *;
.w-required-mark {
color: theme('colors.text-error');
margin-inline-start: 0.25ch;

Wyświetl plik

@ -1,5 +1,7 @@
@use 'sass:map';
@use 'sass:math';
@use '../../settings' as *;
@use './input-base' as *;
$select-size: $text-input-height;
$chevron-size: 0.375rem;
@ -36,7 +38,6 @@ $chevron-offset: math.div($select-size - $chevron-size, 2);
}
select {
@include input-base();
@include select-arrow();
@apply w-body-text-large;
// Firefox workaround Set a large line height (but smaller than min height) so the fields text has enough top padding.
@ -47,6 +48,8 @@ select {
// Prevent the element from overflowing the container.
max-width: 100%;
@include input-base();
@media (forced-colors: active) {
appearance: auto;
}
@ -61,3 +64,8 @@ select[multiple] {
padding: 0 theme('spacing.5');
}
}
.w-field--select {
// Make sure comment buttons are as close as possible.
display: inline-block;
}

Wyświetl plik

@ -93,12 +93,6 @@ $switch-border-radius: math.div(($switch-height + $switch-border * 2), 2);
outline: theme('colors.focus') solid $switch-outline;
}
@supports not selector(:focus-visible) {
[type='checkbox']:focus + &__toggle {
outline: theme('colors.focus') solid $switch-outline;
}
}
[type='checkbox'] {
position: absolute;
opacity: 0;

Wyświetl plik

@ -1,3 +1,5 @@
@use './input-base' as *;
.tagit {
@include input-base();

Wyświetl plik

@ -33,22 +33,22 @@ BEM: https://getbem.com/
/* Legacy vendor styles. Do not add new styles here. */
@use 'generic/normalize';
@use 'vendor/jquery-ui-1.10.3.verdant';
@use 'vendor/jquery.tagit' as tagit;
@use 'vendor/jquery.Jcrop.min' as jcrop;
@use 'vendor/jquery.tagit' as jquery-tagit;
@use 'vendor/jquery.Jcrop.min' as jquery-jcrop;
/* SETTINGS
These are variables, maps, and fonts.
* No CSS should be produced by these files
*/
@import 'settings';
@use 'settings';
/* TOOLS
These are functions and mixins.
* No CSS should be produced by these files.
*/
@import 'tools';
@use 'tools';
/* GENERIC
This is for resets and other rules that affect large collections of bare elements.
@ -60,14 +60,9 @@ These are base styles for bare HTML elements.
* Changes to them should be very rare.
*/
// These inject Tailwind's base, component and utility styles and any styles registered by plugins of each layer.
// Unused styles created within tailwinds layers won't be compiled into the compiled stylesheet
// https://tailwindcss.com/docs/adding-custom-styles#using-css-and-layer
@tailwind base;
@tailwind components;
@import 'elements/elements';
@import 'elements/typography';
@import 'elements/forms';
@use 'elements/elements';
@use 'elements/typography';
@use 'elements/forms';
/* COMPONENTS
These are classes for components.
@ -76,81 +71,87 @@ These are classes for components.
which is the preferred pattern over housing them in the scss folder.
*/
@import '../src/components/Transition/Transition';
@import '../src/components/LoadingSpinner/LoadingSpinner';
@import '../src/components/PublicationStatus/PublicationStatus';
@import '../src/components/ComboBox/ComboBox';
@import '../src/components/PageExplorer/PageExplorer';
@import '../src/components/CommentApp/main';
@use '../src/components/Transition/Transition';
@use '../src/components/LoadingSpinner/LoadingSpinner';
@use '../src/components/PublicationStatus/PublicationStatus';
@use '../src/components/ComboBox/ComboBox';
@use '../src/components/ComboBoxPreview/ComboBoxPreview';
@use '../src/components/PageExplorer/PageExplorer';
@use '../src/components/CommentApp/main';
@import 'components/avatar';
@import 'components/icons';
@import 'components/forms/input-base';
@import 'components/forms/input-text';
@import 'components/forms/radio-checkbox';
@import 'components/forms/select';
@import 'components/forms/tagit';
@import 'components/forms/radio-checkbox-multiple';
@import 'components/forms/error-message';
@import 'components/forms/required-mark';
@import 'components/forms/help';
@import 'components/forms/drop-zone';
@import 'components/forms/daterange';
@import 'components/forms/file';
@import 'components/forms/publishing';
@import 'components/forms/switch';
@import 'components/forms/title';
@import 'components/forms/field';
@import 'components/forms/field-row';
@import 'components/forms/field-comment-control';
@import 'components/forms/field-textoutput';
@import 'components/forms/form-width';
@import 'components/forms/nested-panel';
@import 'components/tabs';
@import 'components/panel';
@import 'components/dialog';
@import 'components/dismissible';
@import 'components/drilldown';
@import 'components/dropdown';
@import 'components/dropdown-button';
@import 'components/help-block';
@import 'components/button';
@import 'components/keyboard-shortcuts';
@import 'components/modals';
@import 'components/chooser';
@import 'components/tag';
@import 'components/listing';
@import 'components/filters';
@import 'components/messages';
@import 'components/messages.capability';
@import 'components/messages.status';
@import 'components/header';
@import 'components/progressbar';
@import 'components/summary';
@import 'components/whats-new';
@import 'components/grid.legacy';
@import 'components/footer';
@import 'components/loading-mask';
@import 'components/human-readable-date';
@import 'components/link.legacy';
@import 'components/indicator';
@import 'components/status-tag';
@import 'components/skiplink';
@import 'components/workflow-tasks';
@import 'components/workflow-timeline';
@import 'components/bulk_actions';
@import 'components/preview-panel';
@import 'components/preview-error';
@import 'components/form-side';
@import 'components/a11y-result';
@import 'components/userbar';
@import 'components/breadcrumbs';
@import 'components/pill';
@import 'components/ping';
@import 'components/editing-sessions';
@use 'components/avatar';
@use 'components/icons';
@use 'components/forms/input-base';
@use 'components/forms/input-text';
@use 'components/forms/radio-checkbox';
@use 'components/forms/select';
@use 'components/forms/tagit';
@use 'components/forms/radio-checkbox-multiple';
@use 'components/forms/error-message';
@use 'components/forms/required-mark';
@use 'components/forms/help';
@use 'components/forms/drop-zone';
@use 'components/forms/daterange';
@use 'components/forms/file';
@use 'components/forms/publishing';
@use 'components/forms/switch';
@use 'components/forms/title';
@use 'components/forms/field';
@use 'components/forms/field-row';
@use 'components/forms/field-comment-control';
@use 'components/forms/field-textoutput';
@use 'components/forms/form-width';
@use 'components/forms/nested-panel';
@use 'components/tabs';
@use 'components/panel';
@use 'components/dialog';
@use 'components/dismissible';
@use 'components/drilldown';
@use 'components/dropdown';
@use 'components/dropdown-button';
@use 'components/help-block';
@use 'components/button';
@use 'components/keyboard-shortcuts';
@use 'components/modals';
@use 'components/chooser';
@use 'components/tag';
@use 'components/listing';
@use 'components/filters';
@use 'components/messages';
@use 'components/messages.capability' as messages-capability;
@use 'components/messages.status' as messages-status;
@use 'components/header';
@use 'components/progressbar';
@use 'components/summary';
@use 'components/whats-new';
@use 'components/grid.legacy';
@use 'components/footer';
@use 'components/loading-mask';
@use 'components/human-readable-date';
@use 'components/link.legacy';
@use 'components/indicator';
@use 'components/status-tag';
@use 'components/skiplink';
@use 'components/workflow-tasks';
@use 'components/workflow-timeline';
@use 'components/bulk_actions';
@use 'components/preview-panel';
@use 'components/preview-error';
@use 'components/form-side';
@use 'components/a11y-result';
@use 'components/userbar';
@use 'components/breadcrumbs';
@use 'components/pill';
@use 'components/ping';
@use 'components/editing-sessions';
@import '../src/components/Sidebar/Sidebar';
@import '../src/components/Minimap/Minimap';
@use '../src/components/Sidebar/Sidebar';
@use '../src/components/Sidebar/SidebarPanel';
@use '../src/components/Sidebar/menu/MenuItem';
@use '../src/components/Sidebar/menu/SubMenuItem';
@use '../src/components/Sidebar/modules/MainMenu';
@use '../src/components/Sidebar/modules/WagtailBranding';
@use '../src/components/Minimap/Minimap';
/* OVERRIDES
These are classes that provide overrides.
@ -158,30 +159,28 @@ These are classes that provide overrides.
*/
// VENDOR: overrides of vendor styles.
@import 'overrides/vendor.datetimepicker';
@import 'overrides/vendor.handsontable';
@import 'overrides/vendor.tagit';
@import 'overrides/vendor.tippy';
@use 'overrides/vendor.datetimepicker' as vendor-datetimepicker;
@use 'overrides/vendor.handsontable' as vendor-handsontable;
@use 'overrides/vendor.tagit' as vendor-tagit;
@use 'overrides/vendor.tippy' as vendor-tippy;
// UTILITIES: classes that do one simple thing.
@import 'overrides/utilities.focus';
@use 'overrides/utilities.focus' as utilities-focus;
// Legacy utilities
@import 'overrides/utilities.legacy';
@use 'overrides/utilities.legacy' as utilities-legacy;
// TAILWIND: This is at the bottom so it can take precedence over other css classes
@tailwind utilities;
@use 'overrides/utilities.tailwind' as utilities-tailwind;
/* Legacy layout-specific styles. Do not add new styles here. */
@import 'layouts/404';
@import 'layouts/compare-revisions';
@import 'layouts/home';
@import 'layouts/login';
@import 'layouts/account';
@import 'layouts/workflow-progress';
@import 'layouts/report';
@import 'layouts/add-multiple';
@import 'layouts/chooser-duplicate-upload';
@import 'layouts/focal-point-chooser';
@import 'layouts/redirects';
@use 'layouts/404' as layout-404;
@use 'layouts/compare-revisions';
@use 'layouts/login';
@use 'layouts/account';
@use 'layouts/workflow-progress';
@use 'layouts/report';
@use 'layouts/add-multiple';
@use 'layouts/chooser-duplicate-upload';
@use 'layouts/focal-point-chooser';
@use 'layouts/redirects';

Wyświetl plik

@ -1,3 +1,10 @@
// These inject Tailwind's base and component styles and any styles registered by plugins of each layer.
// Unused styles created within tailwinds layers won't be compiled into the compiled stylesheet
// https://tailwindcss.com/docs/adding-custom-styles#using-css-and-layer
@tailwind base;
@tailwind components;
*,
::before,
::after {

Wyświetl plik

@ -1,4 +1,5 @@
@use 'sass:map';
@use '../tools' as *;
// Legacy form reset styles. Avoid adding any new styles here.
form {
// Historically, Wagtail forms rendered all fields as list items.

Wyświetl plik

@ -1,3 +1,5 @@
@use '../tools' as *;
.page404__bg {
position: fixed;
top: 0;

Wyświetl plik

@ -1,3 +1,5 @@
@use '../tools' as *;
$color-addition-dark: var(--color-addition-dark);
$color-addition-light: var(--color-addition-light);
$color-deletion-dark: var(--color-deletion-dark);

Wyświetl plik

@ -1,3 +1,5 @@
@use '../tools' as *;
.focal-point-chooser {
position: relative;
margin-bottom: 20px;

Wyświetl plik

@ -1,10 +0,0 @@
.homepage {
.listing tbody {
border-bottom: 0;
}
.task .icon {
// pull out the icon so it aligns with no-icon text
margin-inline-start: -1.75em;
}
}

Wyświetl plik

@ -1,30 +1,19 @@
@mixin login-fullscreen-background() {
@at-root {
:root {
--w-login-fullscreen-background: radial-gradient(
100% 300.28% at 100% 0%,
theme('colors.primary.DEFAULT') 0%,
theme('colors.primary.DEFAULT') 32.94%,
theme('colors.primary.DEFAULT') 49.9%,
theme('colors.primary.DEFAULT') 50.2%,
theme('colors.secondary.DEFAULT') 100%
);
}
}
@use '../tools' as *;
// support older browsers that do not support radial gradient 'at' usage
background: theme('colors.surface-menus');
/* stylelint-disable-next-line declaration-block-no-duplicate-properties */
background: var(
--w-login-fullscreen-background,
theme('colors.primary.DEFAULT')
:root {
--w-login-fullscreen-background: radial-gradient(
100% 300.28% at 100% 0%,
theme('colors.primary.DEFAULT') 0%,
theme('colors.primary.DEFAULT') 32.94%,
theme('colors.primary.DEFAULT') 49.9%,
theme('colors.primary.DEFAULT') 50.2%,
theme('colors.secondary.DEFAULT') 100%
);
}
.login {
@include login-fullscreen-background;
color: theme('colors.text-label');
background: var(--w-login-fullscreen-background);
.wrapper {
align-items: center;

Wyświetl plik

@ -1,8 +1,11 @@
@use '../tools' as *;
.report {
@include nice-margin();
display: grid;
grid-column-gap: theme('spacing.12');
@include nice-margin();
&__results {
&--text {
margin: 0 theme('spacing.[1.5]') theme('spacing.[1.5]') 0;

Wyświetl plik

@ -1,16 +1,9 @@
@use '../settings' as *;
// stylelint-disable declaration-no-important
// Set global focus outline styles so they are consistent across the UI,
// without individual components having to explicitly define focus styles.
// Using !important because we want to enforce only one style is used across the UI.
// Remove :focus selectors once we stop supporting Safari 15.4.
*:focus {
outline: $focus-outline-width solid theme('colors.focus') !important;
}
*:focus:not(:focus-visible) {
outline: none !important;
}
*:focus-visible {
outline: $focus-outline-width solid theme('colors.focus') !important;
}

Wyświetl plik

@ -1,3 +1,6 @@
@use '../tools' as *;
@use '../settings' as *;
.nice-padding {
padding-inline-start: $mobile-nice-padding;
padding-inline-end: $mobile-nice-padding;

Wyświetl plik

@ -0,0 +1 @@
@tailwind utilities;

Wyświetl plik

@ -1,5 +1,6 @@
// stylelint-disable selector-max-combinators, max-nesting-depth
@use 'sass:map';
@use '../settings' as *;
.xdsoft_datetimepicker {
box-shadow: 0 5px 10px -5px theme('colors.black-35');

Wyświetl plik

@ -1,4 +1,5 @@
@use 'sass:map';
@use '../settings' as *;
// taggit tagging
.tagit {

Wyświetl plik

@ -1,5 +1,5 @@
// stylelint-disable selector-attribute-name-disallowed-list
@import '../../../node_modules/tippy.js/dist/tippy';
@use '../../../node_modules/tippy.js/dist/tippy';
.tippy-box {
// Special font size 12px for tooltips

Wyświetl plik

@ -1,5 +1,6 @@
@use 'sass:list';
@use 'sass:map';
@use '../settings' as *;
// Based upon the fine work and thoughts from Bootstrap v4.
// Copyright 2011-2018 The Bootstrap Authors
// Copyright 2011-2018 Twitter, Inc.

Wyświetl plik

@ -1,3 +1,5 @@
@use 'functions.breakpoints' as *;
// Based upon the fine work and thoughts from Bootstrap v4.
// Copyright 2011-2018 The Bootstrap Authors
// Copyright 2011-2018 Twitter, Inc.

Wyświetl plik

@ -4,6 +4,8 @@
// Please note that the mixins partial shouldn't include any classes. This is so
// it can be included in any file without accidentally producing output
@use '../settings' as *;
// Turns on font-smoothing when used. Use sparingly.
@mixin font-smoothing {
-webkit-font-smoothing: antialiased;
@ -93,6 +95,21 @@
}
}
/**
* Apply styles for enhanced contrast theming.
*/
@mixin more-contrast() {
.w-contrast-more & {
@content;
}
@media (prefers-contrast: more) {
.w-contrast-system & {
@content;
}
}
}
/**
* Apply styles for the light theme only.
*/
@ -107,3 +124,52 @@
}
}
}
/**
* Apply styles for the dark theme with increased contrast.
*/
@mixin dark-theme-more-contrast() {
.w-theme-dark.w-contrast-more & {
@content;
}
@media (prefers-color-scheme: dark) {
.w-theme-system.w-contrast-more & {
@content;
}
}
@media (prefers-contrast: more) {
.w-theme-dark.w-contrast-system & {
@content;
}
}
@media (prefers-color-scheme: dark) and (prefers-contrast: more) {
.w-theme-system.w-contrast-system & {
@content;
}
}
}
/**
* Increased contrast theme styles for interactive components
*/
@mixin more-contrast-interactive() {
@include more-contrast() {
border: 1px solid theme('colors.border-interactive-more-contrast');
&:hover {
border-color: theme('colors.border-interactive-more-contrast-hover');
}
&[disabled],
&[disabled]:hover {
border-style: dashed;
}
}
}
@mixin focus-outline {
outline: $focus-outline-width solid theme('colors.focus');
}

Wyświetl plik

@ -1,4 +1,7 @@
@use 'sass:math';
@use '../settings' as *;
@use '../tools/mixins.breakpoints' as *;
@use '../tools/mixins.general' as *;
// grid settings
$grid-columns: 12;

Wyświetl plik

@ -1,7 +1,9 @@
import { ADMIN_API } from '../config/wagtailConfig';
import { WAGTAIL_CONFIG } from '../config/wagtailConfig';
import { getPageChildren, getPage } from './admin';
import client from './client';
const { ADMIN_API } = WAGTAIL_CONFIG;
jest.mock('./client', () => {
const stubResult = {
__types: {

Wyświetl plik

@ -1,6 +1,8 @@
import client from './client';
import { ADMIN_API } from '../config/wagtailConfig';
import { WAGTAIL_CONFIG } from '../config/wagtailConfig';
const { ADMIN_API } = WAGTAIL_CONFIG;
export interface WagtailPageAPI {
id: number;

Wyświetl plik

@ -14,8 +14,11 @@ const checkStatus = (response) => {
const parseJSON = (response) => response.json();
// Response timeout cancelling the promise (not the request).
// See https://github.com/github/fetch/issues/175#issuecomment-216791333.
/**
* Response timeout cancelling the promise (not the request).
*
* @see https://github.com/github/fetch/issues/175#issuecomment-216791333.
*/
const timeout = (ms, promise) => {
const race = new Promise((resolve, reject) => {
const timeoutId = setTimeout(() => {
@ -38,7 +41,7 @@ const timeout = (ms, promise) => {
};
/**
* Wrapper around fetch with sane defaults for behaviour in the face of
* Wrapper around fetch with sane defaults for behavior in the face of
* errors.
*/
const request = (method, url) => {

Wyświetl plik

@ -1,13 +1,13 @@
/* global DocumentChooserModal */
import { Chooser, ChooserFactory } from '.';
export class DocumentChooser extends Chooser {
// eslint-disable-next-line no-undef
chooserModalClass = DocumentChooserModal;
}
window.DocumentChooser = DocumentChooser;
export class DocumentChooserFactory extends ChooserFactory {
widgetClass = DocumentChooser;
// eslint-disable-next-line no-undef
chooserModalClass = DocumentChooserModal;
}

Wyświetl plik

@ -1,7 +1,8 @@
/* global ImageChooserModal */
import { Chooser, ChooserFactory } from '.';
export class ImageChooser extends Chooser {
// eslint-disable-next-line no-undef
chooserModalClass = ImageChooserModal;
initHTMLElements(id) {
@ -11,12 +12,21 @@ export class ImageChooser extends Chooser {
);
}
/**
* Constructs the initial state of the chooser from the rendered (static) HTML.
* The state is either null (no image chosen) or an object containing the image details.
*
* @returns {Object|null} The initial state of the chooser. If an image is chosen,
* the state object contains the following properties:
* - id: {number} The ID of the chosen image.
* - edit_url: {string} The URL to edit the chosen image.
* - title: {string} The title of the chosen image.
* - preview: {Object} An object containing the preview details of the chosen image:
* - url: {string} The URL of the preview image.
* - width: {string} The width of the preview image.
* - height: {string} The height of the preview image.
*/
getStateFromHTML() {
/*
Construct initial state of the chooser from the rendered (static) HTML.
State is either null (= no image chosen) or a dict of id, edit_url, title
and preview (= a dict of url, width, height).
*/
const state = super.getStateFromHTML();
if (state) {
state.preview = {
@ -24,6 +34,9 @@ export class ImageChooser extends Chooser {
width: this.previewImage.getAttribute('width'),
height: this.previewImage.getAttribute('height'),
};
state.default_alt_text = this.previewImage.getAttribute(
'data-default-alt-text',
);
}
return state;
}
@ -32,11 +45,14 @@ export class ImageChooser extends Chooser {
super.renderState(newState);
this.previewImage.setAttribute('src', newState.preview.url);
this.previewImage.setAttribute('width', newState.preview.width);
this.previewImage.setAttribute(
'data-default-alt-text',
newState.default_alt_text,
);
}
}
export class ImageChooserFactory extends ChooserFactory {
widgetClass = ImageChooser;
// eslint-disable-next-line no-undef
chooserModalClass = ImageChooserModal;
}

Wyświetl plik

@ -1,7 +1,8 @@
/* global PageChooserModal */
import { Chooser, ChooserFactory } from '.';
export class PageChooser extends Chooser {
// eslint-disable-next-line no-undef
chooserModalClass = PageChooserModal;
titleStateKey = 'adminTitle';
@ -44,7 +45,6 @@ export class PageChooser extends Chooser {
export class PageChooserFactory extends ChooserFactory {
widgetClass = PageChooser;
// eslint-disable-next-line no-undef
chooserModalClass = PageChooserModal;
getModalOptions() {

Wyświetl plik

@ -1,17 +1,16 @@
import { ChooserModal } from '../../includes/chooserModal';
import { Chooser, ChooserFactory } from '.';
/* global wagtailConfig */
import { WAGTAIL_CONFIG } from '../../config/wagtailConfig';
class SnippetChooserModal extends ChooserModal {
getURLParams(opts) {
const params = super.getURLParams(opts);
if (wagtailConfig.ACTIVE_CONTENT_LOCALE) {
if (WAGTAIL_CONFIG.ACTIVE_CONTENT_LOCALE) {
// The user is editing a piece of translated content.
// Pass the locale along as a request parameter. If this
// snippet is also translatable, the results will be
// pre-filtered by this locale.
params.locale = wagtailConfig.ACTIVE_CONTENT_LOCALE;
params.locale = WAGTAIL_CONFIG.ACTIVE_CONTENT_LOCALE;
}
return params;
}

Wyświetl plik

@ -1,11 +1,13 @@
import EventEmitter from 'events';
import { ChooserModal } from '../../includes/chooserModal';
export class Chooser {
export class Chooser extends EventEmitter {
chooserModalClass = ChooserModal;
titleStateKey = 'title'; // key used in the 'state' dictionary to hold the human-readable title
editUrlStateKey = 'edit_url'; // key used in the 'state' dictionary to hold the URL of the edit page
constructor(id, opts = {}) {
super();
this.opts = opts;
this.initHTMLElements(id);
this.state = this.getStateFromHTML();
@ -83,6 +85,7 @@ export class Chooser {
setStateFromModalData(data) {
this.setState(data);
this.emit('chosen', data);
}
clear() {
@ -210,8 +213,10 @@ export class ChooserFactory {
this.modal.open(options, callback);
}
/**
* retrieve the widget object corresponding to the given HTML ID
*/
getById(id) {
/* retrieve the widget object corresponding to the given HTML ID */
return document.getElementById(`${id}-chooser`).widget;
}
}

Wyświetl plik

@ -1,24 +1,70 @@
@use '../../../scss/tools' as *;
// Ensure consistent spacing across the whole component.
// With the scrolling and show/hide of the field, correct spacing is critical.
$spacing: theme('spacing.[2.5]');
$spacing-sm: theme('spacing.5');
$spacing-sm: theme('spacing.4');
$width: clamp(300px, 75vw, 1000px);
.w-combobox {
width: min(400px, 80vw);
@include dark-theme() {
background-color: theme('colors.surface-tooltip');
}
.w-combobox-container {
background: theme('colors.surface-page');
color: theme('colors.text-context');
border-radius: theme('borderRadius.DEFAULT');
font-size: theme('fontSize.18');
box-shadow: theme('boxShadow.md');
outline: 10px solid transparent;
// Use a single column grid on smaller screens,
// and two columns on larger screens.
display: grid;
grid-template-columns: 1fr;
// Case 1: base case
// Use max-content width to minimize shifting due to content wrapping,
// constraining width to 75% of viewport for devices above 400px width.
width: max-content;
max-width: max(300px, 75vw);
@include media-breakpoint-up(md) {
grid-template-columns: min(400px, 80vw) 1fr;
}
@include media-breakpoint-up(lg) {
grid-template-columns: min(512px, 80vw) 1fr;
}
// Case 2: there's a previewable block, but the preview may or may not be active
// On smaller screens, the preview will be shown below. We don't want the
// combobox to change width when the preview is shown or hidden (e.g. due to
// a long description), so set a fixed width. It's OK that this will take up
// more than the necessary width for the combobox, as we know it's not going
// to be wider than 75% of the small screen anyway.
&:has(.w-combobox__option-preview) {
width: $width;
@include media-breakpoint-up(md) {
// On medium-up screens, the preview will be shown to the right. Revert
// the width back to max-content so it doesn't take up the whole `$width`
// when the preview is not active.
width: max-content;
}
}
// Case 3: the preview is currently active
&:has(.w-combobox-preview) {
@include media-breakpoint-up(md) {
// On larger screens, use the fixed `$width` so the width doesn't change
// for different blocks, which may have different description lengths.
width: $width;
}
}
@include dark-theme() {
background-color: theme('colors.surface-tooltip');
}
}
.w-combobox__field {
padding: $spacing;
padding-bottom: 0;
font-size: theme('fontSize.18');
@include media-breakpoint-up(sm) {
padding: $spacing-sm;
@ -43,12 +89,13 @@ $spacing-sm: theme('spacing.5');
display: grid;
grid-template-columns: 1fr 1fr;
grid-auto-flow: column;
gap: theme('spacing.[0.5]');
gap: theme('spacing.1');
padding: $spacing;
padding-top: 0;
@include media-breakpoint-up(sm) {
width: 400px;
width: 100%;
column-gap: theme('spacing.5');
padding: $spacing-sm;
padding-top: 0;
}
@ -70,21 +117,32 @@ $spacing-sm: theme('spacing.5');
}
}
.w-combobox__option {
.w-combobox__option-row {
display: grid;
grid-template-columns: theme('spacing.8') 1fr;
align-items: center;
padding: theme('spacing.2');
border: 1px solid transparent;
font-size: 0.875rem;
line-height: theme('lineHeight.tight');
border-radius: theme('borderRadius.sm');
grid-template-columns: 1fr theme('spacing.6');
}
&[aria-selected='true'] {
border-color: theme('colors.border-button-outline-default');
.w-combobox__option-preview {
@include show-focus-outline-inside();
color: theme('colors.icon-secondary');
background: none;
border: 1px solid transparent;
padding: 0;
width: 100%;
@include more-contrast-interactive();
.icon {
width: theme('spacing.3');
height: theme('spacing.3');
}
&:hover {
color: theme('colors.icon-secondary-hover');
}
&[aria-expanded='true'] {
color: theme('colors.text-link-default');
background: transparent;
cursor: pointer;
@media (forced-colors: active) {
background: Highlight;
@ -93,14 +151,37 @@ $spacing-sm: theme('spacing.5');
}
}
.w-combobox__option--col1 {
.w-combobox__option-row--col1 {
grid-column: 1 / span 1;
}
.w-combobox__option--col2 {
.w-combobox__option-row--col2 {
grid-column: 2 / span 1;
}
.w-combobox__option {
display: grid;
grid-template-columns: theme('spacing.8') 1fr;
align-items: center;
padding: theme('spacing.[2.5]');
border: 1px dotted theme('colors.border-button-small-outline-default');
font-size: 0.875rem;
line-height: theme('lineHeight.tight');
border-radius: theme('borderRadius.sm');
cursor: pointer;
&[aria-selected='true'] {
border-color: theme('colors.border-button-outline-default');
color: theme('colors.text-link-default');
background: transparent;
@media (forced-colors: active) {
background: Highlight;
color: HighlightText;
}
}
}
.w-combobox__option-icon {
color: theme('colors.icon-secondary');
height: theme('spacing.4');

Wyświetl plik

@ -40,12 +40,13 @@ describe('ComboBox', () => {
{
type: 'paragraph',
description: 'Paragraph',
icon: <span className="custom-icon">P</span>,
icon: <span className="my-icon">P</span>,
},
{
type: 'heading-one',
label: 'H1',
description: 'Heading 1',
icon: ['M 83.625 ', 'L 232.535156 '],
},
{
type: 'heading-two',
@ -70,6 +71,10 @@ describe('ComboBox', () => {
wrapper = shallow(<ComboBox {...testProps} items={items} />);
});
it('matches the snapshot', () => {
expect(wrapper).toMatchSnapshot();
});
it('shows items', () => {
const options = wrapper.find('.w-combobox__option-text');
expect(options).toHaveLength(
@ -82,8 +87,24 @@ describe('ComboBox', () => {
expect(wrapper.find(Icon).at(0).prop('name')).toBe('blockquote');
});
it('supports custom icons', () => {
expect(wrapper.find('.custom-icon').text()).toBe('P');
it('supports custom icons (as provided React component)', () => {
const paragraphOption = wrapper.findWhere(
(el) => el.key() === 'paragraph',
);
const icon = paragraphOption.find('.w-combobox__option-icon').render();
expect(icon.find('.my-icon')).toHaveLength(1);
expect(icon.text()).toBe('P');
});
it('supports custom icons (as provided path)', () => {
const paragraphOption = wrapper.findWhere(
(el) => el.key() === 'heading-one',
);
const icon = paragraphOption.find('.w-combobox__option-icon').render();
expect(icon.find('svg').hasClass('icon-custom')).toBe(true);
expect(icon.find('.icon-custom').html()).toContain('M 83.625');
});
it('supports label as icon', () => {
@ -92,8 +113,8 @@ describe('ComboBox', () => {
it('combines two categories into one, with two columns', () => {
expect(wrapper.find('.w-combobox__optgroup-label')).toHaveLength(1);
expect(wrapper.find('.w-combobox__option--col1')).toHaveLength(3);
expect(wrapper.find('.w-combobox__option--col2')).toHaveLength(2);
expect(wrapper.find('.w-combobox__option-row--col1')).toHaveLength(3);
expect(wrapper.find('.w-combobox__option-row--col2')).toHaveLength(2);
});
});
});

Wyświetl plik

@ -2,6 +2,7 @@ import React, { useEffect, useState } from 'react';
import { useCombobox, UseComboboxStateChange } from 'downshift';
import { gettext } from '../../utils/gettext';
import ComboBoxPreview from '../ComboBoxPreview/ComboBoxPreview';
import Icon from '../Icon/Icon';
import findMatches from './findMatches';
@ -9,6 +10,7 @@ import findMatches from './findMatches';
export const comboBoxTriggerLabel = gettext('Insert a block');
export const comboBoxLabel = gettext('Search options…');
export const comboBoxNoResults = gettext('No results');
const comboBoxPreviewLabel = gettext('Preview');
export interface ComboBoxCategory<ItemType> {
type: string;
@ -21,6 +23,8 @@ export interface ComboBoxItem {
label?: string | null;
description?: string | null;
icon?: string | JSX.Element | null;
blockDefId?: string;
isPreviewable?: boolean;
category?: string;
render?: (props: { option: ComboBoxItem }) => JSX.Element | string;
}
@ -64,6 +68,7 @@ export default function ComboBox<ComboBoxOption extends ComboBoxItem>({
(category) => category.items || [],
);
const [inputItems, setInputItems] = useState<ComboBoxOption[]>(flatItems);
const [previewedIndex, setPreviewedIndex] = useState<number>(-1);
// Re-create the categories so the two-column layout flows as expected.
const categories = items.reduce<ComboBoxCategory<ComboBoxOption>[]>(
(cats, cat, index) => {
@ -114,8 +119,10 @@ export default function ComboBox<ComboBoxOption extends ComboBoxItem>({
}
},
// For not re-setting and not removing focus from combobox when pressing `Alt+Tab`
// to switch windows.
/**
* For not re-setting and not removing focus from combobox when pressing `Alt+Tab`
* to switch windows.
*/
stateReducer: (state, actionAndChanges) => {
const { type, changes } = actionAndChanges;
switch (type) {
@ -132,6 +139,9 @@ export default function ComboBox<ComboBoxOption extends ComboBoxItem>({
},
onInputValueChange: (changes) => {
// Hide any preview when the user types or clears the search input.
setPreviewedIndex(-1);
const { inputValue: val } = changes;
if (!val) {
setInputItems(flatItems);
@ -168,86 +178,129 @@ export default function ComboBox<ComboBoxOption extends ComboBoxItem>({
}
}, [inputValue]);
const previewedBlock =
previewedIndex >= 0 ? inputItems[previewedIndex] : null;
return (
<div className="w-combobox">
{/* downshift does the label-field association itself. */}
{/* eslint-disable-next-line jsx-a11y/label-has-associated-control */}
<label {...getLabelProps()} className="w-sr-only">
{label}
</label>
<div className="w-combobox__field">
<input
{...getInputProps()}
type="text"
// Prevent the field from receiving focus if its not visible.
disabled={inlineCombobox}
placeholder={placeholder}
/>
</div>
{noResults ? (
<div className="w-combobox__status">{noResultsText}</div>
) : null}
<div {...getMenuProps()} className="w-combobox__menu">
{categories.map((category) => {
const categoryItems = (category.items || []).filter((item) =>
inputItems.find((i) => i.type === item.type),
);
const itemColumns = Math.ceil(categoryItems.length / 2);
<div className="w-combobox-container">
<div className="w-combobox">
{/* downshift does the label-field association itself. */}
{/* eslint-disable-next-line jsx-a11y/label-has-associated-control */}
<label {...getLabelProps()} className="w-sr-only">
{label}
</label>
<div className="w-combobox__field">
<input
{...getInputProps()}
type="text"
// Prevent the field from receiving focus if its not visible.
disabled={inlineCombobox}
placeholder={placeholder}
/>
</div>
{noResults ? (
<div className="w-combobox__status">{noResultsText}</div>
) : null}
<div {...getMenuProps()} className="w-combobox__menu">
{categories.map((category) => {
const categoryItems = (category.items || []).filter((item) =>
inputItems.find((i) => i.type === item.type),
);
const itemColumns = Math.ceil(categoryItems.length / 2);
if (categoryItems.length === 0) {
return null;
}
if (categoryItems.length === 0) {
return null;
}
return (
<div className="w-combobox__optgroup" key={category.type}>
{category.label ? (
<div className="w-combobox__optgroup-label">
{category.label}
</div>
) : null}
{categoryItems.map((item, index) => {
const itemLabel = getItemLabel(item.type, item);
const description = getItemDescription(item);
const itemIndex = inputItems.findIndex(
(i) => i.type === item.type,
);
const itemColumn = index + 1 <= itemColumns ? 1 : 2;
const hasIcon =
typeof item.icon !== 'undefined' && item.icon !== null;
let icon: JSX.Element | null | undefined = null;
if (hasIcon) {
icon =
typeof item.icon === 'string' ? (
<Icon name={item.icon} />
) : (
item.icon
);
}
return (
<div
key={item.type}
{...getItemProps({ item, index: itemIndex })}
className={`w-combobox__option w-combobox__option--col${itemColumn}`}
>
<div className="w-combobox__option-icon">
{icon}
{/* Support for rich text options using text as an icon (for example "B" for bold). */}
{itemLabel && !hasIcon ? <span>{itemLabel}</span> : null}
</div>
<div className="w-combobox__option-text">
{item.render
? item.render({ option: item })
: description}
</div>
return (
<div className="w-combobox__optgroup" key={category.type}>
{category.label ? (
<div className="w-combobox__optgroup-label">
{category.label}
</div>
);
})}
</div>
);
})}
) : null}
{categoryItems.map((item, index) => {
const itemLabel = getItemLabel(item.type, item);
const description = getItemDescription(item);
const itemIndex = inputItems.findIndex(
(i) => i.type === item.type,
);
const itemColumn = index + 1 <= itemColumns ? 1 : 2;
const hasIcon =
typeof item.icon !== 'undefined' && item.icon !== null;
let icon: JSX.Element | null | undefined = null;
if (hasIcon) {
if (Array.isArray(item.icon)) {
icon = (
<Icon name="custom" viewBox="0 0 1024 1024">
{item.icon.map((pathData: string) => (
<path key={pathData} d={pathData} />
))}
</Icon>
);
} else {
icon =
typeof item.icon === 'string' ? (
<Icon name={item.icon} />
) : (
item.icon
);
}
}
return (
<div
key={item.type}
className={`w-combobox__option-row w-combobox__option-row--col${itemColumn}`}
>
<div
{...getItemProps({ item, index: itemIndex })}
className="w-combobox__option"
>
<div className="w-combobox__option-icon">
{icon}
{/* Support for rich text options using text as an icon (for example "B" for bold). */}
{itemLabel && !hasIcon ? (
<span>{itemLabel}</span>
) : null}
</div>
<div className="w-combobox__option-text">
{item.render
? item.render({ option: item })
: description}
</div>
</div>
{item.isPreviewable ? (
<button
className="w-combobox__option-preview"
aria-label={comboBoxPreviewLabel}
aria-expanded={previewedIndex === itemIndex}
type="button"
onClick={() =>
setPreviewedIndex(
previewedIndex === itemIndex ? -1 : itemIndex,
)
}
>
<Icon name="view" />
</button>
) : null}
</div>
);
})}
</div>
);
})}
</div>
</div>
{previewedBlock?.isPreviewable ? (
<ComboBoxPreview
item={previewedBlock}
previewLabel={comboBoxPreviewLabel}
/>
) : null}
</div>
);
}

Wyświetl plik

@ -0,0 +1,215 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`ComboBox rendering matches the snapshot 1`] = `
<div
className="w-combobox-container"
>
<div
className="w-combobox"
>
<label
className="w-sr-only"
htmlFor="downshift-1-input"
id="downshift-1-label"
>
Search options…
</label>
<div
className="w-combobox__field"
>
<input
aria-activedescendant=""
aria-autocomplete="list"
aria-controls="downshift-1-menu"
aria-expanded={false}
aria-labelledby="downshift-1-label"
autoComplete="off"
disabled={false}
id="downshift-1-input"
onBlur={[Function]}
onChange={[Function]}
onClick={[Function]}
onKeyDown={[Function]}
placeholder="Search options…"
role="combobox"
type="text"
value=""
/>
</div>
<div
aria-labelledby="downshift-1-label"
className="w-combobox__menu"
id="downshift-1-menu"
onMouseLeave={[Function]}
role="listbox"
>
<div
className="w-combobox__optgroup"
key="blockTypes"
>
<div
className="w-combobox__optgroup-label"
>
Blocks
</div>
<div
className="w-combobox__option-row w-combobox__option-row--col1"
key="blockquote"
>
<div
aria-disabled={false}
aria-selected={false}
className="w-combobox__option"
id="downshift-1-item-0"
onClick={[Function]}
onMouseDown={[Function]}
onMouseMove={[Function]}
role="option"
>
<div
className="w-combobox__option-icon"
>
<Icon
name="blockquote"
/>
</div>
<div
className="w-combobox__option-text"
>
Blockquote
</div>
</div>
</div>
<div
className="w-combobox__option-row w-combobox__option-row--col1"
key="paragraph"
>
<div
aria-disabled={false}
aria-selected={false}
className="w-combobox__option"
id="downshift-1-item-1"
onClick={[Function]}
onMouseDown={[Function]}
onMouseMove={[Function]}
role="option"
>
<div
className="w-combobox__option-icon"
>
<span
className="my-icon"
>
P
</span>
</div>
<div
className="w-combobox__option-text"
>
Paragraph
</div>
</div>
</div>
<div
className="w-combobox__option-row w-combobox__option-row--col1"
key="heading-one"
>
<div
aria-disabled={false}
aria-selected={false}
className="w-combobox__option"
id="downshift-1-item-2"
onClick={[Function]}
onMouseDown={[Function]}
onMouseMove={[Function]}
role="option"
>
<div
className="w-combobox__option-icon"
>
<Icon
name="custom"
viewBox="0 0 1024 1024"
>
<path
d="M 83.625 "
key="M 83.625 "
/>
<path
d="L 232.535156 "
key="L 232.535156 "
/>
</Icon>
</div>
<div
className="w-combobox__option-text"
>
Heading 1
</div>
</div>
</div>
<div
className="w-combobox__option-row w-combobox__option-row--col2"
key="heading-two"
>
<div
aria-disabled={false}
aria-selected={false}
className="w-combobox__option"
id="downshift-1-item-3"
onClick={[Function]}
onMouseDown={[Function]}
onMouseMove={[Function]}
role="option"
>
<div
className="w-combobox__option-icon"
>
<span>
H2
</span>
</div>
<div
className="w-combobox__option-text"
>
<span
className="custom-text"
>
H2
</span>
</div>
</div>
</div>
<div
className="w-combobox__option-row w-combobox__option-row--col2"
key="link"
>
<div
aria-disabled={false}
aria-selected={false}
className="w-combobox__option"
id="downshift-1-item-4"
onClick={[Function]}
onMouseDown={[Function]}
onMouseMove={[Function]}
role="option"
>
<div
className="w-combobox__option-icon"
>
<span>
🔗
</span>
</div>
<div
className="w-combobox__option-text"
>
Link
</div>
</div>
</div>
</div>
</div>
</div>
</div>
`;

Wyświetl plik

@ -0,0 +1,59 @@
@use '../../../scss/tools' as *;
.w-combobox-preview {
padding: theme('spacing.5');
display: flex;
flex-direction: column;
gap: theme('spacing.5');
// Set a min-height to ensure it's big enough to be useful
min-height: 400px;
background-color: theme('colors.surface-header');
border-block-start: 1px solid theme('colors.border-furniture');
border-end-end-radius: inherit;
border-end-start-radius: inherit;
@include media-breakpoint-up(md) {
border-block-start: 0;
border-start-end-radius: inherit;
border-end-start-radius: 0;
border-inline-start: 1px solid theme('colors.border-furniture');
}
}
.w-combobox-preview__iframe {
// Take up remaining space
width: 100%;
height: 100%;
border: 1px solid theme('colors.border-furniture');
border-radius: theme('borderRadius.sm');
// Ensure iframe is always opaque
color-scheme: normal;
background-color: Canvas;
@include more-contrast() {
border-color: theme('colors.border-furniture-more-contrast');
}
}
.w-combobox-preview__details {
overflow: hidden;
display: flex;
flex-direction: column;
// Use 65:35 ratio between the iframe and the details, but allow the details
// to grow to a minimum of 100px in case the container is very small
// (i.e. when there are only a few blocks)
min-height: max(35%, 100px);
}
.w-combobox-preview__label {
@apply w-label-1;
}
.w-combobox-preview__description {
@apply w-help-text;
margin-top: theme('spacing.3');
margin-bottom: 0;
overflow: auto;
min-height: 0;
}

Wyświetl plik

@ -0,0 +1,39 @@
import React from 'react';
import { WAGTAIL_CONFIG } from '../../config/wagtailConfig';
interface ComboBoxItem {
label?: string | null;
description?: string | null;
// icon?: string | JSX.Element | null;
blockDefId?: string;
}
export interface ComboBoxPreviewProps {
item: ComboBoxItem;
previewLabel: string;
}
export default function ComboBoxPreview({
item: { label, description, blockDefId },
previewLabel,
}: ComboBoxPreviewProps) {
const previewURL = blockDefId
? new URL(WAGTAIL_CONFIG.ADMIN_URLS.BLOCK_PREVIEW, window.location.href)
: undefined;
previewURL?.searchParams.append('id', blockDefId || '');
return (
<div className="w-combobox-preview">
<iframe
className="w-combobox-preview__iframe"
title={previewLabel}
src={previewURL?.toString()}
/>
<div className="w-combobox-preview__details">
<div className="w-combobox-preview__label">{label}</div>
{description ? (
<p className="w-combobox-preview__description">{description}</p>
) : null}
</div>
</div>
);
}

Some files were not shown because too many files have changed in this diff Show More