Wykres commitów

6398 Commity (07c3ba84fbfcb1f5bf305e47bc6c8f9dbbbe291e)

Autor SHA1 Wiadomość Data
Matt Westcott 07c3ba84fb Avoid referring to block.field.required, as per https://github.com/torchbox/wagtail/pull/2663/files#r71692451 2016-07-21 13:42:29 +01:00
Matt Westcott 5b2311e1e0 Add test for presence of 'required' class 2016-07-21 13:25:46 +01:00
riceyrice 4a2a1cee5f Add colon after block labels to correspond with colon after field labels 2016-07-21 13:19:08 +01:00
riceyrice d0288de2f8 Add asterisk after required blocks in StreamField 2016-07-21 13:02:47 +01:00
Matt Westcott c51177a0fa Release notes for #2858 / #2859 2016-07-21 12:03:53 +01:00
Matt Westcott 71cf921407 Prevent double-escaping of rich text blocks on Jinja2
Fixes #2542. Thanks to @aaugustin for the bug report and patch.
2016-07-21 11:58:08 +01:00
Matt Westcott 6d6da5c1a9 Prevent double-escaping of block template output on Jinja2 - fixes #2541
Thanks to @aaugustin for the report and detailed analysis of the problem!
2016-07-21 11:57:49 +01:00
Matt Westcott 7b9399019b Give Jinja2 templates their own location in testapp
The Jinja2 template config here isn't currently used at all - having
the same APP_DIRS / DIRS config as the Django template engine (which
has higher precedence) means that it will never be selected for
rendering templates, and the existing jinja2 tests bypass Django's
template engine selection and call the jinja2 engine directly.

