django1/django/core
Adrian Holovaty 39639cfd22 Fixed #1176 -- Changed {% comment %} template tag not to generate a nodelist, so it's now possible to comment-out broken template tags. Thanks, Kieran Holland
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1964 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-01-15 00:48:23 +00:00
..
db Fixed #1121 -- Changed MySQL backend to use correct character set in MySQL 4.1x/5.x on Win32. Thanks, hipertracker@gmail.com 2006-01-09 01:55:37 +00:00
handlers Moved Apache auth handler to django/contrib/auth/handlers/modpython.py 2005-11-30 01:14:23 +00:00
meta Fixed #1181 -- get_in_bulk no longer fails on empty input. Also added unit tests. Thanks, akaihola 2006-01-06 20:43:14 +00:00
servers Fixed #627 -- BACKWARDS-INCOMPATIBLE CHANGE. Admin is now an app, not a middleware. See BackwardsIncompatibleChanges for a full list of changes and information on how to update your code. 2005-10-19 01:09:05 +00:00
template Fixed #1176 -- Changed {% comment %} template tag not to generate a nodelist, so it's now possible to comment-out broken template tags. Thanks, Kieran Holland 2006-01-15 00:48:23 +00:00
__init__.py Imported Django from private SVN repository (created from r. 8825) 2005-07-13 01:25:57 +00:00
cache.py Fixed #1203 -- Fixed two typos in cache.py. Thanks, Eugene 2006-01-12 02:35:14 +00:00
context_processors.py Added missing context_processors module from [1773] 2005-12-24 04:41:10 +00:00
exceptions.py Moved django.core.handler.ImproperlyConfigured into django.core.exceptions 2005-07-16 22:12:24 +00:00
extensions.py Fixed #925 -- Added TEMPLATE_CONTEXT_PROCESSORS, which lets you specify processesors for DjangoContext. Thanks, Luke Plant 2005-12-24 04:39:59 +00:00
formfields.py Fixed #1195 -- Fixed formfields.TimeField bug introduced in [1872] 2006-01-09 05:11:13 +00:00
handler.py Added WSGI support. Created core.handlers package. Moved ALL mod_python-specific code to django.core.handlers.modpython. Note that django.core.handler is still a valid mod_python handler but IS DEPRECATED. Use django.core.handlers.modpython, instead. 2005-07-18 06:30:26 +00:00
mail.py Fixed #1139 -- Changed django.core.mail to raise BadHeaderError (a subclass of ValueError) and changed docs/email.txt example to use that 2005-12-29 22:12:54 +00:00
management.py Fixed #1202 -- Changed 'manage.py shell' to use IPython if present. Also added '--plain' option, which overrides IPython to use the standard Python interactive prompt 2006-01-12 20:56:10 +00:00
paginator.py Fixed a legacy ordering_tuple --> order_by renaming in core.paginator 2005-07-22 05:11:37 +00:00
template_loader.py Fixed #626 -- Moved template modules to django.core.template package. django.core.template_loader is deprecated, in favor of django.core.template.loader. 2005-10-14 20:10:13 +00:00
urlresolvers.py Fixed #878 -- URLconf regex captures no longer have to be named groups. Old URLconfs (with named groups) still work. This is backwards-incompatible if you've defined custom middleware with a process_view function. See http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges 2005-11-27 22:08:51 +00:00
validators.py Fixed #1009 -- Fixed small typo in HasAllowableSize validator. Thanks, bsoltani 2005-12-07 05:13:18 +00:00
xheaders.py Fixed #407 -- Code no longer assumes request.META['REMOTE_ADDR'] exists. Thanks, sune.kirkeby@gmail.com 2005-08-31 16:27:59 +00:00