Wykres commitów

304 Commity (35035d7339bb39f2433f5fadbb16637eee0adf12)

Autor SHA1 Wiadomość Data
Karl Hobley 35035d7339 Added note to 0.6 saying that all features deprecated in 0.4 have been removed 2014-09-05 11:33:19 +01:00
Karl Hobley fb23878ccb Changelog and release notes for #535 2014-09-05 11:29:20 +01:00
Karl Hobley dbd0834624 Merge pull request #535 from gasman/feature/menu-api
Refactor admin menu API to allow menu items to have bundled JS
2014-09-05 11:28:43 +01:00
Dave Cranwell 36d5d747aa Detail about image renditions and abstractimage fields 2014-09-04 11:01:24 +01:00
Karl Hobley 73d29b99c0 Fixes to RoutablePageMixin examples 2014-09-04 09:20:53 +01:00
Karl Hobley a314285a1d Changed versionadded for RoutablePageMixin to 0.6 2014-09-04 09:18:13 +01:00
Dave Cranwell 95d249918b Update creating_pages.rst 2014-09-01 16:39:48 +01:00
Dave Cranwell 22f81498b5 Update creating_pages.rst 2014-09-01 16:39:33 +01:00
Dave Cranwell 6c159bee59 Update creating_pages.rst 2014-09-01 16:39:07 +01:00
Dave Cranwell 84aa8a1887 Update creating_pages.rst 2014-09-01 16:34:32 +01:00
Dave Cranwell 98fd81e910 Update creating_pages.rst 2014-09-01 16:33:15 +01:00
Dave Cranwell 04c65833f0 Update creating_pages.rst 2014-09-01 16:31:41 +01:00
Dave Cranwell e2a3d549f8 Added how to add model descriptions 2014-09-01 16:30:43 +01:00
Dave Cranwell 0b3515a916 Update creating_pages.rst 2014-09-01 16:16:15 +01:00
Dave Cranwell f0db8082c8 Better description of purpose 2014-09-01 16:09:22 +01:00
Matt Westcott b0e97c954a release notes / changelog for #574 2014-09-01 10:44:42 +01:00
Karl Hobley 48401244ea Changelog, readme, docs and release notes for Django 1.7 support 2014-08-27 16:08:10 +01:00
Matt Westcott c2458a01dd Merge branch 'davecranwell-fix/page-chooser-model-restrictions' 2014-08-27 11:26:56 +01:00
Matt Westcott 68559e5cc1 release note for #506 2014-08-27 11:22:05 +01:00
Karl Hobley bcff495827 Added versionchanged comment for indexed->index rename 2014-08-26 17:22:53 +01:00
Karl Hobley b9c6a0a802 Renamed indexed to index 2014-08-26 16:03:59 +01:00
Dave Cranwell 504732433b Update for_python_developers.rst 2014-08-26 13:41:02 +01:00
Dave Cranwell 15ba294bcd index -> indexed, plus other tweaks 2014-08-26 13:40:37 +01:00
Dave Cranwell 053a75ef9d clarify ElasticSearch dependency 2014-08-26 13:26:56 +01:00
Karl Hobley 09086b13b2 Docs changes for #562 2014-08-26 12:14:39 +01:00
Karl Hobley f45795ef4c Changelog and release notes for #562 2014-08-26 12:13:08 +01:00
Karl Hobley f4b746e3f5 Merge branch 'master' into multilingual-tutorial
Conflicts:
	docs/index.rst
2014-08-26 11:57:52 +01:00
Dave Cranwell 6eb5f821ed added quick django example 2014-08-21 15:56:55 +01:00
Dave Cranwell 628f94519c added more Page model information about previouslly missing attributes like subpage_types 2014-08-21 15:17:14 +01:00
Karl Hobley 8a19552033 Changelog and release notes for #560 2014-08-21 12:19:39 +01:00
Tim Heap 15419f4d0e Make RoutablePage a mixin
If a developer wanted to have a site-wide base page class, and also have
some pages be `RoutablePage`s, a conflict between the automatically
generated `page_ptr` fields would occur.

