Changes between Initial Version and Version 2 of Ticket #626
- Timestamp:
- Oct 14, 2005, 10:08:21 AM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #626
- Property Status new → assigned
-
Ticket #626 – Description
initial v2 1 1 There are too many template-related modules lying around in {{{django.core}}}. We should create a {{{django.core.template}}} package and put the following modules in it: 2 2 3 * django.core.defaultfilters4 * django.core.defaulttags5 * django.core.template (would be django.core.template.__init__to retain identical interface)6 * django.core.template_loader7 * django.core.template_file3 * {{{django.core.defaultfilters}}} 4 * {{{django.core.defaulttags}}} 5 * {{{django.core.template}}} (would be {{{django.core.template.__init__}}} to retain identical interface) 6 * {{{django.core.template_loader}}} 7 * {{{django.core.template_file}}} 8 8 9 9 To maintain backwards compatibility, django.core.template_loader should still exist (at least until 1.0), because a lot of Django code does {{{from django.core.template_loader import ...}}}.