summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2013-01-29Fixed #19552 -- Enhanced makemessages handling of ``{# #}``-style template ↵Ramiro Morales
comments. They are simply ignored now. This allows for a more correct behavior when they are placed before translatable constructs on the same line. Previously, the latter were wrongly ignored because the former were preserved when converting template code to the internal Python-syntax form later fed to xgettext but Python has no ``/* ... */``-style comments. Also, special comments directed to translators are now only taken in account when they are located at the end of a line. e.g.:: {# Translators: ignored #}{% trans "Literal A" %}{# Translators: valid, associated with "Literal B" below #} {% trans "Literal B" %} Behavior of ``{% comment %}...{% endcomment %}``tags remains unchanged. Thanks juneih at redpill-linpro dot com for the report and Claude for his work on the issue.
2013-01-29Fixed typos in docs and commentsTim Graham
2013-01-29Fixed #19690 - Removed unused importLucian Ursu
Removed an import of a class unused in the Ajax example.
2013-01-29Fixed #19683 - Added a missing import in signing example.Tim Graham
Thanks sunsongxp@ for the report.
2013-01-28Added HTML5 email input typeClaude Paroz
Refs #16630.
2013-01-26Fixed #19589 -- assertRegexpMatches is deprecated in Python 3.3.Aymeric Augustin
2013-01-25Revert "Patch by Claude for #16084."Ramiro Morales
This reverts commit 2babab0bb351ff7a13fd23795f5e926a9bf95d22.
2013-01-25Patch by Claude for #16084.Ramiro Morales
2013-01-24Fixed #17416 -- Added widgets argument to inlineformset_factory and ↵Nick Sandford
modelformset_factory
2013-01-23Fixed typo.Justin Bronn
2013-01-23Fixed #19610 - Added enctype note to forms topics doc.Tim Graham
Thanks will@ for the suggestion.
2013-01-22Fixed #19640 - Added inlineformset_factory to reference docs.Tim Graham
Thanks wim@ for the suggestion.
2013-01-18Fixed #19628 - Noted that app for custom user model must be in INSTALLED_APPSTim Graham
Thanks dpravdin and Jordan Messina.
2013-01-18Fixed #19632 -- Bug in code sample.Aymeric Augustin
Thanks grossmanandy at bfusa com and Simon Charette.
2013-01-15Fixed #19614 -- Missing request argument in render call.Aymeric Augustin
Thanks Dima Pravdin for the report.
2013-01-15Fixed #19605 - Removed unused url imports from doc examples.Tim Graham
Thanks sergzach for the suggestion.
2013-01-12Fixed #14633 - Organized settings reference docs and added a topical index.Tim Graham
Thanks Gabriel Hurley for the original idea and adamv for the draft patch.
2013-01-11Fixed code examples in which render() calls were missing `request` parameter.Vinod Kurup
2013-01-11Fixed #10239 - Added docs for modelform_factoryTim Graham
Thanks ingenieroariel for the suggestion and slurms for the review.
2013-01-04Fixed #19562 -- cleaned up password storage docsPreston Holmes
2013-01-02Fixed #19516 - Fixed remaining broken links.Tim Graham
Added -n to sphinx builds to catch issues going forward.
2013-01-02Fixed #19549 - Typo in docs/topics/auth/default.txtTim Graham
2013-01-01Tiny typo fixed in logging docsDaniele Procida
2012-12-29Removed versionadded/changed annotations dating back to 1.4.Aymeric Augustin
2012-12-29Removed django.contrib.markup.Aymeric Augustin
2012-12-29Removed django.contrib.localflavor.Aymeric Augustin
Each localflavor lives on as a separate app.
2012-12-29Fixed broken links, round 4. refs #19516Tim Graham
2012-12-28Fixed #19498 -- refactored auth documentationPreston Holmes
The auth doc was a single page which had grown unwieldy. This refactor split and grouped the content into sub-topics. Additional corrections and cleanups were made along the way.
2012-12-26Fixed broken links, round 3. refs #19516Tim Graham
2012-12-24Fixed links to DATABASE ENGINE setting. refs #19516Tim Graham
2012-12-21Fixed #19497 -- Refactored testing docs.Ramiro Morales
Thanks Tim Graham for the review and suggestions.
2012-12-21Fixed #19506 - Remove 'mysite' prefix in model example.Tim Graham
Thanks Mike O'Connor for the report.
2012-12-18Fixed #19442 - Clarified that raw SQL must be committed.Tim Graham
Thanks startup.canada for the suggestion.
2012-12-18Fixed #17312 - Warned about database side effects in tests.Tim Graham
Thanks jcspray for the suggestion.
2012-12-16Fixed #19279 - Clarified order of database setup and Django install.Tim Graham
Thanks colinnkeenan for the suggestion.
2012-12-16Replaced the test case hierarchy schema with a vector version.Aymeric Augustin
The OmniGraffle source file is included for future use.
2012-12-16Added PDF version of SVG file for latexpdf builds.Aymeric Augustin
Thanks Tim Graham for reporting this issue and testing the fix.
2012-12-15Fixed #19412 -- Added PermissionsMixin to the auth.User heirarchy.Russell Keith-Magee
This makes it easier to make a ModelBackend-compliant (with regards to permissions) User model. Thanks to cdestigter for the report about the relationship between ModelBackend and permissions, and to the many users on django-dev that contributed to the discussion about mixins.
2012-12-15Fixed #19472 -- Documented the testing requirements and tools for custom ↵Russell Keith-Magee
User models. Thanks to gcc for the report.
2012-12-15Fixed #19384 -- Documented the behavior of custom managers on abstract models.Russell Keith-Magee
This documents the behavior introduced by cc337a74, which is BACKWARDS INCOMPATIBLE for any attempt to invoke a method on a manager using the abstract class as the calling class (e.g., AbstractBase.objects.do_something()) Thanks to mhsparks for the report.
2012-12-14Merge pull request #585 from blongden/clarify_php_refsTim Graham
Removed poor PHP references
2012-12-14Fixed #2304 -- Documented TRANSACTIONS_MANAGED.Aymeric Augustin
2012-12-13Removes PHP referencesBen Longden
2012-12-13Fixed #19462 -- Made assertQuerysetEqual detect undefined orderingAnssi Kääriäinen
If there are more than one values to compare against and the qs isn't ordered then assertQuerysetEqual will raise a ValueError.
2012-12-11Fixed #19461 - Linked to psycopg in topics/install.txtTim Graham
Thanks Chris Jerdonek for the suggestion.
2012-12-10Fixed a security issue in get_host.Florian Apolloner
Full disclosure and new release forthcoming.
2012-12-09Edited the middleware doc for completeness, clarity, and consistency.Aymeric Augustin
2012-12-09Fixed #12502 -- Improved middleware diagram.Aymeric Augustin
2012-12-08Removed US localflavor-specific tests from coreClaude Paroz
Also fixes #9045.
2012-12-02fix a spelling error in docsVal Neekman