Wykres commitów

5222 Commity (69e277e5f50c1f8206bc593e5057abe1cfe12a40)

Autor SHA1 Wiadomość Data
Karl Hobley 7224768550 Merge pull request #1689 from takeflight/python3.5
Add Python 3.5 support
2015-09-16 08:52:07 +01:00
Tim Heap 17daa4112b Add Python 3.5 to tox.ini, travis.yml 2015-09-16 14:18:53 +10:00
Maximilian Stauss 5a4ad20597 updated settings so that there is no decrepation warning
TEMPLATE_DEBUG is now an Option of every template
referenced in
https://docs.djangoproject.com/en/1.8/ref/settings/#template-debug
2015-09-15 16:04:36 -04:00
Karl Hobley f79c108582 Merge pull request #1683 from takeflight/remove-meta-description
Remove uses of Model._meta.description
2015-09-15 16:34:57 +01:00
Matt Westcott 57d37b1154 prepare for 1.1 release
Conflicts:
	CHANGELOG.txt
	wagtail/wagtailcore/__init__.py
2015-09-15 12:45:54 +01:00
Karl Hobley a522e75e25 Moved Django REST Framework support release note into major new features 2015-09-15 12:00:18 +01:00
Karl Hobley c562fc3275 Merge pull request #1681 from gasman/fix/bug-1673
Prevent ContentType db lookup on app load - fixes #1673
2015-09-15 09:47:07 +01:00
Tim Heap fff4568df7 Remove uses of Model._meta.description
Due to harsher restrictions on model Meta attributes in Django 1.6, it
is no longer possible to add a description attribute. This commit
removes any code in Wagtail that still tried to rely on a description
attribute.
2015-09-15 18:36:45 +10:00
Tim Heap 9a81d58bfb Refactor out a bare except: statement
It now catches `Redirect.DoesNotExist`, returning the normal 404 page if
no redirect is found. Any other exception should not be caught here.
2015-09-15 12:03:46 +10:00
Matt Westcott 38e939b5a8 Merge pull request #1676 from nimasmi/page-ordering-docs
Document ineffectiveness of specifying `Page._meta.ordering`
2015-09-14 20:26:52 +01:00
Matt Westcott 43989e7f8c Make target_content_types into a cached property - fixes #1673 2015-09-14 15:48:50 +01:00
Michael Cordover a506d7adf0 Fix issue #1678
Add tests for URLs containing paramters.

