PaarthAgarwal
4411b76388
Added new non collapsible breadcrumbs to page chooser
2022-06-23 07:16:19 +10:00
Tidiane Dia
cb4017c649
Cache model permission codenames in PermissionHelper
2022-06-22 17:25:42 +01:00
igor
fd7ef0a68a
Fix assert type in test_content_page_subpages method ( #8725 )
...
Co-authored-by: Igor Strapko <igor@goodpraxis.coop>
2022-06-22 11:03:50 +01:00
Yuekui
9cf1123d58
Move django-filter version upper bound to 23 ( #8724 )
2022-06-22 11:03:31 +01:00
Andy Babic
9ac3877980
Use iterator() wherever PageQueryset result caching is not needed ( #8722 )
2022-06-22 11:03:17 +01:00
Sage Abdullah
0b516859c5
Save revision in modeladmin create and edit views if model extends RevisionMixin
2022-06-22 09:31:25 +01:00
Sage Abdullah
255e59dd07
Save revision in generic EditView and CreateView if model extends RevisionMixin
2022-06-22 09:31:25 +01:00
Sage Abdullah
96a0eb0fa0
Move logging in generic CreateView and EditView to save_instance() method
2022-06-22 09:31:25 +01:00
Sage Abdullah
dba42161e7
Move revision ForeignKey from PageLogEntry to BaseLogEntry
2022-06-22 09:31:25 +01:00
Matt Westcott
911f17bf8f
Typo in generic views docs - People -> Person ( #8720 )
2022-06-21 17:11:56 +01:00
Sage Abdullah
00c696d285
Add tests for RevisionMixin
2022-06-21 15:19:32 +01:00
Sage Abdullah
78912c9e22
Make migration for backfilling pages' latest_revision
and revisions' object_str
2022-06-21 15:19:32 +01:00
Sage Abdullah
106729a75e
Add object_str
field to Revision
model
2022-06-21 15:19:32 +01:00
Sage Abdullah
265fb30410
Add latest_revision
field to RevisionMixin
2022-06-21 15:19:32 +01:00
Sage Abdullah
69e2f523aa
Extract revision methods in Page
into RevisionMixin
2022-06-21 15:19:32 +01:00
Sage Abdullah
3215bebddf
Rename Page.get_latest_revision_as_page
to Page.get_latest_revision_as_object
2022-06-21 15:19:32 +01:00
Sævar Öfjörð Magnússon
9dd4d6c6c4
Update documentation for the serve method override so that it does not mention a specific demo site. ( #8714 )
2022-06-21 09:13:58 +01:00
Karl Hobley
50200f94c0
Release note for #8498
2022-06-20 14:18:29 +01:00
Matt Westcott
90c3a71c16
Release note for #8634
2022-06-20 14:13:47 +01:00
Oliver Parker
97d0d14cd8
Add add_to_admin_menu option for modeladmin ( #8634 )
2022-06-20 14:10:18 +01:00
Nick Smith
db7a0c96e3
Add Fuzzy() search query class ( #8498 )
2022-06-20 10:41:05 +01:00
Sage Abdullah
417263aa85
Turn off SQLite legacy_alter_table
before running Revision
migration
2022-06-20 10:02:52 +01:00
Noble Mittal
0be024e024
documentation - migrate docs/extending/ to md
2022-06-20 16:36:25 +10:00
Tibor Leupold
adc2ea6a86
Use RichText object for adding rich text blocks ( #8675 )
...
I have just tried to follow the original instructions and got an `AttributeError: 'str' object has no attribute 'source'` when trying to append a rich text block to a `StreamField` programmatically.
Wrapping the value in a `RichText` object solved the issue. This seems to be in line with the behavior described further down the page.
2022-06-16 16:06:09 +02:00
Hugh Rawlinson
8e4a4fae5d
Add release dates to release notes ( #8692 )
...
Fixes #8691
* Add dates to markdown based release notes
* Add dates to rst based release notes
2022-06-16 14:04:18 +02:00
Nick Moreton
eec8c0088d
Update example code - Adding a group of menu items ( #8683 )
2022-06-16 12:01:06 +02:00
Yves Serrano
e2e356d0ae
use an empty list instead of [None] if revision.user doesn't exists fixes #7879 ( #8685 )
2022-06-16 11:46:01 +02:00
Karl Hobley
996866fc06
Changelog/release note for #8686
2022-06-16 10:10:00 +01:00
Matt Westcott
f8c3119cdc
update latest.txt for 3.0.1
2022-06-16 11:09:10 +02:00
Matt Westcott
9e7e2fa9e5
Fill in release date for 3.0.1
2022-06-16 10:48:40 +02:00
Matt Westcott
185bdec8be
Fetch new translations from transifex
2022-06-16 10:48:05 +02:00
Sævar Öfjörð Magnússon
e660326075
Adding multi site support to the pages API. ( #8686 )
2022-06-16 09:33:47 +01:00
LB Johnston
b0eb471c19
update changelog for #8676
...
move items to 3.0.1 only
2022-06-16 06:50:44 +10:00
LB Johnston
1bc37f791c
add changelog for #8676
2022-06-16 06:42:06 +10:00
Matt Westcott
5893c0c162
Add warning if WAGTAILADMIN_BASE_URL is undefined
2022-06-16 06:42:06 +10:00
Matt Westcott
d44d7a6af3
Set base_url to default to "" in emails
...
This makes it "less obviously wrong" than outputting None...
2022-06-16 06:42:06 +10:00
Matt Westcott
98805e858b
Stop emails from breaking when WAGTAILADMIN_BASE_URL is absent
...
In this case, workflow notification emails can't include the full URL (because they're triggered from a signal, where we don't have access to a request object) but we don't want them to break outright.
fixes #8582
2022-06-16 06:42:06 +10:00
Matt Westcott
af4dd482d3
Make try/except on sending email less broad
...
We don't want to ignore legitimate errors that happen during template rendering
2022-06-16 06:42:06 +10:00
Jaspreet-singh-1032
c7a0d6ef95
show different message if no page_type available ( #8672 )
...
Fixes #8173
2022-06-15 14:39:50 +02:00
Matt Westcott
01c37c107c
Tweak assertAllowedSubpageTypes / assertAllowedParentPageTypes tests so that we don't have to awkwardly hack SimpleParentPage / SimpleChildPage around them
2022-06-15 14:29:48 +02:00
PaarthAgarwal
8c2c4a1098
Add new breadcrumbs to page explorer
...
- added test and updated existing test for breadcrumbs-next
- fix background issue so that the breadcrumbs work correctly on any background
2022-06-15 17:27:33 +10:00
Matt Westcott
cba208bfe8
Release note for #8680
2022-06-14 15:59:13 +02:00
Matt Westcott
b834c7aec7
Allow scheduled publishing to happen when the initial editor did not have publish permission
...
Fixes #8585
2022-06-14 15:59:02 +02:00
Matt Westcott
cb43536f07
Release note for #8668
2022-06-13 17:00:29 +01:00
Jacob Topp-Mugglestone
46d947bb07
Fix/splitting blocks with highlights ( #8668 )
...
* Fix splitting block with highlighted text deleting text
* Fix issue with splitting blocks at start/end crashing editor
* Add unit tests for Draftail split behaviour
2022-06-13 16:33:57 +01:00
Matt Westcott
a86a89e803
Update release notes to reflect #8494 being backported to 3.0.1
2022-06-13 15:46:18 +01:00
Matt Westcott
1e385572cc
Remove release notes in 4.0 for things backported to 3.0.1
2022-06-13 15:36:09 +01:00
Matt Westcott
4f1da06bb7
Use original wording for 3.0.1 release notes
2022-06-13 15:35:04 +01:00
Matt Westcott
ac2a190543
Release notes for 3.0.1
2022-06-13 15:32:00 +01:00
LB Johnston
9cb0c96001
fix issue with spinner icon & longrunning active state
...
- using padding meant the icon would visually spin 'wobbly'
- button content is no longer centre aligned so button longrunning active state should not be either
- fixes #8615
2022-06-13 15:29:55 +01:00