Matt Westcott
|
9b93d7edd8
|
Add unit tests for wagtailforms backend
|
2014-05-07 17:33:13 +01:00 |
|
Matt Westcott
|
f68f9a0461
|
add tests for front-end form submission
|
2014-05-07 16:39:56 +01:00 |
|
Matt Westcott
|
738fa90e19
|
enforce permission restrictions on retrieving form submissions
|
2014-05-06 17:34:31 +01:00 |
|
Matt Westcott
|
d89f8711a7
|
add editable_pages method to UserPagePermissionsProxy
|
2014-05-06 16:55:49 +01:00 |
|
Matt Westcott
|
b56c726733
|
add migration for wagtailforms
|
2014-05-06 16:28:42 +01:00 |
|
Matt Westcott
|
dd087d0820
|
Remove ConcreteForm models from wagtailforms
|
2014-05-06 15:02:44 +01:00 |
|
Matt Westcott
|
82aa2ea4c5
|
Make to_address optional (so that the page author can decide whether or not to make use of the email functionality, without needing two versions of the template)
|
2014-05-06 14:44:41 +01:00 |
|
Matt Westcott
|
2f67c986eb
|
Give fields their own columns in the form data view
|
2014-05-06 12:45:24 +01:00 |
|
Matt Westcott
|
08f6713d96
|
Don't capture logged-in user in form submissions (not clear how useful it will be, and creates possible privacy issues where submissions are intended to be anonymous)
|
2014-05-06 12:31:56 +01:00 |
|
Matt Westcott
|
424f48b644
|
Refactor CSV output to display data columns in original order
|
2014-05-02 17:03:37 +01:00 |
|
Matt Westcott
|
af475d7566
|
Fix AbstractFormField to not lose the sort_order ordering
|
2014-05-02 16:23:36 +01:00 |
|
Matt Westcott
|
d344dc39a1
|
Cleanup of pagination_nav.html, including explaining what the url_to_use hack is really doing
|
2014-05-02 15:33:47 +01:00 |
|
Matt Westcott
|
aa0cb313e3
|
Handle form submissions from non-authenticated users correctly
|
2014-05-02 14:16:16 +01:00 |
|
Matt Westcott
|
529f14e221
|
Remove redundant content-type parameters from form builder admin URLs
|
2014-05-02 13:42:32 +01:00 |
|
Matt Westcott
|
83c309d09e
|
FormSubmission does not need a generic foreign key - just link back to Page
|
2014-05-02 13:28:56 +01:00 |
|
Matt Westcott
|
523f7911ca
|
Display form fields in email as one per line rather than comma-separated
|
2014-05-02 13:11:10 +01:00 |
|
Matt Westcott
|
5c94facfb3
|
AbstractFormFields / ConcreteFormFields should be renamed *FormField
|
2014-05-01 17:08:38 +01:00 |
|
Matt Westcott
|
e431b6d084
|
Add get_page_modes / show_as_mode methods to AbstractForm, to allow previewing both the form and the landing page
|
2014-05-01 16:22:44 +01:00 |
|
Matt Westcott
|
0d6ca91fcc
|
Make AbstractFormFields inherit from Orderable so that concrete subclasses don't have to do it explicitly
|
2014-05-01 11:06:36 +01:00 |
|
Matt Westcott
|
e511d3e040
|
pagination_nav should not expect a linkurl parameter when is_ajax flag is set
|
2014-04-29 15:38:36 +01:00 |
|
Matt Westcott
|
5293a6942f
|
Have wagtailforms register its urls / menu item via hooks, so that wagtailadmin doesn't fail if wagtailforms is absent from INSTALLED_APPS
|
2014-04-29 12:10:16 +01:00 |
|
Matt Westcott
|
71e45dee23
|
Merge branch 'master' into form-builder
Conflicts:
wagtail/wagtailadmin/templatetags/wagtailadmin_tags.py
|
2014-04-28 17:33:06 +01:00 |
|
Matt Westcott
|
3dfc58c783
|
fix logic for fetching the default page mode - should return the internal name, not the tuple
|
2014-04-28 17:01:08 +01:00 |
|
Matt Westcott
|
d5bef23d5b
|
Merge branch 'master' into feature/pagemodes
Conflicts:
wagtail/wagtailcore/models.py
|
2014-04-28 15:40:04 +01:00 |
|
Matt Westcott
|
79334134b7
|
Update wagtaildocs, wagtailimages, wagtailsnippets and wagtailusers to register their menu items via the construct_main_menu hook rather than hard-coding them in wagtailadmin_tags
|
2014-04-28 15:15:34 +01:00 |
|
Matt Westcott
|
f1a1aec860
|
Merge branch 'master' into form-builder
|
2014-04-28 15:01:00 +01:00 |
|
Neal Todd
|
5c3992686a
|
Supported Django/Python versions note.
|
2014-04-28 09:50:05 +01:00 |
|
Neal Todd
|
860c3e036f
|
Supported Django/Python versions note.
|
2014-04-28 09:49:23 +01:00 |
|
Matt Westcott
|
797418f549
|
Add a register_admin_urls hook so that subapps of wagtailadmin can register their urlpatterns with wagtailadmin, avoiding the need for them to be defined in the project's urlconf
|
2014-04-25 17:23:58 +01:00 |
|
Matt Westcott
|
c6cc149627
|
Eliminate 'patterns' from wagtailusers/urls.py as per https://code.djangoproject.com/ticket/22218
|
2014-04-25 16:59:37 +01:00 |
|
Matt Westcott
|
8cb983eb22
|
Eliminate 'patterns' from wagtailsnippets/urls.py as per https://code.djangoproject.com/ticket/22218
|
2014-04-25 16:50:56 +01:00 |
|
Matt Westcott
|
cfd0234094
|
Eliminate 'patterns' from wagtailsearch/urls as per https://code.djangoproject.com/ticket/22218
|
2014-04-25 16:49:22 +01:00 |
|
Matt Westcott
|
a29f548297
|
Eliminate 'patterns' from wagtailredirects/urls.py as per https://code.djangoproject.com/ticket/22218
|
2014-04-25 16:45:27 +01:00 |
|
Matt Westcott
|
4f5da480dd
|
Eliminate 'patterns' from wagtailimages/urls.py as per https://code.djangoproject.com/ticket/22218
|
2014-04-25 16:43:06 +01:00 |
|
Matt Westcott
|
44c217f0a5
|
Eliminate 'patterns' from wagtailembeds/urls.py as per https://code.djangoproject.com/ticket/22218
|
2014-04-25 16:41:21 +01:00 |
|
Matt Westcott
|
e271881156
|
Eliminate 'patterns' from wagtaildocs/urls.py and admin_urls.py as per https://code.djangoproject.com/ticket/22218
|
2014-04-25 16:37:33 +01:00 |
|
Matt Westcott
|
cea72bcc34
|
Eliminate 'patterns' from wagtailcore/urls.py as per https://code.djangoproject.com/ticket/22218
|
2014-04-25 16:35:19 +01:00 |
|
Matt Westcott
|
12c6e19ca0
|
Eliminate 'patterns' from wagtailadmin/urls.py as per https://code.djangoproject.com/ticket/22218
|
2014-04-25 16:33:29 +01:00 |
|
Matt Westcott
|
a7237eb701
|
Merge branch 'form-builder' of https://github.com/spapas/wagtail into form-builder
Conflicts:
setup.py
|
2014-04-25 15:22:44 +01:00 |
|
Matt Westcott
|
dd0c3aae92
|
add changelog note re Python 2.6 compatibility
|
2014-04-25 14:53:48 +01:00 |
|
Matt Westcott
|
03660c6b29
|
Merge pull request #206 from kaedroho/doc-serve-signal
Added document_served signal
|
2014-04-25 14:51:41 +01:00 |
|
Matt Westcott
|
e4366486a3
|
Merge pull request #208 from gasman/feature/tox
tox test environment and Python 2.6 support
|
2014-04-25 10:24:37 +01:00 |
|
Karl Hobley
|
b198dfc39b
|
Added changelog entry for document_served signal
|
2014-04-25 09:41:51 +01:00 |
|
Karl Hobley
|
6604ad1a80
|
Renamed doc_serve signal to document_served
|
2014-04-25 09:28:01 +01:00 |
|
Matt Westcott
|
41c5c1c457
|
Python 2.6 compatibility - fixes #156
|
2014-04-24 16:41:58 +01:00 |
|
Matt Westcott
|
aa09c442a2
|
add tox test environment for sqlite, and include elasticsearch
|
2014-04-24 15:34:59 +01:00 |
|
Matt Westcott
|
ead1c19dc0
|
Add tox.ini for multi-version testing
|
2014-04-24 15:19:43 +01:00 |
|
Karl Hobley
|
85db64d9f7
|
Added doc_serve signal
|
2014-04-23 13:23:17 +01:00 |
|
Karl Hobley
|
9ba91c7e87
|
Use Treebeard 2.0 add_child method
|
2014-04-22 10:09:35 +01:00 |
|
Karl Hobley
|
2c35b863fb
|
Merge branch 'master' into treebeard-update
Conflicts:
setup.py
|
2014-04-22 09:59:32 +01:00 |
|