| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-04-18 | [1.7.x] Moved RemoteUserBackend documentation to reference guide. | Tim Graham | |
| Backport of 26d118c3fe from master | |||
| 2014-04-17 | [1.7.x] Confirmed support for PostGIS 2.1 and GDAL 1.10 | Claude Paroz | |
| Refs #22456. Backport of 3cea917e3e from master. | |||
| 2014-04-10 | [1.7.x] Fixed #21353 -- Noted that description is ignored for TabularInlines. | Tim Graham | |
| Thanks nofinator for the report. Backport of d5031ecf88 from master | |||
| 2014-04-07 | [1.7.x] Added missing request parameter to get_current_site(). | Yin Jifeng | |
| Backport of d6c9bdd825 from master | |||
| 2014-04-04 | [1.7.x] Fixed #22380 -- Missing SECRET_KEY variable in sample settings file ↵ | Vishal Lal | |
| for testing Backport of 8f621b83e9 from master. | |||
| 2014-04-03 | [1.7.x] Fixed #22372 -- Improved description of WizardView.get_context_data(). | Vishal Lal | |
| Thanks simon29 for the report. Backport of a8e2ec0e82 from master | |||
| 2014-03-21 | [1.7.x] Fixed typos in docs (django.contrib.site) | Thomas Schreiber | |
| Backport of 907ac646415a911b54d84c5203d4fa78ed1b91d5 from master. | |||
| 2014-03-19 | Replaced reference to ModelAdmin.get_formsets() (deprecated) with ↵ | Daniel Hahler | |
| get_formsets_with_inlines(). | |||
| 2014-03-06 | Fixed #22185 -- Added settings.CSRF_COOKIE_AGE | Roger Hu | |
| Thanks Paul McMillan for the review. | |||
| 2014-03-05 | Fixed #22207 -- Added support for GenericRelation reverse lookups | Gabe Jackson | |
| GenericRelation now supports an optional related_query_name argument. Setting related_query_name adds a relation from the related object back to the content type for filtering, ordering and other query operations. Thanks to Loic Bistuer for spotting a couple of important issues in his review. | |||
| 2014-03-03 | Fixed #21908 -- Added example usage for ModelAdmin.get_inline_instances(). | Tim Graham | |
| Thanks matt at schinckel.net for the suggestion. | |||
| 2014-03-03 | Fixed some typos and formatting issues in docs. | Rodolfo Carvalho | |
| 2014-03-03 | Fixed #22135 -- Added ModelAdmin.get_changeform_initial_data(). | Greg Chapple | |
| Allows custom behavior for setting initial form data in ModelAdmin. By default, initial data is set via GET params. The new method allows this behavior to be overridden. Thanks egasimus for the suggestion. | |||
| 2014-03-02 | Fixed some typos in the documentation. | Baptiste Mispelon | |
| Thanks to Rodolfo Carvalho and Piotr Kasprzyk for the patch. | |||
| 2014-02-28 | Fixed spelling mistakes in docs. | Tim Graham | |
| 2014-02-28 | Fixed #21948 -- Noted TEMPLATE_LOADERS requirement when overriding admin ↵ | Alex de Landgraaf | |
| templates. Thanks django at patjack.co.uk for the suggestion. | |||
| 2014-02-28 | Fixed doc typos. | Tim Graham | |
| 2014-02-25 | Fixed docs typos. | Szczepan Cieślik | |
| 2014-02-25 | Fixed #22142 -- Documented PostGIS 2 database creation during tests | Iacopo Spalletti | |
| 2014-02-22 | Fixed #21902 -- Documented search order for list_display. | Marcin Sokół | |
| 2014-02-15 | Fixed #22052 -- Corrected a misspelling of ellipsoid | Michal Prusek | |
| 2014-02-15 | Fixed #22049 -- Corrected a misspelling of dimensional | djendrju | |
| 2014-02-14 | Fixed #21924 -- Added the ability to specify a reverse order for ↵ | Klemens Mantzos | |
| admin_order_field. Thanks Klemens Mantzos for the report and initial patch. | |||
| 2014-02-13 | Fixed #21951 -- Updated docs to use __str__ for Python 3 | Alasdair Nicol | |
| Thanks Tim Graham for the report and recommendations | |||
| 2014-02-10 | Fixed #21994 -- Added form_dict argument to calls of WizardView.done() | Julian Wachholz | |
| Added an additional keyword argument ``form_dict`` to calls of WizardView.done() implementations which allows easier access to validated forms by their step name. | |||
| 2014-02-09 | Minor edits to new findstatic functionality; refs #19879. | Tim Graham | |
| Hopefully fixes a test failure on Jenkins. | |||
| 2014-02-09 | Fixed #19879 -- Have 'findstatic' says on which directories it searched the ↵ | Vajrasky Kok | |
| relative paths. Added searched_locations in finders module. Added verbosity flag level 2 on 'findstatic' command that will output the directories on which it searched the relative paths. Reported by ccurvey. Initial patch by Jonas Svensson and Vajrasky Kok. | |||
| 2014-02-06 | Fixed #17005 -- Added CurrentSiteMiddleware to set the current site on each ↵ | Christopher Medrela | |
| request. Thanks jordan at aace.org for the suggestion. | |||
| 2014-02-02 | Fixed typo. | Aymeric Augustin | |
| 2014-01-29 | Fix typo CRSF -> CSRF | Ian Foote | |
| 2014-01-26 | Fixed #19774 -- Deprecated the contenttypes.generic module. | Simon Charette | |
| It contained models, forms and admin objects causing undesirable import side effects. Refs #16368. Thanks to Ramiro, Carl and Loïc for the review. | |||
| 2014-01-26 | Moved RequestSite and get_current_site. | Aymeric Augustin | |
| Following the app-loading refactor, these objects must live outside of django.contrib.sites.models because they must be available without importing the django.contrib.sites.models module when django.contrib.sites isn't installed. Refs #21680. Thanks Carl and Loic for reporting this issue. | |||
| 2014-01-25 | Fixed #21829 -- Added default AppConfigs. | Aymeric Augustin | |
| Thanks Russell for the report, Marc for the initial patch, Carl for the final review, and everyone who contributed to the design discussion. | |||
| 2014-01-22 | Always use parentheses when documenting a method with no arguments. | Baptiste Mispelon | |
| 2014-01-22 | Don't show `self` in the list of arguments of a method. | Baptiste Mispelon | |
| This is consistent with Python's official documentation and it's a sphinx recommendation too[1]. [1] http://sphinx-doc.org/markup/desc.html#dir-method Refs #21855. | |||
| 2014-01-22 | Fixed some markup that caused broken links in the static files docs. | Tim Graham | |
| 2014-01-20 | Added ManifestStaticFilesStorage to staticfiles contrib app. | Jannis Leidel | |
| It uses a static manifest file that is created when running collectstatic in the JSON format. | |||
| 2014-01-19 | Fixed some admin sphinx definitions so links work properly. | Tim Graham | |
| 2014-01-18 | Fixed #21712 -- Moved autodiscover() to AdminConfig.ready(). | Aymeric Augustin | |
| Thanks Marc Tamlyn for the initial version of the patch. | |||
| 2014-01-17 | Removed some unnecessary __exact operators in filters. | Tim Graham | |
| 2014-01-11 | Fixed #21547 -- Updated GeoDjango tutorial with PostGIS 2 output | Claude Paroz | |
| Thanks awilliams at cironline.org for the report. | |||
| 2014-01-02 | Fixed minor typos. | Nathan Smith | |
| 2013-12-30 | Fixed #21710 -- Documented User.get_short_name() | Tim Graham | |
| Thanks Keryn Knight for the report. | |||
| 2013-12-28 | Fixed #21618 -- Added hints about openlayers.js hosting | Claude Paroz | |
| Thanks kz26 for the report and Tim Graham for the excellent review. | |||
| 2013-12-28 | Used app_label instead of appname. | Aymeric Augustin | |
| The last component of the dotted path to the application module is consistently referenced as the application "label". For instance it's AppConfig.label. appname could be confused with AppConfig.name, which is the full dotted path. | |||
| 2013-12-25 | Added versionadded annotations for redirect middleware attributes. | Tim Graham | |
| refs #19321 | |||
| 2013-12-24 | Added more spatial predicates for prepared geometries | Claude Paroz | |
| GEOS 3.3 added crosses, disjoint, overlaps, touches and within predicates on prepared geometries. | |||
| 2013-12-24 | Dropped support for GEOS < 3.1 | Claude Paroz | |
| 2013-12-18 | Fixed #21386 -- Removed admindocs dependence on sites framework | Bouke Haarsma | |
| * Removed ADMIN_FOR setting and warn warning * Group view functions by namespace instead of site * Added a test verifying namespaces are listed Thanks to Claude Paroz for reviewing and ideas for improvement. | |||
| 2013-12-12 | Fixed #21591 -- Added documentation about contrib.messages.get_messages. | Rémy HUBSCHER | |
| Refs https://code.djangoproject.com/ticket/21591 Thanks to track user merb for the report. | |||
