django1/django/core
Adrian Holovaty 00b3891524 Fixed #1626 -- Fixed a bunch of typos in comments and docs. Thanks, Dexter
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2687 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-04-12 13:35:31 +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 Fixed #1590 -- Changed MySQL get_last_insert_id() implementation to use cursor.lastrowid instead of a separate SELECT statement. Thanks, Andy Dustman 2006-04-10 00:32:42 +00:00
handlers Removed unneeded 'import sys' from base.py handler 2006-04-11 03:30:10 +00:00
meta Fixed #1626 -- Fixed a bunch of typos in comments and docs. Thanks, Dexter 2006-04-12 13:35:31 +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 Fixed #1531 -- Fixed eager exception catching that caused the template system to report a base template didn't exist when indeed it does exist but contains an {% include %} of a nonexisting template 2006-04-12 03:31:03 +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 #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