Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref/forms/fields.txt
Commit message (Collapse)AuthorAgeFilesLines
* Removed versionadded/changed annotations for 1.8.Tim Graham2015-09-241-19/+0
|
* Refs #23151 -- Removed RegexField.error_message per ↵Tim Graham2015-09-241-8/+0
| | | | deprecation timeline.
* Added some more links in form field docsClaude Paroz2015-09-231-5/+6
|
* Fixed #25294 -- Allowed custom BoundFields on forms.Moritz Sichert2015-09-161-0/+3
|
* Fixed #16501 -- Added an allow_unicode parameter to ↵Edward Henderson2015-07-171-0/+9
| | | | | | SlugField. Thanks Flavio Curella and Berker Peksag for the initial patch.
* Fixed #25078 -- Added support for disabled form fieldsClaude Paroz2015-07-161-0/+11
| | | | Thanks Keryn Knight and Tim Graham for the reviews.
* Fixed #4960 -- Added "strip" option to CharFieldCurtis2015-07-011-3/+17
|
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-241-1/+1
| | | | | Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
* Fixed #24948 -- Fixed crash when uploading bitmap images ↵Andriy Sokolovskiy2015-06-161-5/+8
| | | | in forms.ImageField
* Used PEP 8 style indentation in forms docs.Nick Smith2015-06-111-17/+17
|
* Fixed typos in docs/ref/forms/fields.txtI am Clinton2015-05-251-4/+4
|
* Removed versionadded/changed notes for 1.7.Tim Graham2015-02-021-2/+0
|
* Removed IPAddressField per deprecation timeline; refs ↵Tim Graham2015-01-191-16/+0
| | | | #20439.
* Removed support for SplitDateTimeWidget with ↵Tim Graham2015-01-181-6/+0
| | | | | | DateTimeField per deprecation timeline. refs #8898
* Fixed #2443 -- Added DurationField.Marc Tamlyn2014-12-201-0/+17
| | | | | | | | | | | A field for storing periods of time - modeled in Python by timedelta. It is stored in the native interval data type on PostgreSQL and as a bigint of microseconds on other backends. Also includes significant changes to the internals of time related maths in expressions, including the removal of DateModifierNode. Thanks to Tim and Josh in particular for reviews.
* Fixed incorrect use of rst section heirarchy in form ↵Elena Williams2014-12-021-1/+1
| | | | fields docs.
* Fixed #13181 -- Added support for callable choices to ↵Peter Inglesby2014-11-041-4/+10
| | | | | | forms.ChoiceField Thanks vanschelven and expleo for the initial patch.
* Fixed #19463 -- Added UUIDFieldMarc Tamlyn2014-09-161-0/+14
| | | | Uses native support in postgres, and char(32) on other backends.
* Fixed #23354 -- Documented that ModelChoiceField ↵Tim Graham2014-08-271-2/+4
| | | | | | to_field_name should be a unique field. Thanks Keryn Knight for the suggestion.
* Fixed #23250 -- Documented that ModelMultipleChoiceField ↵Tim Graham2014-08-261-0/+11
| | | | queryset may be None.
* Fixed #23162 -- Renamed forms.Field._has_changed() to ↵Gabriel Muñumel2014-08-151-0/+18
| | | | has_changed().
* Fixed #23169 - Misc docs fixes.areski2014-08-041-5/+5
|
* Fixed #23151 -- Deprecated RegexField.error_message.Tim Graham2014-08-031-4/+7
| | | | Thanks Baptiste Mispelon for the suggestion.
* Fixed #23103 -- Annotated ImageField file with image and ↵Petras Zdanavičius2014-08-011-0/+9
| | | | | | content_type attributes. Thanks Jeremy Dunck for the suggestion and Nick Sanford for review.
* Fixed #22813 -- Updated Pillow URL in documentationClaude Paroz2014-06-121-1/+1
|
* Fixed #22533 -- Added label_suffix parameter to form fields.Julen Ruiz Aizpuru2014-05-131-0/+20
| | | | | | | | | | | | | | Fields can now receive the `label_suffix` attribute, which will override a form's `label_suffix`. This enhances the possibility to customize form's `label_suffix`, allowing to use such customizations while using shortcuts such as `{{ form.as_p }}`. Note that the field's own customization can be overridden at runtime by using the `label_prefix` parameter to `BoundField.label_tag()`. Refs #18134.
* Fixed #22378 -- Updated \d to [0-9]+ in urlpatterns of ↵chriscauley2014-04-171-3/+3
| | | | | | docs and tests. Thanks tomwys for the suggestion.
* Removed versionadded/changed annotations for 1.6.Tim Graham2014-03-241-10/+5
|
* Fixed #22313 -- Removed 'u' prefixes from documentationClaude Paroz2014-03-221-20/+20
|
* Removed PIL compatability layer per deprecation timeline.Tim Graham2014-03-211-8/+6
| | | | refs #19934.
* Fixed #21860 -- Added to_field_name to ModelChoiceField ↵Anubhav Joshi2014-03-161-1/+35
| | | | | | docs. Thanks Keryn Knight for the suggestion.
* Fixed doc typos.Tim Graham2014-02-281-1/+1
|
* Fixed #21951 -- Updated docs to use __str__ for Python 3Alasdair Nicol2014-02-131-1/+1
| | | | Thanks Tim Graham for the report and recommendations
* Fixed #8898 -- Obsoleted SplitDateTimeWidget usage with ↵Claude Paroz2014-01-111-0/+6
| | | | | | DateTimeField Thanks Tim Graham for the review.
* Fixed #21669 -- Typo in docs/ref/forms/fields.txt.Tim Graham2013-12-251-1/+1
| | | | Thanks alex_koval for the report.
* Fixed #21397 -- Re-added flexibility to TypedChoiceField ↵Claude Paroz2013-11-181-1/+3
| | | | | | coercion Thanks Elec for the report and Simon Charette for the review.
* Fixed #20439 -- Started deprecation of IPAddressFieldErik Romijn2013-09-281-0/+4
|
* Removed versionadded/changed annotations for 1.5Tim Graham2013-08-191-9/+0
|
* Fixed #15511 -- Allow optional fields on ↵Tai Lee2013-08-061-1/+40
| | | | | | | | | | | | ``MultiValueField` subclasses. The `MultiValueField` class gets a new ``require_all_fields`` argument that defaults to ``True``. If set to ``False``, individual fields can be made optional, and a new ``incomplete`` validation error will be raised if any required fields have empty values. The ``incomplete`` error message can be defined on a `MultiValueField` subclass or on each individual field. Skip duplicate errors.
* Fixed #20224 -- Update docs examples which mention ↵Claude Paroz2013-07-051-6/+6
| | | | | | __unicode__ Thanks Marc Tamlyn and Tim Graham for the review.
* add missing imports to the examples in the 'Forms'leandrafinger2013-05-191-0/+8
|
* Fixed #5472 --Added OpenLayers-based widgets in contrib.gisClaude Paroz2013-05-171-0/+2
| | | | | Largely inspired from django-floppyforms. Designed to not depend on OpenLayers at code level.
* Fixed #19934 - Use of Pillow is now preferred over PIL.Daniel Lindsley2013-05-151-5/+7
| | | | This starts the deprecation period for PIL (support to end in 1.8).
* Adapted uses of versionchanged/versionadded to the new form.Juan Catalano2013-04-201-0/+3
| | | | Refs #20104.
* Complemented documentation following commit be9ae693cClaude Paroz2013-04-181-0/+9
| | | | Refs #17840. Thanks Carl Meyer for noticing the omission.
* Fixed #19801 - Added brackets to input_formats.Tim Graham2013-02-251-6/+6
| | | | Thanks leandron85@ for the suggestion.
* Fixed #19686 -- Added HTML5 number input typeClaude Paroz2013-02-231-3/+6
| | | | Thanks Simon Charette for his help on the patch. Refs #16630.
* Added HTML5 url input typeClaude Paroz2013-01-281-4/+4
| | | | Refs #16630.
* Added HTML5 email input typeClaude Paroz2013-01-281-4/+4
| | | | Refs #16630.
* Removed versionadded/changed annotations dating back to 1.4.Aymeric Augustin2012-12-291-2/+0
|