| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-12-11 | Fixed #21462 -- Made `assertNumQueries` print executed queries on failure. | Dominic Rodger | |
| 2013-12-11 | Fixed #21510 -- Readded search reset link in changelist search bar | Claude Paroz | |
| Thanks moritz.pfeiffer at alp-phone.ch for the report and Tim Graham for the initial patch. | |||
| 2013-12-09 | Fixed #21560 -- missing 'slug' field in example code | Christian Schmitt | |
| I updated the documentation, that the modelform now includes the 'slug' field. | |||
| 2013-12-08 | Removed an erroneous leading slash introduced by a626bdf648a. | Simon Charette | |
| 2013-12-08 | Updated a bunch of hyperlinks in documentation | Claude Paroz | |
| 2013-12-08 | (Re-)added GeoDjango instructions for building pysqlite2 correctly. | Ramiro Morales | |
| This is a partial undo of 1b142ef5dd. | |||
| 2013-12-07 | Fixed #18531 -- Deprecated Geo Sitemaps | Claude Paroz | |
| I've chosen a quick deprecation path, as Geo Sitemaps themselves are deprecated from some time now. | |||
| 2013-12-07 | Fixed #21551 -- Reenabled loading fixtures from subdirectory | Claude Paroz | |
| This was a regression in Django 1.6 that was only partially restored in 839940f27f. Thanks Jonas Haag for the report. | |||
| 2013-12-07 | Fixed #21568 -- Added missing ModelMultipleChoiceField to_python method | Claude Paroz | |
| Thanks dibrovsd at gmail.com for the report and Simon Charette for the review. | |||
| 2013-12-07 | Added fix for #21530 to 1.6.1 release notes. | Baptiste Mispelon | |
| 2013-12-06 | Removed a u'' prefix that prevented the docs from building on Python 3.2. | Tim Graham | |
| 2013-12-05 | Fixed #21562 -- Warned against using the same app name as a django contrib app. | Alasdair Nicol | |
| Thanks yourcelf for the report. | |||
| 2013-12-05 | Fixed another typo in custom model field documentation. | Baptiste Mispelon | |
| 2013-12-05 | Fixed typo in custom model field documentation. | Baptiste Mispelon | |
| 2013-12-04 | Fixing manager documentation inaccuracy | Frank Wiles | |
| 2013-12-04 | List 1.6.x releases in descending order | Alasdair Nicol | |
| 2013-12-04 | Fixed #21558 -- Support building CHM files. | Aymeric Augustin | |
| Thanks Michał Pasternak. | |||
| 2013-12-04 | Added link to localized formatting doc from main index. | Ramiro Morales | |
| 2013-12-02 | Fixed #13476 -- Added support for color in console output under Windows. | Ramiro Morales | |
| Detect and use the services of the ANSICON third-party tool if it's available. | |||
| 2013-12-02 | Fixed #21538 -- Added numpy to test/requirements/base.txt | Alasdair Nicol | |
| Thanks Tim Graham for the report | |||
| 2013-11-30 | Fixed #21535 -- Fixed password hash iteration upgrade. | Tim Graham | |
| Thanks jared_mess for the report. | |||
| 2013-11-30 | Removed gender-based pronouns per [c0a2daad78]. | Tim Graham | |
| 2013-11-30 | Documented the house style for gender neutral pronouns. | Alex Gaynor | |
| 2013-11-30 | Enabled makemessages to support several translation directories | Claude Paroz | |
| Thanks Rémy Hubscher, Ramiro Morales, Unai Zalakain and Tim Graham for the reviews. Also fixes #16084. | |||
| 2013-11-30 | Removed Form._errors from the docs in favor of the add_error API. | Loic Bistuer | |
| 2013-11-30 | Fixed #20867 -- Added the Form.add_error() method. | Loic Bistuer | |
| Refs #20199 #16986. Thanks @akaariai, @bmispelon, @mjtamlyn, @timgraham for the reviews. | |||
| 2013-11-29 | Fixed #21380 -- Added a way to set different permission for static directories. | Vajrasky Kok | |
| Previously when collecting static files, the directories would receive permissions from the global umask. Now the default permission comes from FILE_UPLOAD_DIRECTORY_PERMISSIONS and there's an option to specify the permissions by subclassing any of the static files storage classes and setting the directory_permissions_mode parameter. | |||
| 2013-11-28 | Fixed #21496 -- Fixed crash when GeometryField uses TextInput | Claude Paroz | |
| Thanks Rhett Garber for the report and initial patch. | |||
| 2013-11-28 | Fixed #21515 -- Corrected example of template.Context in documentation. | Baptiste Mispelon | |
| Thanks to trac user oubiga for the report. | |||
| 2013-11-27 | Added a warning regarding risks in serving user uploaded media. | Tim Graham | |
| Thanks Preston Holmes for the draft text. | |||
| 2013-11-28 | Fixed typo in release notes. | Loic Bistuer | |
| 2013-11-27 | Added a bulk option to RelatedManager remove() and clear() methods | Loic Bistuer | |
| Refs #21169 | |||
| 2013-11-27 | Fixed #21169 -- Reworked RelatedManager methods use default filtering | Loic Bistuer | |
| The `remove()` and `clear()` methods of the related managers created by `ForeignKey`, `GenericForeignKey`, and `ManyToManyField` suffered from a number of issues. Some operations ran multiple data modifying queries without wrapping them in a transaction, and some operations didn't respect default filtering when it was present (i.e. when the default manager on the related model implemented a custom `get_queryset()`). Fixing the issues introduced some backward incompatible changes: - The implementation of `remove()` for `ForeignKey` related managers changed from a series of `Model.save()` calls to a single `QuerySet.update()` call. The change means that `pre_save` and `post_save` signals aren't called anymore. - The `remove()` and `clear()` methods for `GenericForeignKey` related managers now perform bulk delete so `Model.delete()` isn't called anymore. - The `remove()` and `clear()` methods for `ManyToManyField` related managers perform nested queries when filtering is involved, which may or may not be an issue depending on the database and the data itself. Refs. #3871, #21174. Thanks Anssi Kääriäinen and Tim Graham for the reviews. | |||
| 2013-11-27 | Update tutorial part 1 to discuss migrations properly | Andrew Godwin | |
| 2013-11-27 | Field.deconstruct() howto docs | Andrew Godwin | |
| 2013-11-26 | Merge pull request #1985 from raphaa/21499 | Andrew Godwin | |
| Fixed #21499 -- Migrations won't work if field signature changes | |||
| 2013-11-26 | Replace use of dict.has_key with `key in dict` | Alex Gaynor | |
| 2013-11-26 | Fixed a typo in the documentation | Alex Gaynor | |
| 2013-11-26 | Fixed #21448 -- Fixed test client logout with cookie-based sessions | Claude Paroz | |
| Thanks Gunnar Scherf for the report and the suggested patch. | |||
| 2013-11-25 | Fixed #20522 - Allowed use of partially validated object in ↵ | Jay Leadbetter | |
| ModelAdmin.add_view formset validation. Updated ModelAdmin to use form.instance when passing parent model to child inlines for add_view. There is effectively no change in the change_view since the previously passed 'obj' is the same as form.instance. Thanks to meshy for report, and EvilDMP and timo for review. | |||
| 2013-11-25 | Fixed #21507 -- Corrected default widget information for FileField | Ludwik Trammer | |
| 2013-11-24 | Fixed some unnescesarily gendered language in the docs | Alex Gaynor | |
| 2013-11-24 | Fixed #21391 -- Allow model signals to lazily reference their senders. | Simon Charette | |
| 2013-11-24 | Fixed typo in previous commit; refs #21490. | Tim Graham | |
| 2013-11-24 | Fixed #21490 -- Fixed custom admin URL reverse example. | Tim Graham | |
| Thanks glarrain for the report. | |||
| 2013-11-24 | Removed confusing comments from the docs. | Loic Bistuer | |
| The settings reference documentation doesn't seem the right place to invite users to write their own db and cache backends. Also the actual wording makes the task sound trivial, which is hardly the case; writing a custom db backend is a very difficult task, and writing a custom cache backend is full of gotcha. | |||
| 2013-11-24 | Fixed #21499 -- Added a paragraph to the docs. | Raphael Jasjukaitis | |
| 2013-11-23 | Add missing commas in Prefetch docs | Thomas Orozco | |
| 2013-11-23 | Fixed #21486 -- Prevented settings config in signal connection | Claude Paroz | |
| This was particularly problematic in the chain get_wsgi_application -> db.connections import -> signal connection -> settings configuration. Thanks Jon Dufresne for the report. | |||
| 2013-11-23 | Fixed #21200 -- Consistantly raise errors across all cache backends. | Florian Apolloner | |
| Thanks to tchaumeny for the patch. | |||
