summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/validators.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #34071 -- Improved error message for Range(Min/Max)ValueValidator.Jack Linke2022-10-051-2/+2
|
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-4/+8
|
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-22/+33
|
* Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope2017-12-111-4/+1
|
* Fixed #28758 -- Fixed RangeMax/MinValueValidators crash with unbound ranges.Imran Iqbal2017-11-071-2/+2
|
* Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne2017-05-271-1/+1
| | | iter(dict) is equivalent to iter(dict.keys()).
* Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz2017-02-071-3/+3
| | | | Thanks Tim Graham for the review.
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-1/+1
|
* Refs #23919 -- Removed obsolete __ne__() methods.Aymeric Augustin2017-01-181-3/+0
| | | | | __ne__() defaults to the opposite of __eq__() on Python 3 when it doesn't return NotImplemented.
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-081-2/+4
|
* Fixed W503 flake8 warnings.Tim Graham2016-04-041-4/+4
|
* Fixed #26125 -- Fixed E731 flake warnings.userimack2016-01-251-2/+4
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-2/+2
|
* Fixed #24001 -- Added range fields for PostgreSQL.Marc Tamlyn2015-01-101-1/+14
| | | | | | | | | Added support for PostgreSQL range types to contrib.postgres. - 5 new model fields - 4 new form fields - New validators - Uses psycopg2's range type implementation in python
* Revert "Fixed #23892 -- Made deconstructible classes forwards compatible"Carl Meyer2014-11-221-1/+1
| | | | | | | | | This reverts commit f36151ed169813f2873e13ca9de616cfa4095321. Adding kwargs to deconstructed objects does not achieve useful forward-compatibility in general, since additional arguments are silently dropped rather than having their intended effect. In fact, it can make the failure more difficult to diagnose. Thanks Shai Berger for discussion.
* Fixed #23892 -- Made deconstructible classes forwards compatibleCarl Meyer2014-11-221-1/+1
|
* Added HStoreField.Marc Tamlyn2014-11-041-1/+50
| | | | | Thanks to `django-hstore` for inspiration in some areas, and many people for reviews.
* Added array field support for PostgreSQL.Marc Tamlyn2014-05-221-0/+16
The first part of django.contrib.postgres, including model and two form fields for arrays of other data types. This commit is formed of the following work: Add shell of postgres app and test handling. First draft of array fields. Use recursive deconstruction. Stop creating classes at lookup time. Add validation and size parameter. Add contained_by lookup. Add SimpleArrayField for forms. Add SplitArrayField (mainly for admin). Fix prepare_value for SimpleArrayField. Stop using MultiValueField and MultiWidget. They don't play nice with flexible sizes. Add basics of admin integration. Missing: - Tests - Fully working js Add reference document for django.contrib.postgres.fields.ArrayField. Various performance and style tweaks. Fix internal docs link, formalise code snippets. Remove the admin code for now. It needs a better way of handing JS widgets in the admin as a whole before it is easy to write. In particular there are serious issues involving DateTimePicker when used in an array. Add a test for nested array fields with different delimiters. This will be a documented pattern so having a test for it is useful. Add docs for SimpleArrayField. Add docs for SplitArrayField. Remove admin related code for now. definition -> description Fix typo. Py3 errors. Avoid using regexes where they're not needed. Allow passing tuples by the programmer. Add some more tests for multidimensional arrays. Also fix slicing as much as it can be fixed. Simplify SplitArrayWidget's data loading. If we aren't including the variable size one, we don't need to search like this.