| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-05-19 | Fixed #22655 -- Fixed GeoQuerySet doc about strictly_below | Moayad Mardini | |
| The paragraph was a copy of strictly_above. | |||
| 2014-05-19 | Revert "Fixed #20477: Allowed settings.FORMAT_MODULE_PATH to be a list of ↵ | Tim Graham | |
| modules." This reverts commit 950b6de16ac2f8135612f2ed5984c090dd8e4dcf. | |||
| 2014-05-19 | Fixed #20477: Allowed settings.FORMAT_MODULE_PATH to be a list of modules. | Martin Brochhaus | |
| Previously the FORMAT_MODULE_PATH setting only accepted one string (dotted module path). This is useful when using several reusable third party apps that define new formats. We can now use them all and we can even override some of the formats by providing a project-wide format module. | |||
| 2014-05-19 | Fixed #22368 -- clarified connecting to Oracle DB using service name | Moayad Mardini | |
| Used the official terminology listed in http://docs.oracle.com/cd/B19306_01/network.102/b14212/glossary.htm#i997309 Thanks michael.cherkasov for the report. | |||
| 2014-05-18 | Fixed #21799 - Modified loaddata --ignorenonexistent to ignore models. | Esau Rodriguez | |
| 2014-05-17 | Fixed #22647 -- Documented redirect_field_name keyword argument for ↵ | Víðir Valberg Guðmundsson | |
| user_passes_test. | |||
| 2014-05-17 | Fixed #22644 -- Clarified documentation for NamedUrlWizardView | Erik Romijn | |
| 2014-05-17 | Fixed #22019 -- Added Model.objects reference documentation. | Aliaksandr Semianiuk | |
| 2014-05-17 | Merge pull request #2346 from Markush2010/ticket21905 | Florian Apolloner | |
| Fixed #21905 -- Add info message if DateField or TimeField use a fixed value | |||
| 2014-05-16 | Fixed #16245 -- Included traceback in send_robust()'s response | Unai Zalakain | |
| Exceptions from the (receiver, exception) tuples returned by ``send_robust()`` now have always their traceback attached as their ``__traceback__`` argument. | |||
| 2014-05-16 | Added stub release notes for 1.6.6. | Tim Graham | |
| 2014-05-16 | Fixed #21905 -- Add info message if DateField or TimeField use a fixed value | Markus Holtermann | |
| 2014-05-16 | Fixed #15716 - Authentication backends can short-circuit authorization. | Jorge C. Leitão | |
| Authorization backends can now raise PermissionDenied in "has_perm" and "has_module_perms" to short-circuit authorization process. | |||
| 2014-05-16 | Fixed #22167 -- Improved documentation on context processors | Moritz | |
| Clarified the explanation on the order in which user provided variables to render_to_response, RequestContext and context processors are loaded. | |||
| 2014-05-16 | Fixed #22622 -- Added ugettext_lazy import in docs | Niclas Åhdén | |
| 2014-05-16 | Refs #21798 - Modified error number to provide room for future expansion. | Russell Keith-Magee | |
| 2014-05-16 | Remove old compatibility shims from d.c.gis. | Marc Tamlyn | |
| 2014-05-16 | Fixed #21798 -- Added check for DateTime mutually exclusive options | Daniel Pyrathon | |
| Added DateTimeCheckMixin to avoid the use of default, auto_now, and auto_now_add options together. Added the fields.E151 Error that is raised if one or more of these options are used together. | |||
| 2014-05-16 | Simplified an unnecessarily complex paragraph in view docs | Erik Romijn | |
| 2014-05-15 | Harmonized some PEP 0263 coding preambles | Claude Paroz | |
| 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-15 | Minor edits to latest release notes. | Tim Graham | |
| 2014-05-14 | Fix typo that disabled code example highlighting | Éric Araujo | |
| 2014-05-14 | Added release notes for 1.4.13, 1.5.8, 1.6.5. | Jacob Kaplan-Moss | |
| 2014-05-13 | Removed an unnecessary anchor in the docs. | Tim Graham | |
| 2014-05-13 | Fixed spelling mistake and added a word to the word list. | Tim Graham | |
| 2014-05-13 | Fixed #22533 -- Added label_suffix parameter to form fields. | Julen Ruiz Aizpuru | |
| Fields can now receive the `label_suffix` attribute, which will override a form's `label_suffix`. This enhances the possibility to customize form's `label_suffix`, allowing to use such customizations while using shortcuts such as `{{ form.as_p }}`. Note that the field's own customization can be overridden at runtime by using the `label_prefix` parameter to `BoundField.label_tag()`. Refs #18134. | |||
| 2014-05-13 | Fixed typo in transactions.txt | Haris Ibrahim K. V | |
| 2014-05-13 | Removed some references to django.contrib.comments which has been removed. | Tim Graham | |
| 2014-05-13 | Fixed #22618 -- Improved import_string example. | Tim Graham | |
| Thanks ewjoachim for the sugggestion. | |||
| 2014-05-12 | Fixed #22619 -- Corrected description of os.path. | Tim Graham | |
| Thanks Collin Anderson for the report. | |||
| 2014-05-12 | Added 1.6.5 release note for refs #22508. | Tim Graham | |
| 2014-05-12 | Fixed #22613 -- Added formfield_for_choice_field() to the list of methods ↵ | Tim Graham | |
| that InlineModelAdmin supports. | |||
| 2014-05-11 | Completed long overdue sqlinitialdata deprecation. | Ramiro Morales | |
| 2014-05-11 | Fixed #20936 -- When logging out/ending a session, don't create a new, empty ↵ | Matt Robenolt | |
| session. Previously, when logging out, the existing session was overwritten by a new sessionid instead of deleting the session altogether. This behavior added overhead by creating a new session record in whichever backend was in use: db, cache, etc. This extra session is unnecessary at the time since no session data is meant to be preserved when explicitly logging out. | |||
| 2014-05-10 | Link new testing tools document from main index. | Ramiro Morales | |
| 2014-05-10 | Fixed a few release notes typos. | Ramiro Morales | |
| 2014-05-07 | Merge pull request #2639 from alimony/patch-1 | Alex Gaynor | |
| Insert space | |||
| 2014-05-07 | Fixed #22496: Data migrations get transactions again! | Andrew Godwin | |
| 2014-05-07 | Insert space. | Markus Amalthea Magnuson | |
| 2014-05-07 | Updated some docs for the delayed deprecation of legacy table creation; refs ↵ | Tim Graham | |
| #22340. | |||
| 2014-05-07 | Forward ported docs of security issues from df81625da6. | Tim Graham | |
| 2014-05-06 | Improve docs around deconstruction/serialisation (refs #22337) | Andrew Godwin | |
| 2014-05-06 | Bump DatabaseCreation deprecation to 2.0 (refs #22340) | Andrew Godwin | |
| 2014-05-06 | Updated the messages context processor docs | Claude Paroz | |
| Refs #20610. | |||
| 2014-05-05 | Reordered tutorial 1 so that the database is configured first. | Tom | |
| This change is required after the introduction of SessionAuthenticationMiddleware to the default middleware | |||
| 2014-05-05 | Fixed #1349 -- Clarified docs on serving files from STATIC/MEDIA_URL. | Tim Graham | |
| 2014-05-05 | Fixed #22575 -- Fixed typo in docs/topics/class-based-views/generic-editing.txt. | Tim Graham | |
| Thanks adminq80 at gmail.com. | |||
| 2014-05-05 | Fixed #22429 -- Incorrect SQL when using ~Q and F | Anssi Kääriäinen | |
| 2014-05-03 | Fix docs error with deconstruct() docs | Andrew Godwin | |
