| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-09-01 | Fixed #17378 - Added a flattened index for class-based views. | Tim Graham | |
| Thanks Preston Holmes for the patch. | |||
| 2012-09-01 | Fixed #16936 - Updated javascript for CSRF protection. | Tim Graham | |
| Thanks Idan Gazit for the patch. | |||
| 2012-08-31 | Fixed #18642 - Added a note suggesting the use of render() rather than ↵ | Tim Graham | |
| render_to_response() if you need RequestContext in your template. | |||
| 2012-08-31 | Fixed #16309 - Made ModelAdmin.list_filter versionchanged annotations more ↵ | Tim Graham | |
| specific to the sections that changed; thanks akaihola for the suggestion and patch. | |||
| 2012-08-31 | Fixed #14556 - Documented how to use flatpages in URLconf; thanks Claude ↵ | Tim Graham | |
| Paroz for the draft patch. | |||
| 2012-08-30 | Fixed #18883 -- added a missing self parameter in the docs | Alex Gaynor | |
| 2012-08-30 | Fixed #18384 - Reformatted GeoDjango install instructions slightly. | Tim Graham | |
| 2012-08-29 | Fixed #11739 -- Made ContentFile support Unicode input | Claude Paroz | |
| 2012-08-29 | Replaced many smart_bytes by force_bytes | Claude Paroz | |
| In all those occurrences, we didn't care about preserving the lazy status of the strings, but we really wanted to obtain a real bytestring. | |||
| 2012-08-26 | Fixed typo in model fields reference docs. | Ramiro Morales | |
| 2012-08-25 | Fixed #17448 -- Improved test and documented raw-sql gis query | Claude Paroz | |
| 2012-08-25 | Updated doc for settings.MEDIA_ROOT based on what's generated by ↵ | Tim Graham | |
| settings.py; thanks ryan-blunden. | |||
| 2012-08-23 | Modified docs about SpatiaLite version that doesn't need manual initial SQL ↵ | Ramiro Morales | |
| file loading as per 675431dfaaa. | |||
| 2012-08-23 | Fixed #18678 -- HttpResponse init arguments allowed for subclasses | Claude Paroz | |
| Thanks hp1337@gmail.com for the report. | |||
| 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-19 | Tweaked SpatiaLite GeoDjango docs. | Ramiro Morales | |
| 2012-08-19 | Fixed typo in form wizard docs. | Tim Graham | |
| 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 #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-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 #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-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] Added python_2_unicode_compatible decorator. | Aymeric Augustin | |
| 2012-08-10 | Create headings and expand CBV docs so that the "Built-In CBV" docs include ↵ | Issac Kelly | |
| a complete list. | |||
| 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-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-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 | 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 | 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-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 | Fixed #13904 - Documented how to avoid garbage collection messages in GIS. | Tim Graham | |
| Thanks Claude Peroz for the 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 | |
