Matt Westcott
b13641e936
Support custom document models with required fields
...
Same approach as 4023a90d6e
for images - define an UploadedDocument model to hold the uploaded file up to the point where the required metadata has been supplied.
2021-01-15 20:05:08 +00:00
Matt Westcott
c29a92f801
Fix trailing whitespace
2021-01-15 19:44:37 +00:00
Fernando
30ad03d4ca
Update S3 CORS documentation for Boto3 ( #6668 )
...
Boto3 has been around for a long time now. Adding a Boto-specific parameter in a tutorial is confusing (it was for me) as people are likely to install Boto3 directly and skip Boto. The `AWS_HEADERS` parameter was replaced by the `AWS_S3_OBJECT_PARAMETERS` parameter in Boto3 and the parameter that controls the access control list specifically is the `ACL`.
By the way, are the instructions on line 50 still relevant today?
2021-01-15 19:42:41 +00:00
Thibaud Colas
1914394bc8
Update wagtail forms accessibility considerations to link to Django tickets ( #6687 )
2021-01-12 16:39:57 +00:00
Brian Oliver
ac88310402
Update third-party tutorials ( #6622 )
2020-12-09 10:58:50 +00:00
Matt Westcott
2dfb82406a
whitespace fix
2020-12-08 12:53:41 +00:00
Matt Westcott
4dc9f81d68
Add {% if page %} around language selector example
...
As suggested here: https://stackoverflow.com/questions/65065301/wagtail-not-redirecting-500-error-instead-of-404-when-debug-false/65065608?noredirect=1#comment115125518_65065608
2020-12-08 12:53:41 +00:00
Thibaud Colas
06c3c3a24b
Replace image upload in wagtailforms tutorial with latest version. Fix #5284
2020-12-08 10:20:48 +00:00
Cynthia Kiser
28cee081b2
Add custom oEmbed finders for Facebook and Instagram ( #6550 )
...
Move code from https://www.codista.com/en/blog/wagtail-instagram-new-oembed-api/ into core
Add custom oembed finder for Facebook
Apply suggestions from @originell's code review
Co-authored-by: Luis Nell <luis.nell@codista.com>
FIXUP More places to change the exception name (and a linter fix)
Extend Instagram/Facebook tests to check HTTP request
Add documentation for omitscript parameter
2020-11-17 15:06:24 +00:00
Thibaud Colas
37e9e1d54d
#6090 Document accessibility considerations ( #6272 )
...
Co-authored-by: Coen van der Kamp <coen@fourdigits.nl>
2020-11-06 15:38:00 +00:00
Matt Westcott
6e1e36256a
Remove elasticsearch 2 support
2020-11-05 12:04:12 +00:00
Matt Westcott
d56f8ea1c5
More prominent note about wagtail-localize in i18n docs ( #6506 )
2020-11-02 12:46:16 +00:00
Karl Hobley
6234023f39
Changelog / relase note for internationalisation ( #6492 )
...
* Changelog / relase note for internationalisation
* Apply suggestions from code review
Co-authored-by: Matt Westcott <matthew@torchbox.com>
2020-10-23 14:26:44 +01:00
Karl Hobley
bd70ecf318
Tweaks to internationalisation docs
2020-10-23 10:29:22 +01:00
Matt Westcott
7d92e3982f
Fix steps for adding translations to an existin snippet
...
* Fix BootstrapTranslatableMixin to skip TranslatableModel's system check for the missing unique constraint
* Fix incorrect import for BootstrapTranslatableModel and use of `--empty` in final schema migration
* Clarify handling of Meta classes, the fact that you need to run makemigrations for step 1, and what to do for the non-nullable 'locale' prompt
2020-10-22 16:44:54 +01:00
Matt Westcott
5f712b803a
fix duplicate target name enabling_internationalisation
2020-10-16 14:15:33 +01:00
Karl Hobley
82dafc7ef8
Add docs for new i18n API filters ( #6452 )
2020-10-16 13:57:37 +01:00
Karl Hobley
bdfee22e8b
New topic docs for internationalisation ( #6436 )
...
* New topic docs for internationalisation
* Spelling + Grammar fixes
* Clarity fixes
* Fix formatting issues
2020-10-16 13:36:19 +01:00
Sævar Öfjörð Magnússon
9d10e28214
Update wagtail app list to match installed apps in documentation
2020-10-06 15:03:39 +01:00
Karl Hobley
6e5f89adf2
General spelling fixes
2020-10-03 14:43:03 +01:00
Karl Hobley
9195131738
Lint docs with doc8
2020-10-03 14:43:03 +01:00
Matt Westcott
dc110b5432
Remove note about MSSQL being known to work
...
As per https://github.com/wagtail/wagtail/issues/6393
2020-09-30 16:29:08 +01:00
Katie McLaughlin
637000fc08
Add notes for CORS settings on Google Cloud Storage
2020-08-24 13:05:38 +01:00
Katie McLaughlin
707dc171dc
Add Google Cloud deployment references
...
App Engine video
Cloud Run codelab
2020-08-24 13:05:38 +01:00
Matt Westcott
e0dc53d9ad
Remove versionadded/versionchanged notes for 2.9
2020-07-28 12:53:22 +01:00
Matt Westcott
d3f7ffa369
Add a variant of WorkflowAction that just collects, validates and returns form data so that the action can be performed separately
2020-07-24 16:59:33 +01:00
jacobtoppm
c79668929e
Update reference documentation, custom task guide, and release notes, and fix documentation build errors
2020-07-24 16:59:33 +01:00
Dan Braghis
92e7330180
Update docs with current log actions and the rule of thumb for logging
2020-07-24 16:59:33 +01:00
Dan Braghis
f69287f6f4
Add documentation
2020-07-24 16:59:33 +01:00
Dan Braghis
fb0742802f
Include task description in choosers, if defined ( #6200 )
2020-07-24 16:59:33 +01:00
Karl Hobley
edfd17a1f1
Reduce usage of edit handlers for workflow management ( #6172 )
...
* Use plain old Django forms for tasks
* Revert "Add ExcludeFieldsOnEditMixin for edit handlers, disabling specific fields when bound to an existing instance rather than creating a new one"
This reverts commit 62961b74bb
.
* Move Workflow edit handler creation into Workflow forms
Only advantage of having it the way it was before is that allows
overriding the edit handler in subclasses. But nobody will be doing this
with workflows.
I've added a note into the code pointing out that we might want to
rethink using edit handlers if:
- It gets easier to style formsets without using InlinePanel
- We want to allow customisation of the form (the use of edit handlers
should be considered an internal implementation detail at the moment)
* Make task name readonly but groups editable
* Update wagtail/admin/templates/wagtailadmin/workflows/task_chooser/includes/create_form.html
Co-authored-by: Dan Braghis <dan@zerolab.org>
* Update wagtail/admin/forms/workflows.py
Co-authored-by: Dan Braghis <dan@zerolab.org>
Co-authored-by: Dan Braghis <dan@zerolab.org>
2020-07-24 16:59:33 +01:00
jacobtoppm
dde1507da1
Fix typos
2020-07-24 16:59:33 +01:00
jacobtoppm
16966b195b
Add example of field belonging on custom TaskState, and fix typos
2020-07-24 16:59:33 +01:00
jacobtoppm
d14563dfd5
Remove version reference
2020-07-24 16:59:33 +01:00
jacobtoppm
832e0be8e0
Add task_state_class specification for custom tasks to docs
2020-07-24 16:59:33 +01:00
jacobtoppm
b508001336
Add developer guide to new Task types
2020-07-24 16:59:33 +01:00
jacobtoppm
b8c70163ca
Add custom_tasks.rst
2020-07-24 16:59:33 +01:00
FreshPass
b59a737930
Update third_party_tutorials.rst
...
Fixing a 404 on the rosederwelt.com Deploying my Wagtail blog to Digital Ocean, pt. 1
2020-07-17 10:57:48 +01:00
Storm Heg
8c306910dd
Fix incorrect urls in the docs
2020-07-06 13:15:40 +01:00
Storm Heg
98c66359a8
Replace a few instances of re_path with path
2020-07-06 13:15:39 +01:00
Storm Heg
4076b9ef5e
Replace calls to django.conf.urls.url with django.urls.path or django.urls.re_path
2020-07-06 13:15:37 +01:00
Matt Westcott
52013f4920
Mention INSTALLED_APPS ordering in custom user docs
2020-05-18 11:33:53 +01:00
LB (Ben Johnston)
d3dd7296c9
docs - revise heading levels for feature detection (images) ( #6029 )
2020-05-15 09:42:37 +01:00
Eric Phetteplace
20790f4c96
improve Adding Reports documentation
...
* `reverse` was used but not imported in the wagtail_hooks.py examples, causing them to be invalid
* I switched the Django `url` calls to use `path` instead since that seems both cleaner and officially recommended, the url function is "likely to be deprecated in a future release" per Django docs and `path` is starting to replace it in urls.py files now
2020-05-10 17:15:32 +10:00
Neal Todd
2b35a852fe
Add Rustface to the feature detection docs (images)
2020-05-10 17:09:33 +10:00
Liam Mullens
52cb7ab77b
Update ImageRendition field to return Image alt text
...
* Update ImageRendtion to use default_alt_text property of Image
* Update example in documentation
* Add a test for ImageRenditionField
* Resolves #5816
2020-05-08 11:22:49 +10:00
Meteor0id
829a9bbf06
Add ability to replace the default Wagtail logo in the userbar, via branding_logo
block ( #4731 )
2020-05-08 00:11:05 +01:00
Sylvain Fankhauser
2055da6a3a
Fix code example in image file formats docs
2020-04-25 15:39:05 +10:00
Matt Westcott
58b11833c8
Add placeholder docs for internationalisation
2020-04-20 21:04:00 +10:00
Matt Westcott
4023a90d6e
Allow custom image model to have fields defined as required
...
If validation rules prevent the multiple image upload view from
creating Image objects from just the image file, an UploadedImage object is
created instead, and turned into an image once the form is filled in.
* Fixes #847
* Add UploadedImage model and related views
* Update custom image model docs
2020-04-20 14:46:24 +10:00
LB
a69559174f
Add tutorials Q1 2020
2020-04-18 23:49:10 +01:00
Matt Westcott
297f663861
Rename _list_report.html to _list_page_report.html
2020-04-17 12:02:28 +01:00
Matt Westcott
abb6634d92
Move default export_heading_overrides / list_export config to PageReportView
2020-04-17 12:02:28 +01:00
Karl Hobley
1e4a331766
Split out base report template into an empty base and a page-specific one
2020-04-17 12:02:28 +01:00
Karl Hobley
a1b09f65c9
Rename export_heading_overrides to export_headings
2020-04-17 12:02:28 +01:00
Tom Dyson
f37da8f7d8
Cache image renditions ( #4883 )
2020-04-07 14:05:27 +01:00
jacobtoppm
23af29d35c
Use AdminOnlyMenuItem in both code samples in reports docs
2020-04-07 12:13:17 +01:00
jacobtoppm
2b096419dc
Fix typo in import in reports documentation
2020-04-07 12:13:17 +01:00
Mohamed Feddad
bb2e460c0b
Replace deprecated ugettext, ungettext with gettext and ngettext. ( #5907 )
2020-04-02 17:15:26 +01:00
Tom Dyson
8c1a234f13
Remove our outdated preferences for deployment
2020-03-25 14:31:35 +00:00
jacobtoppm
5e95e91226
Add AdminOnlyMenuItem and update custom report documentation to use it
2020-03-19 17:47:37 +00:00
jacobtoppm
587ccdc8b0
Add complete report example
2020-03-19 17:47:30 +00:00
jacobtoppm
cbe3058794
Add documentation on how to add custom reports
2020-03-19 17:47:17 +00:00
Frantisek Holop
fc0cf64ac6
Be more specific regarding the cached loader. ( #5754 )
...
Be more explicit about not needing to enable the `cached.Loader`
manually, unless using some custom loaders.
2020-03-19 17:01:29 +00:00
Matt Westcott
96cd5c066d
Update wording
...
Also move warning so it occurs on server startup rather than first request
2020-02-17 12:06:19 +00:00
Matt Westcott
5eec4d954e
Deprecate SiteMiddleware ( #3834 , #5332 , #5673 )
...
Squashed commit of the following:
commit 6ff78d0271ae9bb8be20edc77acc046b7ecd1190
Merge: cbb5575
b7872e3
Author: Matt Westcott <matt@west.co.tt>
Date: Fri Jan 24 10:41:00 2020 +0000
Merge branch 'master' into sitemiddleware-rebase-2
Conflicts:
docs/reference/settings.rst
wagtail/api/v2/endpoints.py
wagtail/api/v2/filters.py
wagtail/api/v2/serializers.py
commit cbb5575fd8
Author: timothy@bttrcode <timothy@bttrcode.nl>
Date: Sun Nov 3 02:30:00 2019 +0100
Update branch, resolve conflicts, clean up
commit 6188742cfe
Merge: 4b4dee6
1c1341e
Author: timothy@bttrcode <timothy@bttrcode.nl>
Date: Sun Nov 3 01:48:21 2019 +0100
Resolve merge conflicts
commit 4b4dee6c47
Author: timothy@bttrcode <timothy@bttrcode.nl>
Date: Sun Nov 3 01:42:37 2019 +0100
Temporarily add Pipfile and yarn file
commit 540dff380b
Merge: 4a93424
0d2442f
Author: timothy@bttrcode <timothy@bttrcode.nl>
Date: Fri Sep 27 20:22:00 2019 +0200
Merge branch 'master' of https://github.com/aritas1/wagtail into aritasmaster
commit 0d2442fc1f
Author: Daniel <mail@aritas.de>
Date: Wed Jun 26 03:01:44 2019 +0200
clean tests and add ALLOWED_HOSTS globally
commit b7e6b8e655
Author: Daniel <mail@aritas.de>
Date: Wed Jun 26 03:00:07 2019 +0200
change context processor to be lazy
commit b16250fce9
Author: Daniel <mail@aritas.de>
Date: Tue May 28 21:37:05 2019 +0200
update SiteMiddleware documentation
commit 4be243f64d
Author: Daniel <mail@aritas.de>
Date: Tue May 28 20:52:08 2019 +0200
fix linting
commit 33151817a0
Author: Daniel <mail@aritas.de>
Date: Tue May 28 19:11:47 2019 +0200
add wagtail_site template tag
commit 38b304105a
Author: Daniel <mail@aritas.de>
Date: Tue May 28 16:19:22 2019 +0200
update tests for deprecated SiteMiddleware
commit f745aae9d0
Author: Daniel <mail@aritas.de>
Date: Tue May 28 16:11:58 2019 +0200
change Site finding mechanism to be independent of deprecated SiteMiddleware
2020-02-17 12:06:18 +00:00
Pete Andrew
abd8320dc3
Update links in docs to point at stable Django version
2019-12-01 13:19:40 +10:00
Matt Westcott
d65532dd0f
Mention the need to inherit from PermissionsMixin in custom user model docs
2019-11-28 12:35:30 +00:00
Karl Hobley
36d440d2dd
Rename endpoints
modules to views
2019-11-28 09:00:56 +00:00
Karl Hobley
16d5b5c99e
Rename Endpoints to ViewSets
...
For consistency with Django REST Framework
2019-11-28 09:00:35 +00:00
Karl Hobley
633ad38925
Rename settings how-to guide
2019-11-20 17:54:08 +00:00
Karl Hobley
23145382e9
Move settings reference into separate doc
2019-11-20 17:39:46 +00:00
Karl Hobley
16bf4cac56
Delete the internationalisation docs
2019-11-09 15:34:51 +00:00
Martey Dodoo
229103ff2e
Update links in documentation. ( #5689 )
...
Use HTTPS links instead of non-secure HTTP links wherever possible in
documentation.
2019-11-08 09:15:01 +00:00
WinterComes
06fb0764e0
Move get_document_model to __init__ & add get_document_model_string
...
Avoids issues where models are not yet loaded and document model is needed.
- apply isort
- fix minor typos
- fixes #5614
2019-11-07 07:47:12 +10:00
Tom Readings
e75b74911e
Reference the embedly package requirement for embedly finder support ( #5680 )
2019-11-06 17:03:44 +00:00
Karl Hobley
5845cfbfe9
Add Recipe doc for implementing AMP on a site ( #5626 )
...
* Add Recipe doc for implementing AMP on a site
* Fix typos
* Add section on using a different page template for AMP
* Move AMP recipe out of images
Not very image specific anymore
* Wording tweaks and grammar fixes
2019-11-05 15:28:45 +00:00
Matt Westcott
8577cc2d02
Remove old versionadded tags in the docs
2019-10-29 08:56:12 +00:00
Matt Westcott
302d22e252
Release note for #5249 / #5629
2019-10-16 16:21:26 +01:00
frmdstryr
01e0cd9dac
Support format-webp and allow changing default formatting
2019-10-16 15:02:59 +01:00
Karl Hobley
b4ecead6d9
[5225] Take number of frames into account when limiting image size
2019-10-16 11:36:07 +01:00
LB (Ben Johnston)
03cd4056df
Docs - Add AbstractUser import to custom user model
...
- `from django.contrib.auth.models import AbstractUser`
- revise a previous changelog entry to clarify 'clean up' vs 'fix'
2019-10-12 09:57:47 +10:00
a-mere-peasant
1eae1e4614
Added 'image uploads in forms' to third party tutorials
2019-10-12 09:31:19 +10:00
Matt Westcott
8711050e49
Add cache-busting parameter to admin static files
...
Fixes #5493
2019-10-09 12:16:56 +01:00
jacobtoppm
dd5cbd8d7a
Add new docs page 'Changing rich text representation' ( #5579 )
...
* Add new docs page 'Changing rich text representation' describing how to subclass Format to provide a custom image html representation in rich text
2019-10-02 12:12:38 +01:00
jacobtm
daba83aab1
Add a note on 'Previewing and Submitting for Moderation' page about potential disabled moderation
2019-10-02 10:48:15 +01:00
Brian Whitton
34f4ab8a3f
allow image page sizes to be configurable ( #5568 )
2019-09-25 10:49:57 +01:00
jacobtm
a7b470bc9d
Add ability to hide 'Submit for Moderation' in action menu using setting WAGTAIL_MODERATION_ENABLED. When set to false, SubmitForModerationMenuItem method is_shown returns false ( #5574 )
2019-09-24 16:28:47 +01:00
Dawn Wages
1b2dadc429
Update configuration.rst ( #5576 )
2019-09-23 12:06:16 +01:00
Matt Westcott
76d72a36c3
Documentation tweaks for WAGTAILDOCS_SERVE_METHOD
...
As suggested by @chosak - https://github.com/wagtail/wagtail/pull/5296#discussion_r324252497 , https://github.com/wagtail/wagtail/pull/5296#discussion_r324257167
2019-09-21 18:53:48 +01:00
Tobias McNulty
40fa3956f5
add WAGTAILDOCS_SERVE_METHOD setting to allow serving files from underlying storage
2019-09-21 18:53:48 +01:00
Dawid Bugajewski
90b7a3b0d3
Fix class selector mapping ( #5571 )
...
The markup is wrong which results in code not working properly.
2019-09-20 10:18:55 +01:00
Janne Alatalo
dd0bb9a870
Add setting to disable email management
...
This commit adds WAGTAIL_EMAIL_MANAGEMENT_ENABLED setting that defaults
to True, but when disabled, hides the 'Change email' button in account
management view, and disables the associated route. This is useful when
using external authentication method like LDAP or OpenID Connect where
email management is handled elsewhere.
Wagtail already includes WAGTAIL_PASSWORD_MANAGEMENT_ENABLED setting.
This is almost exact copy of that implementation.
2019-09-04 10:25:35 +01:00
Sanyam Khurana
f9753f1f23
fix(docs/customization): Add models import to fix example ( #5520 )
2019-08-20 11:57:14 +01:00
Sergey Fedoseev
94be338cbd
Fix mention of non-existing PageLinkHandler.get_identifier
...
Refs #5184
2019-08-20 11:54:43 +01:00
Daniele Procida
72db52371a
Updated feature detection notes
2019-07-21 18:03:09 +10:00
Jaroslaw Zabiello
7df817d29c
Update third_party_tutorials.rst
...
Add a detailed article about using GraphQL in Wagtail
2019-06-25 16:07:06 +01:00
jordan-bauer
998440cfa9
Remove buggy tab order customisations in CMS admin ( #5383 , #5351 )
2019-06-18 12:49:16 +01:00
Dillen Meijboom
dd1597ea37
Implemented branding title prefix customization ( #5344 )
2019-06-07 17:06:00 +01:00
Michael Bunsen
b06cb6a6eb
ImageRenditionField returns a relative URL
...
The example in the docs shows an absolute URL with the site's hostname, but the ImageRenditionField returns a relative URL.
Relevant source here: https://github.com/wagtail/wagtail/blob/master/wagtail/images/api/fields.py
2019-05-17 16:44:32 -07:00
scil
1e55b98af0
Update performance.rst
2019-05-01 12:58:22 +01:00
LB Johnston
8407245207
Add Third Party Tutorials & Links
...
- Revise grammar for Learn Wagtail link
- Add articles from Timonweb blog
- Add Youtube link for Google Cloud Platform
- Add blog from Jelastic (PaaS) deployment
- Add Mozilla guide for end users (really well laid out and reasonably generic)
2019-04-25 17:24:46 +01:00
Thibaud Colas
b7f53ef276
Fix typo in rewrite handlers example code ( #5253 )
2019-04-24 21:10:12 +01:00
Matt Westcott
12f7ee2f1a
Deprecation note for #5184
2019-04-08 16:35:58 +01:00
Andy Chosak
d7bad06fe8
Add documentation of rewrite handlers
2019-04-08 14:31:55 +01:00
Md. Arifin Ibne Matin
2b2c71a4d9
Support additional custom handler for links in Rich text editor. ( #5159 )
2019-04-03 20:50:39 +01:00
Matt Westcott
3c44037b2f
Fix warnings on building documentation ( #5145 )
...
* Fix "Duplicate explicit target name" warnings on extending_draftail.rst
ref: https://github.com/sphinx-doc/sphinx/issues/3921
* Fix 'Unknown target name' warning on third_party_tutorials.rst
* Add docstrings to Page.get_ancestors, get_descendants and get_siblings
Documents the `inclusive` flag and avoids the "Field list ends without a blank line; unexpected unindent" warning when building docs
2019-03-15 02:03:56 +01:00
Md. Arifin Ibne Matin
edfd9afc1d
Add more built-in rich text formats ( #5141 )
2019-03-15 01:39:18 +01:00
Mani
87bbc31d88
Add a setting to apply limit on number of tags that can be added to any tagged model.
2019-03-10 20:48:33 +10:00
Matt Westcott
3fe442ff4d
Add Learn Wagtail to third-party tutorials
2019-03-10 15:57:52 +10:00
Evan Winter
5a34090b4b
Fix typo in api/v2/usage.rst
...
first_publised_at --> first_published_at
2019-03-06 01:19:07 +00:00
tomedelliott
f5654981c8
Add limit image upload size by number of pixels ( #5097 )
...
* Add test for Image pixel size
* add pixel size check and update test to match
using djangos get_image_dimensions this maybe a internal function
but the commit adding it is over 9 years old
* Update docs and CHANGELOG
* fix typos
2019-02-23 14:13:00 +00:00
DanAtShenTech
e6e9fd09e2
Highlight "create" and "edit" forms ( #5081 )
2019-02-19 10:53:29 +00:00
Matt Westcott
087434f348
Update links to Draftail documentation
2019-02-14 23:24:30 +01:00
DanAtShenTech
f21e75e95d
Fix typo (missing plural)
2019-02-14 23:18:48 +01:00
DanAtShenTech
966ad8658d
Properly designate last_name field
2019-02-14 12:05:26 +00:00
pvetch
731b8fc9b4
Update third_party_tutorials.rst ( #5057 )
...
This content seemed moribund so have added some newer material and checked that the original links still work. There are probably lots of other newer examples that could be added (it might be worth weeding out some of the older content at this point too).
2019-02-08 17:06:01 +00:00
Matt Westcott
30f6a590b4
Documentation on rich text internals ( #4927 )
2018-11-29 16:36:09 +00:00
Sergey Fedoseev
e8c88d44af
Fixed reference to LoginView in docs. ( #4901 )
2018-11-15 11:13:00 +00:00
Alex Gleason
08ea980410
Fix missing comma in Draftail docs code
2018-11-14 17:11:49 -05:00
Sergey Fedoseev
47465197a9
Use intersphinx for Django references when possible. ( #4896 )
2018-11-14 11:48:32 +00:00
Yannick Chabbert
515aa61943
Add template tag for dynamic image url
...
Update documentation
Co-Authored-By: zerolab <dan@zerolab.org>
2018-10-28 16:21:46 +03:00
Matt Westcott
183b626dc3
Eliminate {% load staticfiles %}
and {% load admin_static %}
...
These are removed in Django 3.0 in favour of `{% load static %}`
2018-10-27 09:40:42 +02:00
Matt Westcott
c2a351fee1
Clarify that the default languages list is the ones with >=90% coverage
2018-10-25 12:20:59 +01:00
Janneke Janssen
52a224ca64
Fixes reference to the wagtailsearch section
2018-10-23 15:51:14 +02:00
Matt Westcott
9afcd1a8be
Remove notes about URL confs for Django<2.0
2018-10-18 11:25:12 +01:00
Meteor0id
088d3ffc21
missing quotation, not that it matters
...
award of smallest contribution of the year goes to..
2018-09-13 13:00:57 +01:00
Michael Harrison
8ef0edb371
Add file download url to Imagesv2 API endpoint
2018-09-06 17:12:02 +01:00
Matt Westcott
2947c584b0
Recommend the use of ManifestStaticFilesStorage. Fixes #3700
2018-09-04 12:56:11 +01:00
Meteor0id
cb8fe063bb
depriciate url() for alias re_path()
2018-08-18 11:33:12 +02:00
Meteor0id
cb75effd11
url() is depriciated. Alias re_path()
...
Added important note about using url() on older versions of django, but switched the examples to re_path as to comply with Django docs for 2.0 and later.
2018-08-18 11:32:39 +02:00
Martey Dodoo
1247565d3d
Add warning about unregistering image formats.
...
Add warning to documentation to warn that unregistering image formats
that are being used will create an error when viewing or editing pages.
See https://groups.google.com/forum/#!topic/wagtail/X8xTUs-2npA and
https://github.com/wagtail/wagtail/issues/1471#issuecomment-118436706 .
2018-08-16 10:52:51 +01:00
Matt Westcott
939e031760
Fix passwordless user creation tests for Django 2.1 and clarify WAGTAILUSERS_PASSWORD_REQUIRED docs
...
The behaviour of `has_usable_password` has changed in Django 2.1, such that `None` is no longer considered a 'non-usable' password: https://docs.djangoproject.com/en/2.1/ref/contrib/auth/#django.contrib.auth.models.User.has_usable_password
As a consequence of the fix applied in Django https://code.djangoproject.com/ticket/28718 , Wagtail users created without a password will now be able to complete the password reset process to gain access to Wagtail. Sites that do not want this behaviour (e.g. because those users should be using an LDAP login instead) should disable password changes via WAGTAIL_PASSWORD_MANAGEMENT_ENABLED and WAGTAIL_PASSWORD_RESET_ENABLED.
2018-08-09 00:34:38 +01:00
Matt Westcott
48b5740d03
Merge branch 'docs-divio-cloud' of https://github.com/evildmp/wagtail into evildmp-docs-divio-cloud
2018-06-18 15:45:38 +01:00
ed@sharpertool.com
4539ced8cc
Added documentation for new JS/CSS media files association with Draftail feature definitions ( #4627 )
...
Add more documentation for #4568
2018-06-17 00:13:38 +03:00
Daniele Procida
b1db6c5882
Added Divio Cloud notes to documentation
2018-06-16 15:51:06 -04:00
Matt Westcott
c3dc86c0e5
Add full documentation for WAGTAILADMIN_RICH_TEXT_EDITORS. Fixes #4555
2018-06-10 12:45:48 +10:00
Matt Westcott
b629563fb3
Remove reference to WAGTAILIMAGES_BACKENDS
2018-06-10 12:45:48 +10:00
LB
740bbb6c39
fix typos
2018-06-10 12:45:48 +10:00
LB
c886d1ab4f
add missing settings
2018-06-10 12:45:48 +10:00
LB
8d2ee74be0
add reference anchors
2018-06-10 12:45:48 +10:00
Matt Westcott
6f92f9a23a
Add default_features step to strikethrough example
2018-06-07 11:48:55 +01:00
Matt Westcott
607f2ec067
Allow specifying js/css imports against Draftail features
2018-05-31 17:13:33 +01:00
Alex Gleason
1c7e90c3ee
Change wagtailimages.Image on_delete CASCADE to SET_NULL in docs
2018-05-18 14:51:50 +01:00
Victor Miti
c38b172793
updated Django Docs Links to point to *docs.djangoproject.com/en/stable/*
2018-05-18 14:43:42 +01:00
Matt Westcott
2c8d7371b4
Remove frontend search view
2018-05-18 11:43:28 +01:00
Matt Westcott
3fc9ed5119
Remove old versionadded/versionchanged notes
2018-05-18 11:43:28 +01:00
Matt Westcott
fc46f12939
AWS_S3_FILE_OVERWRITE must be False, not True
2018-05-15 19:42:03 +01:00
Matt Westcott
5ce14841d8
Remove ancient versionchanged notes
2018-05-15 14:54:41 +01:00
Kees Hink
0b3c20556d
Docs: How to create test fixtures for custom Page models
2018-05-15 14:50:24 +01:00