summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2006-05-31Fixed #2000 -- Added 'mimetype' parameter to generic views. Thanks, Ian HolsmanAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3022 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Fixed #2020 -- <option> values are now escaped in SelectMultipleFieldAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3021 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Fixed #2036 -- autoreload.py no longer fails for uninstalled 'thread' ↵Adrian Holovaty
module. Thanks, plmeister@gmail.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@3020 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Fixed #2038 -- QuerySet._combine now combines where clause. Thanks, ↵Adrian Holovaty
graham@darkcoding.net git-svn-id: http://code.djangoproject.com/svn/django/trunk@3019 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Fixed #2050 -- Fixed raw_id_admin display in admin. Thanks, Christopher LenzAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3018 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Added *args to get_list_or_404, too (refs #2048).Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3015 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Fixed #2048 - get_object_or_404 now allows *args as well. Thanks, JoeboyJacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3014 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Added support to django/contrib/auth/handlers/modpython.py for setting ↵Adrian Holovaty
DJANGO_SETTINGS_MODULE via a PythonOption instead of SetEnv git-svn-id: http://code.djangoproject.com/svn/django/trunk@3012 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Fixed #2023 -- 'View on site' now works with non-integer primary keys.Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3009 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-30Added note to default manage.py that a 'missing settings.py' message may be ↵Adrian Holovaty
caused by an ImportError in the settings file git-svn-id: http://code.djangoproject.com/svn/django/trunk@3007 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-30Fixed #2021 -- Improved Atom feed by outputting rel=alternate. Thanks, Ned ↵Adrian Holovaty
Batchelder git-svn-id: http://code.djangoproject.com/svn/django/trunk@3004 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-30Fixed #2015 -- Fixed sqlinitialdata regexp to handle empty string ↵Adrian Holovaty
insertions. Thanks, Steven Armstrong git-svn-id: http://code.djangoproject.com/svn/django/trunk@3003 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-29Fixed #1584 - auto_now_add fields now work when saving multiple times.Luke Plant
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3002 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-29fixed #1974: updated fr translationsGeorg Bauer
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3001 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-29fixed wrong encoding denotation in the greek .po fileGeorg Bauer
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3000 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-29Fixed #2029 - models now sorted by verbose_name_plural in get_admin_app_list ↵Luke Plant
- thanks Alex Dedul. git-svn-id: http://code.djangoproject.com/svn/django/trunk@2999 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Fixed bug with QuerySet.exclude() failing to do negations on Q objects, andLuke Plant
at the same time generalised exclude/QNot so that they work for 'external' Q objects i.e. ones that simply have 'get_sql' defined. git-svn-id: http://code.djangoproject.com/svn/django/trunk@2997 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Fixed #1732 -- AttributeErrors in models are no longer ignored by the model ↵Adrian Holovaty
validator. git-svn-id: http://code.djangoproject.com/svn/django/trunk@2995 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Improved error message if DATABASE_ENGINE is invalid.Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2994 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Fixed #1673 -- Every database backend now raises ImproperlyConfigured if the ↵Adrian Holovaty
relevant Python database module raises ImportError git-svn-id: http://code.djangoproject.com/svn/django/trunk@2993 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Made negative indexing on QuerySet instances raise an assertion error ↵Luke Plant
(previously it just returned incorrect results). git-svn-id: http://code.djangoproject.com/svn/django/trunk@2992 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Fixed #1403 -- 'Add' green plus sign no longer appears in admin change forms ↵Adrian Holovaty
for fields whose related models don't have an admin git-svn-id: http://code.djangoproject.com/svn/django/trunk@2991 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Fixed #1023 -- Base handler no longer calls mail_admins() on SystemExit, in ↵Adrian Holovaty
case of forked processes called from views. Thanks, Hugo git-svn-id: http://code.djangoproject.com/svn/django/trunk@2990 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Fixed #1985 -- Got CurrentSiteManager workingAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2989 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26fixed 1996: updated nl translationsGeorg Bauer
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2988 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26fixed broken el_GR translation, thx JeroenGeorg Bauer
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2987 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Added half of oracle backend. (The other half is all of the special-casing ↵Adrian Holovaty
in django/db/models/query.py, which I will be refactoring.) Refs #1990. Thanks, Jason Huggins and tzellman git-svn-id: http://code.djangoproject.com/svn/django/trunk@2986 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Fixed #1935 -- Initial SQL data now works in SQLite if there are multiple ↵Adrian Holovaty
statements. Thanks, jpellerin@gmail.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@2985 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Fixed #1634 -- Changed django.core.mail to include 'Date' header in e-mails. ↵Adrian Holovaty
Thanks, Eric Walstad git-svn-id: http://code.djangoproject.com/svn/django/trunk@2984 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Fixed #1981 -- Fixed bug in feeds.py for commentsAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2983 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Fixed #1997 -- Changed comments.py views to use relative URL for redirects. ↵Adrian Holovaty
Thanks, phil@produxion.net git-svn-id: http://code.djangoproject.com/svn/django/trunk@2981 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Fixed #1998 -- Changed double quotes to single quotesAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2980 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-24fixed #1915: new argentinean spanish (es_AR) translationGeorg Bauer
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2976 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-24fixed #1948: updated cs translationGeorg Bauer
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2975 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-24fixed #1976: updated sk translationGeorg Bauer
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2974 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-24fixed #1984: updated it translationGeorg Bauer
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2973 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-24fixed #1937: updated no translationGeorg Bauer
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2972 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-24fixed #1974: updated french translationsGeorg Bauer
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2971 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-23Fixed bug with Meta.ordering being ignored when slicing a single item off a ↵Luke Plant
QuerySet. Thanks, Gábor Fawkes. git-svn-id: http://code.djangoproject.com/svn/django/trunk@2970 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-23Negligible code cleanup for the sake of clarity.Luke Plant
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2969 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-22Fixed some bugs in django/contrib/sites/managers and added some error checkingAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2961 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-22Added django.contrib.sites.managers, which contains CurrentSiteManager. ↵Adrian Holovaty
Thanks, Ian Holsman git-svn-id: http://code.djangoproject.com/svn/django/trunk@2959 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-22Fixed #1959 -- Fixed typo in django/contrib/admin/views/doc.pyAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2957 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-22Fixed #849 -- Improved login_required view decorator to save query-string ↵Adrian Holovaty
parameters. Also added documentation on the django.contrib.auth.views.login view to docs/authentication.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@2954 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-22Fixed #1835 -- FilePathField no longer breaks admin model documentation. ↵Adrian Holovaty
Thanks, Adam Endicott git-svn-id: http://code.djangoproject.com/svn/django/trunk@2952 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-22Fixed #1931 -- update_object generic view no longer assumes the object's ↵Adrian Holovaty
get_absolute_url() doesn't change. Thanks, marcink@elksoft.pl git-svn-id: http://code.djangoproject.com/svn/django/trunk@2951 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-19Fixed #1901 -- removed typos from calls to _get_image_dimensions andMalcolm Tredinnick
_get_FIELD_filename. Thanks to tom@jerakeen.org for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@2947 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-19Prevent people from using "startapp" to create apps with the same name as ↵Malcolm Tredinnick
their project. Might stop some of the accidents. git-svn-id: http://code.djangoproject.com/svn/django/trunk@2946 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-18Made a few small tweaks to admin doc pages.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2938 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-18fixed #1909: updated japanese translationGeorg Bauer
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2936 bcc190cf-cafb-0310-a4f2-bffc1f526a37