Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref/contrib
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed #24001 -- Added range fields for PostgreSQL.Marc Tamlyn2015-01-103-0/+321
| | | | | | | | | 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
* Fixed typo in docs/ref/contrib/admin/index.txt.Tim Graham2015-01-011-1/+1
|
* Fixed #22295 -- Replaced permission check for displaying ↵Thomas Tanner2014-12-311-0/+18
| | | | admin user-tools
* Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin2014-12-282-3/+5
|
* Deprecated TEMPLATE_DIRS.Aymeric Augustin2014-12-281-2/+2
|
* Deprecated TEMPLATE_LOADERS.Aymeric Augustin2014-12-282-5/+6
|
* Deprecated current_app in TemplateResponse and ↵Aymeric Augustin2014-12-281-5/+10
| | | | render(_to_response).
* Deprecated some arguments of ↵Aymeric Augustin2014-12-281-6/+4
| | | | | | | | django.shortcuts.render(_to_response). dictionary and context_instance and superseded by context. Refactored tests that relied context_instance with more modern idioms.
* Moved context_processors from django.core to ↵Aymeric Augustin2014-12-281-1/+1
| | | | django.template.
* Documented AdminSite.has_permission(); refs #22295.Tim Graham2014-12-261-0/+11
|
* Fixed some docs spelling mistakes.Tim Graham2014-12-231-2/+2
|
* Added RasterSource/GDALBand GDAL objectsClaude Paroz2014-12-231-2/+136
| | | | | Based on Daniel Wiesmann's raster branch. Thanks Daniel Wiesmann and Tim Graham for the reviews. Refs #23804.
* Upgrade jQuery from 1.11.1 to 1.11.2Collin Anderson2014-12-231-2/+2
| | | | refs #23355
* Updated some other external links in the docsClaude Paroz2014-12-199-12/+12
|
* Used https for most *.python.org linksClaude Paroz2014-12-192-5/+5
|
* Fixed #23884 -- Moved FlatPageSitemap into ↵Berker Peksag2014-12-152-8/+49
| | | | django.contrib.flatpages.
* Fixed template tag braces spacing.Kevin Marsh2014-12-121-1/+1
|
* Fixed typo in spatialite.txtClaude Paroz2014-12-081-1/+1
| | | | Thanks Tim Graham for spotting the error.
* Ran 'CREATE EXTENSION postgis' during prepare_database hookClaude Paroz2014-12-081-0/+6
| | | | DatabaseWrapper.prepare_database has been introduced in 307de67073.
* Fixed #20968 -- Checked Spatialite metadata before ↵Claude Paroz2014-12-081-29/+6
| | | | | | | migrations Thanks Kenial S. Lee for the initial patch and Tim Graham for the review.
* Fixed documentation of GeoModelAdmin.openlayers_urlClaude Paroz2014-12-061-1/+1
|
* Added versionadded annotation for contrib.postgres.Tim Graham2014-12-041-0/+2
|
* Removed redundant numbered parameters from str.format().Berker Peksag2014-12-031-3/+3
| | | | Since Python 2.7 and 3.1, "{0} {1}" is equivalent to "{} {}".
* Removed instructions to create a PostgreSQL cluster in ↵Claude Paroz2014-11-291-12/+0
| | | | | | | | | GIS docs Creating a new cluster is neither required not recommendable for most users. The previous section explains how to create a user with sufficient permissions to automatically create a database during tests.
* Fixed #23423 -- Added unaccent lookup in ↵Thomas Chaumeny2014-11-293-0/+45
| | | | django.contrib.postgres
* Fixed #23901 -- Documented how to use SpatiaLite with ↵Kenial Lee2014-11-261-2/+37
| | | | Homebrew.
* Updated GIS docs to use doc links.Tim Graham2014-11-2620-61/+20
|
* Updated formtools docs to point at new package outside ↵Jannis Leidel2014-11-264-909/+37
| | | | | | the Django repo. Refs #23677.
* Added warning about get_inline_instances() permission ↵Simon Charette2014-11-251-0/+6
| | | | checking; refs #23754.
* Updated an old note about GEOSGeometry.transformClaude Paroz2014-11-221-10/+2
|
* Corrected Permission.max_length in docs; refs #8162.Sergey Fedoseev2014-11-211-1/+5
|
* Fix malformed note directives.Carl Meyer2014-11-181-0/+1
|
* Merge pull request #3549 from psagers/masterJulien Phalip2014-11-161-5/+9
|\ | | | | | | | | Fixes a race condition in the documentation. The example for django.contrib.admin.ModelAdmin.get_form was modifying self.exclude. However, since ModelAdmin instances are global and have no thread- or request-locality, this is not safe for concurrent requests. This updated documentation demonstrates a safe method to override admin forms on a per-request basis.
| * Fixes a race condition in the documentation.Peter Sagerson2014-11-151-5/+9
| | | | | | | | | | | | | | | | | | | | The example for django.contrib.admin.ModelAdmin.get_form modifies self.exclude. However, since ModelAdmin instances are global and have no thread- or request-locality, this is not safe for concurrent requests.[1] This updated documentation demonstrates a safe method to override admin forms on a per-request basis. [1] https://groups.google.com/forum/#!topic/django-users/AmoUDtEefyA
* | Removed old version note in layermapping.txtClaude Paroz2014-11-151-2/+2
|/
* Added a new GeoJSON serialization format for GeoDjangoClaude Paroz2014-11-152-0/+70
| | | | Thanks Reinout van Rees for the review.
* Removed doc reference to pre-1.5 PostGISClaude Paroz2014-11-131-8/+7
|
* Updated Fink doc section to be version-agnosticClaude Paroz2014-11-131-6/+3
|
* Fix minor typo in documentation.Marc Tamlyn2014-11-041-1/+1
|
* Added HStoreField.Marc Tamlyn2014-11-045-2/+233
| | | | | Thanks to `django-hstore` for inspiration in some areas, and many people for reviews.
* Fixed versionchanged indentation in docs/.Berker Peksag2014-11-041-5/+5
|
* Moved CSRF docs out of contrib.Thomas Chaumeny2014-11-032-458/+0
|
* Explained why admindocs omits model methods with arguments.Zan Anderle2014-10-301-3/+8
|
* Added missing imports to example from previous commit.Tim Graham2014-10-301-0/+2
|
* Fixed #23575 -- Added a code example for custom AdminSite.Berker Peksag2014-10-301-12/+31
|
* Added cross reference in admin docs to topic about ↵P.A. SCHEMBRI2014-10-291-1/+3
| | | | saving objects in formsets.
* Fixed #23607 -- Typo in docs/ref/contrib/staticfiles.txt.Tim Graham2014-10-061-1/+1
| | | | Thanks Rolandde for the report.
* Updated links in admin docs to use :ref:Kostochko Dmitriy2014-10-061-3/+7
| | | | | | per Sphinx docs: "Using ref is advised over standard reStructuredText links to sections because it works across files, when section headings are changed, and for all builders that support cross-references.
* Fixed typo in docs/ref/contrib/sites.txtticalcster2014-10-021-1/+1
|
* Fixed #15089 -- Allowed contrib.sites to lookup the ↵Tim Graham2014-10-011-4/+19
| | | | | | | current site based on request.get_host(). Thanks Claude Paroz, Riccardo Magliocchetti, and Damian Moore for contributions to the patch.