summaryrefslogtreecommitdiff
path: root/docs/ref/contrib
AgeCommit message (Collapse)Author
2015-01-16Fixed #24099 -- Removed contenttype.name deprecated fieldClaude Paroz
This finsishes the work started on #16803. Thanks Simon Charette, Tim Graham and Collin Anderson for the reviews.
2015-01-16Fixed #24152 -- Deprecated GeoQuerySet aggregate methodsClaude Paroz
Thanks Josh Smeaton and Tim Graham for the reviews.
2015-01-16Fixed #24143 -- Encouraged use of Http404 messages for debugging.Keryn Knight
2015-01-13Fixed bad model example in admin docs.Collin Anderson
2015-01-11Fixed spelling errors in docs.Tim Graham
2015-01-10Moved doc on the DTL's syntax to the ref/ section.Aymeric Augustin
This makes room for a more general introduction about templating. Updated some links to point to the new location, but kept those that didn't talk specifically about the DTL.
2015-01-10Fixed #13165 -- Added edit and delete links to admin foreign key widgets.Simon Charette
Thanks to Collin Anderson for the review and suggestions and Tim for the final review.
2015-01-10Fixed #24001 -- Added range fields for PostgreSQL.Marc Tamlyn
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
2015-01-01Fixed typo in docs/ref/contrib/admin/index.txt.Tim Graham
2014-12-31Fixed #22295 -- Replaced permission check for displaying admin user-toolsThomas Tanner
2014-12-28Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin
2014-12-28Deprecated TEMPLATE_DIRS.Aymeric Augustin
2014-12-28Deprecated TEMPLATE_LOADERS.Aymeric Augustin
2014-12-28Deprecated current_app in TemplateResponse and render(_to_response).Aymeric Augustin
2014-12-28Deprecated some arguments of django.shortcuts.render(_to_response).Aymeric Augustin
dictionary and context_instance and superseded by context. Refactored tests that relied context_instance with more modern idioms.
2014-12-28Moved context_processors from django.core to django.template.Aymeric Augustin
2014-12-26Documented AdminSite.has_permission(); refs #22295.Tim Graham
2014-12-23Fixed some docs spelling mistakes.Tim Graham
2014-12-23Added RasterSource/GDALBand GDAL objectsClaude Paroz
Based on Daniel Wiesmann's raster branch. Thanks Daniel Wiesmann and Tim Graham for the reviews. Refs #23804.
2014-12-22Upgrade jQuery from 1.11.1 to 1.11.2Collin Anderson
refs #23355
2014-12-19Updated some other external links in the docsClaude Paroz
2014-12-19Used https for most *.python.org linksClaude Paroz
2014-12-15Fixed #23884 -- Moved FlatPageSitemap into django.contrib.flatpages.Berker Peksag
2014-12-12Fixed template tag braces spacing.Kevin Marsh
2014-12-08Fixed typo in spatialite.txtClaude Paroz
Thanks Tim Graham for spotting the error.
2014-12-08Ran 'CREATE EXTENSION postgis' during prepare_database hookClaude Paroz
DatabaseWrapper.prepare_database has been introduced in 307de67073.
2014-12-08Fixed #20968 -- Checked Spatialite metadata before migrationsClaude Paroz
Thanks Kenial S. Lee for the initial patch and Tim Graham for the review.
2014-12-06Fixed documentation of GeoModelAdmin.openlayers_urlClaude Paroz
2014-12-04Added versionadded annotation for contrib.postgres.Tim Graham
2014-12-03Removed redundant numbered parameters from str.format().Berker Peksag
Since Python 2.7 and 3.1, "{0} {1}" is equivalent to "{} {}".
2014-11-29Removed instructions to create a PostgreSQL cluster in GIS docsClaude Paroz
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.
2014-11-28Fixed #23423 -- Added unaccent lookup in django.contrib.postgresThomas Chaumeny
2014-11-26Fixed #23901 -- Documented how to use SpatiaLite with Homebrew.Kenial Lee
2014-11-26Updated GIS docs to use doc links.Tim Graham
2014-11-26Updated formtools docs to point at new package outside the Django repo.Jannis Leidel
Refs #23677.
2014-11-25Added warning about get_inline_instances() permission checking; refs #23754.Simon Charette
2014-11-22Updated an old note about GEOSGeometry.transformClaude Paroz
2014-11-21Corrected Permission.max_length in docs; refs #8162.Sergey Fedoseev
2014-11-17Fix malformed note directives.Carl Meyer
2014-11-16Merge pull request #3549 from psagers/masterJulien Phalip
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.
2014-11-15Removed old version note in layermapping.txtClaude Paroz
2014-11-15Fixes a race condition in the documentation.Peter Sagerson
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
2014-11-15Added a new GeoJSON serialization format for GeoDjangoClaude Paroz
Thanks Reinout van Rees for the review.
2014-11-13Removed doc reference to pre-1.5 PostGISClaude Paroz
2014-11-13Updated Fink doc section to be version-agnosticClaude Paroz
2014-11-04Fix minor typo in documentation.Marc Tamlyn
2014-11-04Added HStoreField.Marc Tamlyn
Thanks to `django-hstore` for inspiration in some areas, and many people for reviews.
2014-11-03Fixed versionchanged indentation in docs/.Berker Peksag
2014-11-03Moved CSRF docs out of contrib.Thomas Chaumeny
2014-10-30Explained why admindocs omits model methods with arguments.Zan Anderle