Commit 3af9b700 authored by Tim Graham's avatar Tim Graham
Browse files

Refs #22789 -- Removed contrib.webdesign per deprecation timeline.

parent 57039f96
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
import warnings

from django.utils.deprecation import RemovedInDjango110Warning


default_app_config = 'django.contrib.webdesign.apps.WebDesignConfig'

warnings.warn(
    "django.contrib.webdesign will be removed in Django 1.10. The "
    "{% lorem %} tag is now included in the built-in tags.",
    RemovedInDjango110Warning
)

django/contrib/webdesign/apps.py

deleted100644 → 0
+0 −7
Original line number Diff line number Diff line
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _


class WebDesignConfig(AppConfig):
    name = 'django.contrib.webdesign'
    verbose_name = _("Web Design")
+0 −0

Empty file deleted.

+0 −6
Original line number Diff line number Diff line
from django import template
from django.template.defaulttags import lorem

register = template.Library()

register.tag(lorem)
+0 −9
Original line number Diff line number Diff line
@@ -35,7 +35,6 @@ those packages have.
   sites
   staticfiles
   syndication
   webdesign

admin
=====
@@ -137,14 +136,6 @@ A framework for generating syndication feeds, in RSS and Atom, quite easily.

See the :doc:`syndication documentation </ref/contrib/syndication>`.

webdesign
=========

Helpers and utilities targeted primarily at Web *designers* rather than
Web *developers*.

See the :doc:`Web design helpers documentation </ref/contrib/webdesign>`.

Other add-ons
=============

Loading