From 2051de4fe029ab257bf0a6caea7b41891ee66485 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Fri, 27 Jun 2014 15:45:17 +0100 Subject: [PATCH] Improved backwards compatibility of template tags rationalisation --- wagtail/wagtailcore/templatetags/pageurl.py | 2 +- wagtail/wagtailcore/templatetags/rich_text.py | 2 +- wagtail/wagtailembeds/templatetags/embed_filters.py | 2 +- wagtail/wagtailimages/templatetags/image_tags.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wagtail/wagtailcore/templatetags/pageurl.py b/wagtail/wagtailcore/templatetags/pageurl.py index b31756c308..63d2eb45e9 100644 --- a/wagtail/wagtailcore/templatetags/pageurl.py +++ b/wagtail/wagtailcore/templatetags/pageurl.py @@ -5,4 +5,4 @@ warnings.warn( "Use {% load wagtailcore_tags %} instead.", DeprecationWarning) -from wagtail.wagtailcore.templatetags.wagtailcore_tags import register +from wagtail.wagtailcore.templatetags.wagtailcore_tags import register, pageurl diff --git a/wagtail/wagtailcore/templatetags/rich_text.py b/wagtail/wagtailcore/templatetags/rich_text.py index ed8ac6f0f0..c1db482505 100644 --- a/wagtail/wagtailcore/templatetags/rich_text.py +++ b/wagtail/wagtailcore/templatetags/rich_text.py @@ -5,4 +5,4 @@ warnings.warn( "Use {% load wagtailcore_tags %} instead.", DeprecationWarning) -from wagtail.wagtailcore.templatetags.wagtailcore_tags import register +from wagtail.wagtailcore.templatetags.wagtailcore_tags import register, richtext diff --git a/wagtail/wagtailembeds/templatetags/embed_filters.py b/wagtail/wagtailembeds/templatetags/embed_filters.py index 7d3500e581..cb79ce69af 100644 --- a/wagtail/wagtailembeds/templatetags/embed_filters.py +++ b/wagtail/wagtailembeds/templatetags/embed_filters.py @@ -5,4 +5,4 @@ warnings.warn( "Use {% load wagtailembeds_tags %} instead.", DeprecationWarning) -from wagtail.wagtailembeds.templatetags.wagtailembeds_tags import register +from wagtail.wagtailembeds.templatetags.wagtailembeds_tags import register, embed, embedly diff --git a/wagtail/wagtailimages/templatetags/image_tags.py b/wagtail/wagtailimages/templatetags/image_tags.py index 9a96356c9a..590daa5cd9 100644 --- a/wagtail/wagtailimages/templatetags/image_tags.py +++ b/wagtail/wagtailimages/templatetags/image_tags.py @@ -5,4 +5,4 @@ warnings.warn( "Use {% load wagtailimages_tags %} instead.", DeprecationWarning) -from wagtail.wagtailimages.templatetags.wagtailimages_tags import register +from wagtail.wagtailimages.templatetags.wagtailimages_tags import register, image