django1/django/core
Jacob Kaplan-Moss 2c03839d79 [0.91-bugfixes] Fixed, once again, the stale-db connection problem. Seems [3725] wasn't applied to the wsgi handler
git-svn-id: http://code.djangoproject.com/svn/django/branches/0.91-bugfixes@7155 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-02-25 18:02:13 +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 0.91-bugfixes: Fixed #4651; UnicodeCursorWrapper should work with dictionaries of parameters now 2007-06-21 16:46:23 +00:00
handlers [0.91-bugfixes] Fixed, once again, the stale-db connection problem. Seems [3725] wasn't applied to the wsgi handler 2008-02-25 18:02:13 +00:00
meta 0.91-bugfixes: Revert previous, since it doesn't seem to actually solve the bug 2007-07-11 17:47:06 +00:00
servers Fixed #1626 -- Fixed a bunch of typos in comments and docs. Thanks, Dexter 2006-04-12 13:35:31 +00:00
template 0.91-bugfixes: Minor improvement to [6468 2007-10-10 15:51:38 +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 0.91-bugfixes: Backport [3785] from Django trunk 2007-09-17 19:00:39 +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 #1555 -- Added EMAIL_PORT setting. Thanks, bde3 2006-04-11 03:23:03 +00:00
management.py Fixed #1600 -- Renamed ManyToMany to ManyToManyRel so people get a clearer error if they use ManyToMany instead of ManyToManyField 2006-04-10 03:32:38 +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 #1550 -- Changed MatchesRegularExpression validator to use .search(), not .match(). Thanks, Gary Wilson 2006-03-28 21:39:15 +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