Keep parameters in wagtailredirect.models.Redirect.normalise_url() like we do query strings: sorted alphabetically but otherwise must be identical
2015-09-14 20:32:08 +10:00
Nick Smith db14a1dcf4 Document ineffectiveness of specifying `Page._meta.ordering` 2015-09-11 16:40:23 +01:00
Matt Westcott 799d0dd3ff Version bump master to 1.2a1 2015-09-09 15:24:47 +01:00
Matt Westcott 9ea7cd9f99 Release note for #1620 2015-09-09 15:23:29 +01:00
Matt Westcott 24f5b78588 Merge pull request #1620 from gasman/fix/page-permission-formset-cleanup
Fix behaviour of page permission formset on groups admin
2015-09-09 15:18:47 +01:00
Matt Westcott 755f991627 fix jscs warning 2015-09-09 15:00:05 +01:00
Matt Westcott 7768d57d2f Move JS code shared between add group/delete group views into an include 2015-09-09 12:19:43 +01:00
Matt Westcott 1c4a34b9c8 Refactor page permission formset on group add page to not rely on edit-handler logic 2015-09-09 12:19:43 +01:00
Matt Westcott d180116ea0 Refactor page permission formset on group edit page to not rely on edit-handler logic 2015-09-09 12:19:43 +01:00
Matt Westcott b4f975470d Rename the 'form' block to 'visible_fields' for consistency (and accuracy) 2015-09-08 18:11:11 +01:00
Matt Westcott e9e0b135c8 Provide a default form rendering in generic add/edit views that loops over hidden_fields and visible_fields
This means that the wagtailsites templates doesn't have to override the 'form' block.
2015-09-08 17:56:37 +01:00
Matt Westcott 9efa3af564 Chooser widgets should be considered is_hidden=False 2015-09-08 17:50:26 +01:00
Matt Westcott 73dee9898c Bump version to 1.1rc1 2015-09-04 14:52:57 +01:00
Matt Westcott c5f72e1ce7 Merge branch 'kaedroho-quick-fix-1665' 2015-09-04 14:50:19 +01:00
Matt Westcott 5ecc69c7a0 Release note for #1666 2015-09-04 14:50:04 +01:00
Matt Westcott 07e37af3eb Assert that an error message is present 2015-09-04 14:48:51 +01:00
Matt Westcott 2d90d0dbf2 Merge branch 'quick-fix-1665' of https://github.com/kaedroho/wagtail into kaedroho-quick-fix-1665 2015-09-04 14:36:08 +01:00
Matt Westcott d113390ab4 failing test for #1665 2015-09-04 14:35:43 +01:00
Matt Westcott dc655192fe Release notes for new translations 2015-09-04 14:21:55 +01:00
Karl Hobley 04dcc6984c Add error_messages attribute to UserCreationForm
Fixes #1665
2015-09-04 14:19:11 +01:00
Matt Westcott d64111f689 Pull new translations from Transifex 2015-09-04 13:54:06 +01:00
Matt Westcott 335d3650cf Merge branch 'takeflight-refactor/is_abstract' 2015-09-04 12:42:46 +01:00
Matt Westcott c17c7b1b87 Release note and upgrade consideration for #1631 2015-09-04 12:42:36 +01:00
Matt Westcott c3beacacf0 Test that the deprecated is_abstract=True flag is equivalent to is_creatable=False 2015-09-04 12:19:50 +01:00
Tim Heap e87cecdcaf Add deprecated is_abstract support for backwards compatibility
It raises a RemovedInWagtail13Warning when used, and is only checked if
`is_creatable` is not present.
2015-09-04 10:01:14 +10:00
Tim Heap 5df60caef3 Rename `is_abstract` to `is_creatable`
`is_creatable` better reflects what it is used for, and stops any
confusion between Wagtail's `is_abstract` and Django's `Meta.abstract`.

`is_creatable` takes in to account `Meta.abstract` now, so developers
will no longer need to set both `is_abstract` and `Meta.abstract`.

Documentation for the new attribute has been added, as well as tests.
2015-09-04 09:59:01 +10:00
Matt Westcott ca81f1cc99 Merge branch 'davecranwell-streamfield-tab-design' 2015-09-03 17:05:15 +01:00
Matt Westcott 87e4864729 Release note for #1445 2015-09-03 17:05:03 +01:00
Matt Westcott 80e919907b Merge branch 'streamfield-tab-design' of https://github.com/davecranwell/wagtail into davecranwell-streamfield-tab-design 2015-09-03 17:00:35 +01:00
Matt Westcott e2ecac51b9 Merge branch 'kaedroho-redirects-fixes' 2015-09-03 16:30:26 +01:00
Matt Westcott e5a5761d5a Release note for #1475 2015-09-03 16:30:18 +01:00
Matt Westcott a603961134 Merge branch 'redirects-fixes' of https://github.com/kaedroho/wagtail into kaedroho-redirects-fixes 2015-09-03 16:22:45 +01:00
Matt Westcott 5fa6371fa1 Release note for #1660 2015-09-03 15:30:36 +01:00
Matt Westcott fb559c0cea Merge branch 'kaedroho-fix-1418' 2015-09-03 15:20:35 +01:00
Matt Westcott 6422eb197c Merge branch 'fix-1418' of https://github.com/kaedroho/wagtail into kaedroho-fix-1418 2015-09-03 15:08:00 +01:00
Matt Westcott be869e54c6 Merge pull request #1663 from gasman/takeflight-bug/tagged-snippets
Add tests for and update documentation for tagged snippets (update of #1624)
2015-09-03 13:01:23 +01:00
Matt Westcott e2e933a785 test that tags on saved snippets are not an empty list 2015-09-03 12:38:46 +01:00
Matt Westcott cb0b9b7f0e Renumber test migration 2015-09-03 12:31:45 +01:00
Matt Westcott e60e57016e Merge branch 'bug/tagged-snippets' of https://github.com/takeflight/wagtail into takeflight-bug/tagged-snippets
Conflicts:
	docs/topics/snippets.rst
2015-09-03 12:18:25 +01:00