summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2014-01-25Fixed #21836 -- Improved transaction docs about autocommit modeChris Jerdonek
Clarified that queries in autocommit mode are committed immediately only if a transaction has not already been started. Added to the main transaction docs that Django's TestCase class implicitly wraps its tests in transactions.
2014-01-25Fixed #21829 -- Added default AppConfigs.Aymeric Augustin
Thanks Russell for the report, Marc for the initial patch, Carl for the final review, and everyone who contributed to the design discussion.
2014-01-23Fixed #21847 -- Clarified where ContactForm was definedTom Atkins
2014-01-23Add docs about converting from SouthAndrew Godwin
2014-01-22Always use parentheses when documenting a method with no arguments.Baptiste Mispelon
2014-01-22Don't show `self` in the list of arguments of a method.Baptiste Mispelon
This is consistent with Python's official documentation and it's a sphinx recommendation too[1]. [1] http://sphinx-doc.org/markup/desc.html#dir-method Refs #21855.
2014-01-22Fixed #20834 -- Described how caching of user permissions works.Tim Graham
Thanks Giggaflop and Jennifer Casavantes.
2014-01-22Fixed #21726 -- Clarified that password should not be included in ↵Tim Graham
REQUIRED_FIELDS. Thanks russellm for the report.
2014-01-20Fixed #16905 -- Added extensible checks (nee validation) frameworkRussell Keith-Magee
This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844.
2014-01-19Fixed #21290: Documented migration serializing and improved errorAndrew Godwin
2014-01-19Fixed #18907 -- Correct docs regard population of model backrefs.Tim Graham
Thanks simonpercivall for the report and Aymeric for the patch.
2014-01-17Removed some unnecessary __exact operators in filters.Tim Graham
2014-01-16Fixed #16785 -- Documented some of the design decisions of the cache framework.Tim Graham
Thanks jamesp for the draft patch.
2014-01-16Fixed #21740 -- Stopped using mutable default arguments in test clientClaude Paroz
Thanks Denver Coneybeare for the report and initial patch, and Atala for another patch.
2014-01-16Fixed #21343 -- Noted many-to-many restrictions with intermediate model.Tim Graham
Thanks EvilDMP for the report.
2014-01-16Fixed #21727 -- Added some links to help clarify topics/auth/default.txtTim Graham
Thanks daGrevis for the suggestion.
2014-01-16Fixed #21747 -- Added {% elif %} to template topics guide.Tim Graham
Thanks gcc for the suggestion.
2014-01-09Fixed #12571 -- Attached originating WSGIRequest to test client responses.Unai Zalakain
Originating WSGIRequests are now attached to the ``wsgi_request`` attribute of the ``HttpResponse`` returned by the testing client. Thanks rvdrijst for the suggestion.
2014-01-04Fixed #21730 -- Removed superfluous db_index in custom auth docsClaude Paroz
Thanks rafalp for the report.
2014-01-03Fixed a sentence in the session security docs; thanks claudep.Tim Graham
2014-01-02Fixed typos. Changed grammar.Frank Tobia
Minor typos. Some grammar changes.
2013-12-31Fixed #21484 -- Documented that SQL logging does not include "framework ↵Tim Graham
level" queries.
2013-12-31Fixed #21714 -- Moved logging configuration to global setup()Claude Paroz
Thanks Aymeric Augustin for the report and the review.
2013-12-31Renamed AppConfig.setup to ready.Aymeric Augustin
Thanks Jannis and Marc for the feedback. Fixed #21717.
2013-12-31Fixed #19395 -- Added a simple example logging config.Tim Graham
Thanks ken.nelson at maclaren.com.
2013-12-31Fixed #21701 -- Improved testing doc titles and added testing/tools.txt.Tim Graham
Thanks cjerdonek for the suggestion.
2013-12-30Fixed #21708 -- Added some headings to separate unrelated topics.Tim Graham
Thanks ashley at ashleymills.com for the suggestion.
2013-12-30Updated advice on connecting signals at startup.Aymeric Augustin
2013-12-30Assumed Python 3 throughout docs/intro.Aymeric Augustin
Various small fixes while I was proof-reading.
2013-12-28Fixed doc indentation in previous commit.Tim Graham
2013-12-28Fixed #20346 -- Made cache middleware vary on the full URL.ijl
Previously, only the URL path was included in the cache key. Thanks jamey for the suggestion.
2013-12-28Used app_label instead of appname.Aymeric Augustin
The last component of the dotted path to the application module is consistently referenced as the application "label". For instance it's AppConfig.label. appname could be confused with AppConfig.name, which is the full dotted path.
2013-12-27Fixed #21650 -- Corrected bad advice for plural translation.Tim Graham
Thanks nedbatchelder and claudep.
2013-12-26Fixed #21582 -- Corrected URL namespace example.Tim Graham
Thanks oubiga for the report.
2013-12-26Fixed #21629 -- Added instructions for loading MySQL time zone definitions.Tim Graham
Thanks Aymeric for the suggestion.
2013-12-23Added modify_settings to alter settings containing lists of values.Aymeric Augustin
2013-12-18Fixed #21585 -- Updated some links to 3rd party database projects.Tim Graham
Thanks graeme.perrow at sap.com for the original report.
2013-12-18Fixed #21625 -- incorrect documentation for DiscoverRunner.build_suiteTianyi Wang
2013-12-15Added internal link to i18n documentation.Baptiste Mispelon
2013-12-14Fixed #21539 -- Added example of modelformset_factory's form argumentAlasdair Nicol
2013-12-14Clarifed table rewrites in migration docs.Marti Raudsepp
Small nitpicks. All column-related ALTER TABLE commands take an exclusive table lock in PostgreSQL. The difference is that adding a column without default doesn't cause a table rewrite, so the lock is held only for a short time. The time taken is more accurately proportional to table size, not row count.
2013-12-14Fixed #21614 -- improved docs on configuring email for development.Chris Jerdonek
2013-12-13Fixed #21580 -- Clarified why render() does not return a TemplateResponse ↵johannes-gehrs
object.
2013-12-09Fixed #21560 -- missing 'slug' field in example codeChristian Schmitt
I updated the documentation, that the modelform now includes the 'slug' field.
2013-12-08Updated a bunch of hyperlinks in documentationClaude Paroz
2013-12-04Fixing manager documentation inaccuracyFrank Wiles
2013-12-04Added link to localized formatting doc from main index.Ramiro Morales
2013-11-30Removed gender-based pronouns per [c0a2daad78].Tim Graham
2013-11-30Enabled makemessages to support several translation directoriesClaude Paroz
Thanks Rémy Hubscher, Ramiro Morales, Unai Zalakain and Tim Graham for the reviews. Also fixes #16084.
2013-11-27Added a warning regarding risks in serving user uploaded media.Tim Graham
Thanks Preston Holmes for the draft text.