| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-08-23 | Fixed #18678 -- HttpResponse init arguments allowed for subclasses | Claude Paroz | |
| Thanks hp1337@gmail.com for the report. | |||
| 2012-08-22 | Merge pull request #297 from mjjohnson/ticket_17069 | Tim Graham | |
| Fixed #17069 -- Added log filter example to docs. | |||
| 2012-08-22 | Fixed #11340 -- Prevented HttpResponseNotModified to have content/content-type | Claude Paroz | |
| The HTTP 1.1 spec tells that the 304 response MUST NOT contain a message body. Thanks aparajita for the report. | |||
| 2012-08-21 | Fixed #18637 - Updated some documentation for aspects of models that are ↵ | Tim Graham | |
| ModelForm specific, not admin specific. Thanks Ben Sturmfels for the patch. | |||
| 2012-08-21 | Fixed #14885 - Clarified that ModelForm cleaning may not fully complete if ↵ | Tim Graham | |
| the form is invalid. Thanks Ben Sturmfels for the patch. | |||
| 2012-08-21 | Fixed #17069 -- Added log filter example to docs. | Michael Johnson | |
| Added an example of filtering admin error emails (to exclude UnreadablePostErrors) to the docs. | |||
| 2012-08-20 | Fixed #18819 -- fixed some typos in the auth docs | Alex Gaynor | |
| 2012-08-20 | Fixed #18023 -- Documented simplejson issues. | Aymeric Augustin | |
| Thanks Luke Plant for reporting the issue and Alex Ogier for thoroughly investigating it. | |||
| 2012-08-20 | Made an example more readable in the URLs docs. | Aymeric Augustin | |
| 2012-08-20 | Added links in URLs doc for consistency. | Aymeric Augustin | |
| 2012-08-20 | Fixed #18799 -- Improved index links for CBV documentation. | Simon Meers | |
| Thanks anthonyb. | |||
| 2012-08-19 | Tweaked SpatiaLite GeoDjango docs. | Ramiro Morales | |
| 2012-08-19 | Fixed typo in form wizard docs. | Tim Graham | |
| 2012-08-19 | Fixed #17180 - Emphasized the need to load the i18n template tag in each ↵ | Tim Graham | |
| template that uses translations. Thanks stefan.freyr for the suggestion and buddylindsey for the draft patch. | |||
| 2012-08-19 | Clarified a sentence in the Python 3 docs. | Aymeric Augustin | |
| Thanks dstufft for the report. | |||
| 2012-08-19 | Fixed indentation in the Python3 docs | Marc Tamlyn | |
| 2012-08-19 | [py3] Wrote Django-specific porting tips | Aymeric Augustin | |
| and extended the existing Python 3 documentation. | |||
| 2012-08-19 | Made some minor fixes to the GeoDjango installation guide. | Julien Phalip | |
| 2012-08-18 | Fixed #3542 -- Add support for changing granularity on ArchiveView. | Marc Tamlyn | |
| Resolving the concept from a very old ticket in a more class-based-view manner. | |||
| 2012-08-18 | Introduced force_bytes and force_str. | Aymeric Augustin | |
| This is consistent with the smart_* series of functions and it's going to be used by the next commit. | |||
| 2012-08-18 | Fixed #17228 -- params context variable is inconsistent | Marc Tamlyn | |
| Remove the params variable from the context and just put the variables in directly. This had not been committed previously as the original pattern was used in the functional generic views and we wanted consistency between them, but django.views.generic.simple.direct_to_template is now gone so we can do it 'right'. | |||
| 2012-08-18 | Fixed #14516 -- Extract methods from removetags and slugify template filters | Marc Tamlyn | |
| Patch by @jphalip updated to apply, documentation and release notes added. I've documented strip_tags as well as remove_tags as the difference between the two wouldn't be immediately obvious. | |||
| 2012-08-18 | Fixed #16744 -- Class based view should have the view object in the context | Marc Tamlyn | |
| Updated the most recent patch from @claudep to apply again and updated the documentation location. | |||
| 2012-08-18 | [py3] Ported django.utils.safestring. | Aymeric Augustin | |
| Backwards compatibility aliases were created under Python 2. | |||
| 2012-08-18 | [py3] Added compatibility import of thread/_thread | Aymeric Augustin | |
| This commit fixes the auto-reload of the development server. I should have done that change in ca07fda2. | |||
| 2012-08-18 | Merge pull request #282 from ptone/patch-1 | Aymeric Augustin | |
| Corrected docs on setup of JSONResponseMixin example | |||
| 2012-08-18 | Added a warning about the {% url %} syntax change | Aymeric Augustin | |
| at the point where it bites most beginners. Refs #18787, #18762, #18756, #18723, #18705, #18689 and several duplicates. | |||
| 2012-08-17 | Update docs/topics/class-based-views/index.txt | Preston Holmes | |
| View class does not have a render_to_response method - so does not make sense for this mixin | |||
| 2012-08-17 | Merge pull request #271 from morty/patch-1 | Tim Graham | |
| Fixed doc comment in django.contrib.admin example to match the code | |||
| 2012-08-17 | Fixed #18696 - Clarified WizardView heading; thanks sergzach. | Tim Graham | |
| 2012-08-17 | Merge pull request #261 from issackelly/cbv-full-list | Tim Graham | |
| Create headings and expand CBV docs so that the "Built-In CBV" docs include a full list. | |||
| 2012-08-16 | Fixed #17183 - Added a note regarding LocaleMiddleware at the top of the ↵ | Tim Graham | |
| i18n docs. Thanks krzysiumed for the patch. | |||
| 2012-08-16 | Fixed #18223 - Corrected default transaction behavior in postgresql docs. | Tim Graham | |
| Thanks philipn for the report and mateusgondim for the patch. | |||
| 2012-08-16 | Marked up a few raw values in the settings documentation. | Simon Meers | |
| 2012-08-16 | Fixed #18759 -- updated SECRET_KEY documentation | Piet Delport | |
| Document SECRET_KEY becoming required in 1.5. Also expand the description slightly, and add a more prominent warning about the security implications of running with an exposed SECRET_KEY. | |||
| 2012-08-15 | Fixed comment to match the code | Tom Mortimer-Jones | |
| 2012-08-13 | Consistenly use _ as alias for ugettext_lazy in the i18n docs. | Florian Apolloner | |
| 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. | |||
