summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/validators.py
Commit message (Collapse)AuthorAgeFilesLines
* 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.