update a few wagtail.io references to wagtail.org (#7905)

pull/7917/head
LB (Ben Johnston) 2022-02-02 20:39:14 +10:00 zatwierdzone przez GitHub
rodzic 77591c0d30
commit b297d521c1
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
3 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -96,4 +96,4 @@ You can also find more resources from the community on [Awesome Wagtail](https:/
## Tip
We are working on a collection of Wagtail tutorials and best practices.
Please tweet [\@WagtailCMS](https://twitter.com/WagtailCMS) or [contact us directly](mailto:hello@wagtail.io) to share your Wagtail HOWTOs, development notes or site launches.
Please tweet [\@WagtailCMS](https://twitter.com/WagtailCMS) or [contact us directly](mailto:hello@wagtail.org) to share your Wagtail HOWTOs, development notes or site launches.

Wyświetl plik

@ -95,7 +95,7 @@ setup(
system built on Django, with a strong community and commercial support. \
Its focused on user experience, and offers precise control for \
designers and developers.\n\n\
For more details, see https://wagtail.io, https://docs.wagtail.org and \
For more details, see https://wagtail.org, https://docs.wagtail.org and \
https://github.com/wagtail/wagtail/.",
classifiers=[
'Development Status :: 5 - Production/Stable',

Wyświetl plik

@ -153,7 +153,7 @@ class TestBackendConfiguration(TestCase):
self.assertIsInstance(backends['azure_cdn'], AzureCdnBackend)
# purge()
backends['azure_cdn'].purge('http://www.wagtail.io/home/events/christmas/?test=1')
backends['azure_cdn'].purge('http://www.wagtail.org/home/events/christmas/?test=1')
make_purge_call_mock.assert_called_once()
call_args = tuple(make_purge_call_mock.call_args)[0]
self.assertEqual(len(call_args), 2)
@ -163,7 +163,7 @@ class TestBackendConfiguration(TestCase):
# purge_batch()
backends['azure_cdn'].purge_batch([
'http://www.wagtail.io/home/events/christmas/?test=1', 'http://torchbox.com/blog/'
'http://www.wagtail.org/home/events/christmas/?test=1', 'http://torchbox.com/blog/'
])
make_purge_call_mock.assert_called_once()
call_args = tuple(make_purge_call_mock.call_args)[0]
@ -185,7 +185,7 @@ class TestBackendConfiguration(TestCase):
self.assertIsInstance(backends['azure_front_door'], AzureFrontDoorBackend)
# purge()
backends['azure_front_door'].purge('http://www.wagtail.io/home/events/christmas/?test=1')
backends['azure_front_door'].purge('http://www.wagtail.org/home/events/christmas/?test=1')
make_purge_call_mock.assert_called_once()
call_args = tuple(make_purge_call_mock.call_args)[0]
self.assertIsInstance(call_args[0], FrontDoorManagementClient)
@ -195,7 +195,7 @@ class TestBackendConfiguration(TestCase):
# purge_batch()
backends['azure_front_door'].purge_batch([
'http://www.wagtail.io/home/events/christmas/?test=1', 'http://torchbox.com/blog/'
'http://www.wagtail.org/home/events/christmas/?test=1', 'http://torchbox.com/blog/'
])
make_purge_call_mock.assert_called_once()
call_args = tuple(make_purge_call_mock.call_args)[0]