By giving jinja2 templates their own dedicated location, we can reliably
control which engine is used for which templates.
2016-07-21 11:57:49 +01:00
Matt Westcott 832646eb25 Make WAGTAIL_ROOT point to the actual Wagtail root...
Ever since the test settings got their own file, this has pointed to
the 'tests' folder instead. Luckily this had no ill effects, since
it's only used as the base for the temporary STATIC_ROOT / MEDIA_ROOT
folders.
2016-07-21 11:57:49 +01:00
Chris Darko bd226fcedf Fix use of Page instead of specific_class
Uses specific_class.url instead of Page.url for getting the 'view_live' URL
in the success message following Page publication.
2016-07-21 11:55:10 +01:00
Karl Hobley 23ee8c923b [Elasticsearch 2] Rewrote update_index command to support rebuilding multiple indices in the same backend (#2570)
* Added get_index_for_model method to Elasticsearch

* Rewrote update_index command to support rebuilding multiple indices
2016-07-20 14:31:42 +01:00
Karl Hobley 3f457f853a [Elasticsearch 2] Renamed search backend classes (#2569)
* Renamed search backend classes

* DBSearch => DatabaseSearch

* ElasticSearchBackend => ElasticsearchSearchBackend

This probably looks a little funny. I need to inject the number 2 into this name somewhere for the Elasticsearch 2 backend. I think Elasticsearch2SearchBackend is the best name so need rename the current backend for consistency.

* Deprecation warning for referencing renamed backend in settings
2016-07-20 10:54:29 +01:00
Tom Dyson 703c9984c6 Make /admin a link in the Getting Started tutorial 2016-07-20 09:41:03 +01:00
Tom Dyson 32f7ed8ac1 wagtail->Wagtail in `wagtail start` output (#2856) 2016-07-20 01:08:12 +01:00
Gagaro 16c279d705 fix: #1735 Unable to use models with a StreamField inside Inline Panels 2016-07-19 19:32:16 +01:00
Matt Westcott 7d8c7ec758 Add 'issue tracking' docs (#2794) 2016-07-19 16:17:54 +01:00
Karl Hobley e592cbf65c Implement support for ordering and searching at the same time over the API (#2732)
When the API was originally created, this was not possible to do with Wagtail search. So I added a check to prevent people from doing it.

Custom ordering was implemented in Wagtailsearch in #1815 so this can now be switched on.
2016-07-19 16:09:41 +01:00
Matt Westcott e3483a8bd3 Add 'download' attribute to document download links (#2808)
Partially fixes #2513 - Firefox and Chrome (and hopefully Edge >=13) do not trigger
onbeforeunload events when following these links. Safari and IE don't currently
support it, though.
2016-07-19 16:05:46 +01:00
Karl Hobley d9a3d5200f Django 1.11: Added ALLOWED_HOSTS to a few tests (#2853)
ALLOWED_HOSTS is now required in tests. See: 17e661641d
2016-07-19 15:26:26 +01:00
Karl Hobley 290c786c02 rollback to Drone 0.4
Should solve the reliability issues
2016-07-19 15:20:29 +01:00
Matt Westcott f5cc8a3f2a Remove dubious GroupForm test that fails on Django 1.10rc1 (#2854)
test_group_form_includes_non_registered_permissions_in_initial_data fails in
Django 1.10rc1 because the native value of a ManyToManyField (as reflected in
form.initial) is now a queryset rather than a list of PKs. However, this test
is not actually testing anything meaningful. It asserts that the initial
value of the 'permissions' field includes any permissions the group has which
are not included in registered_permissions; however, since these permissions
don't appear in the form, it's inconsequential whether they're included or not.
2016-07-19 15:12:57 +01:00
Karl Hobley ef56a3ebcb Fixed search tests (#2850)
A test was mutating the search_fields attribute of the SearchTest model causing subsequent tests that depended on the previous value to fail.
2016-07-19 13:24:32 +01:00
Matt Westcott 15ef4fcca7 Revert "Elasticsearch: Replaced usage of index_analyzer (#2568)"
This reverts commit d14150eb43.
2016-07-19 12:12:48 +01:00
Matt Westcott 0714cddd54 Release note for #2848 2016-07-19 10:45:19 +01:00
Danielle Madeley e128921cfb Support https links for Flickr (#2848) 2016-07-19 10:37:16 +01:00
Matt Westcott d3bdd64cc5 Add release notes for 1.5.3
Conflicts:
	CHANGELOG.txt
	docs/releases/index.rst
2016-07-18 19:15:27 +01:00
Matt Westcott 0308795490 Add release notes for 1.4.6
Conflicts:
	CHANGELOG.txt
	docs/releases/index.rst
2016-07-18 19:14:28 +01:00
Mikalai Radchuk f03980e34b Fixes typo in wagtailadmin/block_forms/stream.html (#2847)
Thank @dburakov for the report!
2016-07-18 14:53:57 +01:00
Nik Nyby 389317c104 docs: fix typo (#2845) 2016-07-15 21:58:47 +03:00
Liam Brenner 4d77589f86 Pin html5lib to 0.999999 2016-07-15 14:41:54 +01:00
Karl Hobley d14150eb43 Elasticsearch: Replaced usage of index_analyzer (#2568)
index_analyzer has been removed in Elasticsearch 2.0. But the new way works in older versions as well so I think it's worth switching to the new way now.

https://www.elastic.co/guide/en/elasticsearch/reference/current/breaking_20_mapping_changes.html#_analyzer_mappings
2016-07-14 10:50:10 +03:00
Karl Hobley 89191934fa Validate search fields argument (#2567) 2016-07-14 10:44:29 +03:00
Karl Hobley 2f8d00222d Initial work on the Admin API (#2507) 2016-07-13 13:26:43 +03:00
Matt Westcott bdd80dd33e Fix styling of email fields in AbstractEmailForm example (#2821)
classname="full" is incorrect here (it generates excessive padding); also, using a FieldRowPanel
can make the display neater.
2016-07-08 16:47:54 +03:00
Matt Westcott cca1ab4089 Eliminate Django 2.0 deprecation warnings for on_delete, is_anonymous, is_authenticated (#2829)
* Add on_delete kwarg to foreign keys that are missing it

* Add compat functions for user.is_anonymous and user.is_authenticated
2016-07-08 16:33:16 +03:00
Mikalai Radchuk 07ac5aa8ee Release notes for #2830 2016-07-08 16:15:19 +03:00
Matt Westcott 64aac99d97 Add back buttons to page delete / unpublish confirmation pages
Fixes #2213
2016-07-08 16:11:30 +03:00
Matt Westcott be1e1927c5 Promote include_block and unicode page slugs to major features 2016-07-07 11:20:43 +01:00
Robert Rollins cbabc3d9c7 Page.dummy_request() now takes an optional request object argument.
When building a dummy request, you can now pass in the original request object
to add additional information to the dummy. Currently, that includes the
following headers:
REMOTE_ADDR
HTTP_X_FORWARDED_FOR
HTTP_COOKIE
HTTP_USER_AGENT

More may be added later.

This changes ensures that middleware which work on the client IP aren't flumuxed
by its absense, and also makes it possible for previews to be rendered as the
logged in user (they had previously been rendered using an AnnonymousUser).

Because the user's logged in state is now detectable in a Page previews, the
Wagtail userbar now hides itself explicitly during previews, rather than relying
on the fact that previews used to be built with AnonymousUser.
2016-07-06 20:28:05 +01:00
Vincent Audebert 14919f3b41 Possibility to delete a user #2371
As mentioned in the comments I didn't see the first pull request (https://github.com/torchbox/wagtail/pull/2509)
However, I think my changes were a tiny bit more complete in terms of UI/UX. I allow to delete a user directly from the user list + you can delete any user if you are superuser, except yourself. This way we are sure to keep at least one superuser but we can still delete superusers.
I added some tests from this PR to my code and also added the permission denied on the delete page.
2016-07-06 17:05:17 +01:00
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