Browse Source

Docs - Update spelling to US customize variants

Fixes #12476
Srishti-j18 4 months ago
parent
commit
fd9b1ca22b

+ 1 - 1
CHANGELOG.txt

@@ -14,7 +14,7 @@ Changelog
  * 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 page titles to better align with the documentation style guide (Srishti Jaiswal)
+ * 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)
  * Maintenance: Close open files when reading within utils/setup.py (Ataf Fazledin Ahamed)

+ 1 - 1
SPONSORS.md

@@ -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/)
 

+ 0 - 0
docs/advanced_topics/customisation/admin_templates.md → docs/advanced_topics/customization/admin_templates.md


+ 0 - 0
docs/advanced_topics/customisation/custom_page_listings.md → docs/advanced_topics/customization/custom_page_listings.md


+ 0 - 0
docs/advanced_topics/customisation/custom_user_models.md → docs/advanced_topics/customization/custom_user_models.md


+ 0 - 0
docs/advanced_topics/customisation/index.md → docs/advanced_topics/customization/index.md


+ 1 - 1
docs/advanced_topics/customisation/page_editing_interface.md → docs/advanced_topics/customization/page_editing_interface.md

@@ -1,6 +1,6 @@
 # Customizing the editing interface
 
-(customising_the_tabbed_interface)=
+(customizing_the_tabbed_interface)=
 
 ## Customizing the tabbed interface
 

+ 0 - 0
docs/advanced_topics/customisation/streamfield_blocks.md → docs/advanced_topics/customization/streamfield_blocks.md


+ 2 - 2
docs/advanced_topics/embeds.md

@@ -7,7 +7,7 @@ providers such as YouTube or Twitter. By default, Wagtail will fetch the embed
 code directly from the relevant provider's site using the oEmbed protocol.
 
 Wagtail has a built-in list of the most common providers and this list can be
-changed [with a setting](customising_embed_providers). Wagtail also supports
+changed [with a setting](customizing_embed_providers). Wagtail also supports
 fetching embed code using [Embedly](embedly) and [custom embed finders](custom_embed_finders).
 
 ## Embedding content on your site
@@ -112,7 +112,7 @@ following link:
 
 <https://github.com/wagtail/wagtail/blob/main/wagtail/embeds/oembed_providers.py>
 
-(customising_embed_providers)=
+(customizing_embed_providers)=
 
 #### Customizing the provider list
 

+ 2 - 2
docs/advanced_topics/images/image_file_formats.md

@@ -25,9 +25,9 @@ image formats and let the browser choose the one it prefers. For example:
 </picture>
 ```
 
-(customising_output_formats)=
+(customizing_output_formats)=
 
-### Customising output formats
+### Customizing output formats
 
 By default, all `avif`, `bmp` and `webp` images are converted to the `png` format
 when no image output format is given, and `heic` images are converted to `jpeg`.

+ 1 - 1
docs/advanced_topics/index.md

@@ -13,7 +13,7 @@ add_to_django_project
 performance
 i18n
 privacy
-customisation/index
+customization/index
 third_party_tutorials
 testing
 api/index

+ 1 - 1
docs/extending/custom_tasks.md

@@ -129,7 +129,7 @@ class UserApprovalTask(Task):
 
 (custom_tasks_behavior)=
 
-## Customising behavior
+## Customizing behavior
 
 Both `Task` and `TaskState` have a number of methods that can be overridden to implement custom behavior. Here are some of the most useful:
 

+ 1 - 1
docs/extending/forms.md

@@ -68,7 +68,7 @@ A view performs the following steps to render a model form through the panels me
 
 -   The top-level panel object for the model is retrieved. Usually, this is done by looking up the model's `edit_handler` property and falling back on an `ObjectList` consisting of children given by the model's `panels` property. However, it may come from elsewhere - for example, snippets can define their panels via the `SnippetViewSet` class.
 -   If the `PanelsGroup`s permissions do not allow a user to see this panel, then nothing more will be done.
-    -   This can be modified using the `permission` keyword argument, see examples of this usage in [](customising_the_tabbed_interface) and [](panels_permissions).
+    -   This can be modified using the `permission` keyword argument, see examples of this usage in [](customizing_the_tabbed_interface) and [](panels_permissions).
 -   The view calls `bind_to_model` on the top-level panel, passing the model class, and this returns a clone of the panel with a `model` property. As part of this process, the `on_model_bound` method is invoked on each child panel, to allow it to perform additional initialization that requires access to the model (for example, this is where `FieldPanel` retrieves the model field definition).
 -   The view then calls `get_form_class` on the top-level panel to retrieve a ModelForm subclass that can be used to edit the model. This proceeds as follows:
     -   Retrieve a base form class from the model's `base_form_class` property, falling back on `wagtail.admin.forms.WagtailAdminModelForm`

+ 1 - 1
docs/reference/contrib/settings.md

@@ -84,7 +84,7 @@ class SiteSpecificImportantPages(BaseSiteSetting):
     ]
 ```
 
