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

6330 Commits

Author SHA1 Message Date
Tim Heap
80ad8ffc94 Do not get message classes from MESSAGE_TAGS
If the developer had overridden MESSAGE_TAGS in their site, Wagtail
messages used these classes in the admin. This caused the messages to
lose their styles.

Wagtail now ignores the MESSAGE_TAGS setting, using the default classes
defined in `django.contrib.messages.constants.LEVEL_TAGS`.

Fixes #2551
2016-05-03 11:42:26 +01:00
kapito
7de9b51f6f Prevent spinner from spinning on required form entry 2016-05-03 00:03:38 +01:00
Matt Westcott
b39ff4a134 add note about Wagtail <=1.4 syntax for search_fields 2016-05-02 18:42:21 +01:00
Mikalai Radchuk
020279a8a6 Improves tests for wagtailforms (#2546) 2016-04-30 12:02:28 +01:00
Matt Westcott
b52ac6a1ea Test for choose_parent view with non-superuser 2016-04-29 17:14:51 +01:00
Karl Hobley
5eef0f0a24 Mention that ImageMagick must be installed in "Animated GIF support"
Fixes #2505. Thanks to Frank Wiles and @ghostwords for spotting
2016-04-29 16:23:27 +01:00
Matt Westcott
1de152c145 Release note for #2499 2016-04-28 16:24:08 +01:00
Robert Rollins
bd8aedbc71 Updated Page.dummy_request() to be able to handle ALLOWED_HOSTS = ['*']. 2016-04-28 15:50:57 +01:00
Matt Westcott
220dfb631d Tests for Page.dummy_request, including failing test for #2499 2016-04-28 15:50:57 +01:00
Matt Westcott
83d872b3a3 Release note for #2501 2016-04-28 15:22:10 +01:00
Jason Morrison
35c283fa2d Check before unregistering Group model admin
Fixes exception:
    django.contrib.admin.sites.NotRegistered: The model Group is not registered
2016-04-28 15:17:39 +01:00
Matt Westcott
139c8a1e76 Release note for #2495 2016-04-28 14:56:07 +01:00
Nick Smith
9ad6c82d03 #2281 add tests, and refactor redirects, to handle duplicates with query strings 2016-04-28 14:50:55 +01:00
Nick Smith
a318c5ba79 #2281 fix issue when multiple redirects are returned for a path 2016-04-28 14:50:55 +01:00
Matt Westcott
26f4b4868d Release note for #2526 2016-04-28 13:13:13 +01:00
Matt Westcott
9a60287e18 Add a disableDirtyFormCheck function so we're not relying on sharing variables between scripts 2016-04-28 13:08:27 +01:00
kapito
e59210ba39 Fix keyboard shortcuts such as Ctrl+S giving unnecessary warning 2016-04-28 11:55:34 +01:00
Matt Westcott
518abc2673 changelog entry for #2517 should be in 1.4.4 2016-04-28 11:45:41 +01:00
Robert Rollins
7523d7f57f Removed all uses of STATIC_URL from code samples, replaced with static().
Concatinating with settings.STATIC_URL is no longer reccomended for creating
URLs to static resources, because it doesn't take the configured storage engine
into account. For example, a site using S3 to store its static files will need
static URLs that link out to S3, rather than relative URLs within the same
domain.

I replaced it with django.contrib.staticfiles.templatetags.staticfiles.static()
in python example code, and the {% static %} tag in template examples.
2016-04-28 10:57:22 +01:00
Robert Rollins
11793f88c5 Changed indentation on all code samples to 4 spaces.
Most of the samples were already 4-space indented, but a few were using 2-space,
which is both inconsistent and, when it happened with Python code samples,
incompatible with PEP8.
2016-04-28 10:57:22 +01:00
Robert Rollins
1a9caccdcd The "code-block:: json" tag doesn't work for full HTML response text.
You get a lexer error from the document builder if you use "code-block:: json",
and the json-style highlighting ends up not being applied. So I switched it to
"code-block:: text".
2016-04-28 10:57:22 +01:00
Matt Westcott
91e81d6bc0 Upgrade consideration note for #2524 2016-04-28 10:52:10 +01:00
Josh Barr
2c69a720c1 added button classes to styleguide 2016-04-28 10:32:10 +01:00
Josh Barr
0ea84b9d18 additional button styles 2016-04-28 10:25:05 +01:00
Josh Barr
cc7a936cd5 added button classes to inputs 2016-04-28 10:25:05 +01:00
Vincent Audebert
ab53b1817f Fixing #2520
Switching explorer from position absolute to position fixed.
I did it in a pure CSS way but it would be good to be able to modify jquery.dlmenu.js line 213 to avoid it adding automatically a CSS property top on the element.
2016-04-27 22:05:17 +01:00
Mikalai Radchuk
dd19ca4051 Marks string "delete" for translation 2016-04-27 17:07:15 +03:00
Mikalai Radchuk
574ad34b16 Fix minor typo in comment
Fix minor typo in comment for `wagtail.wagtailforms.models.AbstractForm`
2016-04-27 15:13:06 +03:00
kapito
eecec1b7ce Add global declaration to $prop assignment. 2016-04-27 10:39:40 +01:00
Matt Westcott
83bfaf14a8 failing test for #2511 for document uploader
Make collection field on document chooser upload respect user permissions

failing test for #2511 for image uploader

Make collection field on image chooser upload respect user permissions
2016-04-26 19:45:01 +03:00
Mikalai Radchuk
b7995f91e0 Useless return (#2521) 2016-04-26 17:24:40 +01:00
Vincent Audebert
a3d36a122c Fixing #2393, replacing rem with em 2016-04-26 17:47:14 +12:00
Matt Westcott
544c871b80 Release note for #2420 2016-04-25 23:45:52 +01:00
Tim Heap
1b278e3df2 Ensure generic forms allow file uploads 2016-04-25 23:44:18 +01:00
Tim Heap
852e2b87e8 Ensure image forms allow file uploads 2016-04-25 23:44:18 +01:00
Tim Heap
6f2099fb16 Ensure document forms allow file uploads 2016-04-25 23:44:18 +01:00
Tim Heap
9c670c646b Ensure snippet forms allow file uploads 2016-04-25 23:44:18 +01:00
Tim Heap
44198daaf6 Ensure setting forms allow file uploads 2016-04-25 23:44:17 +01:00
Andrew T. Baker
228088d33d Add WAGTAIL_APPEND_SLASH setting 2016-04-25 23:12:57 +01:00
nfletton
03e247396b Display the details of server errors when they occur in the multi-image uploader 2016-04-25 22:18:58 +01:00
Roel Bruggink
ac59fc814c Improve L10N and I18N for revisions list. 2016-04-25 21:52:05 +01:00
Matt Westcott
f9947b2c08 Release note for #2489 2016-04-25 21:00:30 +01:00
Tomas Olander
4bb2bf2bbd Don't import dev in project template settings
Developer settings were always imported whenever any portion of the
project template settings package itself was imported. Using production
settings would result in __init__.py importing the dev settings first,
*then* overriding those with the production settings.

This lead to somewhat counter-intuitive behaviour - dev settings that
weren't explicitly set again in production would tag along to prod.

To fix this, the project template settings package no longer imports
dev, and settings.dev is explicitly used in both manage.py and wsgi.py.
2016-04-25 20:39:16 +01:00
Matt Westcott
d2f087f092 Remove useless get_indexed_objects method from TagSearchable (#2498)
Indexing the tags of TagSearchable subclasses (such as wagtailimages.Image) is done by following
the model's 'tags' relation, and wagtailsearch is smart enough to prefetch that automatically
(as the test demonstrates). Prefetching 'tagged_items__tag' just adds two useless queries :-)
2016-04-23 13:22:48 +01:00
Matt Westcott
73e1961f96 Shorten code for retrieving button title 2016-04-22 17:24:23 +01:00
Matt Westcott
c35c1f360a Release note for #2439 2016-04-22 17:22:40 +01:00
Liam Brenner
ca19cd4a8a Added a title to 'add child page', added translations 2016-04-22 17:06:09 +01:00
Liam Brenner
da3d3c8585 Added title to menu dropdown button 2016-04-22 17:05:31 +01:00
Liam Brenner
d5bbc8d687 Added titles to action buttons, made them display in the dropdown menu 2016-04-22 17:05:31 +01:00
Liam Brenner
0b212200f4 Add title to draft button 2016-04-22 17:04:53 +01:00