0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-30 01:46:24 +01:00
Commit Graph

10828 Commits

Author SHA1 Message Date
Kalob Taulien
b6f5c41863
Merge pull request #1 from phildexter/patch-3
Edit title tag and meta description
2021-02-05 07:42:06 -07:00
dex
f49a6b70d5
Edit title tag and meta description
Updated title tag and meta description to reflect that it is a developer's job to ensure these are output on the frontend.
2021-02-05 11:32:10 +00:00
Kalob Taulien
a01c663099 Renamed migration file 2021-02-04 16:35:47 -07:00
Kalob Taulien
fc61da7468 Panel text update; Documentation around developer responsibility added 2021-02-04 10:36:13 -07:00
Kalob Taulien
6694533751 Merging in PR 6774 docs 2021-02-04 08:56:48 -07:00
Kalob Taulien
2000697d78 Migrations for field changes 2021-02-04 08:32:13 -07:00
Kalob Taulien
5e46646f10 Promote panel changes 2021-02-04 08:17:44 -07:00
Tom Dyson
d84df721f0 Support skipping CI
Don't run CI if the commit message includes "[skip ci]" (like this one!)
2021-02-04 13:53:37 +00:00
Storm Heg
d3285e9f1b Quote pip install command in developing docs
Prevents it from failing with zsh: no matches found: .[docs]
2021-02-04 12:36:00 +00:00
dex
a4e9431cc5
Update tutorial.rst (#6766)
Just spicing it up a bit.
2021-02-04 12:19:40 +00:00
Matt Westcott
9217193513 Revert "Writing documentation in for modes"
This reverts commit 044206db0d.
2021-02-04 11:51:36 +00:00
Coen van der Kamp
044206db0d Writing documentation in for modes 2021-02-04 12:46:14 +01:00
Matt Westcott
41ff62a056 Release note for #6756 in 2.12.1 2021-02-03 11:00:18 +00:00
Matt Westcott
920aba28ba Release notes for #6713 and #6756 in 2.11.4 2021-02-03 10:59:08 +00:00
Karl Hobley
623942174c Publish aliases when the source page is published
Fixes # 6749

Aliases are currently not being published if they were created in draft
2021-02-03 10:43:05 +00:00
Matt Westcott
1a7a5816a5 Fill in release date for 2.12 2021-02-02 16:09:16 +00:00
Matt Westcott
843ac58ac7 Fetch new translations from Transifex 2021-02-02 16:08:34 +00:00
Matt Westcott
ab656424b7 Reinstate spidering of other documentation versions besides stable
These are now returning the correct canonical URL (thanks to a Cloudflare worker script), and letting search engines spider them again will hopefully boost visibility of that canonical URL.
2021-02-02 15:15:43 +00:00
Thibaud Colas
30b90a0f65
Improve wagtailforms accessibility guidance (#6740) 2021-01-29 19:45:48 +00:00
Matt Westcott
cb29fbba65 Release note for #6713 2021-01-29 16:12:55 +00:00
Karl Hobley
7131baab28 Add contributor entry for @helderco
For #6713
2021-01-29 14:08:53 +00:00
Thibaud Colas
29942d2a48
Add documentation formatting reference (#6729)
Co-authored-by: Andy Chosak <andy@chosak.org>
Co-authored-by: Tom Dyson <tom@torchbox.com>
2021-01-29 10:38:47 +00:00
Thibaud Colas
fce19a8059 Add release notes for #6730 2021-01-29 10:24:14 +00:00
Helen C
479855b27c Make image chooser "Select format" fields translatable
- Add explanatory comment
- Make form labels translatable
2021-01-29 10:24:14 +00:00
Helen C
5682aea460 Add the option to set images as decorative
If an image is decorative, the alt text will be set to be empty. If an image is not decorative, then alt text must be supplied for screen readers.
2021-01-29 10:24:14 +00:00
Thibaud Colas
bf33842f45
Fix documentation typo 2021-01-27 16:01:06 +00:00
Matt Westcott
9886cb0476 add missing : to after_create_page example 2021-01-27 09:21:42 +00:00
Thibaud Colas
0dbd69f491
Configure Sphinx for Markdown support (#6711) 2021-01-26 22:09:52 +00:00
Matt Westcott
df125b1652 Release notes for #6718 2021-01-26 10:55:26 +00:00
Matt Westcott
49b13a3139 Fix indentation on MinMaxCountStreamModel / BlockCountsStreamModel 2021-01-26 10:55:25 +00:00
Matt Westcott
a8f41258b5 Move set_meta_options logic to the base Block class 2021-01-26 10:55:25 +00:00
Matt Westcott
d42b9b4a74 add backticks to streamfield option docs 2021-01-26 10:55:25 +00:00
Matt Westcott
d22fc9181e Test all permutations of blank / non-blank StreamFields
Regardless of how the top-level StreamBlock is instantiated, or what its required Meta attribute says at that point, the StreamField's blank kwarg (defaulting to False) should be the sole indicator of whether the field is required or not.
2021-01-26 10:55:25 +00:00
Matt Westcott
8f2c7a0011 Documentation for new min_num, max_num, block_counts options 2021-01-26 10:55:24 +00:00
Haydn Greatnews
60263dfdad Add testing for streamfield count restrictions passed to StreamField 2021-01-26 10:55:24 +00:00
Matt Westcott
643bbfc600 Allow StreamBlock to pick up blank, min_num, max_num and block_counts kwargs from StreamField 2021-01-26 10:55:24 +00:00
Helder Correia
f03c11f1d1 Fix typo 2021-01-25 10:53:19 +00:00
Matt Westcott
23096b9f73 Show required asterisks for required descendant blocks of required streamfields (#6715)
Fixes #5983; possibly also has a bearing on #4306. A CSS rule dating from the original StreamField design was hiding the 'required' asterisk on fields within a required StreamField, presumably on the mistaken belief that they duplicate the information given by the top-level asterisk on the streamfield. (In #5983 this was reported as a regression in 2.7 when the react-streamfield CSS was introduced, so it's possible that the old design had something to mitigate this, e.g. an asterisk being inserted elsewhere.)
2021-01-21 14:36:57 +00:00
Matt Westcott
97bfaf15e9
fix version number 2021-01-21 11:14:50 +00:00
Matt Westcott
b5835dd862 Test against Django stable/3.2.x branch 2021-01-19 09:53:30 +00:00
Matt Westcott
14daf4be0a Remove outdated versionadded/versionchanged notes in docs 2021-01-19 09:51:01 +00:00
Matt Westcott
ca908356bc Rotate deprecation warnings 2021-01-19 09:49:12 +00:00
Matt Westcott
c3abf40ea5 Add release notes / changelog section for 2.13 2021-01-19 09:47:31 +00:00
Matt Westcott
7e2d1a22bf Version bump to start work on 2.13 2021-01-19 09:44:43 +00:00
Matt Westcott
fe51d1c6ed Changelog entry for #6409 2021-01-18 17:59:43 +00:00
Matt Westcott
47cec03f37 Update translator list 2021-01-18 17:37:11 +00:00
Matt Westcott
5e0a585f3c Generate new strings for translation 2021-01-18 17:32:09 +00:00
Matt Westcott
f920e24ab1 Fetch new translations from Transifex 2021-01-18 17:27:59 +00:00
Michael Brown
cadb5456c0 Apply scss styling to collection_choice_field (#6683) 2021-01-18 17:06:29 +00:00
Karl Hobley
44f3731b1c Use .specific_deferred when calling .get_admin_display_title() 2021-01-18 16:32:59 +00:00