-You can also customize the edit handlers [like you would do for `Page` model](customising_the_tabbed_interface) with a custom `edit_handler` attribute:
+You can also customize the edit handlers [like you would do for `Page` model](customizing_the_tabbed_interface) with a custom `edit_handler` attribute:
 
 ```python
 from wagtail.admin.panels import TabbedInterface, ObjectList

+ 1 - 1
docs/reference/contrib/sitemaps.md

@@ -80,7 +80,7 @@ a valid, crawlable hostname. If you change the site's hostname from
 If you change the site's port to `443`, the `https` scheme will be used.
 Find out more about [working with Sites](site_model_ref).
 
-## Customising
+## Customizing
 
 ### URLs
 

+ 1 - 1
docs/reference/panels.md

@@ -317,7 +317,7 @@ The `MultipleChooserPanel` definition on `BlogPage` would be:
 By adding extra parameters to your panel/field definitions, you can control much of how your fields will display in the Wagtail page editing interface. Wagtail's page editing interface takes much of its behavior from Django's admin, so you may find many options for customization covered there.
 (See [Django model field reference](inv:django#ref/models/fields)).
 
-(customising_panel_icons)=
+(customizing_panel_icons)=
 
 ### Icons
 

+ 2 - 2
docs/releases/1.0.rst

@@ -94,7 +94,7 @@ Admin
 * ``FieldPanel`` now accepts an optional ``widget`` parameter to override the field's default form widget
 * Page model fields without a ``FieldPanel`` are no longer displayed in the form
 * No longer need to specify the base model on ``InlinePanel`` definitions
-* Page classes can specify an edit_handler property to override the default Content / Promote / Settings tabbed interface. See :ref:`customising_the_tabbed_interface`.
+* Page classes can specify an edit_handler property to override the default Content / Promote / Settings tabbed interface. See :ref:`customizing_the_tabbed_interface`.
 
 
 **Other admin changes**
@@ -339,7 +339,7 @@ Previously, the forms for creating and editing images followed Django's default
 ``construct_wagtail_edit_bird`` hook has been renamed
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-Previously you could customise the Wagtail userbar using the ``construct_wagtail_edit_bird`` hook.
+Previously you could customize the Wagtail userbar using the ``construct_wagtail_edit_bird`` hook.
 The hook has been renamed to ``construct_wagtail_userbar``.
 
 The old hook is now deprecated; all existing ``construct_wagtail_edit_bird`` declarations should be updated to the new hook.

+ 1 - 1
docs/releases/1.3.rst

@@ -62,7 +62,7 @@ Minor features
 * Added ``.alt`` attribute to image renditions
 * The default ``src``, ``width``, ``height`` and ``alt`` attributes can now be overridden by attributes passed to the ``{% image %}`` tag
 * Added keyboard shortcuts for preview and save in the page editor
-* Added ``Page`` methods ``can_exist_under``, ``can_create_at``, ``can_move_to`` for customising page type business rules
+* Added ``Page`` methods ``can_exist_under``, ``can_create_at``, ``can_move_to`` for customizing page type business rules
 * ``wagtailadmin.utils.send_mail`` now passes extra keyword arguments to Django's ``send_mail`` function (Matthew Downey)
 * ``page_unpublish`` signal is now fired for each page that was unpublished by a call to ``PageQuerySet.unpublish()``
 * Add ``get_upload_to`` method to ``AbstractImage``, to allow overriding the default image upload path (Ben Emery)

+ 2 - 2
docs/releases/1.4.rst

@@ -67,7 +67,7 @@ Minor features
 ~~~~~~~~~~~~~~
 
 * The page search interface now searches all fields instead of just the title (Kait Crawford)
-* Snippets now support a custom ``edit_handler`` property; this can be used to implement a tabbed interface, for example. See :ref:`customising_the_tabbed_interface` (Mikalai Radchuk)
+* Snippets now support a custom ``edit_handler`` property; this can be used to implement a tabbed interface, for example. See :ref:`customizing_the_tabbed_interface` (Mikalai Radchuk)
 * Date/time pickers now respect the locale's 'first day of week' setting (Peter Quade)
 * Refactored the way forms are constructed for the page editor, to allow custom forms to be used
 * Notification message on publish now indicates whether the page is being published now or scheduled for publication in future (Chris Rogers)
@@ -76,7 +76,7 @@ Minor features
 * Added a hook :ref:`construct_explorer_page_queryset` for customizing the set of pages displayed in the page explorer
 * Page models now perform field validation, including testing slugs for uniqueness within a parent page, at the model level on saving
 * Page slugs are now auto-generated at the model level on page creation if one has not been specified explicitly
-* The ``Page`` model now has two new methods ``get_site()`` and ``get_url_parts()`` to aid with customising the page URL generation logic
+* The ``Page`` model now has two new methods ``get_site()`` and ``get_url_parts()`` to aid with customizing the page URL generation logic
 * Upgraded jQuery to 2.2.1 (Charlie Choiniere)
 * Multiple homepage summary items (``construct_homepage_summary_items`` hook) now better vertically spaced (Nicolas Kuttler)
 * Email notifications can now be sent in HTML format. See :ref:`email_notifications` (Mike Dingjan)

+ 1 - 1
docs/releases/1.5.rst

@@ -88,7 +88,7 @@ Minor features
 * Spinner was added to Save button on site settings (Liam Brenner)
 * Added success message after logout from Admin (Liam Brenner)
 * Added ``get_upload_to`` method to ``AbstractRendition`` which, when overridden, allows control over where image renditions are stored (Rob Moggach and Matt Westcott)
-* Added a mechanism to customize the add / edit user forms for custom user models - see :doc:`/advanced_topics/customisation/custom_user_models` (Nigel Fletton)
+* Added a mechanism to customize the add / edit user forms for custom user models - see :doc:`/advanced_topics/customization/custom_user_models` (Nigel Fletton)
 * Added internal provision for swapping in alternative rich text editors (Karl Hobley)
 
 Bug fixes

+ 1 - 1
docs/releases/1.8.rst

@@ -66,7 +66,7 @@ Other features
 * Added new StreamField block type ``BlockQuoteBlock`` (Scot Hacker)
 * Updated Cloudflare cache module to use the v4 API (Albert O'Connor)
 * Added ``exclude_from_explorer`` attribute to the ``ModelAdmin`` class to allow hiding instances of a page type from Wagtail's explorer views (Andy Babic)
-* Added ``above_login``, ``below_login``, ``fields`` and ``login_form`` customisation blocks to the login page template - see :doc:`/advanced_topics/customisation/admin_templates` (Tim Heap)
+* Added ``above_login``, ``below_login``, ``fields`` and ``login_form`` customization blocks to the login page template - see :doc:`/advanced_topics/customization/admin_templates` (Tim Heap)
 * ``ChoiceBlock`` now accepts a callable as the choices list (Mikalai Radchuk)
 * Redundant action buttons are now omitted from the root page in the explorer (Nick Smith)
 * Locked pages are now disabled from editing at the browser level (Edd Baldry)

+ 2 - 2
docs/releases/1.9.rst

@@ -50,12 +50,12 @@ Other features
 ~~~~~~~~~~~~~~
 
 * Changed text of "Draft" and "Live" buttons to "View draft" and "View live" (Dan Braghis)
-* Added ``get_api_representation`` method to streamfield blocks allowing the JSON representation in the API to be customised (Marco Fucci)
+* Added ``get_api_representation`` method to streamfield blocks allowing the JSON representation in the API to be customized (Marco Fucci)
 * Added :ref:`before_copy_page` and :ref:`after_copy_page` hooks (Matheus Bratfisch)
 * View live / draft links in the admin now consistently open in a new window (Marco Fucci)
 * ``ChoiceBlock`` now omits the blank option if the block is required and has a default value (Andreas Nüßlein)
 * The ``add_subpage`` view now maintains a ``next`` URL parameter to specify where to redirect to after completing page creation (Robert Rollins)
-* The ``wagtailforms`` module now allows to define custom form submission model, add custom data to CSV export and some other customisations. See :doc:`/reference/contrib/forms/customization` (Mikalai Radchuk)
+* The ``wagtailforms`` module now allows to define custom form submission model, add custom data to CSV export and some other customizations. See :doc:`/reference/contrib/forms/customization` (Mikalai Radchuk)
 * The Webpack configuration is now in a subfolder to declutter the project root, and uses environment-specific configurations for smaller bundles in production and easier debugging in development (Janneke Janssen, Thibaud Colas)
 * Added page titles to title text on action buttons in the explorer, for improved accessibility (Matt Westcott)
 

+ 2 - 2
docs/releases/2.12.rst

@@ -26,13 +26,13 @@ StreamField values now formally support being updated in-place from Python code,
 Admin colour themes
 ~~~~~~~~~~~~~~~~~~~
 
-Wagtail’s admin now uses CSS custom properties for its primary teal colour. Applying brand colours for the whole user interface only takes a few lines of CSS, and third-party extensions can reuse Wagtail’s CSS variables to support the same degree of customisation. Read on :ref:`custom_user_interface_colours`. This feature was developed by Joshua Marantz.
+Wagtail’s admin now uses CSS custom properties for its primary teal colour. Applying brand colours for the whole user interface only takes a few lines of CSS, and third-party extensions can reuse Wagtail’s CSS variables to support the same degree of customization. Read on :ref:`custom_user_interface_colours`. This feature was developed by Joshua Marantz.
 
 Other features
 ~~~~~~~~~~~~~~
 
 * Added support for Python 3.9
-* Added ``WAGTAILIMAGES_IMAGE_FORM_BASE`` and ``WAGTAILDOCS_DOCUMENT_FORM_BASE`` settings to customise the forms for images and documents (Dan Braghis)
+* Added ``WAGTAILIMAGES_IMAGE_FORM_BASE`` and ``WAGTAILDOCS_DOCUMENT_FORM_BASE`` settings to customize the forms for images and documents (Dan Braghis)
 * Switch pagination icons to use SVG instead of icon fonts (Scott Cranfill)
 * Added string representation to image Format class (Andreas Nüßlein)
 * Support returning None from ``register_page_action_menu_item`` and ``register_snippet_action_menu_item`` to skip registering an item (Vadim Karpenko)

+ 1 - 1
docs/releases/2.13.3.rst

@@ -18,5 +18,5 @@ Bug fixes
  * Prevent error when using rich text on views where commenting is unavailable (Jacob Topp-Mugglestone)
  * Include form media on account settings page (Matt Westcott)
  * Avoid error when rendering validation error messages on ListBlock children (Matt Westcott)
- * Prevent comments CSS from overriding admin UI color customisations (Matt Westcott)
+ * Prevent comments CSS from overriding admin UI color customizations (Matt Westcott)
  * Avoid validation error when editing rich text content preceding a comment (Jacob Topp-Mugglestone)

+ 4 - 4
docs/releases/2.13.rst

@@ -15,7 +15,7 @@ What's new
 StreamField performance and functionality updates
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-The StreamField editing interface has been rebuilt on a client-side rendering model, powered by the `telepath <https://wagtail.github.io/telepath/>`_ library. This provides better performance, increased customisability and UI enhancements including the ability to duplicate blocks. For further background, see the blog post `Telepath - the next evolution of StreamField <https://wagtail.org/blog/telepath/>`_.
+The StreamField editing interface has been rebuilt on a client-side rendering model, powered by the `telepath <https://wagtail.github.io/telepath/>`_ library. This provides better performance, increased customizability and UI enhancements including the ability to duplicate blocks. For further background, see the blog post `Telepath - the next evolution of StreamField <https://wagtail.org/blog/telepath/>`_.
 
 This feature was developed by Matt Westcott and Karl Hobley and sponsored by `YouGov <https://yougov.co.uk/>`_, inspired by earlier work on `react-streamfield <https://github.com/wagtail/wagtail-react-streamfield>`_ completed by Bertrand Bordage through the `Wagtail's First Hatch <https://www.kickstarter.com/projects/noripyt/wagtails-first-hatch>`_ crowdfunder.
 
