summaryrefslogtreecommitdiff
path: root/docs/ref/contrib
AgeCommit message (Collapse)Author
2015-04-09Fixed typo in docs/ref/contrib/admin/index.txtandredelorme
2015-04-08Revert "Fixed #24474 -- Allowed configuring the admin's empty change list ↵Tim Graham
value." This reverts commit 72f769f494822981db6df9524b92a2d86f8e69fe. There are several test failures that need to be fixed.
2015-04-08Fixed #24474 -- Allowed configuring the admin's empty change list value.Loek van Gent
2015-03-30Fixed #24301 -- Added PostgreSQL-specific aggregate functionsAndriy Sokolovskiy
2015-03-30Fixed #24550 -- Added migration operation description to sqlmigrate outputMarkus Holtermann
Thanks Tim Graham for the review.
2015-03-27Dropped support for PostgreSQL 9.0.Tim Graham
2015-03-25Fixed #23814 -- Documented apps refactored out of Django.Fabio Natali
2015-03-19Fixed #24417 -- Added ModelAdmin.get_list_select_related()Loek van Gent
2015-03-18Fixed #24495 -- Allowed unsaved model instance assignment check to be bypassed.Karl Hobley
2015-03-17Updated links to latest version of PostGIS docs.Tim Graham
2015-03-17Updated location of gis_tests in docs.Tim Graham
2015-03-17Made SRID a required parameter for GDALRaster instantiation; refs #23804.Daniel Wiesmann
Earlier versions of GDAL do not allow the srid to be set to 0, so it should be a required parameter to ensure compatibility.
2015-03-16Added write support for GDALRasterDaniel Wiesmann
- Instantiation of GDALRaster instances from dict or json data. - Retrieve and write pixel values in GDALBand objects. - Support for the GDALFlushCache in gdal C prototypes - Added private flush method to GDALRaster to make sure all data is written to files when file-based rasters are changed. - Replaced ``ptr`` with ``_ptr`` for internal ptr variable Refs #23804. Thanks Claude Paroz and Tim Graham for the reviews.
2015-03-13Fixed #24253 -- Documented staff_member_required decorator.Andrei Kulakov
2015-03-13Documented gdal DataSource encoding parameterClaude Paroz
Thanks Max Demars for the suggestion and Tim Graham for the review.
2015-03-12Fixed #24364 -- Doc'ed that ManifestStaticFileStorage shouldn't be used ↵Aksel Ethem
during testing.
2015-03-10Fixed download instructions for cities shapefileClaude Paroz
Thanks Daniel Wiesmann for spotting the issue.
2015-03-10Updated GIS docs wrt GIS test pathsClaude Paroz
2015-03-07Fixed typos and updated spelling wordlist.Floris den Hengst
2015-02-22Fixed #24358 -- Corrected code-block directives for console sessions.Sean Wang
2015-02-16Fixed #24335 -- Bumped required psycopg2 version to 2.4.5 (2.5 for ↵Tim Graham
contrib.postgres).
2015-02-14Fixed #24144 -- Documented that GEOSGeometry.envelope can return a pointClaude Paroz
Thanks Manel Clos for the report.
2015-02-13Added missing parameter to each_context() in doc example.Tim Graham
2015-02-13Added each_context() and a template tip to custom admin view docs.Joe Simpson
2015-02-05Improved nested ArrayField exampleTom Christie
2015-02-05Documented that m2m_changed isn't triggered when M2M is displayed as admin ↵Loic Bistuer
inline. Refs #6707.
2015-02-03Fixed #24149 -- Normalized tuple settings to lists.darkryder
2015-02-01Removed versionadded/changed notes for 1.7.Tim Graham
2015-01-23Fixed typo in docs/ref/contrib/postgres/forms.txt.Tim Graham
2015-01-22Fixed #24170 -- Implemented decompress for BaseRangeField widgetsNg Zhi An
2015-01-20Fixed #24186 -- Fixed a typo in the admin docs.Simon Charette
Thanks to Keryn Knight for the report.
2015-01-18Removed contrib.sites.models.RequestSite/get_current_site() aliases.Tim Graham
Per deprecation timeline; refs #21680.
2015-01-18Clarified a contrib.sites deprecation and added to 1.7 release notes.Tim Graham
2015-01-18Removed contrib.contenttypes.generic per deprecation timeline; refs #19774.Tim Graham
2015-01-17Removed usage of deprecated dumpdata options in docs.Tim Graham
2015-01-17Removed ModelAdmin.get_formsets() per deprecation timeline; refs #20702.Tim Graham
2015-01-17Removed contrib.flatpages.FlatPageSitemap per deprecation timeline; refs #23884.Tim Graham
2015-01-17Fixed #24055 -- Keep reference to view class for resolve()Collin Anderson
2015-01-17Removed FastCGI support per deprecation timeline; refs #20766.Tim Graham
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