summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
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.
2013-11-26Merge pull request #1985 from raphaa/21499Andrew Godwin
Fixed #21499 -- Migrations won't work if field signature changes
2013-11-24Fixed some unnescesarily gendered language in the docsAlex Gaynor
2013-11-24Fixed #21391 -- Allow model signals to lazily reference their senders.Simon Charette
2013-11-24Fixed #21499 -- Added a paragraph to the docs.Raphael Jasjukaitis
2013-11-23Fixed #21012 -- New API to access cache backends.Curtis Maloney
Thanks Curtis Malony and Florian Apolloner. Squashed commit of the following: commit 3380495e93f5e81b80a251b03ddb0a80b17685f5 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sat Nov 23 14:18:07 2013 +0100 Looked up the template_fragments cache at runtime. commit 905a74f52b24a198f802520ff06290a94dedc687 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sat Nov 23 14:19:48 2013 +0100 Removed all uses of create_cache. Refactored the cache tests significantly. Made it safe to override the CACHES setting. commit 35e289fe9285feffed3c60657af9279a6a2cfccc Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sat Nov 23 12:23:57 2013 +0100 Removed create_cache function. commit 8e274f747a1f1c0c0e6c37873e29067f7fa022e8 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sat Nov 23 12:04:52 2013 +0100 Updated docs to describe a simplified cache backend API. commit ee7eb0f73e6d4699edcf5d357dce715224525cf6 Author: Curtis Maloney <curtis@tinbrain.net> Date: Sat Oct 19 09:49:24 2013 +1100 Fixed #21012 -- Thread-local caches, like databases.
2013-11-22Improved docs for ModelFormSet.clean().Loic Bistuer
2013-11-22Noted that localmem is the default cache.mlissner
2013-11-22Removed unused import in docs/topics/http/sessions.txtTim Graham
2013-11-22Fixed #21487 -- Session cannot store tzinfo instances anymore.Aymeric Augustin
Thanks filipp for the report. Forward-port of 1eddca0a from stable/1.6.x.
2013-11-21Fixed #21479 -- Favor 'migrate' over 'syncdb' in the docs.Loic Bistuer
2013-11-19Added more examples to the get_object_or_404 documentation.Baptiste Mispelon
2013-11-19Fixed #15179 -- middlewares not applied for test client login()Unai Zalakain
Requests made with django.test.Client.login() and logout() respect defaults defined in django.test.Client instantiation and are processed through middleware. Thanks to Loic for the reviews.
2013-11-18Fixed typo in topics/http/sessions.txt.Tim Graham
2013-11-15Fixed #21440 -- Typo #2 in topics/http/shortcuts.txtTim Graham
Thanks alasdair.
2013-11-15Fixed #21425 -- Made order in which loggers are introduced consistent.Tim Graham
Thanks oubiga for the suggestion.
2013-11-15Fixed #21440 -- Typo in topics/http/shortcuts.txtTim Graham
Thanks olof.bjarnason at gmail.com for the report.
2013-11-09Fixed #21372 -- Corrected docs regarding translating LANGUAGES.Bernardo Pires
Corrected LANGUAGES documentation on how to translate language names. Now using django.utils.translation.ugettext_lazy instead of a dummy gettext() function. Thanks to Salvatore for the report.
2013-11-08Noted that .clear() will delete intermediary modelsCody Scott
2013-11-08Fixed docs for EmailMessage extra_headers attributeTom Scholl
The EmailMessage documentation describes the initialization parameters and states they 'can be set at any time prior to calling the send() method.'. However, the 'headers' parameter's corresponding attribute is called 'extra_headers'.
2013-11-08Removed obsolete locale restriction admonitionClaude Paroz
Refs #14461. Thanks Ramiro Morales for pointing this.
2013-11-08Fixed #5849 -- Strip whitespace from blocktransBouke Haarsma
Add the trimmed option to the blocktrans tag to trim any newlines and whitespace from its content. This allows the developer to indent the blocktrans tag without adding new lines and whitespace to the msgid in the PO file. Thanks to mpessas for the initial patch and Dmitri Fedortchenko for the report.
2013-11-07Merge pull request #1850 from unaizalakain/ticket_13725Anssi Kääriäinen
Fixed #13725 -- take url scheme into account in assertRedirects Thanks to Loic for review.
2013-11-07Fixed #13725 -- take url scheme into account in assertRedirectsUnai Zalakain
Scheme is handled correctly when making comparisons between two URLs. If there isn't any scheme specified in the location where we are redirected to, the original request's scheme is used. If present, the scheme in ``expected_url`` is the one used to make the comparations to.
2013-11-07Removed no longer relevant wordSylvain Bellemare
2013-11-07Fixed #20536 -- rewrite of the file based cache backendJaap Roes
* Safer for use in multiprocess environments * Better random culling * Cache files use less disk space * Safer delete behavior Also fixed #15806, fixed #15825.
2013-11-02Fixed #21373 -- Typo fixed in i18n docsClaude Paroz
Thanks rpq at winscores.com for the report.
2013-11-02Fixed #21341 -- Eased https requests with the test clientUnai Zalakain
All request methods of ``django.test.client.Client`` receive a ``secure`` argument that defaults to ``False`` indicating whether or not to make the request through https. Thanks Aymeric Augustin for the review.
2013-11-01Fixed spelling ("dependant" -> "dependent")Tim Graham
Dependent means reliant on. A dependant is a person like a child or spouse. Thanks Andrew Wilcox for the report.
2013-11-01Fixed typo -- "a" user, not "an" userSylvain Bellemare
2013-10-30Fixed #21294 -- Clarified the logout next_page argument.Tim Graham
Thanks wim at go2people.nl for the report.
2013-10-30Documented the limitation on sep argument to SignerAntoine Catton
Co-Authored-By: Gavin Wahl <gwahl@fusionbox.com>