Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref/forms/fields.txt
Commit message (Collapse)AuthorAgeFilesLines
...
* Added links to default widget in forms.fields documentationClaude Paroz2012-12-291-27/+27
|
* Fixed broken links, round 3. refs #19516Tim Graham2012-12-271-1/+1
|
* Fixed invalid ipv4 mapped ipv6 addresses in docsDanilo Bargen2012-11-071-1/+1
|
* Added ref to format localization in Date[Time]Field docsClaude Paroz2012-10-131-0/+4
| | | | Thanks henrik@aisti.fi for the suggestion in #19119.
* Fixed #19119 -- Corrected default date input formats in docsClaude Paroz2012-10-131-1/+1
| | | | Thanks henrik@aisti.fi for the report.
* Fixed #14567 -- Made ModelMultipleChoiceField return ↵Stephen Burrows2012-10-031-2/+6
| | | | EmptyQuerySet as empty value
* Fixed #17899 -- Rewrote [Ee]-mail to [Ee]mailAdrien Lemaire2012-09-261-1/+1
|
* Fixed #18934 - Removed versionadded/changed annotations ↵Tim Graham2012-09-211-2/+0
| | | | for Django 1.3
* Fixed #11185 - Expanded docs on customizing widgets; ↵Tim Graham2012-09-151-12/+29
| | | | thanks fadeev for the draft patch.
* Fixed #18490 - Updated DateField input formats; thanks ↵Tim Graham2012-09-081-5/+15
| | | | dloewenherz for the draft patch.
* Fixed #18374 -- Explained "corrupt image" errorAymeric Augustin2012-07-081-1/+5
| | | | Thanks fabian and charettes.
* Fixed #18269 -- Applied unicode_literals for Python 3 ↵Claude Paroz2012-06-071-2/+0
| | | | | | | compatibility. Thanks Vinay Sajip for the support of his django3 branch and Jannis Leidel for the review.
* Removed references to changes made in 1.2.Aymeric Augustin2012-06-071-14/+0
| | | | Thanks Florian Apolloner for the patch.
* Fixed #17950 -- Warned about usability limits of ↵Aymeric Augustin2012-05-101-2/+6
| | | | | | ModelChoiceField. Thanks poirier for the report.
* Replaced print statement by print function (forward ↵Claude Paroz2012-04-301-7/+7
| | | | compatibility syntax).
* Fixed #5893 -- Added a flag to FilePathField to allow ↵Alex Gaynor2012-04-221-0/+17
| | | | | | listing folders, in addition to regular files. Thank you to Brian Rosner, for encouraging me to first contribute to Django 4 years ago. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17925 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Removed deprecated URLField.verify_exists.Aymeric Augustin2012-03-311-15/+1
| | | | | | | | The deprecation schedule was slightly accelerated because of possible security ramifications. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17847 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed many more ReST indentation errors, somehow ↵Luke Plant2011-10-141-229/+230
| | | | | | accidentally missed from [16955] git-svn-id: http://code.djangoproject.com/svn/django/trunk@16983 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed some improper quotes in the form fields reference doc.Julien Phalip2011-09-121-3/+3
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@16821 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16291 -- Documented that TypedChoiceField does ↵Julien Phalip2011-09-121-1/+3
| | | | | | not coerce empty_value. Thanks to vanschelven and taavi223. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16820 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Corrected documentation inconsistencies regarding ↵Carl Meyer2011-09-101-3/+3
| | | | | | deprecation of URLField.verify_exists. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16776 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Altered the behavior of URLField to avoid a potential ↵Russell Keith-Magee2011-09-101-0/+5
| | | | | | DOS vector, and to avoid potential leakage of local filesystem data. A security announcement will be made shortly. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16760 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Converted links to external topics so they use ↵Ramiro Morales2011-09-041-6/+4
| | | | | | | | | | | intersphinx extension markup. This allows to make these links more resilent to changes in the target URLs. Thanks Jannis for the report and Aymeric Augustin for the patch. Fixes #16586. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16720 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16621 -- Fixed lots of typos in the docs. Thanks, ↵Jannis Leidel2011-08-131-2/+2
| | | | | | Bernhard Essl. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16615 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16264 -- Improved form widget documentation. Many ↵Jannis Leidel2011-06-161-0/+1
| | | | | | thanks to Bas Peschier. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16408 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #811 -- Added support for IPv6 to forms and model ↵Jannis Leidel2011-06-111-0/+39
| | | | | | fields. Many thanks to Erik Romijn. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16366 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #15992 -- Added more references to settings. ↵Jannis Leidel2011-05-291-1/+1
| | | | | | Thanks, aaugustin. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16290 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #13584 -- Optionally allow empty files with ↵Chris Beaven2011-04-221-1/+6
| | | | | | django.forms.FileField. Thanks for the patch erickr and closedbracket. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16090 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed some ReST errors from e-mail -> email change in ↵Adrian Holovaty2011-04-011-1/+1
| | | | | | docs, and changed some docs that shouldn't have been changed (because translation strings haven't been converted yet) git-svn-id: http://code.djangoproject.com/svn/django/trunk@15968 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Changed e-mail to email throughout documentation and ↵Adrian Holovaty2011-04-011-8/+8
| | | | | | codebase. The one exception is translation strings, which I didn't want to disrupt git-svn-id: http://code.djangoproject.com/svn/django/trunk@15967 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #15492 -- Documented the `invalid_date` and ↵Gabriel Hurley2011-02-271-1/+2
| | | | | | `invalid_time` error keys for !SplitDateTimeField. Thanks to lode for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15663 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #15204 - Update form examples for rendering of the ↵Timo Graham2011-02-021-3/+3
| | | | | | help_text; thanks prestontimmons. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15396 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #11496 - note that DecimalField max/min_value ↵Timo Graham2010-12-281-1/+2
| | | | | | should be type(decimal.Decimal); thanks adamv. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15084 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Refs #12398 - TypedMultipleChoiceField is new in Django 1.3Timo Graham2010-12-281-0/+2
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@15082 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14708 - Document available keys for form field ↵Timo Graham2010-12-281-1/+21
| | | | | | error messages; thanks adamv. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15080 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14000 - remove versionadded/changed tags for ↵Timo Graham2010-12-261-27/+0
| | | | | | Django 1.0 and 1.1 git-svn-id: http://code.djangoproject.com/svn/django/trunk@15055 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #12398 -- Added a TypedMultipleChoiceField. Thanks ↵Russell Keith-Magee2010-12-051-5/+24
| | | | | | to Tai Lee. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14829 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14650 -- noted that underscores are also valid in ↵Alex Gaynor2010-11-091-4/+4
| | | | | | slug fields. Thanks to stringify for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14503 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14307 -- Added a new crossref target to model ↵Gabriel Hurley2010-10-151-4/+2
| | | | | | field reference docs and fixed broken relative link in form field reference docs. Thanks to adamv for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14234 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14307 -- Linked ChoiceField.choices docs to ↵Gabriel Hurley2010-10-151-1/+5
| | | | | | Field.choices docs to explain the formatting options available. Thanks to adamv for the report and Russ for the suggested fix. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14231 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #5327 -- Added standardized field information to ↵Gabriel Hurley2010-10-141-0/+14
| | | | | | ModelChoiceField and ModelMultipleChoiceField documentation. Thanks to danielrubio for the report and PhiR for the text. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14214 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14375 -- Corrected the capitalization of ↵Russell Keith-Magee2010-10-081-1/+1
| | | | | | MultiValueField. Thanks to Blue for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14018 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #7048 -- Added ClearableFileInput widget to clear ↵Jannis Leidel2010-10-011-2/+2
| | | | | | file fields. Thanks for report and patch, jarrow and Carl Meyer. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13968 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14141: docs now use the :doc: construct for links ↵Jacob Kaplan-Moss2010-08-191-6/+4
| | | | | | | | between documents. Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13608 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #13032 - Added localize parameter to form fields ↵Jannis Leidel2010-03-271-0/+15
| | | | | | to be able to selectively enable localization. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12867 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #10361 -- Added documentation for ComboField and ↵Gary Wilson Jr2010-03-161-10/+62
| | | | | | MultiValueField form fields, patch from timo. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12798 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #12097 -- Cleaned up the documentation for ↵Russell Keith-Magee2010-03-081-24/+35
| | | | | | ModelChoiceField and MultipleModelChoiceField. Thanks to JasonYosinski for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12712 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #12601: Documented the slug field in the forms module.James Bennett2010-03-031-0/+15
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@12673 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9764 - Updated EmailField and URLField to support ↵Jannis Leidel2010-02-221-0/+11
| | | | | | IDN (Internationalized Domain Names). Thanks, UloPe. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12474 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added a section to the docs for discussing validators ↵Joseph Kocherhans2010-01-051-1/+1
| | | | | | and updated a few links to point to it. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12101 bcc190cf-cafb-0310-a4f2-bffc1f526a37