summaryrefslogtreecommitdiff
path: root/django/core
AgeCommit message (Collapse)Author
2005-10-20Fixed #663 -- app_directories template loader no longer assumes a dot in the ↵Adrian Holovaty
app name. Thanks, Sune git-svn-id: http://code.djangoproject.com/svn/django/trunk@985 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-20Fixed #668 -- Changed default site from mysite.com to example.com. Thanks, IanAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@984 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-20Fixed #317 -- SlugField now accepts hyphens. Thanks, SuneAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@968 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-19Fixed #641 -- Fixed re-raise in django.core.handlers.base. Thanks, SuneAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@949 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-19Fixed #627 -- BACKWARDS-INCOMPATIBLE CHANGE. Admin is now an app, not a ↵Adrian Holovaty
middleware. See BackwardsIncompatibleChanges for a full list of changes and information on how to update your code. git-svn-id: http://code.djangoproject.com/svn/django/trunk@948 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-18Added DATA_TYPES_REVERSE to ado_mssql backendAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@937 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-18Changed get_random_function_sql for ado_mssql backend to use RAND(), which ↵Adrian Holovaty
is correct. Thanks, Jakub Labath git-svn-id: http://code.djangoproject.com/svn/django/trunk@936 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-18Added get_table_list() to ado_mssql backendAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@935 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-17Fixed #583 -- Added app_directories template loader, which searches for ↵Adrian Holovaty
templates in 'templates' directory in each INSTALLED_APPS package. It's turned off by default. git-svn-id: http://code.djangoproject.com/svn/django/trunk@892 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-17Fixed typo in filesystem template-loader error messageAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@890 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-17Changed internal variable names in django.core.template.loaders.eggs to be ↵Adrian Holovaty
consistent with filesystem git-svn-id: http://code.djangoproject.com/svn/django/trunk@889 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-15Fixed #616 -- Added a process_exception() hook to middleware framework. ↵Adrian Holovaty
Thanks, Hugo git-svn-id: http://code.djangoproject.com/svn/django/trunk@880 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-15Fixed #225 -- Added first stab at MS SQL Server support (via ADO). Thanks to ↵Adrian Holovaty
gmilas@gmail.com for the patch git-svn-id: http://code.djangoproject.com/svn/django/trunk@879 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-15Fixed #628 -- Django no longer overwrites model class docstrings if they're ↵Adrian Holovaty
provided git-svn-id: http://code.djangoproject.com/svn/django/trunk@878 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-14Fixed small namespace bug in [867]Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@872 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-14Fixed #582 -- Added support for loading templates from Python eggs, and a ↵Adrian Holovaty
TEMPLATE_LOADERS setting, which defines which loaders to use. Thanks, Sune git-svn-id: http://code.djangoproject.com/svn/django/trunk@870 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-14Redid [865], which got lost in [867]Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@868 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-14Fixed #626 -- Moved template modules to django.core.template package. ↵Adrian Holovaty
django.core.template_loader is deprecated, in favor of django.core.template.loader. git-svn-id: http://code.djangoproject.com/svn/django/trunk@867 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-14Registered default_if_none filter from [859]Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@865 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-14Fixed #622 -- Added default_if_none filter. Thanks, EricAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@859 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-14Fixed #618 -- Added DATABASE_PORT setting. Thanks, EsajAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@858 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-12Fixed #589 -- Added FilePathField. It's available as an ORM field and as a ↵Adrian Holovaty
standalone field in django.core.formfields. Thanks, jay@skabber.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@846 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-10Improved django.core.management.get_sql_delete to close database connection ↵Adrian Holovaty
explicitly when it's done, to avoid locking issues git-svn-id: http://code.djangoproject.com/svn/django/trunk@823 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-10Fixed #599 -- locmem cache now uses deepcopy() to prevent aliasing. Thanks, HugoAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@821 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-08Fixed #473 -- Added a MysqlDebugWrapper to use for MySQL with DEBUG=True. It ↵Adrian Holovaty
displays more informative error messages for MySQL warnings. Thanks for the patch, mlambert@gmail.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@806 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-07Fixed #586 -- Fixed bug in raw_id_admin caused by [785]. Thanks for the ↵Adrian Holovaty
heads-up, slashzero git-svn-id: http://code.djangoproject.com/svn/django/trunk@800 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-06Fixed #595 -- Fixed error when sorting API results descending with custom ↵Adrian Holovaty
'select' parameters. Thanks for the patch, Robert Wittams git-svn-id: http://code.djangoproject.com/svn/django/trunk@792 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-06Made raw_id_admin work with non-integer primary keysAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@790 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-06Changed django.core.management to remove a couple of hard-coded slashes from ↵Adrian Holovaty
os.path.join calls. Thanks, Stuart Langridge git-svn-id: http://code.djangoproject.com/svn/django/trunk@789 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-06Fixed #333 and #440 -- Split DEFAULT_MIME_TYPE setting into ↵Adrian Holovaty
DEFAULT_CONTENT_TYPE and DEFAULT_CHARSET. Thanks, Maniac. git-svn-id: http://code.djangoproject.com/svn/django/trunk@786 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-06Improved model validator to check admin.list_filter and type-check ↵Adrian Holovaty
admin.list_display git-svn-id: http://code.djangoproject.com/svn/django/trunk@784 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-30Fixed #447 - the RSS framework can now output pub datesJacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@743 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-29Changed [735] so that database-agnostic SQL always gets executed, even if ↵Adrian Holovaty
database-specific SQL doesn't exist. git-svn-id: http://code.djangoproject.com/svn/django/trunk@737 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-29Fixed #295 - added {{{forloop.revcounter}}} and {{{forloop.revcounter0}}} ↵Jacob Kaplan-Moss
variables to for loops. Also updated the docs and added unit tests to verify correct behavior. Thanks, Clint. git-svn-id: http://code.djangoproject.com/svn/django/trunk@736 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-29Fixed #363 - django-admin sqlall now uses database-specific initial data ↵Jacob Kaplan-Moss
files if they exist. git-svn-id: http://code.djangoproject.com/svn/django/trunk@735 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-29Changed django.core.template_file to use absolute import for 'template' moduleAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@721 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-29Fixed #537 -- Fixed typo in [718]. Thanks, EsajAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@719 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-29Fixed #537; thanks, fonsoJacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@718 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-29Fixed #546 - render_to_string and render_to_response may now take lists of ↵Jacob Kaplan-Moss
templates and use select_template instead of get_template. Thanks, hugo git-svn-id: http://code.djangoproject.com/svn/django/trunk@717 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-29Fixed #501 -- Fixed block.super in multi-level templates, and added unit ↵Adrian Holovaty
tests to confirm. Thanks for the patch, django@kieranholland.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@715 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-28Fixed #553 -- Added django.core.meta.fields.Field.get_internal_type() hook, ↵Adrian Holovaty
for creating custom meta.Field subclasses. Thanks, wojtek3 git-svn-id: http://code.djangoproject.com/svn/django/trunk@713 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-27Moved JING from django.core.validators into settings where it belongs. ↵Jacob Kaplan-Moss
Fixes #568. git-svn-id: http://code.djangoproject.com/svn/django/trunk@712 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-27Added EMAIL_SUBJECT_PREFIX setting so you can customize the "[Django]" prefixJacob Kaplan-Moss
on emails send with mail_admins/mail_managers. Refs #568. git-svn-id: http://code.djangoproject.com/svn/django/trunk@710 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-27Fixed #131 -- URLconfs that are 'included' now receive captured parameters ↵Adrian Holovaty
from parent URLconfs. Thanks for the idea, jcernelli@gmail.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@704 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-27Fixed #213 -- Improved formfields.TimeField.html2python() so that it doesn't ↵Adrian Holovaty
fail for None input git-svn-id: http://code.djangoproject.com/svn/django/trunk@702 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-26Quick bug fix to [699] - fixes #515.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@701 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-26Added exception handlers to take care of the bugs with the file and db backendsJacob Kaplan-Moss
(refs #515). Eugene, I'm going to leave #515 open; can you check the bug fixes in this revision and mark the ticket as closed if you're satisfied? I don't run Django in a threaded environment, so I'm having issues reproducing your errors. git-svn-id: http://code.djangoproject.com/svn/django/trunk@699 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-26Subclassed models now use their own class name (or explicitly defined ↵Adrian Holovaty
verbose_name) as the verbose_name, not the parent's verbose_name. See also #558 and [697]. git-svn-id: http://code.djangoproject.com/svn/django/trunk@698 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-26Fixed #558 -- Subclassed models now use their own class name (or explicitly ↵Adrian Holovaty
defined module_name) as the module_name, not the parent's module_name git-svn-id: http://code.djangoproject.com/svn/django/trunk@697 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-26Fixed #515 (again) - renamed "key" field in SQL cache to "cache_key" because Jacob Kaplan-Moss
MySQL reserves "key". git-svn-id: http://code.djangoproject.com/svn/django/trunk@695 bcc190cf-cafb-0310-a4f2-bffc1f526a37