0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-30 01:46:24 +01:00
Commit Graph

90 Commits

Author SHA1 Message Date
Tom Dyson
8b91757e58 Screenshots in 0.7 release notes 2014-10-08 16:42:54 +01:00
Matt Westcott
318c4503f8 add release note for #505 2014-10-08 13:11:58 +01:00
Matt Westcott
dedaead8a0 release note / upgrade consideration note for #576 2014-10-07 16:08:39 +01:00
Matt Westcott
4d99250406 release note for #610 2014-10-07 11:51:13 +01:00
Matt Westcott
39ce3ce5ca Release note for #556 2014-10-06 13:23:18 +02:00
Karl Hobley
e49f64aea3 Merge branch 'master' into page-publish-refactor
Conflicts:
	CHANGELOG.txt
	docs/releases/0.7.rst
2014-10-04 14:02:54 +01:00
Matt Westcott
9837292ad1 Update 0.7.rst - release note for #667 2014-10-04 12:14:39 +02:00
Matt Westcott
8ab9a4ff6c Merge branch 'master' of github.com:torchbox/wagtail 2014-10-04 11:51:39 +02:00
Matt Westcott
f1f01f8394 fix more dead links to wagtailsearch_for_python_developers 2014-10-04 11:50:46 +02:00
Karl Hobley
0b544bfb0a Changelog for #665 2014-10-03 16:14:07 +01:00
Matt Westcott
7c00f23e6e Release note for has_unpublished_changes fixes in #566 2014-10-03 07:53:15 +01:00
Matt Westcott
c3b4bb29c1 release note for #557 2014-10-01 17:41:20 +01:00
Matt Westcott
c298d5d301 changelog entry for #465 2014-10-01 16:33:14 +01:00
Matt Westcott
751c1136d6 add upgrade considerations note re reduction of title boost 2014-10-01 15:37:31 +01:00
Matt Westcott
3f61e8a650 release note for 554 2014-10-01 15:04:12 +01:00
Matt Westcott
4c29164206 Release notes / docs for new settings menu 2014-10-01 10:34:33 +01:00
Karl Hobley
5237dd4f0b Update 0.6.rst 2014-09-29 16:25:24 +01:00
Karl Hobley
e9b7914faf Release note for register_signal_handlers move
Fixes #660
2014-09-29 16:23:57 +01:00
Matt Westcott
504ddecde2 release note for #652 (and better description for the wagtail start bugfix) 2014-09-26 11:20:11 +01:00
Karl Hobley
944fd8897f Release note for #651 2014-09-25 09:46:25 +01:00
Matt Westcott
6f9065d769 release note for #643 2014-09-22 21:03:45 +01:00
Matt Westcott
f11c34e059 release note for #641 2014-09-18 09:49:08 +01:00
Matt Westcott
4ed76af781 release note for #491 2014-09-16 15:47:40 +01:00
Matt Westcott
6b2b3ca43e release note for #568 2014-09-16 10:20:18 +01:00
Matt Westcott
9f8a5f2379 Remove content_type template filter from the project template - fixes #626 2014-09-15 19:36:07 +01:00
Karl Hobley
3ce222b39d Changelog and release notes for manual image cropping 2014-09-12 14:38:03 +01:00
Matt Westcott
11f1bfcc15 Add changelog entry for #621 (late arrival...) 2014-09-12 10:17:23 +01:00
Matt Westcott
6bef8ea10f Add Russian translation to release notes 2014-09-11 16:53:18 +01:00
Matt Westcott
f7692cf9dc prepare for 0.6 release 2014-09-11 16:40:13 +01:00
Karl Hobley
0c29f75f90 Changelog and release notes for wagtail start command 2014-09-11 16:12:59 +01:00
Matt Westcott
82cd9242d4 fix documentation build warnings 2014-09-11 10:18:34 +01:00
Karl Hobley
14173f3647 Changelog and release notes for #611 2014-09-10 13:57:17 +01:00
Karl Hobley
ecd8d22c04 Merge pull request #599 from gasman/fix/child_relations
Fix page copy and replace_text to pick up child relations that are defined on a superclass
2014-09-05 12:49:57 +01:00
Karl Hobley
47fca3fac6 Improved consisntancy of spacing in 0.6 release notes 2014-09-05 11:47:00 +01:00
Matt Westcott
e94f610241 changelog entry for child_relations bugfixes 2014-09-05 11:46:49 +01:00
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
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
68559e5cc1 release note for #506 2014-08-27 11:22:05 +01:00
Karl Hobley
f45795ef4c Changelog and release notes for #562 2014-08-26 12:13:08 +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
Karl Hobley
ba6ade482e Changelog and release notes for #538 2014-08-18 09:18:15 +01: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
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
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