Wykres commitów

6358 Commity (0b29ba80db78f6379de830027a5bba7e28a94155)

Autor SHA1 Wiadomość Data
Mikalai Radchuk 0b29ba80db Makes notes for settings module more visible (#2826) 2016-07-06 19:01:09 +03:00
Mikalai Radchuk b79069b247 Release notes for #2786 2016-07-06 17:44:57 +03:00
Matt Westcott dbc4c9b28e Adds the include_block template tag (#2786)
Update render and render_basic methods on Block to take a context kwarg

Update TableBlock to support passing extra context to render

Implement render_as_block on BoundBlock, StreamValue and StructValue.

Collectively, these are the objects encountered during template rendering which typically render
a block template when output inside {{ ... }} tags. Implementing render_as_block allows us to do
the same thing, but passing a template context as well.

Implement include_block tag

Support extra context vars on include_block via 'with foo=bar'

Support 'only' flag on include_block tag, to omit the parent context

Update StreamField documentation to cover the include_block tag

Rewrite 'BoundBlocks and values' docs based on the include_block tag

Add tests for blocks with legacy render / render_basic methods

Any bits of StreamField infrastructure that attempt to call render or render_basic
on a block with a 'context' kwarg, should (for now) also work on blocks that don't
accept the context kwarg, but output a RemovedInWagtail18Warning.

Explicitly test whether render / render_basic will accept a 'context' kwarg

This avoids unexpected behaviour when the method legitimately accepts a context
kwarg, but happens to throw an unrelated TypeError - in this situation, the final
output (or error diagnostics) will behave as if the context was never passed,
making debugging difficult. See https://github.com/torchbox/wagtail/pull/2786#discussion_r69563984
2016-07-06 17:44:02 +03:00
Karl Hobley 098433a724 Restructure API v2 module (as per RFC 8) (#2649)
* Moved api/apps.py into api/v2/apps.py

You now must add ``wagtail.api.v2`` instead of ``wagtail.api`` into ``INSTALLED_APPS``

* Restructure API v2 module

Images and documents endpoints are now defined in their respective apps
2016-07-06 15:57:09 +03:00
Karl Hobley 60003da430 Fix typos in 1.3 release notes 2016-07-05 15:00:32 +01:00
Matt Westcott 2b04ff9ba7 update JadeFormPage migration with new help text 2016-07-05 14:18:40 +01:00
Serafeim Papastefanos 16953c79f3 Allow multiple, comma seperated email addresses...
to be used in the `to_address field` in the `AbstractEmailForm`.
2016-07-05 13:02:57 +01:00
Matt Westcott 9961455c6a Add formal support for customising the form rendering of StructBlocks
The `form_template` attribute was mentioned in passing in the docs, but was missing various things
to make it fully useful:

- context passed to form_template now includes 'prefix' and 'block_definition'
- context for the form is now populated in a separate overrideable `get_form_context` method
- full documentation and tests for form_template and get_form_context added
2016-07-05 11:48:09 +01:00
Janneke Janssen 9f72e12159 Inherit relevant border-radius from the parent 2016-07-04 21:34:12 +01:00
Janneke Janssen 9b6cdf41f4 Target the footer in the submenu to be absolute. Fixed throws collision with submenu transform 2016-07-04 21:24:08 +01:00
Josh Schneier 1dad100695 Add a check that the declared search_fields exist 2016-07-04 20:58:30 +01:00
Karl Hobley f1913bd748 Make sure the default search backend is always defined
It's common in Wagtail to want to quickly override the base search settings to disable Elasticsearch in specific environments (eg CI or running imports).

To do this, you have to manually write out Wagtail's default search configuration.

This commit changes the way the default configuration is loaded, it is now loaded whenever there is no "default" backend configured rather than only loading if the ``WAGTAILSEARCH_BACKENDS`` was not defined at all.

To override a parent settings file's search backends configuration, you can now just do:

WAGTAILSEARCH_BACKENDS = {}

And the defaults will be restored
2016-07-04 20:40:57 +01:00
Matt Westcott 4a1b103558 Make elasticsearch-specific tests from wagtailimages / wagtaildocs run under tox 2016-07-04 20:32:31 +01:00
Karl Hobley c38b2ace33 Fix tests that are checking issue #613
These tests haven't been run for a while due to a mistake in tox.ini. They are currently broken on master.

They broke because they require AUTO_UPDATE to be True for the Elasticsearch backend, but we recently disabled that to improve speed and reliability of the entire test suite. This commit adds a way for the tests that need AUTO_UPDATE to force it to be enabled on specific backends
2016-07-04 20:22:56 +01:00
Matt Westcott f014332a52 Add Thibaud Colas to contributors 2016-06-30 19:13:20 +01:00
Thibaud Colas 1abb917ab8 Fix URL under package version badge (#2806)
crate.io has been shut down and the domain repurposed/sold. See https://www.reddit.com/r/Python/comments/1wcp93/what_happened_to_crateio/
2016-06-30 19:12:02 +01:00
Mikalai Radchuk 520d34f6d8 Add Tim Graham to the contributors list 2016-06-29 13:02:09 +03:00
Matt Westcott 03d8e738de Disallow CI failures on Django 1.10
Also prune a few Django 1.8 test environments, as a first step to phasing out Dj1.8 support
2016-06-28 16:44:20 +01:00
Matt Westcott bdbc1b0c5b Release note for Django 1.10 compatibility 2016-06-28 16:34:46 +01:00
Paul J Stevens daf7dee0d4 update django requirement 2016-06-28 16:26:00 +01:00
Matt Westcott 5758b54f2e Support `error_messages` dict as argument to RegexBlock
The individual `error_message` kwarg on RegexField is deprecated in Django 1.8
(and removed in Django 1.10), so it's appropriate for RegexBlock to follow the
same convention.
2016-06-28 16:11:52 +01:00
Paul J Stevens ef05d37686 replace removed private API in favor of public API 2016-06-28 14:45:20 +01:00
Matt Westcott 810952cfc8 Add test for linked_objects being output when deletion is disallowed
Required as a prerequisite for making this code Django-1.10 compatible,
as per https://github.com/torchbox/wagtail/issues/2723#issuecomment-227241446
2016-06-28 14:43:26 +01:00
Paul J Stevens 865841eedf update test to handle django-1.10 change in FileField storage 2016-06-28 12:22:43 +01:00
Matt Westcott 3e38bab785 fix typo in Raphael Stolt's name 2016-06-27 18:27:46 +01:00
Matt Westcott bf912b2aa9 Add Raphael Stolz to contributors 2016-06-27 17:37:22 +01:00
Raphael Stolt 843088bc9b Use snippets translation (#2785) 2016-06-27 17:36:38 +01:00
Matt Westcott 64c7a6367a Document isort and 'make lint' in Python coding guidelines 2016-06-23 16:31:44 +01:00
Matt Westcott b85c340163 Move flake8 config to setup.cfg 2016-06-23 16:31:44 +01:00
Matt Westcott f2ec21b947 Run isort as part of 'make lint' 2016-06-23 16:31:44 +01:00
Paul J Stevens ee9f105810 Test for RegexURLPattern.callback on Django 1.10
Thanks Paul J Stevens for the initial patch, Tim Graham for review
and Matt Westcott for tweak of initial patch
2016-06-23 17:29:27 +03:00
Matt Westcott ac5f57f1ce Release note for #2737 2016-06-23 11:07:42 +01:00
Chris Rogers daf68f5e2e Added Wagtail version to settings menu 2016-06-23 11:05:51 +01:00
Robert Rollins 4244cc0dfa Fixes for a few typos and formatting issues in the Explorer's table headers. (#2764)
The bugfix here is the removal of the redundant </th> tags at the top. I noticed
these while writing the Page explorability PR.

The formatting issue was the use of double quotes for python string comparisons.
That messed up the template syntax highlighting, since double quotes were
already being used around the HTML attribute values.
2016-06-23 10:25:06 +01:00
OktayAltay 9358e3b611 Add new FloatBlock, DecimalBlock and a RegexBlock (#2737) 2016-06-23 10:14:28 +01:00
kakulukia 334bebc55c dont enforce HTML templates :( 2016-06-22 16:09:51 +01:00
Nick Smith 66a17e6b7d Upgrade BeautifulSoup→4.4.1 (#2772) 2016-06-22 11:07:17 +01:00
Matt Westcott e2c9c878de Add Paul J Stevens to contributors 2016-06-21 13:08:07 +01:00
Karl Hobley 97b1a3b897 Fix ability to set streamfield from string or list
For example:

    >>> page.body = '{"type": "text", "value": "foo"}'
    >>> type(page.body)
    StreamValue

Removing SubFieldBase broke this behaviour, requiring that the string is converted to a StreamValue before giving it to page.body. I initially thought that the new behaviour was the correct one (doing this convertion on set felt a little yuky), until I found a test which tests for the old behaviour: d8bceff38b/wagtail/wagtailcore/tests/test_streamfield.py (L124-L133).

So I guess it is wanted then. This commit reinstates that old behaviour borrowing some code from Django.
2016-06-21 13:04:34 +01:00
Karl Hobley 480aca681f Replaced SubFieldBase with Field.from_db_value. Fixes #2070 2016-06-21 13:04:33 +01:00
Vincent Audebert 921a510d9f Fixing webpack config for production mode.
We don't want inline source in prod. Optimising final bundle size a lot.
For dev mode, cheap-module-eval is faster than inline-source.
2016-06-21 12:36:39 +01:00
Mike Dingjan 33f53a6e78 Added __bool__ method for proper evaluating the RichText object value 2016-06-21 12:04:52 +01:00
Robert Rollins 6ae36c0baa Added __str__() to GroupPagePermissions.
It returns the same format as GroupCollectionPermissions.
2016-06-21 11:44:20 +01:00
Matt Westcott 87e9c63dbf Split remove_filter_model migration to prevent Postgres errors - fixes #2754 2016-06-21 10:35:26 +01:00
Matt Westcott ec55c5d73c Cleaner implementation of ChooserBlock.bulk_to_python 2016-06-21 10:30:19 +01:00
Mikalai Radchuk b54b2d837c Commands compatibility with Django 1.10 2016-06-21 10:21:41 +01:00
Matt Westcott a6f6661e26 flake8 fixes 2016-06-20 20:39:27 +01:00
ludolf_takens 19e3017de0 Fix broken test creating page with streamfield 2016-06-20 20:09:32 +01:00
Karl Hobley 980cc07ef0 Removed drone images
See .drone.yml and https://hub.docker.com/r/torchbox/scss-lint/
2016-06-20 15:57:30 +01:00
Karl Hobley 458d0af565 Update .drone.yml for Drone 0.5 (#2761) 2016-06-20 15:55:12 +01:00