summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2012-09-08Updated print statements to work with py3; thanks Claude Paroz noting this.Tim Graham
2012-09-08Fixed #18478 - Documented how to use a mutable default in a model field.Tim Graham
2012-09-08Fixed #18628 - Added methods/attributes to CBV docs. Thanks Daniel Greenfeld!Tim Graham
2012-09-08Fixed #15730 - Documented the as_view() method for CBVs.Tim Graham
2012-09-08Updated docs for dates generic views.Aymeric Augustin
Fixes #18245. Refs #3542.
2012-09-08Fixed #18054 -- Deprecated contrib.markup. Thanks to simukis for the initial ↵Preston Holmes
patch.
2012-09-08Fixed #17156 -- Added documentation examples for exists()Tim Graham
Thanks mrmagooey for the draft patch.
2012-09-08Avoided mixing dates and datetimes in the examples.Aymeric Augustin
Refs #16023.
2012-09-07Updated the Ubuntu installation section for 12.04 release.Justin Bronn
2012-09-07Clarified the messages documentation.Aymeric Augustin
* Stated upfront that the messages framework is enabled by default. * Explained why FallbackStorage, despites its unattractive name, is the default and likely the most efficient message storage class. Thanks Jeremy Dunck for the review. Closes #17026 (again).
2012-09-07Fixed #18490 - Updated DateField input formats; thanks dloewenherz for the ↵Tim Graham
draft patch.
2012-09-07Merge pull request #333 from brad/ticket_18917James Bennett
clarify clean_<field> docs, ticket #18917
2012-09-07Fixed #17888 -- no longer silence exceptions inside of check_test. Thanks to ↵Alex Gaynor
brutasse for the patch.
2012-09-07Updated the GEOS, PostGIS, and PROJ.4 versions in the GeoDjango installation ↵Justin Bronn
docs.
2012-09-07specify any orderable field can be specified in get_latest_by, closes #18875Dan Loewenherz
2012-09-07clarify clean_<field> docs, ticket #18917Brad Pitcher
2012-09-05Fixed #18904 - Typo in MySQL link; thanks Johie Anderson for the report.Tim Graham
2012-09-04Fixed #9967 - Added a link to a bug that affects contrib.comments redirects.Tim Graham
2012-09-01Fixed #13608 - Noted that template lookups use literal values.Tim Graham
2012-09-01Fixed #17378 - Added a flattened index for class-based views.Tim Graham
Thanks Preston Holmes for the patch.
2012-09-01Fixed #16936 - Updated javascript for CSRF protection.Tim Graham
Thanks Idan Gazit for the patch.
2012-08-31Fixed #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-31Fixed #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-31Fixed #14556 - Documented how to use flatpages in URLconf; thanks Claude ↵Tim Graham
Paroz for the draft patch.
2012-08-30Fixed #18883 -- added a missing self parameter in the docsAlex Gaynor
2012-08-30Fixed #18384 - Reformatted GeoDjango install instructions slightly.Tim Graham
2012-08-29Fixed #11739 -- Made ContentFile support Unicode inputClaude Paroz
2012-08-29Replaced many smart_bytes by force_bytesClaude 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-26Fixed typo in model fields reference docs.Ramiro Morales
2012-08-25Fixed #17448 -- Improved test and documented raw-sql gis queryClaude Paroz
2012-08-25Updated doc for settings.MEDIA_ROOT based on what's generated by ↵Tim Graham
settings.py; thanks ryan-blunden.
2012-08-23Modified docs about SpatiaLite version that doesn't need manual initial SQL ↵Ramiro Morales
file loading as per 675431dfaaa.
2012-08-23Fixed #18678 -- HttpResponse init arguments allowed for subclassesClaude Paroz
Thanks hp1337@gmail.com for the report.
2012-08-22Fixed #11340 -- Prevented HttpResponseNotModified to have content/content-typeClaude Paroz
The HTTP 1.1 spec tells that the 304 response MUST NOT contain a message body. Thanks aparajita for the report.
2012-08-21Fixed #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-19Tweaked SpatiaLite GeoDjango docs.Ramiro Morales
2012-08-19Fixed typo in form wizard docs.Tim Graham
2012-08-19Made some minor fixes to the GeoDjango installation guide.Julien Phalip
2012-08-18Fixed #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-18Introduced 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-18Fixed #14516 -- Extract methods from removetags and slugify template filtersMarc 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-18Fixed #16744 -- Class based view should have the view object in the contextMarc 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-17Merge pull request #271 from morty/patch-1Tim Graham
Fixed doc comment in django.contrib.admin example to match the code
2012-08-17Fixed #18696 - Clarified WizardView heading; thanks sergzach.Tim Graham
2012-08-17Merge pull request #261 from issackelly/cbv-full-listTim Graham
Create headings and expand CBV docs so that the "Built-In CBV" docs include a full list.
2012-08-16Fixed #18223 - Corrected default transaction behavior in postgresql docs.Tim Graham
Thanks philipn for the report and mateusgondim for the patch.
2012-08-16Marked up a few raw values in the settings documentation.Simon Meers
2012-08-16Fixed #18759 -- updated SECRET_KEY documentationPiet 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-15Fixed comment to match the codeTom Mortimer-Jones