Changes between Initial Version and Version 1 of NamespaceSimplification


Ignore:
Timestamp:
Jan 11, 2006, 10:51:32 AM (18 years ago)
Author:
jkocherhans <jkocherhans@…>
Comment:

added page for namespace simplification

Legend:

Unmodified
Added
Removed
Modified
  • NamespaceSimplification

    v1 v1  
     1= Namespace Simplification =
     2
     3On django-developers, we [http://groups.google.com/group/django-developers/browse_frm/thread/d52bdebe380ea23f?hl=en& discussed] some changes to the django namespace, and adding a new "shortcuts" module to allow 1 line imports for common tasks. These changes are part of RemovingTheMagic.
     4
     5Here's a summary of what should be done:
     6
     7 * Move {{{django.utils.httpwrappers}}}, plus the {{{Http404}}} and {{{Http500}}} exceptions. to {{{django.http}}}
     8
     9 * Move {{{django.core.template}}} and {{{DjangoContext}}} to {{{django.template}}}
     10
     11 * Move {{{django.core.formfields}}} to {{{django.form}}}
     12
     13 * Add {{{django.shortcuts.views}}}, {{{django.shortcuts.templatetags}}}, what else?
     14
Back to Top