@@ -116,10 +116,10 @@ The rules for determining whether a StreamField is required (i.e. at least one b
 New client-side implementation for custom StreamField blocks
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-For the majority of cases, the new StreamField implementation in this release will be a like-for-like upgrade, and no code changes will be necessary - this includes projects where custom block types have been defined by extending ``StructBlock``, ``ListBlock`` and ``StreamBlock``. However, certain complex customisations may need to be reimplemented to work with the new client-side rendering model:
+For the majority of cases, the new StreamField implementation in this release will be a like-for-like upgrade, and no code changes will be necessary - this includes projects where custom block types have been defined by extending ``StructBlock``, ``ListBlock`` and ``StreamBlock``. However, certain complex customizations may need to be reimplemented to work with the new client-side rendering model:
 
-* When customising the form template for a ``StructBlock`` using the ``form_template`` attribute, the HTML of each child block must be enclosed in an element with a ``data-contentpath`` attribute equal to the block's name. This attribute is used by the commenting framework to attach comments to the correct fields. See :ref:`custom_editing_interfaces_for_structblock`.
-* If a ``StructBlock`` subclass overrides the ``get_form_context`` method as part of customising the form template, and that method contains logic that causes the returned context to vary depending on the block value, this will no longer work as intended. This is because ``get_form_context`` is now invoked once with the block's default (blank) value in order to construct a template for the client-side rendering to use; previously it was called for each block in the stream. In the new implementation, any Python-side processing that needs to happen on a per-block-value basis can be performed in the block's ``get_form_state`` method; the data returned from that method will then be available in the client-side ``render`` method.
+* When customizing the form template for a ``StructBlock`` using the ``form_template`` attribute, the HTML of each child block must be enclosed in an element with a ``data-contentpath`` attribute equal to the block's name. This attribute is used by the commenting framework to attach comments to the correct fields. See :ref:`custom_editing_interfaces_for_structblock`.
+* If a ``StructBlock`` subclass overrides the ``get_form_context`` method as part of customizing the form template, and that method contains logic that causes the returned context to vary depending on the block value, this will no longer work as intended. This is because ``get_form_context`` is now invoked once with the block's default (blank) value in order to construct a template for the client-side rendering to use; previously it was called for each block in the stream. In the new implementation, any Python-side processing that needs to happen on a per-block-value basis can be performed in the block's ``get_form_state`` method; the data returned from that method will then be available in the client-side ``render`` method.
 * If ``FieldBlock`` is used to wrap a Django widget with non-standard client-side behaviour - such as requiring a JavaScript function to be called on initialisation, or combining multiple HTML elements such that it is not possible to read or write its data by accessing a single element's ``value`` property - then you will need to supply a JavaScript handler object to define how the widget is rendered and populated, and how to extract data from it.
 * Packages that replace the StreamField interface at a low level, such as ``wagtail-react-streamfield``, are likely to be incompatible (but the new StreamField implementation will generally offer equivalent functionality).
 

+ 2 - 2
docs/releases/2.14.rst

@@ -16,7 +16,7 @@ New features
 ~~~~~~~~~~~~
 
  * Added ``ancestor_of`` API filter. See :ref:`apiv2_filter_by_tree_position`. (Jaap Roes)
- * Added support for customising group management views. See :ref:`customizing_group_views`. (Jan Seifert)
+ * Added support for customizing group management views. See :ref:`customizing_group_views`. (Jan Seifert)
  * Added ``full_url`` property to image renditions (Shreyash Srivastava)
  * Added locale selector when choosing translatable snippets (Karl Hobley)
  * Added ``WAGTAIL_WORKFLOW_ENABLED`` setting for enabling / disabling moderation workflows globally (Matt Westcott)
@@ -46,7 +46,7 @@ Bug fixes
  * Prevent multiple submissions of "update" form when uploading images / documents (Mike Brown)
  * Ensure HTML title is populated on project template 404 page (Matt Westcott)
  * Respect cache_age parameters on embeds (Gordon Pendleton)
- * Page comparison view now reflects request-level customisations to edit handlers (Matt Westcott)
+ * Page comparison view now reflects request-level customizations to edit handlers (Matt Westcott)
  * Add ``block.super`` to remaining ``extra_js`` & ``extra_css`` blocks (Andrew Stone)
  * Ensure that ``editor`` and ``features`` arguments on RichTextField are preserved by ``clone()`` (Daniel Fairhead)
  * Rename 'spin' CSS animation to avoid clashes with other libraries (Kevin Gutiérrez)

+ 1 - 1
docs/releases/4.1.md

@@ -33,7 +33,7 @@ When navigating long page editing interfaces, it can be tedious to pinpoint a sp
 
 Scheduled publishing settings can now be found within the Status side panel of the page editing view. This change aims to improve clarity over who can set schedules, and when they take effect. This feature was developed by Sage Abdullah.
 
-### Customisable snippet admin views
+### Customizable snippet admin views
 
 The `register_snippet` function now accepts a `SnippetViewSet` class, allowing various aspects of the snippet's admin views to be customized. See [](wagtailsnippets_custom_admin_views). This feature was developed by Sage Abdullah.
 

+ 1 - 1
docs/releases/6.0.md

@@ -103,7 +103,7 @@ This release comes with a high number of accessibility improvements across the a
  * Show character counts on RichTextBlock with `max_length` (Elhussein Almasri)
  * Move locale selector in generic IndexView to a filter (Sage Abdullah)
  * Add ability to [customize a page's copy form](custom_page_copy_form) including an auto-incrementing slug example (Neeraj Yetheendran)
- * Add [`WAGTAILADMIN_LOGIN_URL` setting](wagtailadmin_login_url) to allow customising the login URL (Neeraj Yetheendran)
+ * Add [`WAGTAILADMIN_LOGIN_URL` setting](wagtailadmin_login_url) to allow customizing the login URL (Neeraj Yetheendran)
  * Polish dark theme styles and update color tokens (Thibaud Colas, Rohit Sharma)
  * Keep database state of pages and snippets updated while in draft state (Stefan Hammer)
  * Add `DrilldownController` and `w-drilldown` component to support drilldown menus (Thibaud Colas)

+ 1 - 1
docs/releases/6.2.md

@@ -426,4 +426,4 @@ The undocumented usage of the JavaScript `window.ActivateWorkflowActionsForDashb
 
 These functions are only used by Wagtail to initialize event listeners to workflow action buttons via inline scripts and are never intended to be used in custom code. The inline scripts have been removed in favour of initializing the event listeners directly in the included `workflow-action.js` script. As a result, the functions no longer need to be globally-accessible.
 
-Any custom workflow actions should be done using the [documented approach for customising the behavior of custom task types](custom_tasks_behavior), such as by overriding `Task.get_actions()`.
+Any custom workflow actions should be done using the [documented approach for customizing the behavior of custom task types](custom_tasks_behavior), such as by overriding `Task.get_actions()`.

+ 1 - 1
docs/releases/6.4.md

@@ -31,7 +31,7 @@ depth: 1
  * 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)
  * Add the [`wagtail start`](wagtail_start) command to the management commands reference page (Damilola Oladele)
  * Refine the [](project_templates_reference) page sections and document common issues encountered when creating custom templates (Damilola Oladele)
- * Refine page titles to better align with the documentation style guide (Srishti Jaiswal)
+ * Refine titles, references and URLS to better align with the documentation style guide, including US spelling (Srishti Jaiswal)
  * Recommend a larger `DATA_UPLOAD_MAX_NUMBER_FIELDS` when [integrating Wagtail into Django](../getting_started/integrating_into_django.md) (Matt Westcott)
  * Improve code highlighting and formatting for Python docstrings in core models (Srishti Jaiswal)
 

+ 1 - 1
docs/topics/images.md

@@ -579,4 +579,4 @@ WAGTAILIMAGES_EXTENSIONS = ["gif", "jpg", "jpeg", "png", "webp", "heic"]
 
 Note that to upload HEIC / HEIF images, the file extension must be `.heic` and not `.heif` or other extensions.
 
-These images will be automatically converted to JPEG format when rendered (see [](customising_output_formats)).
+These images will be automatically converted to JPEG format when rendered (see [](customizing_output_formats)).

+ 1 - 1
docs/topics/pages.md

@@ -142,7 +142,7 @@ These are used for structuring fields in the interface.
 
 #### Customizing the page editor interface
 
-The page editor can be customized further. See [Customizing the editing interface](/advanced_topics/customisation/page_editing_interface).
+The page editor can be customized further. See [Customizing the editing interface](/advanced_topics/customization/page_editing_interface).
 
 (page_type_business_rules)=