django1/django/contrib/admin
Malcolm Tredinnick 3bd384aa62 Fixed #10645 -- Added some robustness around some admin and modelform params.
Fieldset dictionary names, search fields and unique_together attribute
names all have to be convertible to strings (that has always been true).
If somebody passes in a unicode object, Python barfs because Django uses
those values as keyword argument names and function calls require
parameter names to be str objects. We now convert thing to strs
automatically.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10510 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-04-11 07:41:59 +00:00
..
media Fixed #9341: add another on `ManyToManyField`s with `raw_id_admins` now works correctly. 2009-04-08 19:57:27 +00:00
templates Made a bunch of improvements to admin actions. Be warned: this includes one minor but BACKWARDS-INCOMPATIBLE change. 2009-04-06 20:23:33 +00:00
templatetags Fixed #9969: choices with options groups (added in [7977]) now work correctly in the admin with list_display and list_filter. Thanks, ramiro. 2009-04-01 14:14:20 +00:00
views Fixed #10645 -- Added some robustness around some admin and modelform params. 2009-04-11 07:41:59 +00:00
__init__.py Fixed #10553 -- Corrected several uses of `URLconf` in documentation and comments, according to the Django style guide. Based on patch from rduffield. 2009-03-31 16:07:07 +00:00
actions.py Made a bunch of improvements to admin actions. Be warned: this includes one minor but BACKWARDS-INCOMPATIBLE change. 2009-04-06 20:23:33 +00:00
filterspecs.py Fixed #9969: choices with options groups (added in [7977]) now work correctly in the admin with list_display and list_filter. Thanks, ramiro. 2009-04-01 14:14:20 +00:00
helpers.py Fixed #10645 -- Added some robustness around some admin and modelform params. 2009-04-11 07:41:59 +00:00
models.py Merged the newforms-admin branch into trunk. 2008-07-18 23:54:34 +00:00
options.py Fixed #10059: `ModelAdmin.formfield_for_dbfield` now handles custom `Field` subclasses. Thanks, Alex Gaynor. 2009-04-08 20:25:56 +00:00
sites.py Fixed #9036: unified the permission checking in `AdminSite`, pushing it down to the `ModelAdmin` where it belongs. 2009-04-08 19:47:46 +00:00
util.py Fixed a ungettext() call to prevent spurious string extraction by xgettext. 2009-03-25 01:31:57 +00:00
validation.py Made a bunch of improvements to admin actions. Be warned: this includes one minor but BACKWARDS-INCOMPATIBLE change. 2009-04-06 20:23:33 +00:00
widgets.py Fixed #10537: Fixed the foreign key add-another link in list_editable. Thanks, Alex and jezdez. 2009-03-30 23:16:34 +00:00