Changes between Version 5 and Version 6 of NamespaceSimplification


Ignore:
Timestamp:
Jan 13, 2006, 11:55:04 AM (18 years ago)
Author:
Adrian Holovaty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NamespaceSimplification

    v5 v6  
    1818Move {{{django.core.template}}} to {{{django.template}}}
    1919
    20 Rename {{{DjangoContext}}} to ??? and move to {{{django.template}}} (name still not decided)
     20Rename {{{DjangoContext}}} to {{{RequestContext}}}, and move the class to the {{{django.template}}} module.
    2121
    22 You will need to update TEMPLATE_LOADERS in your settings from
     22You'll need to update {{{TEMPLATE_LOADERS}}} in your settings from:
    2323{{{
     24#!python
    2425TEMPLATE_LOADERS = (
    2526    'django.core.template.loaders.filesystem.load_template_source',
     
    2930}}}
    3031
    31 to
     32...to:
    3233
    3334{{{
     35#!python
    3436TEMPLATE_LOADERS = (
    3537    'django.template.loaders.filesystem.load_template_source',
Back to Top