```python
from wagtail.wagtailcore.models import Page
from wagtail.contrib.wagtailroutablepage.models import RoutablePage

class SitePageBase(Page):
    # common functionality
    is_abstract = True
    class Meta:
        abstract = True

class MyPage(RoutablePage, SitePageBase):
    # This model is invalid
    pass
```

`RoutablePage` has been changed to be a mixin `RoutablePageMixin`. Page
classes can use this to gain the `RoutablePage` functionality while
still retaining the ability to subclass other models.

A `RoutablePage` class that derives from both `RoutablePageMixin` and
`Page` has been left in for backwards compatibility, so old code will
continue to function without any modifications.
2014-08-21 19:42:17 +10:00
pvetch 26314bdfc7 Update using_images_outside_wagtail.rst
Fix to code block syntax
2014-08-19 10:52:49 +01:00
pvetch 470a9e4396 Update routable_page.rst
tiny text fix
2014-08-19 10:51:52 +01:00
Karl Hobley 75e0d32b60 Improved example for 'subpage_urls' in RoutablePage documentation 2014-08-18 11:40:48 +01:00
Karl Hobley ba6ade482e Changelog and release notes for #538 2014-08-18 09:18:15 +01:00
Tim Heap 98698ef8d4 Add `routablepageurl` template tag
It is similar to `pageurl`, but works with `RoutablePage`s. Functions
like a hybrid between `reverse` and `pageurl`. For example:

    {% load wagtailroutablepage_tags %}
    {% routablepageurl self "feed" %}
    {% routablepageurl self "archive" 2014 08 14 %}
    {% routablepageurl self "food" foo="bar" baz="quux" %}
2014-08-18 08:27:07 +10:00
Matt Westcott f2756ca439 Mention South 1.0 requirement in 0.5 release notes 2014-08-13 16:19:05 +01:00
Matt Westcott a926bf4fe3 changelog entry for #531 2014-08-12 17:17:21 +01:00
Matt Westcott 07d2851e37 documentation for register_admin_menu_item 2014-08-12 12:06:01 +01:00
Chris Rogers e7476cb709 added new screenshots, corrected some typos 2014-08-11 19:23:49 +01:00
pvetch ab5ae2049e Update frontend_cache_purging.rst 2014-08-08 09:42:12 +01:00
Matt Westcott 20e5be9e0e remove redundant Deprecated Features heading from 0.5 release notes 2014-08-01 17:25:49 +01:00
Matt Westcott 8edff405dd prepare for 0.5 release 2014-08-01 17:01:42 +01:00
Matt Westcott 13293da5cc remove reference to non-existent redirects documentation 2014-08-01 16:49:17 +01:00
Matt Westcott 381ec5179e Added Copy Page to release notes / changelog 2014-08-01 16:46:27 +01:00
Karl Hobley 722cc00385 Changelog and release notes for asset usage stats 2014-07-31 12:28:32 +01:00
Karl Hobley 07bc13006b Merge pull request #519 from gasman/feature/fail-on-wagtailimages-urlconf-clash
Check for URL path clashes caused by pre-Wagtail-0.3 urlconfs that try to import wagtail.wagtailimages.urls as /admin/images/
2014-07-31 09:28:42 +01:00
Karl Hobley 3a55ca17da Removed a couple of stray backticks 2014-07-31 09:17:52 +01:00
Matt Westcott 379d48e7a4 Check for URL path clashes in wagtailimages caused by a pre-wagtail-0.3 urlconf, and fail loudly if one is encountered 2014-07-30 22:24:22 +01:00
Matt Westcott 30142d6201 add release notes / changelog for using images outside wagtail 2014-07-30 19:12:51 +01:00