Claude Paroz
|
301de774c2
|
Refs #27795 -- Replaced many force_text() with str()
Thanks Tim Graham for the review.
|
2017-04-27 09:10:02 +02:00 |
Vytis Banaitis
|
3dcc351691
|
Refs #23919 -- Used yield from.
|
2017-02-23 20:06:01 -05:00 |
Anton Samarchyan
|
3eb679a869
|
Refs #27656 -- Updated django.forms/http docstring verbs according to PEP 257.
|
2017-02-20 19:57:33 -05:00 |
Tim Graham
|
afcf44c101
|
Refs #23151 -- Removed RegexField's unused error_message parameter.
Should have been removed in b6ea1961eb .
|
2017-02-20 19:09:09 -05:00 |
Claude Paroz
|
c651331b34
|
Converted usage of ugettext* functions to their gettext* aliases
Thanks Tim Graham for the review.
|
2017-02-07 09:04:04 +01:00 |
Vytis Banaitis
|
8838d4dd49
|
Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.
|
2017-02-01 11:41:56 -05:00 |
Tim Graham
|
e07e743e0c
|
Refs #23919 -- Used DeclarativeFieldsMetaclass.__prepare__() for tracking form field order.
|
2017-01-27 12:46:21 -05:00 |
Tim Graham
|
af598187ec
|
Removed unnecessary force_text() in BaseTemporalField.to_python().
This seems unneeded since its introduction in
da3aa22d04 .
|
2017-01-26 13:35:39 -05:00 |
Vytis Banaitis
|
d1bab24e01
|
Refs #23919, #27778 -- Removed obsolete mentions of unicode.
|
2017-01-26 08:19:27 -05:00 |
chillaranand
|
d6eaf7c018
|
Refs #23919 -- Replaced super(ClassName, self) with super().
|
2017-01-25 12:23:46 -05:00 |
Claude Paroz
|
6e55e1d88a
|
Refs #23919 -- Replaced six.reraise by raise
|
2017-01-22 20:08:04 +01:00 |
Mariusz Felisiak
|
c22212220a
|
Refs #23919 -- Removed re.U and re.UNICODE (default on Python 3).
|
2017-01-21 14:28:16 -05:00 |
Claude Paroz
|
dc8834cad4
|
Refs #23919 -- Removed unneeded force_str calls
|
2017-01-20 08:44:31 +01:00 |
Simon Charette
|
cecc079168
|
Refs #23919 -- Stopped inheriting from object to define new style classes.
|
2017-01-19 08:39:46 +01:00 |
Claude Paroz
|
2b281cc35e
|
Refs #23919 -- Removed most of remaining six usage
Thanks Tim Graham for the review.
|
2017-01-18 21:33:28 +01:00 |
Claude Paroz
|
7b2f2e74ad
|
Refs #23919 -- Removed six.<various>_types usage
Thanks Tim Graham and Simon Charette for the reviews.
|
2017-01-18 20:18:46 +01:00 |
Claude Paroz
|
d7b9aaa366
|
Refs #23919 -- Removed encoding preambles and future imports
|
2017-01-18 09:55:19 +01:00 |
Kenneth Veldman
|
8618a7eaa1
|
Fixed #27431 -- Prevented disabled form fields from appearing as changed.
|
2016-11-11 06:57:57 -05:00 |
Michal Petrucha
|
09da1e79de
|
Fixed #27369 -- Prevented widgets from being shared between form field instances.
|
2016-11-06 07:16:56 +01:00 |
Chris Lamb
|
9027e6c8a3
|
Fixed #27235 -- Removed some usage of mutable default arguments.
|
2016-09-16 15:48:08 -04:00 |
Claude Paroz
|
2ced2f785d
|
Replaced smart_* by force_* calls whenever possible
The smart_* version should only be used when a lazy string should keep
its lazy status.
|
2016-09-03 13:46:41 +02:00 |
Claude Paroz
|
3569ba0333
|
Fixed #27015 -- Prevented HTML-invalid minlength/maxlength on hidden inputs
|
2016-08-06 10:22:17 +02:00 |
Priy
|
a7b5dfd170
|
Fixed #26821 -- Fixed forms.Email/URLField crash on None value.
|
2016-07-14 12:59:14 -04:00 |
Jon Dufresne
|
76e19da5b0
|
Fixed #26890 -- Fixed IntegerField crash on Unicode numbers.
|
2016-07-14 09:38:57 -04:00 |
Jon Dufresne
|
267dc4addd
|
Fixed #4136 -- Made ModelForm save empty values for nullable CharFields as NULL.
Previously, empty values were saved as strings.
|
2016-06-13 09:14:36 -04:00 |
David Sanders
|
218175b09d
|
Fixed #26534 -- Fixed boolean form fields has_changed() with hidden input.
|
2016-04-24 15:06:30 -04:00 |
Loïc Bistuer
|
a885bca1df
|
Fixed #26528 -- Allowed any iterable (e.g. tuple) as validators kwarg for form/model fields.
|
2016-04-22 09:38:47 +07:00 |
Jon Dufresne
|
500e5a6886
|
Fixed #26516 -- Added minlength attribute when forms.CharField.min_length is set.
|
2016-04-19 08:54:27 -04:00 |
Tim Graham
|
df8d8d4292
|
Fixed E128 flake8 warnings in django/.
|
2016-04-08 09:51:06 -04:00 |
Tim Graham
|
04564eb74d
|
Fixed #26129 -- Made invalid forms display initial values of disabled fields.
|
2016-01-28 18:43:48 -05:00 |
Tim Graham
|
6b258befc2
|
Refs #26104 -- Replaced unnecessary force_str() with force_text().
|
2016-01-23 13:40:18 -05:00 |
Alexander Gaevsky
|
956cde8004
|
Fixed #26104 -- Fixed TypeError when passing number to forms.DurationField.
|
2016-01-22 16:24:49 -05:00 |
Claude Paroz
|
d91cc25a2a
|
Fixed #25942 -- Fixed TypedChoiceField.has_changed with nullable field
This fixes a regression introduced by 871440361 .
|
2015-12-17 15:38:19 +01:00 |
Tim Graham
|
a3fe4addcb
|
Refs #23162 -- Removed forms.Field._has_changed() method.
Per deprecation timeline.
|
2015-09-23 19:31:10 -04:00 |
Tim Graham
|
b6ea1961eb
|
Refs #23151 -- Removed RegexField.error_message per deprecation timeline.
|
2015-09-23 19:31:10 -04:00 |
Iulia Chiriac
|
75ed590032
|
Fixed #24636 -- Added model field validation for decimal places and max digits.
|
2015-09-18 14:30:20 -04:00 |
Moritz Sichert
|
8550161e53
|
Refs #25294 -- Moved BoundField to django.forms.boundfield.
|
2015-09-16 14:43:38 -04:00 |
Moritz Sichert
|
535809e121
|
Fixed #25294 -- Allowed custom BoundFields on forms.
|
2015-09-16 10:18:07 -04:00 |
Edward Henderson
|
f8cc464452
|
Fixed #16501 -- Added an allow_unicode parameter to SlugField.
Thanks Flavio Curella and Berker Peksag for the initial patch.
|
2015-07-17 13:48:58 -04:00 |
Claude Paroz
|
1ef4aeab40
|
Fixed #25078 -- Added support for disabled form fields
Thanks Keryn Knight and Tim Graham for the reviews.
|
2015-07-16 19:36:56 +02:00 |
Curtis
|
11cac1bd8e
|
Fixed #4960 -- Added "strip" option to CharField
|
2015-07-01 17:47:05 -04:00 |
Tim Graham
|
aaacaeb096
|
Renamed RemovedInDjangoXYWarnings for new roadmap.
Forwardport of ae1d663b79
from stable/1.8.x plus more.
|
2015-06-24 16:08:20 -04:00 |
Andriy Sokolovskiy
|
cf6ce279c7
|
Fixed #24948 -- Fixed crash when uploading bitmap images in forms.ImageField
|
2015-06-16 14:37:58 -04:00 |
Claude Paroz
|
8714403614
|
Fixed #24428 -- Fixed has_changed for fields with coercion
Thanks Carsten Fuchs for the report.
|
2015-03-05 09:00:13 +01:00 |
Jon Dufresne
|
3b966c2b73
|
Fixed #24229 -- Changed IntegerField to clean floats representing integers
|
2015-02-27 12:23:21 +01:00 |
Michael Angeletti
|
49647bec6e
|
Added missing return value to DurationField.prepare_value(); refs #24339.
|
2015-02-14 18:38:50 -05:00 |
Michael Angeletti
|
8a21d25033
|
Fixed #24339 -- Fixed crash with empty DurationField form field.
|
2015-02-14 07:37:18 -05:00 |
Tim Graham
|
0ed7d15563
|
Sorted imports with isort; refs #23860.
|
2015-02-06 08:16:28 -05:00 |
Tim Graham
|
bbe28496d3
|
Removed old import aliases.
|
2015-02-05 19:37:01 -05:00 |
Tim Graham
|
33457cd3b0
|
Removed IPAddressField per deprecation timeline; refs #20439.
|
2015-01-19 11:12:57 -05:00 |