Avoid loading icons sprite and JS files in 404 page (#12745)

Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
pull/12741/head
sag​e 2025-01-13 11:29:17 +00:00 zatwierdzone przez GitHub
rodzic 4fc2c2abac
commit 99a9317eea
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
4 zmienionych plików z 9 dodań i 0 usunięć

Wyświetl plik

@ -19,6 +19,7 @@ Changelog
* 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)
* 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: Ensure manual edits to `StreamField` values do not throw an error (Stefan Hammer)

Wyświetl plik

@ -28,6 +28,7 @@ depth: 1
* 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`](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)
### Bug fixes

Wyświetl plik

@ -2,6 +2,10 @@
{% load wagtailadmin_tags wagtailcore_tags i18n %}
{% block titletag %}{% trans "Error 404: Page not found" %}{% endblock %}
{# Avoid loading all of Wagtails icons sprite and JavaScript as they're unused here. #}
{% block icons_sprite %}{% endblock %}
{% block js %}{% endblock %}
{% block furniture %}
<main class="page404__bg">
<div class="w-w-full w-h-full w-max-w-6xl w-mx-auto w-flex w-items-center w-justify-center">

Wyświetl plik

@ -508,6 +508,9 @@ class Test404(WagtailTestUtils, TestCase):
# Check 404 error after CommonMiddleware redirect
self.assertEqual(response.status_code, 404)
self.assertTemplateUsed(response, "wagtailadmin/404.html")
soup = self.get_soup(response.content)
self.assertFalse(soup.select("script"))
self.assertFalse(soup.select("[data-sprite]"))
def test_not_logged_in_redirect(self):
response = self.client.get("/admin/sdfgdsfgdsfgsdf/")