summaryrefslogtreecommitdiff
path: root/docs/ref/contrib
Commit message (Collapse)AuthorAgeFilesLines
...
* Refs #30573 -- Rephrased "Of Course" and "Obvious(ly)" in documentation and ↵Adam Johnson2020-05-042-4/+3
| | | | comments.
* Fixed #31455 -- Added support for deferrable exclusion constraints on ↵Ian Foote2020-05-011-1/+33
| | | | PostgreSQL.
* Refs #27778 -- Removed reference to ASCII usernames in ↵David Smith2020-05-011-8/+0
| | | | django.contrib.auth.models.User docs.
* Fixed broken links in docs.Mariusz Felisiak2020-04-281-1/+1
|
* Updated iTunes podcast format link in syndication docs.David Smith2020-04-201-1/+1
|
* Improved message example in admin actions documentation.Nick Pope2020-04-161-6/+9
| | | | | | Avoid partial string construction and make use of ``ngettext`` to show example of how to handle plural variants with translations. Also make use of ``messages.SUCCESS`` to highlight customizing the style of the message - in this case it better fits what the message is conveying.
* Used :rfc: role in various docs.Mariusz Felisiak2020-04-152-5/+2
|
* Fixed #31196 -- Added support for PostGIS 3.Sergey Fedoseev2020-04-142-1/+6
|
* Refs #31196 -- Installed postgis_raster extension on PostGIS 3+.Claude Paroz2020-04-141-0/+5
|
* Fixed Sphinx warnings on duplicate object descriptions.Mariusz Felisiak2020-04-074-1/+10
|
* Prevented (and corrected) single backtick usage in docs.Adam Johnson2020-04-012-5/+5
|
* Fixed #31330 -- Corrected catchall URL pattern in flatpages docs.Carlton Gibson2020-03-261-1/+1
| | | | | | Use re_path() pattern with the regex used before original regression in df41b5a05d4e00e80e73afe629072e37873e767a. Regression in a0916d7212aaae634f4388d47d8717abc2cd9036.
* Fixed #28194 -- Added support for normalization and cover density to SearchRank.Hannes Ljungberg2020-03-231-1/+27
|
* Fixed #31371 -- Increased User.first_name max_length to 150 characters.Ryan Petrello2020-03-181-1/+5
|
* Fixed #31340 -- Allowed query expressions in SearchQuery.value and __search ↵Baptiste Mispelon2020-03-161-1/+6
| | | | lookup.
* Fixed #31363 -- Added support for negative integers to intword template filter.jay201620162020-03-161-0/+6
|
* Fixed #31330 -- Updated flatpages URLconf example to work with APPEND_SLASH.Hasan Ramezani2020-03-141-1/+1
| | | Regression in df41b5a05d4e00e80e73afe629072e37873e767a.
* Added missing backticks in various docs.Mariusz Felisiak2020-03-061-1/+1
|
* Fixed #31147 -- Added SearchHeadline to django.contrib.postgres.Hannes Ljungberg2020-03-031-0/+54
|
* Documented default value of InlineModelAdmin.extra.Adam Johnson2020-03-031-1/+1
|
* Updated the GeoJSON format specification link to RFC 7946.Mariusz Felisiak2020-01-291-4/+3
|
* Refs #25778 -- Updated some links to HTTPS and new locations.Mariusz Felisiak2020-01-297-10/+10
|
* Fixed #31212 -- Updated psycopg links to HTTPS and new location.Jon Dufresne2020-01-291-1/+1
|
* Fixed #28991 -- Added EmptyFieldListFilter class in admin.filters.Federico Jaramillo Martínez2020-01-031-0/+13
| | | | | | | Thanks Simon Charette and Carlton Gibson for reviews. Co-Authored-By: Jonas Haag <jonas@lophus.org> Co-Authored-By: Christophe Baldy <christophe.baldy@polyconseil.fr>
* Removed unnecessary code-block directives in various docs.Jon Dufresne2019-12-231-3/+1
|
* Removed outdated information from contrib.sites docs.Garry Polley2019-12-201-5/+4
|
* Fixed #30585 -- Added {% translate %} and {% blocktranslate %} template tags.Mike Hansen2019-12-181-2/+2
|
* Fixed #31088 -- Added support for websearch searching in SearchQuery.James Turk2019-12-161-2/+10
|
* Fixed #31080 -- Removed redundant type="text/javascript" attribute from ↵Jon Dufresne2019-12-111-2/+2
| | | | <script> tags.
* Fixed #31039 -- Added support for contained_by lookup with AutoFields, ↵Hasan Ramezani2019-12-051-2/+14
| | | | SmallIntegerField, and DecimalField.
* Doc'd SpatiaLite support of 3D geometry fields.Sergey Fedoseev2019-11-251-1/+1
| | | | Support was added in 65129aac07022f23afa1df7ec7fad2216634cb38.
* Fixed #30996 -- Added AsWKB and AsWKT GIS functions.Sergey Fedoseev2019-11-222-3/+47
|
* Fixed #30994 -- Added Oracle support for AsGeoJSON GIS function.Sergey Fedoseev2019-11-182-5/+11
|
* Fixed #29916 -- Added lower_inc, lower_inf, upper_inc, and upper_inf lookups ↵Dulmandakh2019-11-141-0/+56
| | | | | | for RangeFields. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
* Fixed #30943 -- Added BloomIndex to django.contrib.postgres.Nick Pope2019-11-072-0/+32
|
* Fixed #29983 -- Replaced os.path() with pathlib.Path in project template and ↵Jon Dufresne2019-11-071-10/+6
| | | | | docs. Thanks Curtis Maloney for the original patch.
* Fixed #15742 -- Fixed an example of collecting selected objects in ↵Daniel Fairhead2019-11-061-3/+5
| | | | | | | ModelAdmin.actions docs. The queryset argument is already filtered, and request.POST doesn't contain all selected objects when "Select All" is used.
* Refs #30923 -- Fixed an example of rendering templates in contrib.sites docs.Alasdair Nicol2019-11-051-3/+3
|
* Fixed #29770 -- Added LinearRing.is_counterclockwise property.Sergey Fedoseev2019-10-251-0/+6
|
* Fixed #30890 -- Added MariaDB support for the relate lookup.Mariusz Felisiak2019-10-182-5/+10
|
* Fixed #30562 -- Doc'd MariaDB support for GIS spatial lookups.Mariusz Felisiak2019-10-162-50/+66
|
* Refs #28436 -- Corrected docs regarding MySQL support of distance lookups.Mariusz Felisiak2019-10-162-6/+10
|
* Refs #22423 -- Corrected crosses lookup support on MySQL in documentation.Mariusz Felisiak2019-10-161-1/+1
| | | Support was added in 15715bf.
* Refs #10348 -- Doc'd that ModelAdmin ignores list_select_related when ↵Tamer Sherif2019-10-071-0/+6
| | | | QuerySet.select_related() was already called.
* Fixed #30817 -- Clarified return value of Sitemap.items().Sjbrgsn2019-10-021-9/+10
|
* Refs #28606 -- Removed CachedStaticFilesStorage per deprecation timeline.Mariusz Felisiak2019-09-101-33/+0
|
* Refs #29598 -- Removed FloatRangeField per deprecation timeline.Mariusz Felisiak2019-09-102-26/+0
|
* Removed versionadded/changed annotations for 2.2.Mariusz Felisiak2019-09-1011-58/+0
|
* Fixed #30573 -- Rephrased documentation to avoid words that minimise the ↵Tobias Kunze2019-09-0628-180/+169
| | | | | | | | | | | | | | | | | | | | | | | 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 #18763 -- Added ModelBackend/UserManager.with_perm() methods.Berker Peksag2019-08-291-0/+41
| | | | Co-authored-by: Nick Pope <nick.pope@flightdataservices.com>