Changes between Version 5 and Version 6 of NamespaceSimplification
- Timestamp:
- Jan 13, 2006, 11:55:04 AM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NamespaceSimplification
v5 v6 18 18 Move {{{django.core.template}}} to {{{django.template}}} 19 19 20 Rename {{{DjangoContext}}} to ??? and move to {{{django.template}}} (name still not decided)20 Rename {{{DjangoContext}}} to {{{RequestContext}}}, and move the class to the {{{django.template}}} module. 21 21 22 You will need to update TEMPLATE_LOADERS in your settings from22 You'll need to update {{{TEMPLATE_LOADERS}}} in your settings from: 23 23 {{{ 24 #!python 24 25 TEMPLATE_LOADERS = ( 25 26 'django.core.template.loaders.filesystem.load_template_source', … … 29 30 }}} 30 31 31 to 32 ...to: 32 33 33 34 {{{ 35 #!python 34 36 TEMPLATE_LOADERS = ( 35 37 'django.template.loaders.filesystem.load_template_source',