summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
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
2012-11-30Fixed #19400 - Typo in docs/topics/auth.txtTim Graham
2012-11-27Fixed #19352 - Added an example in the QuerySet docs.Tim Graham
Thanks colinkeenan for the suggestion.
2012-11-24Fixed #19218 -- Added documentation note on limitations of signals with ↵Russell Keith-Magee
custom User models. Thanks to kunitoki@gmail.com for the report.
2012-11-23Negligible style fix in docs.Aymeric Augustin
2012-11-22changed if statement to a slightly cleaner/less confusing variantWoLpH
2012-11-22Fixed #18974 - Warned against using models.permalinkTim Graham
Thanks dstufft for the draft patch.
2012-11-22Fixed #16039 -- Made post_syncdb handlers multi-db aware.Aymeric Augustin
Also reverted 8fb7a9002669fb7ba7bec7df90b465b92e1ed3c2. Refs #17055.
2012-11-22Merge branch 'ticket_19325' of https://github.com/hannesstruss/django into ↵Jannis Leidel
hannesstruss-ticket_19325
2012-11-21Fixed #19335 - Typo and cleanups in docs/topics/class-based-views/index.txtTim Graham
2012-11-20Fixed #19325 - Made email backend of AdminEmailHandler configurableHannes Struss
2012-11-17Fixed #2550 -- Allow the auth backends to raise the PermissionDenied ↵Jannis Leidel
exception to completely stop the authentication chain. Many thanks to namn, danielr, Dan Julius, Łukasz Rekucki, Aashu Dwivedi and umbrae for working this over the years.
2012-11-13fixed a broken link in the docsAlex Gaynor
2012-11-13Correct link to SentryDavid Cramer
django-sentry is no longer maintained, and sentry is the replacement.
2012-11-13Fixed #19283 -- Fixed typo in imports in CBV docs.Aymeric Augustin
2012-11-11Merge pull request #218 from mgrouchy/ticket_18582Aymeric Augustin
Fixed #18582 -- Added a no-op close to BaseCache
2012-11-06Fixed #19161 - Added missing clean_password method in custom user docsTim Graham
Thanks DavidW for the report.
2012-11-06Fixed #19154 - Noted commit_manually requires commit/rollback for readsTim Graham
Thanks als for the report.
2012-11-05Fixed #15591 - Clarified interaction between ModelForm and model validation.Tim Graham
2012-11-03Fixed #6234 -- Removed obsolete note about json and ensure_asciiClaude Paroz
Thanks aaron at cellmap.ca for the report.
2012-11-03Fixed #18963 -- Used a subclass-friendly patternAymeric Augustin
for Python 2 object model compatibility methods.
2012-11-03Fixed #19230 -- Extended the handler403 documentation.Markus Zapke-Gründemann
Added a paragraph on how to use the PermissionDenied exception to create a 403 response and use handler403.
2012-11-02Fixed #19167 - Added a warning regarding module-level database queriesTim Graham
Thanks Daniele Procida for the patch.
2012-11-02Fixed #15361 - Documented performance considerations for QuerySet.get()Tim Graham
Thanks mmcnickle for the patch.
2012-11-02Documented minimal python 3.2 version.Florian Apolloner
2012-11-02Fixed #19225 -- Typo in shortcuts docs.Aymeric Augustin
Thanks SunPowered for the report.
2012-11-01Added WizardView.file_storage exception message and docsTim Graham
Thanks Danilo Bargen for the patch.
2012-10-31Fixed #17083 -- Allowed sessions to use non-default cache.Aymeric Augustin
2012-10-30The timeout variable wasn't defined, which was a little confusing.Brent O'Connor
2012-10-30Fixed #17744 -- Reset default file storage with setting_changed signalClaude Paroz
2012-10-28Fixed #19061 -- added is_active attribute to AbstractBaseUserPreston Holmes
2012-10-28Fixed #18194 -- Expiration of file-based sessionsAymeric Augustin
* Prevented stale session files from being loaded * Added removal of stale session files in django-admin.py clearsessions Thanks ej for the report, crodjer and Elvard for their inputs.