| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-05-22 | Added omitted documentation for ArrayField__len. | Marc Tamlyn | |
| 2014-05-22 | Added array field support for PostgreSQL. | Marc Tamlyn | |
| The first part of django.contrib.postgres, including model and two form fields for arrays of other data types. This commit is formed of the following work: Add shell of postgres app and test handling. First draft of array fields. Use recursive deconstruction. Stop creating classes at lookup time. Add validation and size parameter. Add contained_by lookup. Add SimpleArrayField for forms. Add SplitArrayField (mainly for admin). Fix prepare_value for SimpleArrayField. Stop using MultiValueField and MultiWidget. They don't play nice with flexible sizes. Add basics of admin integration. Missing: - Tests - Fully working js Add reference document for django.contrib.postgres.fields.ArrayField. Various performance and style tweaks. Fix internal docs link, formalise code snippets. Remove the admin code for now. It needs a better way of handing JS widgets in the admin as a whole before it is easy to write. In particular there are serious issues involving DateTimePicker when used in an array. Add a test for nested array fields with different delimiters. This will be a documented pattern so having a test for it is useful. Add docs for SimpleArrayField. Add docs for SplitArrayField. Remove admin related code for now. definition -> description Fix typo. Py3 errors. Avoid using regexes where they're not needed. Allow passing tuples by the programmer. Add some more tests for multidimensional arrays. Also fix slicing as much as it can be fixed. Simplify SplitArrayWidget's data loading. If we aren't including the variable size one, we don't need to search like this. | |||
| 2014-05-19 | Fixed #22655 -- Fixed GeoQuerySet doc about strictly_below | Moayad Mardini | |
| The paragraph was a copy of strictly_above. | |||
| 2014-05-17 | Fixed #22644 -- Clarified documentation for NamedUrlWizardView | Erik Romijn | |
| 2014-05-15 | Fixed #17642 -- Added min_num support to modelformsets, inlines, and the admin. | Anders Steinlein | |
| Thanks Stephen Burrows for work on the patch as well. Forwardport of 2914f66983a92fcae55673c517dd8d01e8c238c4 from stable/1.7.x | |||
| 2014-05-13 | Removed an unnecessary anchor in the docs. | Tim Graham | |
| 2014-05-13 | Removed some references to django.contrib.comments which has been removed. | Tim Graham | |
| 2014-05-12 | Fixed #22613 -- Added formfield_for_choice_field() to the list of methods ↵ | Tim Graham | |
| that InlineModelAdmin supports. | |||
| 2014-04-26 | Updated doc links to point to Python 3 documentation | Claude Paroz | |
| 2014-04-23 | Various documentation typo/spelling fixes | Marti Raudsepp | |
| Errors detected by Topy (https://github.com/intgr/topy), all changes verified by hand. | |||
| 2014-04-20 | Changed paths in docs that referred to Python 2. | Aymeric Augustin | |
| 2014-04-18 | Moved RemoteUserBackend documentation to reference guide. | Tim Graham | |
| 2014-04-17 | Confirmed support for PostGIS 2.1 and GDAL 1.10 | Claude Paroz | |
| Refs #22456. | |||
| 2014-04-16 | Fixed #22378 -- Updated \d to [0-9]+ in urlpatterns of docs and tests. | chriscauley | |
| Thanks tomwys for the suggestion. | |||
| 2014-04-10 | Fixed #21353 -- Noted that description is ignored for TabularInlines. | Tim Graham | |
| Thanks nofinator for the report. | |||
| 2014-04-08 | Fixed some spelling issues in docs. | Tim Graham | |
| 2014-04-07 | Added missing request parameter to get_current_site(). | Yin Jifeng | |
| 2014-04-04 | Merge pull request #2514 from vlal/ticket_22380 | Claude Paroz | |
| Fixed #22380 -- Missing SECRET_KEY variable in sample settings file for ... | |||
| 2014-04-04 | Fixed #22380 -- Missing SECRET_KEY variable in sample settings file for testing | Vishal Lal | |
| 2014-04-03 | Fixed #22372 -- Improved description of WizardView.get_context_data(). | Vishal Lal | |
| Thanks simon29 for the report. | |||
| 2014-04-03 | Fixed #22218 -- Deprecated django.conf.urls.patterns. | Tim Graham | |
| Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews. | |||
| 2014-03-29 | Dropped support for GDAL 1.6 | Claude Paroz | |
| 2014-03-29 | Dropped support for GEOS 3.1 | Claude Paroz | |
| 2014-03-29 | Added note in geo library docs | Claude Paroz | |
| 2014-03-29 | Confirmed Spatialite 4 support | Claude Paroz | |
| 2014-03-29 | Confirmed GEOS 3.4 support | Claude Paroz | |
| 2014-03-24 | Removed versionadded/changed annotations for 1.6. | Tim Graham | |
| 2014-03-22 | Fixed #22299 -- Cleanup wizard temp files when possible. | Simon Charette | |
| Thanks to @erikr for the review. | |||
| 2014-03-22 | Fixed #22313 -- Removed 'u' prefixes from documentation | Claude Paroz | |
| 2014-03-22 | Removed GeoRSSSitemap | Claude Paroz | |
| Refs #18531. | |||
| 2014-03-21 | Fixed typos in docs (django.contrib.site) | Thomas Schreiber | |
| 2014-03-21 | Removed contrib.comments per deprecation timeline. | Tim Graham | |
| 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. | |||
