summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Expand)Author
2007-01-12Fixed #3287: method columns in the admin changelist can now have a {{{boolean...Jacob Kaplan-Moss
2007-01-12Fixed #3290: DummyCache now conforms to the BaseCache interface correctly. Th...Jacob Kaplan-Moss
2007-01-12Fixed #1717: ContentType.objects.get_for_manager() is now cached for a small ...Jacob Kaplan-Moss
2007-01-10Fixed #3267 -- newforms: Changed database TextField to render as Textarea in ...Adrian Holovaty
2007-01-10Fixed #3266 -- newforms: Made RadioSelect accept funky characters. Thanks for...Adrian Holovaty
2007-01-10Fixed #3278 -- newforms: Fixed bug in DeclarativeFieldsMetaclass where it ina...Adrian Holovaty
2007-01-10Fixed #3269 -- Fixed typo in admin change_password.html template. Thanks, ramiroAdrian Holovaty
2007-01-09Fixed #3232 -- newforms: Added save_instance(), which saves a given bound for...Adrian Holovaty
2007-01-09newforms: Changed model auto-Form generation so that create() and apply_chang...Adrian Holovaty
2007-01-09Fixed #3193 -- newforms: Modified as_hidden() to handle MultipleChoiceField c...Adrian Holovaty
2007-01-09newforms: Added 'initial' parameter to Form, which lets initial data be speci...Adrian Holovaty
2007-01-09newforms: Fixed Unicode issue on Python 2.3 when a BoundField's __unicode__()...Adrian Holovaty
2007-01-08Fixed #1477: URLFields now accept a maxlength parameter. Thanks, Matt Croydon.Jacob Kaplan-Moss
2007-01-05newforms: Changed Form.ignore_errors to Form.is_bound, which is more descript...Adrian Holovaty
2007-01-04newforms: Changed Form so that clean_data only exists if a Form is valid. Tha...Adrian Holovaty
2007-01-04Fixed #2473 -- Added special case for '__in=[]' (empty set) queries, because ...Russell Keith-Magee
2007-01-03Fixed #2756 -- Modified the get_object_or_404/get_list_or_404 shortcuts to ac...Russell Keith-Magee
2007-01-03Fixes #3176, #3004 -- Added an argument to the floatfilter to allow users to ...Russell Keith-Magee
2007-01-02Fixed #3216 -- Added shebang statement to daily_cleanup.pyAdrian Holovaty
2006-12-30Fixed typo in a docstring in django/contrib/admin/views/main.pyAdrian Holovaty
2006-12-30Fixed #3151 -- Improved MySQL backend not to send 'SET NAMES utf8' before eve...Adrian Holovaty
2006-12-30Fixed #3166 -- Added admin 'Change user password' view. Thanks for the patch,...Adrian Holovaty
2006-12-30newforms: Got form_for_instance() to select initial ManyToManyField values pr...Adrian Holovaty
2006-12-30Added missing import to django.contrib.formtools.preview from [4259]. Thanks,...Adrian Holovaty
2006-12-29Fixed #3204 -- Changed FormPreview to use RequestContextAdrian Holovaty
2006-12-29Fixed #3205 -- Fixed bug in custom postgresql executemany wrapper. Thanks for...Adrian Holovaty
2006-12-28newforms: Implemented apply_changes() method for form_for_instance FormsAdrian Holovaty
2006-12-28Added value_from_object method to db Field classAdrian Holovaty
2006-12-28Negligible style fix to db/models/fields/__init__.pyAdrian Holovaty
2006-12-28newforms: Implemented form_for_instance(). The resulting Form class does not ...Adrian Holovaty
2006-12-28newforms: Added 'initial' parameter to Field. This allows you to specify init...Adrian Holovaty
2006-12-27newforms: Implemented formfield() for database OneToOneField class. Not sure ...Adrian Holovaty
2006-12-27newforms: Implemented formfield() for database ForeignKey class and added uni...Adrian Holovaty
2006-12-27newforms: Implemented formfield() for database ManyToManyField class and adde...Adrian Holovaty
2006-12-27Fixed #3115 -- Changed postgresql backend to convert all Unicode strings to b...Adrian Holovaty
2006-12-26newforms: Added max_length and min_length optional arguments to RegexField, E...Adrian Holovaty
2006-12-26newforms: A label can now be the empty string, in which case a label won't be...Adrian Holovaty
2006-12-26newforms: Changed Form.as_table() to display errors in same <td> as the fieldAdrian Holovaty
2006-12-26newforms: Implemented RadioFieldRenderer.__getitem__(), which allows for inde...Adrian Holovaty
2006-12-26Fixed #3187 -- Django will now look for the root URLconf as an attribute of t...Jacob Kaplan-Moss
2006-12-24newforms: Added django.newforms.extras.widgets, with SelectDateWidget impleme...Adrian Holovaty
2006-12-24newforms: Removed Widget.requires_data_list parameter, which was made redunda...Adrian Holovaty
2006-12-22Changed django.forms to remove duplicate code and import from django.oldforms...Adrian Holovaty
2006-12-20Refactored workhorse methods on m2m descriptors. Modified _add to check for t...Russell Keith-Magee
2006-12-20Fixed problem with assiging an empty list to m2m related descriptors, introdu...Russell Keith-Magee
2006-12-20Fixed #3142 -- Optimized the assignment of m2m and m2o relation sets. Thanks,...Russell Keith-Magee
2006-12-20Fixed #3128: Added explicit object-tools block so custom admin templates can ...Jacob Kaplan-Moss
2006-12-18Changed dateformat 'M' to use MONTHS_3 instead of MONTHS, for better support ...Adrian Holovaty
2006-12-18Fixed #3157 -- Made error message XHTML-friendly in CSRF middleware. Thanks, ...Adrian Holovaty
2006-12-17Fixed #3153 -- newforms 'label' argument now can contain wacky characters. Th...Adrian Holovaty