Matt Westcott
b8a9a2d319
Deprecate wagtail.contrib.modeladmin.menus.SubMenu in favour of wagtail.admin.menu.Menu
...
The Menu class was not originally designed to accept menu items at constructor time (instead requiring them to be passed via hooks); ModelAdmin's SubMenu class patched this functionality in, and the documentation for extending admin views piggybacked on this. Add this functionality to the base Menu class so that we don't have this unnecessary dependency on ModelAdmin.
2022-06-28 16:32:15 +10:00
LB Johnston
b9f6776600
documentation - migrate docs/support to markdown
2022-06-28 16:16:09 +10:00
LB Johnston
0f9c20e6c6
documentation - rename docs/support to md
2022-06-28 16:16:09 +10:00
Karl Hobley
920c0afdf4
Changelog/release note/contributors for #8747 #8751 #8725 #8724 #8722
2022-06-27 14:56:13 +01:00
LB Johnston
e140c41a89
documentation - markdown formatting
...
- apply general fixes to existing markdown documentation
- various cases of rst syntax still used
- update some links to be the new format
- clean up line breaks (prettier)
2022-06-25 22:44:42 +10:00
Matt Westcott
97b3ab2c39
Fix 'create one now' link on snippet choosers
...
Regression introduced in #8422
2022-06-25 22:27:08 +10:00
LB Johnston
409c840adb
add changelog for #8741
2022-06-25 22:23:42 +10:00
Tibor Leupold
081f46c07f
Documentation - search indexing - Add link to the Postgres docs
...
- Postgres does not provide true control the search ranking using the database search backend.
- Postgres only supports four weight levels and this should be clarified in the documentation
2022-06-25 21:49:04 +10:00
Sage Abdullah
c634fc11cc
Move get_snippet_panel to get_model_panel and fix missing return in get_snippet_edit_handler
2022-06-24 15:12:49 +01:00
LB Johnston
c76579fc1e
migrate docs contrib redirects & searchpromotions to md
...
- relates to #8383
2022-06-24 22:01:53 +10:00
Yves Serrano
c5c93cba67
convert DecimalBlock value back to Decimal ( #8694 )
...
Fixes #4647
2022-06-24 12:15:23 +01:00
Viggodevries
d294617544
change the admin page move interface to a page chooser panel
...
- fixes #8647
2022-06-24 16:48:41 +10:00
Sævar Öfjörð Magnússon
a316408928
convert the docs/topics/** from RST to Markdown
...
Relates to #8383
* Convert the image tag topic to Markdown
* Convert the permissions usage to Markdown
* Convert the topic of snippets to Markdown
* Convert the streamfield topic to markdown
* Convert the writing templates doc to Markdown
2022-06-23 08:12:07 +10:00
LB Johnston
58095cde30
documentation minor fixes
2022-06-23 08:12:07 +10:00
Stefan Hammer
82ff0f935a
Added new get_primary_button_for_obj() to ButtonHelper
...
- This method is now used to add links to the IndexView's rows, where
possible.
- If the user does not have permissions to edit, the inspect view will be used (if enabled), otherwise the item till not be clickable
- fixes #8261
2022-06-23 07:51:47 +10:00
LB Johnston
73c8178d0d
add additional release note for #8702
...
- fixed as part of 4411b76388
- see wagtail/admin/templates/wagtailadmin/chooser/_browse_results.html
- removed aria-label on `u-btn-current` as content was already in the button
2022-06-23 07:19:51 +10:00
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
Andy Babic
9ac3877980
Use iterator() wherever PageQueryset result caching is not needed ( #8722 )
2022-06-22 11:03:17 +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
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
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
9e7e2fa9e5
Fill in release date for 3.0.1
2022-06-16 10:48:40 +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
Jaspreet-singh-1032
c7a0d6ef95
show different message if no page_type available ( #8672 )
...
Fixes #8173
2022-06-15 14:39:50 +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
cb43536f07
Release note for #8668
2022-06-13 17:00:29 +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
PaarthAgarwal
25b82aef76
Removed breadcrumbs next's reliance on data-slim-header
...
- fixes #8644
2022-06-13 21:24:38 +10:00
LB Johnston
73a79fd394
add changelog for #8662
2022-06-12 15:51:45 +10:00
Matt Westcott
372965ef6a
Put headers in markdown rather than rst
2022-06-12 15:47:24 +10:00
Matt Westcott
865df1153b
Documentation for ChooserViewSet
2022-06-12 15:47:24 +10:00