Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref/forms/fields.txt
Commit message (Collapse)AuthorAgeFilesLines
...
* Merged soc2009/model-validation to trunk. Thanks, Honza!Joseph Kocherhans2010-01-051-0/+11
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@12098 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #11374 -- Modified the documentation for ↵Russell Keith-Magee2009-07-151-21/+22
| | | | | | forms.BooleanField to allow for the fact that it can be rendered using widgets other than a checkbox. Thanks to lygaret for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11236 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #10792 -- Ensured that ModelChoiceFields don't ↵Russell Keith-Magee2009-05-101-0/+4
| | | | | | provide an empty option when the underlying field has blank=False and there is a default value available. Thanks to carljm for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10729 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed a whole bunch of small docs typos, errors, and ↵Jacob Kaplan-Moss2009-04-031-49/+16
| | | | | | | | | | ommissions. Fixes #8358, #8396, #8724, #9043, #9128, #9247, #9267, #9267, #9375, #9409, #9414, #9416, #9446, #9454, #9464, #9503, #9518, #9533, #9657, #9658, #9683, #9733, #9771, #9835, #9836, #9837, #9897, #9906, #9912, #9945, #9986, #9992, #10055, #10084, #10091, #10145, #10245, #10257, #10309, #10358, #10359, #10424, #10426, #10508, #10531, #10551, #10635, #10637, #10656, #10658, #10690, #10699, #19528. Thanks to all the respective authors of those tickets. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10371 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* A whole lotta documentation fixes: Fixes #8704, #8826, ↵Jacob Kaplan-Moss2009-04-011-0/+10
| | | | | | #8980, #9243, #9343, #9529, git-svn-id: http://code.djangoproject.com/svn/django/trunk@10303 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #8962 -- Consistently support format and ↵Karen Tracey2009-03-221-1/+35
| | | | | | | | | input_format in the various (individual, combined, split) date and time form fields and widgets. Many thanks to Tai Lee for doing all the work here. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10115 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #10135 -- Added some import statements to ↵Adrian Holovaty2009-02-211-0/+1
| | | | | | docs/ref/forms/fields.txt and docs/ref/forms/widgets.txt to help people understand where the code lives. Thanks, Rob Hudson git-svn-id: http://code.djangoproject.com/svn/django/trunk@9853 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9772 -- Fixed a couple of broken links and ↵Malcolm Tredinnick2008-12-091-2/+2
| | | | | | | | | pointed them to a more appropriate section. Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9621 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Renamed file-uploads.txt from 'topics-file-uploads' to ↵Adrian Holovaty2008-11-181-1/+1
| | | | | | 'topics-http-file-uploads' to be consistent with directory structure git-svn-id: http://code.djangoproject.com/svn/django/trunk@9489 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9477 -- Removed and edited a bunch of references ↵Malcolm Tredinnick2008-11-151-2/+3
| | | | | | | | | | | | to "development version". Some were replaced with versionadded or versionchanged directives. Other, more minor ones, were removed altogether. Based on a patch from James Bennett. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9454 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #8753: converted "new in ..." callouts to proper ↵Jacob Kaplan-Moss2008-09-021-14/+15
| | | | | | Sphinx "versionadded/versionchanged" directives. Thanks to Marc Fargas for all the heavy lifting here. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8843 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added a `TypedChoiceField` which acts just like ↵Jacob Kaplan-Moss2008-08-311-0/+27
| | | | | | | | `ChoiceField`, except that it returns a value coerced by some provided function. Refs #6967. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8771 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Removed oldforms, validators, and related code:Gary Wilson Jr2008-08-271-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | * Removed `Manipulator`, `AutomaticManipulator`, and related classes. * Removed oldforms specific bits from model fields: * Removed `validator_list` and `core` arguments from constructors. * Removed the methods: * `get_manipulator_field_names` * `get_manipulator_field_objs` * `get_manipulator_fields` * `get_manipulator_new_data` * `prepare_field_objs_and_params` * `get_follow` * Renamed `flatten_data` method to `value_to_string` for better alignment with its use by the serialization framework, which was the only remaining code using `flatten_data`. * Removed oldforms methods from `django.db.models.Options` class: `get_followed_related_objects`, `get_data_holders`, `get_follow`, and `has_field_type`. * Removed oldforms-admin specific options from `django.db.models.fields.related` classes: `num_in_admin`, `min_num_in_admin`, `max_num_in_admin`, `num_extra_on_change`, and `edit_inline`. * Serialization framework * `Serializer.get_string_value` now calls the model fields' renamed `value_to_string` methods. * Removed a special-casing of `models.DateTimeField` in `core.serializers.base.Serializer.get_string_value` that's handled by `django.db.models.fields.DateTimeField.value_to_string`. * Removed `django.core.validators`: * Moved `ValidationError` exception to `django.core.exceptions`. * For the couple places that were using validators, brought over the necessary code to maintain the same functionality. * Introduced a SlugField form field for validation and to compliment the SlugField model field (refs #8040). * Removed an oldforms-style model creation hack (refs #2160). git-svn-id: http://code.djangoproject.com/svn/django/trunk@8616 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #8544 -- Some more documentation markup fixes from ↵Malcolm Tredinnick2008-08-271-1/+19
| | | | | | Thejawsi Puthraya. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8612 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Massive reorganization of the docs. See the new docs ↵Jacob Kaplan-Moss2008-08-241-0/+751
online at http://docs.djangoproject.com/. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8506 bcc190cf-cafb-0310-a4f2-bffc1f526a37