django1/django/core
Adrian Holovaty 33c4e307f2 Simplified two unnecessary list comprehensions in core/meta/__init__.py. Thanks, Ned Batchelder
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2531 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-03-19 23:41:59 +00:00
..
cache Refactored cache from django/core/cache.py into django/core/cache package, with each backend getting a separate module. This keeps things cleaner and uses less memory, because the backend module is only loaded if it's needed. 2006-02-24 06:07:01 +00:00
db Added note to mysql backend about DATE_FORMAT not working. Refs #1423 2006-03-01 03:17:24 +00:00
handlers Fixed #1376 -- Undid [2358], which broke flatpages. Thanks, Tom Tobin 2006-02-20 04:36:17 +00:00
meta Simplified two unnecessary list comprehensions in core/meta/__init__.py. Thanks, Ned Batchelder 2006-03-19 23:41:59 +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 #1058 -- Fixed typo in wordwrap filter documentation. Thanks, kieranholland.com 2006-03-02 05:53:58 +00:00
__init__.py Imported Django from private SVN repository (created from r. 8825) 2005-07-13 01:25:57 +00:00
context_processors.py Fixed #1271 -- Added a 'request' template context processor, which is not activated by default. 2006-01-27 15:55:04 +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 #1336 -- made USStateField work correctly when data is None (thanks, chrisb) 2006-02-27 23:45:17 +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 Changed 'runserver' to display the Django version, and massaged the wording a little bit. 2006-02-18 23:48:11 +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 #1275 and #1288 -- Change e-mail address validator regular expression to be faster, simpler and accept subdomains 2006-02-22 17:13:08 +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