Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refs #33476 -- Reformatted code with Black. | django-bot | 2022-02-07 | 1 | -41/+58 |
| | |||||
* | Fixed #30907 -- Fixed SplitArrayField.has_changed() with removal of empty ↵ | Pavel Dedik | 2019-10-28 | 1 | -0/+11 |
| | | | | trailing values. | ||||
* | Refs #30907 -- Added SplitArrayField._remove_trailing_nulls() hook. | Pavel Dedik | 2019-10-28 | 1 | -10/+15 |
| | |||||
* | Fixed #30596 -- Fixed SplitArrayField.has_changed() for non-string base fields. | Chason Chaffin | 2019-07-03 | 1 | -0/+4 |
| | | | | | Thanks to Evgeniy Krysanov for the report and the idea to use to_python. Thanks to Mariusz Felisiak for the test case. | ||||
* | Refs #29131 -- Fixed space handling in ArrayField's item_invalid message. | Hasan Ramezani | 2018-05-13 | 1 | -2/+2 |
| | |||||
* | Refs #29131 -- Made ArrayField error messages index from 1 instead of 0. | Hasan Ramezani | 2018-04-22 | 1 | -4/+4 |
| | |||||
* | Fixed #28950 -- Fixed ArrayField.has_changed() for empty values. | Vinay Karanam | 2018-04-07 | 1 | -0/+10 |
| | |||||
* | Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking. | Nick Pope | 2017-12-11 | 1 | -1/+1 |
| | |||||
* | Fixed #27161 -- Fixed form validation when an ArrayField's base_field has ↵ | Romulo Furtado | 2017-06-13 | 1 | -0/+4 |
| | | | | choices. | ||||
* | Fixed #28192 -- Required passing optional form field args as keyword args. | Claude Paroz | 2017-06-03 | 1 | -3/+3 |
| | |||||
* | Fixed #28040 -- Updated SplitArrayWidget to use template-based widget rendering. | Tim Graham | 2017-04-29 | 1 | -8/+9 |
| | | | Thanks Preston Timmons for review. | ||||
* | Converted usage of ugettext* functions to their gettext* aliases | Claude Paroz | 2017-02-07 | 1 | -1/+1 |
| | | | | Thanks Tim Graham for the review. | ||||
* | Refs #23919 -- Replaced super(ClassName, self) with super(). | chillaranand | 2017-01-25 | 1 | -6/+6 |
| | |||||
* | Refs #23919 -- Removed six.<various>_types usage | Claude Paroz | 2017-01-18 | 1 | -2/+1 |
| | | | | Thanks Tim Graham and Simon Charette for the reviews. | ||||
* | Fixed #15667 -- Added template-based widget rendering. | Preston Timmons | 2016-12-27 | 1 | -2/+2 |
| | | | | Thanks Carl Meyer and Tim Graham for contributing to the patch. | ||||
* | Refs #27003 -- Fixed SimpleArrayField crash on converted values. | Brandon Chinn | 2016-11-15 | 1 | -1/+3 |
| | |||||
* | Fixed #27186 -- Fixed model form default fallback for MultiWidget, ↵ | Tim Graham | 2016-09-22 | 1 | -0/+6 |
| | | | | | | FileInput, SplitDateTimeWidget, SelectDateWidget, and SplitArrayWidget. Thanks Matt Westcott for the review. | ||||
* | Fixed #26283 -- Fixed removal of trailing nulls for SplitArrayField. | quaspas | 2016-03-12 | 1 | -1/+1 |
| | |||||
* | Fixed #25841 -- Handled base array fields validation errors with params. | Simon Charette | 2015-12-17 | 1 | -32/+37 |
| | | | | Thanks to Trac alias benzid-wael for the report. | ||||
* | Fixed #25597 -- Fixed crash with SplitArrayField and IntegerField on invalid ↵ | Tim Graham | 2015-10-27 | 1 | -1/+1 |
| | | | | value. | ||||
* | Removed unnecessary arguments in .get method calls | Piotr Jakimiak | 2015-05-13 | 1 | -1/+1 |
| | |||||
* | Sorted imports with isort; refs #23860. | Tim Graham | 2015-02-06 | 1 | -3/+5 |
| | |||||
* | Fixed #23968 -- Replaced list comprehension with generators and dict ↵ | Jon Dufresne | 2014-12-08 | 1 | -1/+1 |
| | | | | comprehension | ||||
* | Added array field support for PostgreSQL. | Marc Tamlyn | 2014-05-22 | 1 | -0/+185 |
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. |