Matt Westcott
43269fd763
Release note for #2869
2016-08-01 13:00:36 +01:00
Matt Westcott
043db8549d
Release note for #2879
2016-08-01 11:36:02 +01:00
Eraldo Energy
1a956be2f2
Added file handling to support custom user add/edit forms.
2016-07-29 17:02:31 +01:00
Matt Westcott
cceb216536
Fix --schema-only to not expect an argument - fixes #2788
2016-07-29 16:41:28 +01:00
Matt Westcott
5dee12508d
Mark django-medusa as no longer maintained
2016-07-29 15:54:52 +01:00
Matt Westcott
28c8ae3ab9
Revert "Refactor: remove Filter as a Django model."
...
This reverts commit 4d7bdfd160 .
Conflicts:
CHANGELOG.txt
docs/releases/1.6.rst
2016-07-29 14:49:01 +01:00
Matt Westcott
5dfcdfb2a6
Release note for #2872
2016-07-28 11:41:12 +01:00
Karl Hobley
e4bb09fd8d
Changelog/release note for #2811
2016-07-28 10:06:50 +01:00
Matt Westcott
6886e89e41
Tweak wording for include_block tag documentation
2016-07-27 17:04:19 +01:00
Mikalai Radchuk
d696d6bf9f
Adds docs for a Jinja2 version of include_block
2016-07-27 16:52:14 +01:00
Matt Westcott
3c5c69138c
Mention jinja2 include_block tag in 1.6 release notes
2016-07-27 16:52:14 +01:00
Matt Westcott
e9279c8512
Release note for #2663
2016-07-21 16:37:25 +01:00
Matt Westcott
c51177a0fa
Release notes for #2858 / #2859
2016-07-21 12:03:53 +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
Tom Dyson
703c9984c6
Make /admin a link in the Getting Started tutorial
2016-07-20 09:41:03 +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
Matt Westcott
0714cddd54
Release note for #2848
2016-07-19 10:45:19 +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
Nik Nyby
389317c104
docs: fix typo ( #2845 )
2016-07-15 21:58:47 +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
Mikalai Radchuk
07ac5aa8ee
Release notes for #2830
2016-07-08 16:15:19 +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
60003da430
Fix typos in 1.3 release notes
2016-07-05 15:00:32 +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
Josh Schneier
1dad100695
Add a check that the declared search_fields exist
2016-07-04 20:58:30 +01:00
Matt Westcott
bdbc1b0c5b
Release note for Django 1.10 compatibility
2016-06-28 16:34:46 +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
Matt Westcott
64c7a6367a
Document isort and 'make lint' in Python coding guidelines
2016-06-23 16:31:44 +01: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
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
Mike Dingjan
33f53a6e78
Added __bool__ method for proper evaluating the RichText object value
2016-06-21 12:04:52 +01:00
Oktay Altay
31ce2e802c
Add new EmailBlock and IntegerBlock
2016-06-17 23:39:49 +01:00
Karl Hobley
35e506c47f
Changelog/release note for #2715
2016-06-17 15:51:39 +01:00
Michael van Tellingen
7d7509aee5
Implement initial version of Block.bulk_to_python (with jaroel)
...
This prevents n+ queries for n blocks of a specific type.
2016-06-17 15:08:14 +02:00
Matt Westcott
367c71dbaa
TagSearchable needs to be removed from migrations
2016-06-17 09:45:28 +01:00
Gagaro
4d7bdfd160
Refactor: remove Filter as a Django model.
2016-06-17 02:21:36 +02:00
Ludolf Takens
e995bc0e19
Fix #2533 : Prevent removal of '/' when redirect from url is just '/' ( #2721 )
2016-06-16 11:48:45 +01:00
Matt Westcott
852a6de301
fix formatting on release notes page
2016-06-15 18:15:21 +01:00
Johannes Spielmann
a2ec49e01a
allow wagtailforms field choices to be as long as they want
2016-06-15 18:14:41 +01:00
Andreas Nüßlein
5b72f81327
mention edit_handler in this context ( #2716 )
2016-06-15 13:54:54 +01:00
Matt Westcott
8121b633a4
Fix incorrect CSS path on ModelAdmin's 'choose a parent page' view - fixes #2703
2016-06-15 13:50:45 +01:00
Moritz Pfeiffer
6c9d202057
Removed cell content aligment options from table editor context menu.
2016-06-13 20:59:10 +01:00
Janneke Janssen
06bfa43782
Documented the settings variable for WAGTAIL_USAGE_COUNT_ENABLED ( #2706 )
2016-06-13 20:47:27 +01:00
Matt Westcott
f6706977bd
Validate against duplicate form field names - fixes #585
...
Thanks to @tacitus for this fix (#2445 ).
2016-06-13 19:53:44 +01:00
Matt Westcott
bdaf696cd2
Release note / docs for #2257
2016-06-10 14:26:30 +01:00
Mikalai Radchuk
ba807e5f45
Release notes for #2677
2016-06-08 16:53:01 +03:00
Mikalai Radchuk
ba220d58ca
Release notes for #2691
2016-06-08 15:24:18 +03:00
Matt Westcott
79d19a5b1b
Release note for 1.5.2
2016-06-08 11:52:27 +01:00
Mikalai Radchuk
b66830ce27
Release notes for #2684
2016-06-08 13:36:27 +03:00
Matt Westcott
38cca0e47a
mark 1.5.1 as no longer in development
...
Conflicts:
CHANGELOG.txt
2016-06-07 18:59:13 +01:00
Matt Westcott
aaceb9b08f
Make 'permanent' / 'temporary' label on redirects translatable; don't translate the classname
...
Thanks to leo_naeka for reporting!
2016-06-07 17:34:22 +01:00
Yannick Chabbert
3ba4064d89
fix modeladmin delete view message
2016-06-07 16:44:27 +01:00
riceyrice
cd0f8381cd
Ensure pagination is retained on invalid upload
...
Otherwise hidden Search tab causes web browser to load _every_ image in the system.
2016-06-07 16:22:34 +01:00
Matt Westcott
64132728d1
Revert "Fixing #2520 "
...
This reverts commit ab53b1817f .
Conflicts:
CHANGELOG.txt
docs/releases/1.5.rst
2016-06-07 14:56:52 +01:00
Gagaro
871a5b5d9c
Use python_2_unicode_compatible in snippets.rst ( #2688 )
...
We should use `python_2_unicode_compatible` in the documentation so that new users know the best practice.
2016-06-07 13:49:28 +01:00
Matt Westcott
f7816b6bce
Credit Gagaro under preferred name
2016-06-06 17:55:19 +01:00
Matt Westcott
aacb1116db
Track parent page for internal links in rich text - fixes #2639
2016-06-06 13:38:25 +03:00
Janneke Janssen
978cef5218
Documented the WAGTAILIMAGES_MAX_UPLOAD_SIZE ( #2683 )
2016-06-05 18:16:13 +01:00
Matt Westcott
8f796cddfd
Return URL in document chooser response - fixes #2660
2016-06-04 17:12:59 +03:00
Matt Westcott
8d1c8193fa
Remove duplicate definition of form media in settings - fixes #2664
...
Form media declarations are output in edit.html, but this is redundant as they're already output in _editor_css.html / _editor_js.html,
and the duplicate definitions cause the rich text editor to fail to activate for some reason.
2016-06-03 20:27:20 +03:00
Matt Westcott
892c4c77d6
Ensure that form media required by InlinePanels is correctly pulled in to the edit page - fixes #2662 .
...
Based on code from #2659 by @Gagaro - thanks!
2016-06-03 19:33:24 +03:00
Loic Teixeira
c39f830ae2
Mark the field as modified after removing element
...
Fix #2637
2016-06-03 16:41:00 +01:00
riceyrice
05d9fceaa7
Choose existing page for page links only
...
Present new page chooser when editing any other link type.
2016-06-03 16:30:39 +01:00
Matt Westcott
bfa255537f
Add docs / changelog section for Wagtail 1.5.1
2016-06-03 15:47:56 +01:00
Behzad Nategh
b1f194a637
Unicode support for slug as of Django 1.9
2016-06-01 13:44:01 +01:00
Tomas Olander
5ebc7d5044
Update branding docs to remove django-overextends
...
Fixes #2609
2016-05-31 10:34:26 +01:00
Andreas Nüßlein
8e6c9f555f
Update staticsitegen.rst ( #2647 )
...
added python3 hint for http.server
2016-05-30 18:28:48 +01:00
Jack P
78168ba824
Perform client side validation on image upload form, so that the selected file is not lost in the submission - fixes #92
2016-05-26 17:11:27 +01:00
Matt Westcott
c55eed9e99
Version bump to start work on 1.6
2016-05-23 16:36:10 +01:00
Matt Westcott
f3f37cc52b
promote rich text link handling to a major feature
2016-05-19 17:01:17 +01:00
Matt Westcott
4a3bc94185
Add screenshots to 1.5 release notes
2016-05-19 15:49:04 +01:00
Matt Westcott
59ecdb711f
version bump for 1.5rc1
2016-05-19 15:13:38 +01:00
Matt Westcott
d375cc62cc
1.4.5 is now released
2016-05-19 15:00:35 +01:00
Matt Westcott
197527c5d2
Release note for #2416
2016-05-19 13:44:15 +01:00
Karl Hobley
a99c6c4c2d
Changelog/release note for #2615
2016-05-19 11:45:49 +01:00
Matt Westcott
7f8cf2539f
Add BASE_URL setting back to project template
2016-05-18 22:12:48 +01:00
Alex Gleason
8d5d29c2f3
Rename table_block.fields to table_block.blocks
2016-05-18 15:51:54 +01:00
Matt Westcott
737731de0c
Release notes for #2407
2016-05-18 15:50:08 +01:00
Karl Hobley
c63dcdfc15
Added a missing link to release notes
2016-05-17 16:55:59 +01:00
Karl Hobley
f8d7276800
Release note for #2459
2016-05-17 16:39:11 +01:00
Yannick Chabbert
58dfea096e
add a sendfile class based view implementation
2016-05-17 16:34:32 +01:00
Matt Westcott
06af3fe33d
Account for deletions when constructing page paths for preview_on_create - fixes #2599
2016-05-17 16:03:15 +01:00
Matt Westcott
95aeda48f3
Release note for #2614
2016-05-17 15:58:30 +01:00
Matt Westcott
fc814298d1
Release note for #2613
2016-05-17 15:54:47 +01:00
Matt Westcott
a0c4dbd2d4
Release note for #2623
2016-05-16 18:09:16 +01:00
riceyrice
0899c48117
Use cross-browser document.activeElement instead of (non-IE) event.target.activeElement
...
Conflicts:
CONTRIBUTORS.rst
2016-05-12 20:32:15 +01:00
Matt Westcott
0eaac1882c
Release note for #2605
2016-05-12 17:03:29 +01:00
Matt Westcott
024b96d0ed
Release note for #2414
2016-05-12 15:34:14 +01:00
Matt Westcott
6ff98a543b
Move custom user forms example to a new page under advanced_topics/customisation
2016-05-12 15:34:14 +01:00