summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2006-12-30Fixed #3191 -- Set 'svn:eol-style native' on the files that didn't have it. T...Adrian Holovaty
2006-12-30Fixed #3203 -- Fixed setup.py bdist_wininst. Thanks for the patch, ymasudaAdrian Holovaty
2006-12-30Updated docstring in model_forms unit testAdrian Holovaty
2006-12-30Added a small note about decoupling to docs/newforms.txtAdrian 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-29Added first bit of 'More granular output' to docs/newforms.txtAdrian 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-27Negligible change to docs/newforms.txtAdrian Holovaty
2006-12-27Fixed #3115 -- Changed postgresql backend to convert all Unicode strings to b...Adrian Holovaty
2006-12-27Removed duplication in docs/legacy_databases.txtAdrian 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-19Fixed typo in docs/redirects.txtAdrian Holovaty
2006-12-19Fixed #3164 -- Added explicit ordering to basic model test, and revised resul...Russell Keith-Magee
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-18Negligible spacing changes to docs/csrf.txt to be consistentAdrian Holovaty
2006-12-17Fixed #3153 -- newforms 'label' argument now can contain wacky characters. Th...Adrian Holovaty
2006-12-17Refs #3118 -- Forgot to mention the efforts of Yashudi Masuda in triaging #31...Russell Keith-Magee
2006-12-17Fixed #3118 -- Fixed reversed logic in DBAPI regarding handling of empty PKs ...Russell Keith-Magee
2006-12-17newforms: Added optional 'form' parameter to form_for_modelAdrian Holovaty
2006-12-17newforms: Added BaseForm to django.newforms namespaceAdrian Holovaty
2006-12-15newforms: Implemented min_value and max_value options for IntegerFieldAdrian Holovaty
2006-12-15newforms: Fixed unexpected behavior with CharField(required=False, min_length...Adrian Holovaty
2006-12-15newforms: The Form classes created by form_for_model() now have a create() me...Adrian Holovaty
2006-12-15Improved error message in postgresql backendAdrian Holovaty
2006-12-15newforms: Changed form_for_model() to ignore a field if its formfield() retur...Adrian Holovaty
2006-12-15Vastly improved performance of django.utils.text.wrap. Thanks to GvR for the...Jacob Kaplan-Moss
2006-12-15Implemented formfield() for a bunch of database Field classesAdrian Holovaty
2006-12-15Moved newforms import out of Field.formfield()Adrian Holovaty