| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-08-12 | Fixed #18306 -- Made deferred models issue update_fields on save | Andrei Antoukh | |
| Deferred models now automatically update only the fields which are loaded from the db (with .only() or .defer()). In addition, any field set manually after the load is updated on save. | |||
| 2012-08-12 | [py3] Explained @python_2_unicode_compatible usage | Aymeric Augustin | |
| 2012-08-12 | [py3] Deprecated StrAndUnicode. | Aymeric Augustin | |
| This mix-in is superseded by the @python_2_unicode_compatible decorator. | |||
| 2012-08-12 | [py3] Added python_2_unicode_compatible decorator. | Aymeric Augustin | |
| 2012-08-12 | Removed missplaced label in the docs. | Florian Apolloner | |
| 2012-08-12 | Fix link to Gunicorn website in deployment howto. | Martijn Vermaat | |
| 2012-08-11 | Fixed #18698 -- Configure latex to support '≥' in the docs. | Florian Apolloner | |
| Thanks to simonb for the report and the initial patch. | |||
| 2012-08-10 | Create headings and expand CBV docs so that the "Built-In CBV" docs include ↵ | Issac Kelly | |
| a complete list. | |||
| 2012-08-10 | Fixed #17680 - Clarified when logging is configured. | Tim Graham | |
| 2012-08-10 | Fixed #17016 - Added examples for file uploads in views. | Tim Graham | |
| Thanks Tim Saylor for the draft patch and Aymeric Augustin and Claude Paroz for feedback. | |||
| 2012-08-09 | Clarified thread safety note in class based views; thanks rafadura for the ↵ | Tim Graham | |
| patch. | |||
| 2012-08-08 | Fix #18062: Document best practices for choices in model fields. | James Bennett | |
| 2012-08-08 | [py3] Replaced __nonzero__ by __bool__ | Claude Paroz | |
| Of course, __nonzero__ alias has been kept for Python 2 compatibility. | |||
| 2012-08-07 | Put all the security-related notes in the same notice box. | James Bennett | |
| 2012-08-07 | And link security policies from documentation index. | James Bennett | |
| 2012-08-07 | Link security policies from internals index. | James Bennett | |
| 2012-08-07 | Add new security-policy documentation. | James Bennett | |
| This formally describes our policies on reporting, notification and disclosure of security issues, and provides a detailed explanation of our full security-response process, for reference purposes. | |||
| 2012-08-07 | [py3] Ported django.utils.encoding. | Aymeric Augustin | |
| * Renamed smart_unicode to smart_text (but kept the old name under Python 2 for backwards compatibility). * Renamed smart_str to smart_bytes. * Re-introduced smart_str as an alias for smart_text under Python 3 and smart_bytes under Python 2 (which is backwards compatible). Thus smart_str always returns a str objects. * Used the new smart_str in a few places where both Python 2 and 3 want a str. | |||
| 2012-08-06 | Merge pull request #252 from MichaelBlume/patch-1 | Tim Graham | |
| Grammar fix in 1.5 release notes. | |||
| 2012-08-06 | change "has now" -> "now has" in 1.5 release notes | Michael Blume | |
| I believe this is standard. | |||
| 2012-08-06 | Fixed #17053 - Added a note about USE_THOUSAND_SEPARATOR setting to ↵ | Tim Graham | |
| localizations docs. Thanks shelldweller for the draft patch. | |||
| 2012-08-05 | Fixed a rst error introduced in f2abfe1e. | Aymeric Augustin | |
| 2012-08-05 | Merge pull request #233 from rafikdraoui/modeladmin-doc | Tim Graham | |
| Updated example of customized ModelAdmin in documentation for 1.4 | |||
| 2012-08-04 | Fixed some typos on the documentation's index page. | Julien Phalip | |
| 2012-08-04 | Moved a note about django-admin.py errors from Tutorial Part 1 to a new FAQ ↵ | Angeline Tan | |
| Troubleshooting page. This is to avoid confusion for beginners. | |||
| 2012-08-04 | Restructured the documentation's index page and added some introductory ↵ | Julien Phalip | |
| sentences to each section. | |||
| 2012-08-04 | Small improvement to the `contrib.messages` doc introduction. | Julien Phalip | |
| 2012-08-04 | Added a missing space to the description of the `cut` filter. | Florian Apolloner | |
| 2012-08-04 | Merge pull request #210 from pydanny/ticket_18632 | Alex Gaynor | |
| Ticket 18632 Cleanup of CBV edit/edit mixin documentation. | |||
| 2012-08-04 | For #210, cleaned up text and formatting. | Daniel Greenfeld | |
| 2012-08-04 | Merge pull request #153 from webjunkie/patch-1 | Tim Graham | |
| Fixed #18110 -- Improve template cache tag documentation | |||
| 2012-08-04 | Merge pull request #244 from mbrochh/master | Tim Graham | |
| Fixed small typo in class based view docs. | |||
| 2012-08-04 | Fixed #16980 - Misc updates to the auth docs. Thanks Preston Holmes for the ↵ | Tim Graham | |
| patch. | |||
| 2012-08-04 | Fixed #18713 -- Fixed custom comment app name in comments docs | Claude Paroz | |
| Thanks Pratyush for the report. | |||
| 2012-08-04 | Fixed #5524 -- Do not remove cleaned_data when a form fails validation | Claude Paroz | |
| cleaned_data is no longer deleted when form validation fails but only contains the data that did validate. Thanks to the various contributors to this patch (see ticket). | |||
| 2012-08-04 | Fixed #18700 -- Added URL reversal for i18n set_language view. | Simon Meers | |
| 2012-08-03 | Fixed #15932 - Documented how to supress multiple reverse relations to the ↵ | Tim Graham | |
| same model. Thanks Claude Paroz for the patch. | |||
| 2012-08-03 | [py3] Removed uses of sys.maxint under Python 3. | Aymeric Augustin | |
| Also fixed #18706: improved exceptions raised by int_to_base36. | |||
| 2012-08-03 | Documented the trick used in 9908201d7f. | Aymeric Augustin | |
| 2012-08-03 | Fixed #13904 - Documented how to avoid garbage collection messages in GIS. | Tim Graham | |
| Thanks Claude Peroz for the patch. | |||
| 2012-08-02 | Fixed #17704 - Updated the StackedInline section in Tutorial 2; thanks xbito ↵ | Tim Graham | |
| for the draft patch. | |||
| 2012-08-02 | Fixed #16941 - Clarified naturaltime output when the time is more than a day ↵ | Tim Graham | |
| old. Thanks antoviaque for the patch. | |||
| 2012-08-02 | Fixed #18581 - Updated admin actions screenshots. Thanks Kevin London. | Tim Graham | |
| 2012-08-02 | Update docs/topics/class-based-views/index.txt | Martin Brochhaus | |
| Fixed a small typo: "We can use create" should be "We can create" | |||
| 2012-08-02 | Fixed #18472 - Added warning regarding set_language / i18n_patterns. | Simon Meers | |
| 2012-08-02 | Reinstated Pinax link that was still in use by others. | Simon Meers | |
| 2012-08-01 | Fixed #16168 - Added note regarding type requirements when overridng ↵ | Tim Graham | |
| ModelForm fields. Thanks Pieter Swinkels for the patch. | |||
| 2012-07-31 | Fixed #18122 - Clarified section title regarding applying permissions to ↵ | Tim Graham | |
| generic views. | |||
| 2012-07-30 | Fixed #17131 - Added per object permission notes to docs. | Tim Graham | |
| Thanks dchandek for the suggestion and mateusgondim for the patch. | |||
| 2012-07-29 | Updated my bio. | Justin Bronn | |
