summaryrefslogtreecommitdiff
path: root/docs/ref/contrib/postgres/forms.txt
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #34140 -- Reformatted code blocks in docs with blacken-docs.django-bot2023-03-011-20/+22
|
* Refs #34140 -- Applied rst code-block to non-Python examples.Carlton Gibson2023-02-101-2/+6
| | | | | Thanks to J.V. Zammit, Paolo Melchiorre, and Mariusz Felisiak for reviews.
* Fixed #33308 -- Added support for psycopg version 3.Daniele Varrazzo2022-12-151-4/+4
| | | | | | | Thanks Simon Charette, Tim Graham, and Adam Johnson for reviews. Co-authored-by: Florian Apolloner <florian@apolloner.eu> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
* Refs #12990 -- Removed django.contrib.postgres.forms.JSONField per ↵Mariusz Felisiak2021-01-141-19/+0
| | | | deprecation timeline.
* FIxed typo in docs/ref/contrib/postgres/forms.txt.Eric Theise2020-07-151-1/+1
|
* Fixed #12990, Refs #27694 -- Added JSONField model field.sage2020-05-081-2/+6
| | | | | | | | | | | Thanks to Adam Johnson, Carlton Gibson, Mariusz Felisiak, and Raphael Michel for mentoring this Google Summer of Code 2019 project and everyone else who helped with the patch. Special thanks to Mads Jensen, Nick Pope, and Simon Charette for extensive reviews. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
* Refs #29598 -- Removed FloatRangeField per deprecation timeline.Mariusz Felisiak2019-09-101-13/+0
|
* Removed versionadded/changed annotations for 2.2.Mariusz Felisiak2019-09-101-2/+0
|
* Fixed #30573 -- Rephrased documentation to avoid words that minimise the ↵Tobias Kunze2019-09-061-2/+1
| | | | | | | | | | | | | | | | | | | | | | | involved difficulty. This patch does not remove all occurrences of the words in question. Rather, I went through all of the occurrences of the words listed below, and judged if they a) suggested the reader had some kind of knowledge/experience, and b) if they added anything of value (including tone of voice, etc). I left most of the words alone. I looked at the following words: - simply/simple - easy/easier/easiest - obvious - just - merely - straightforward - ridiculous Thanks to Carlton Gibson for guidance on how to approach this issue, and to Tim Bell for providing the idea. But the enormous lion's share of thanks go to Adam Johnson for his patient and helpful review.
* Fixed #29598 -- Deprecated FloatRangeField in favor of DecimalRangeField.Stefano Chiodino2018-10-021-0/+15
|
* Alphabetized imports in various docs.Mariusz Felisiak2018-05-121-2/+2
| | | Follow-up of d97cce34096043b019e818a7fb98c0f9f073704c and 7d3fe36c626a3268413eb86d37920f132eb4a54f.
* Removed versionadded/changed annotations for 1.11.Tim Graham2017-09-221-4/+0
|
* Fixed #27582 -- Allowed HStoreField to store null values.David Hoffman2016-12-151-2/+6
|
* Fixed #26124 -- Added missing code formatting to docs headers.rowanv2016-02-011-18/+18
|
* Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus2016-01-221-2/+6
|
* Fixed #24604 -- Added JSONField to contrib.postgres.Marc Tamlyn2015-05-301-0/+15
|
* Fixed typo in docs/ref/contrib/postgres/forms.txt.Tim Graham2015-01-231-1/+1
|
* Fixed #24170 -- Implemented decompress for BaseRangeField widgetsNg Zhi An2015-01-221-1/+25
|
* Fixed #24001 -- Added range fields for PostgreSQL.Marc Tamlyn2015-01-101-0/+45
| | | | | | | | | 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
* Fix malformed note directives.Carl Meyer2014-11-171-0/+1
|
* Added HStoreField.Marc Tamlyn2014-11-041-0/+20
| | | | | 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/+135
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.