summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2006-06-07Removed legacy deprecated_args check from django.core.managementAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3099 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-07Small improvement to django.template.resolve_variable -- isdigit() instead ↵Adrian Holovaty
of 0123456789 git-svn-id: http://code.djangoproject.com/svn/django/trunk@3098 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-07Fixed #2100 -- Made some remaining parts of the admin changelist ↵Adrian Holovaty
translatable. Thanks, ramiro git-svn-id: http://code.djangoproject.com/svn/django/trunk@3097 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-07Fixed #2098 -- Loosened validation for model 'ordering' parameter by ↵Adrian Holovaty
allowing periods. Thanks, Alex Dedul git-svn-id: http://code.djangoproject.com/svn/django/trunk@3095 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-07Fixed #1697 and #2095 -- Made 'choices' parameter accept any iterableAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3094 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-07Added Manager.get_or_create()Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3092 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-06fixed #2089: added language bidirectional support and updated the admin to ↵Georg Bauer
use it. thanks meir@mksoft! git-svn-id: http://code.djangoproject.com/svn/django/trunk@3091 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-06fixed #2090: fixed bad charset header in po fileGeorg Bauer
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3090 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-06Backed out [3088] which was a premature commit with a message meant for ↵Jacob Kaplan-Moss
another term window :) git-svn-id: http://code.djangoproject.com/svn/django/trunk@3089 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-06BNW: Added modpython handler to autosettingsJacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3088 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-06Made template names in django.contrib.auth.views passable as template_name ↵Adrian Holovaty
argument to the view git-svn-id: http://code.djangoproject.com/svn/django/trunk@3087 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-05Added more visible borders to form buttons.Wilson Miner
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3084 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-05Fixed stupid bug in [3802] Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3083 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-05Small refactoring of django.core.management to allow a custom argv to be ↵Jacob Kaplan-Moss
passed into execute_manager(). This makes custom manage scripts with extra options possible git-svn-id: http://code.djangoproject.com/svn/django/trunk@3082 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-05Fixed #2079 -- Fixed bug introduced in [3070] in django.utils.datastructuresAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3081 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-05Fixed #2084 -- Removed admin-site 'documentation / change password / log ↵Adrian Holovaty
out' links on login page for users who are logged in but don't have staff status. Thanks, rudolphfroger git-svn-id: http://code.djangoproject.com/svn/django/trunk@3079 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-04Fixed #2081 -- Fixed typo in django.conf.urls.registration. Thanks, erikankromAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3078 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-04Fixed #1684 -- Added apnumber template filter in django.contrib.humanize. ↵Adrian Holovaty
Thanks, ubernostrum git-svn-id: http://code.djangoproject.com/svn/django/trunk@3077 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-04Added django.contrib.humanize, a set of template tags for adding a 'human ↵Adrian Holovaty
touch' to data. They're documented in add_ons.txt. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3076 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-04Changed all model unit tests to use __str__() instead of __repr__(). Also ↵Adrian Holovaty
slightly changed related-object DoesNotExist exception message to use repr instead of str git-svn-id: http://code.djangoproject.com/svn/django/trunk@3075 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-03Fixed #593 -- Added 'search' DB-API lookup type, which does full-text index ↵Adrian Holovaty
searches in MySQL git-svn-id: http://code.djangoproject.com/svn/django/trunk@3073 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-03Fixed #2075 -- Added 'page' parameter to object_list generic view. Thanks, ↵Adrian Holovaty
kanashii@kanashii.ca git-svn-id: http://code.djangoproject.com/svn/django/trunk@3071 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-03Eliminated lots of mutable default arguments (since they are bugsLuke Plant
waiting to happen and are memory leaks too). git-svn-id: http://code.djangoproject.com/svn/django/trunk@3070 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #2073 -- Improved 'manage.py shell' not to pass argv to IPython if ↵Adrian Holovaty
it's installed. Thanks, jpellerin@gmail.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@3069 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #1635 -- Admin-site related-object popup no longer fails for ↵Adrian Holovaty
edit_inline objects in IE/Win. Thanks, Christopher Lenz git-svn-id: http://code.djangoproject.com/svn/django/trunk@3066 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #1999 -- Sidebar widths are now specified in ems and will scale up ↵Wilson Miner
with increasing font size. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3065 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #2072 -- Moved IE hacks out of changelists.css into patch-iewin.css to ↵Wilson Miner
avoid confusion. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3064 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02fixed #2010: updated 'nl' translationGeorg Bauer
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3063 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #1991 -- Changed AuthenticationForm to disallow users with ↵Adrian Holovaty
is_active=False from logging in. Thanks, dave@rightround.com and germish@gmail.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@3058 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #2025 -- Fixed some issues with URL reversal, which still isn't ready ↵Adrian Holovaty
for prime time. Thanks, medhat git-svn-id: http://code.djangoproject.com/svn/django/trunk@3057 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #2063 -- Made admin date_hierarchy i18n-friendly by using the new ↵Adrian Holovaty
YEAR_MONTH_FORMAT and MONTH_DAY_FORMAT technical message IDs. Thanks, ramiro git-svn-id: http://code.djangoproject.com/svn/django/trunk@3056 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #2062 -- Added YEAR_MONTH_FORMAT and MONTH_DAY_FORMAT settings, and ↵Adrian Holovaty
added technical message IDs of the same names. Thanks, ramiro git-svn-id: http://code.djangoproject.com/svn/django/trunk@3055 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #2055 -- Lengthened form labels on login screen to accommodate longer ↵Wilson Miner
translated strings. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3051 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #744 -- Added icon to display null boolean values in admin changelists.Wilson Miner
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3050 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Fixed #395 -- Added SESSION_EXPIRE_AT_BROWSER_CLOSE setting, which regulates ↵Adrian Holovaty
whether session framework should use browser-session-length cookies. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3049 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Fixed #2045 - TypeError thrown if a form does not have the correct enctype ↵Luke Plant
for uploading files. It throws a ValidationError now, as it should. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3048 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Fixed #2061 -- Fixed PostgreSQL index introspection in tables that have ↵Adrian Holovaty
dropped columns. Thanks, Chris Chamberlin git-svn-id: http://code.djangoproject.com/svn/django/trunk@3047 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Fixed bug in Model._get_next_or_previous_in_order()Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3046 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Fixed #2052 -- Fixed some threading issues for FreeBSD. Thanks, ↵Adrian Holovaty
scott@clued-in.co.uk git-svn-id: http://code.djangoproject.com/svn/django/trunk@3045 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Fixed #1454 -- Improved DB API quote_only_if_word() so that it doesn't quote ↵Adrian Holovaty
'select' parameters that are not all word characters. Thanks, dja@cdc.msbx.net git-svn-id: http://code.djangoproject.com/svn/django/trunk@3044 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Fixed #720 -- Added first_on_page() and last_on_page() methods to ↵Adrian Holovaty
ObjectPaginator. Thanks, m@bagai.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@3040 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Fixed #697 -- Added make_object_list parameter to archive_year generic view. ↵Adrian Holovaty
Thanks, jhf@hex.no git-svn-id: http://code.djangoproject.com/svn/django/trunk@3039 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Fixed #411 -- CursorDebugWrapper now supports pyformat paramstyleAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3038 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Negligible spacing change to admin/templates/admin/field_line.htmlAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3037 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Negligible spacing change to admin/views/main.pyAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3036 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Changed auth.Permission.__str__() to use str() of self.content_type, not repr()Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3035 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Fixed #2056 -- Escaped history messages in admin. Thanks, SmileyChrisAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3034 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Fixed #2049 -- Made isValidEmail validator wider in scope. Thanks, mir@noris.deAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3026 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Fixed bug in admin where it would redirect infinitely if invalid lookup ↵Adrian Holovaty
parameters were given in the URL. Refs #2024 git-svn-id: http://code.djangoproject.com/svn/django/trunk@3024 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Fixed #2006 -- Admin now quotes strings in breadcrumbs and filters. Thanks, ↵Adrian Holovaty
mhf@hex.no git-svn-id: http://code.djangoproject.com/svn/django/trunk@3023 bcc190cf-cafb-0310-a4f2-bffc1f526a37