João Luiz Lorencetti
ffbe4730f0
The destination of the ParentalKey should be a subclass of ClusterableModel
2016-04-03 20:18:57 +01:00
Timo Rieber
9bdc843c8f
Clarified wagtail userbar options and positioning
2016-03-27 14:23:47 +01:00
Tim Heap
6bd168580e
Change Indexed.search_fields to be a listish thing
...
Indexed.search_fields used to be a tuple. This is incorrect, and it
should have been a list. Changing it to be a list now would be a
backwards incompatible change, as people do
search_fields = Page.search_fields + (
SearchField('body')
)
Adding a tuple to the end of a list causes an error, so this would
cause all old code that used tuples to throw an error. This is not
great.
A new ThisShouldBeAList class, which subclasses list, has been added.
It additionally allows tuples to be added to it, as in the above
behaviour, but will raise a deprecation warning if someone does this.
Old code that uses tuples will continue to work, but raise a deprecation
warning.
See #2310
2016-03-24 21:05:09 +00:00
Robert Rollins
b94ff6a952
Searchly no longer supports Elasticsearch 1.x, so I switched the suggested development service to Bonsai.
2016-03-10 15:11:42 +00:00
Robert Rollins
6446c42132
Various typo fixes and grammar/clarity improvements.
2016-03-10 15:11:41 +00:00
Loïc Teixeira
33aad3957f
Fix internal links with anchors
...
Generating links with `link text <./path/to/doc#anchor>`__ does not work for html.
It produces a link to `./path/to/doc#anchor` instead of `./path/to/doc.html#anchor`.
It would be tempting to add `.html` before `#` but would likely cause some more issues
when generating the documentation as pdf or epub.
References on the other hand will work regardless of the output format.
2016-03-06 21:05:05 +00:00
Matt Westcott
49e2de9813
fix doc rendering error in wagtailuserbar code block
2016-03-06 21:02:51 +00:00
Josh Barr
a1a2940495
fixed font size rounding issue in firefox, added contrib notes
2016-03-03 12:29:28 +13:00
Quadric
d27df01815
Tagging snippets documentation fix
...
I'm not sure i'm right but i think there is a typo in this example. I guess there should be a AdvertTag use in TaggableManager instead BlogPageTag
2016-02-12 11:11:08 +00:00
Andrew Pryde
e2601c30b8
Fix PageQuerySet code overriding code snippet
2016-02-08 16:03:11 +03:00
Karl Hobley
95ff74feeb
Moved advanced image topics into advanced topics
2016-01-27 11:27:16 +00:00
Karl Hobley
8a9e65f92f
Change title of "topics" section to "Usage guide"
2016-01-27 11:27:16 +00:00
Matt Westcott
04fdd5f352
Remove Django 1.7 support from documentation, requirements and CI definitions
2016-01-05 17:38:29 +00:00
Denis Voskvitsov
ab45915a90
Set `request.is_preview` flag to show whether page is served as preview
2015-12-16 11:28:53 +00:00
Tim Heap
9e8c2c2d5f
Allow custom Page Managers
...
Previously, if a developer wanted to use a custom Manager on their Page
subclass, some fairly hacky hacks were required. Now, the `objects`
attribute is only overridden if it is a plain `Manager`. If it is
anything else, it is left alone. A system check has been added to ensure
that all `Page` managers inherit from `PageManager`
2015-12-14 23:09:45 +00:00
Matt Westcott
9e124cb9b6
Remove use of value.bound_blocks from basic StructBlock template example.
...
This hasn't been necessary since #1360 was merged, and the new 'BoundBlocks and values' section covers it much better.
2015-12-11 12:48:37 +00:00
Matt Westcott
0e34282646
Add section about BoundBlocks and values
2015-12-11 12:48:37 +00:00
Matt Westcott
2c765a7462
Release note for #1491
2015-12-11 12:46:01 +00:00
Karl Hobley
eed5c60d72
Docs for index.RelatedFields
2015-12-11 12:29:27 +00:00
Maris Serzans
32b4124767
Changed verbose names to start with lowercase when necessary
2015-12-08 17:33:19 +00:00
Jan Korte
56cfe02bae
snippet docs: loading the tags is necessary
2015-12-03 18:45:29 +00:00
Tim Heap
f4968de0f9
Allow overriding attributes in {% image %} tag
...
The `alt` attribute that was automatically generated as part of the
`{% image %}` tag could not be overridden. If template authors passed
their own `alt="..."` attribute in, two would be printed out instead
of the default one being overridden.
The relevant code has been refactored to build a dict of attributes,
allowing the default set to be overridden, and then printing them using
`flatatt`.
Fixes #1933
2015-11-24 11:38:10 +00:00
Rich Brennan
010838b53e
Add Orderable to list of imported wagtailcore models
2015-11-24 10:36:02 +00:00
Rich Brennan
fab4e2224f
Move content_panels inside BookPage definition.
2015-11-24 10:36:02 +00:00
Karl Hobley
059fc15b9d
Added note about Elasticsearch 2.x
2015-11-20 12:50:31 +00:00
Rich Brennan
2ad3985d67
Move content_panels inside BlogPage definition.
2015-11-19 17:16:02 +00:00
Matt Westcott
c73a3caa31
Use rendition.alt in `{% image img as rendition %}` example.
...
This restores the documentation to the pre-#1517 state, and is evidently more natural to write since the original documentation did so by mistake :-)
2015-11-19 15:29:40 +00:00
Alex Gleason
6a0b576376
Updated reasoning for Page suffix, fixes #1927
...
Fixed typo
2015-11-16 20:06:36 +00:00
Matt Westcott
f668922893
Add a can_choose_root flag to PageChooserBlock
2015-11-02 15:12:42 +00:00
Matt Westcott
2eb4b4c2c1
Release notes for #1810 , #1835 , #1812
2015-10-20 11:16:09 +01:00
Karl Hobley
26889ba128
Merge pull request #1812 from gasman/feature/block-template-context
...
Allow block subclasses to pass extra context variables to templates
2015-10-19 09:29:59 +01:00
Matt Westcott
c1edbe6a98
Merge branch 'docs-self-var' of https://github.com/kaedroho/wagtail into kaedroho-docs-self-var
2015-10-14 14:52:00 +01:00
Matt Westcott
c2a183f19f
Documentation tweaks as per https://github.com/torchbox/wagtail/pull/1815#commitcomment-13736415 https://github.com/torchbox/wagtail/pull/1815#commitcomment-13736421
2015-10-13 15:17:47 +01:00
Karl Hobley
b278a0c0f8
Docs for custom ordering
2015-10-13 10:06:58 +01:00
Karl Hobley
6eae465e64
Renamed "self" template variable to "page" in docs
2015-10-13 09:52:16 +01:00
Matt Westcott
06e721bc74
document the 'operator' kwarg on QuerySet.search
2015-10-12 22:04:29 +01:00
Matt Westcott
46845112e2
Allow block subclasses to pass extra context variables to templates
...
Block now defines a get_context method, which subclasses can override
in the same way as we can for pages.
2015-10-12 13:25:56 +01:00
Karl Hobley
4dbf166e06
Merged duplicate documentation
2015-10-12 12:20:45 +01:00
Karl Hobley
83f8332288
Added docs for search operators
2015-10-12 12:15:57 +01:00
Karl Hobley
fb09d89ec6
Search docs improvements
2015-10-12 12:15:33 +01:00
Matt Westcott
94d0d7bda2
Release / upgrade consideration note for #1478
2015-10-07 20:02:25 +01:00
Matt Westcott
94b5975afa
Document the new image/document queryset search method
2015-10-07 20:02:19 +01:00
Karl Hobley
4dc09dfb22
Merge pull request #1755 from takeflight/feature/jinja2-template-functions
...
Add rudimentary Jinja2 template tag support
2015-10-06 22:00:47 +01:00
Matt Westcott
3cbee6c66c
fix typo I introduced while removing typos
2015-10-05 21:12:21 +01:00
Matt Westcott
7d67e4b448
Minor copyediting on the Pages docs
2015-10-05 21:07:09 +01:00
Karl Hobley
be0a2ccd1c
Tweaks to template rendering docs
2015-10-05 21:07:09 +01:00
Karl Hobley
f72e84f199
Added a couple of missing links
2015-10-05 21:07:09 +01:00
Karl Hobley
c18c67ba3b
Working with pages docs
2015-10-05 21:07:09 +01:00
Karl Hobley
2e65c08210
Docs for inline models
2015-10-05 21:07:09 +01:00
Karl Hobley
ee7718ccdb
Various tweaks
2015-10-05 21:07:09 +01:00