summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2013-10-30Fixed #21306 -- Documented lower-casing behavior of title filter.Tim Graham
2013-10-30Fixed #21294 -- Clarified the logout next_page argument.Tim Graham
Thanks wim at go2people.nl for the report.
2013-10-30Fixed #20610: Added a message level dict to contrib.message context processor.Baptiste Mispelon
2013-10-30Documented the limitation on sep argument to SignerAntoine Catton
Co-Authored-By: Gavin Wahl <gwahl@fusionbox.com>
2013-10-30Fixed #21316 -- Documented that modifying safe strings makes them unsafe.Tim Graham
Thanks dev@simon.net.nz for the suggestion and vijay_shanker for the patch.
2013-10-30Documented removal of django.core.servers.basehttp.WSGIServerExceptionTim Graham
refs 2ca00faa913754cd5860f6e1f23c8da2529c691a
2013-10-29Fixed #8261 -- ModelAdmin hook for customising the "show on site" buttonUnai Zalakain
``ModelAdmin.view_on_site`` defines wether to show a link to the object on the admin detail page. If ``True``, cleverness (i.e. ``Model.get_absolute_url``) is used to get the url. If it's a callable, the callable is called with the object as the only parameter. If ``False``, not link is displayed. With the aim of maitaining backwards compatibility, ``True`` is the default.
2013-10-29Mark this as a python code-blockAlex Gaynor
2013-10-28Fixed #21344 -- Typo in docs/ref/models/queries.txtTim Graham
2013-10-27Fix note syntax usage.Eric Holscher
http://sphinx.readthedocs.org/en/latest/markup/para.html?highlight=note#directive-note
2013-10-26Fixed all the E203 violationsAlex Gaynor
2013-10-25Fixed #21325 -- Added missing argument to permission_required decorator.Tim Graham
2013-10-25Fixed typo in docs/releases/1.4.9.txt.Paolo Melchiorre
2013-10-24Fixed doc typo in previous commit.Tim Graham
2013-10-24Fixed #21271 -- Added timeout parameter to SMTP EmailBackend.SusanTan
Thanks Tobias McNulty and Tim Graham for discussions and code review. Thanks Andre Cruz the suggestion and initial patch.
2013-10-24Fixed #21219 -- Added a way to set different permission for static files.Vajrasky Kok
Previously, when collecting static files, the files would receive permission from FILE_UPLOAD_PERMISSIONS. Now, there's an option to give different permission from uploaded files permission by subclassing any of the static files storage classes and setting the file_permissions_mode parameter. Thanks dblack at atlassian.com for the suggestion.
2013-10-24Fixed #20338 -- Stripped ending dot during host validationClaude Paroz
Thanks manfre for the report and Timo Graham for the review.
2013-10-23Fixed #20945 -- Allowed cache tag to use a specific cache.Curtis Maloney
2013-10-23Bumped release date for 1.5.5 & 1.4.9.Tim Graham
2013-10-23Fixed #19941 -- Removed sys.path hack when running the test suite.Tim Graham
Thanks jezdez for the suggestion.
2013-10-23typo on 1.7 release notesCollin Anderson
2013-10-23Fixed #13245: Explained Oracle's behavior w.r.t db_tableShai Berger
and how to prevent table-name truncation Thanks russellm & timo for discussion, and timo for review.
2013-10-23Fixed E225 pep8 warnings.Tim Graham
2013-10-22Added 1.5.5 and 1.4.9 release notesTim Graham
2013-10-22Fixed #21304 -- Typo in docs/topics/testing/advanced.txtTim Graham
Thanks joao at silvaneves.org for the report.
2013-10-22Fixed #17027 -- Added support for the power operator in F expressions.Florian Hahn
Thanks dan at dlo.me for the initial patch. - Added __pow__ and __rpow__ to ExpressionNode - Added oracle and mysql specific power expressions - Added used-defined power function for sqlite
2013-10-22Fixed E221 pep8 warnings.Tim Graham
2013-10-22Fixed #5789 -- Changed LocaleMiddleware session variable to '_language'.Bouke Haarsma
The old 'django_language' variable will still be read from in order to migrate users. The backwards-compatability shim will be removed in Django 1.8. Thanks to jdunck for the report and stugots for the initial patch.
2013-10-22Fixed indentation of example in tutuorial 2.Phil Elson
2013-10-21Added docs for the hasher's iteration count changes.Tim Graham
2013-10-21Fixed #21296 -- Added docs for PostgreSQL and unix domains sockets.Riccardo Magliocchetti
2013-10-21Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol
2013-10-18Fixed #21212 -- Documented the reverse name for OneToOneField.Juergen Schackmann
Thanks bjb at credil.org for the report.
2013-10-18Added a warning regarding session security and subdomains.Tim Graham
2013-10-18Fixed ReST error in 1.6. release notes.Tim Graham
2013-10-17Fixed #21285 -- Fixed E121,E122 pep8 warningsAlasdair Nicol
2013-10-17Removed 1.6 release note text regarding password limit length.Tim Graham
This changed was reverted in 5d74853e156105ea02a41f4731346dbe272c2412.
2013-10-17Fixed #18659 -- Deprecated request.REQUEST and MergeDictBouke Haarsma
Thanks Aymeric Augustin for the suggestion.
2013-10-15Fixed #16855 -- select_related() chains as expected.Marc Tamlyn
select_related('foo').select_related('bar') is now equivalent to select_related('foo', 'bar'). Also reworded docs to recommend select_related(*fields) over select_related()
2013-10-15Merge pull request #1751 from tmaster/ticket_21006_improvementDaniele Procida
Improvement on InlineFormSet doc, refs #21006
2013-10-15Improvement on InlineFormSet doc, refs #21006Tianyi Wang
2013-10-15Fixed #7603 -- Added a 'scheme' property to the HttpRequest objectUnai Zalakain
`HttpRequest.scheme` is `https` if `settings.SECURE_PROXY_SSL_HEADER` is appropriately set and falls back to `HttpRequest._get_scheme()` (a hook for subclasses to implement) otherwise. `WSGIRequest._get_scheme()` makes use of the `wsgi.url_scheme` WSGI environ variable to determine the request scheme. `HttpRequest.is_secure()` simply checks if `HttpRequest.scheme` is `https`. This provides a way to check the current scheme in templates, for example. It also allows us to deal with other schemes. Thanks nslater for the suggestion.
2013-10-15Fixed #21006 -- Added example code for overriding methods on an InlineFormSet.Tianyi Wang
Thanks treysta at gmail.com for the suggestion.
2013-10-15Merge pull request #1382 from loic/ticket19617Marc Tamlyn
Fixed #19617 -- Refactored form metaclasses to support more inheritance scenarios.
2013-10-14Fixed #21223 -- Added form.id_for_label to topic guide.Sorcha Bowler
Thanks ebertti at yahoo.com.br for the suggestion.
2013-10-14Fixed #20910 -- Added a "snippet" sphinx directive to allow prefixing a ↵M Nasimul Haque
filename. Thanks Marc Tamlyn for the suggestion.
2013-10-14Fixed #20962 -- Documented that template tag render() may raise exceptions.Bouke Haarsma
Thanks Keryn Knight for the report.
2013-10-14Fixed #8620 -- Updated the Form metaclass to support excluding fields by ↵Loic Bistuer
shadowing them.
2013-10-14Fixed #19617 -- Refactored Form metaclasses to support more inheritance ↵Loic Bistuer
scenarios. Thanks apollo13, funkybob and mjtamlyn for the reviews.
2013-10-14Clarfied the ModelForm docs with respect to generated vs. declared fields.Loic Bistuer
The ModelForm docs suggested that fields defined declaratively override default fields generated from the form Meta. This is conceptually wrong, especially with inheritance in mind. Meta is usually defined on the topmost ModelForm subclass, while fields can come from anywhere in the MRO, especially base classes; therefore we suggested that something defined in a base class override something from a subclass. This patch rephrases the docs around the idea that Meta is used to generate *missing* fields. Refs #8620, #19617. Thanks @mjtamlyn and @timgraham for the review.