summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2013-11-24Fixed #21391 -- Allow model signals to lazily reference their senders.Simon Charette
2013-11-24Fixed typo in previous commit; refs #21490.Tim Graham
2013-11-24Fixed #21490 -- Fixed custom admin URL reverse example.Tim Graham
Thanks glarrain for the report.
2013-11-24Removed confusing comments from the docs.Loic Bistuer
The settings reference documentation doesn't seem the right place to invite users to write their own db and cache backends. Also the actual wording makes the task sound trivial, which is hardly the case; writing a custom db backend is a very difficult task, and writing a custom cache backend is full of gotcha.
2013-11-24Fixed #21499 -- Added a paragraph to the docs.Raphael Jasjukaitis
2013-11-23Add missing commas in Prefetch docsThomas Orozco
2013-11-23Fixed #21486 -- Prevented settings config in signal connectionClaude Paroz
This was particularly problematic in the chain get_wsgi_application -> db.connections import -> signal connection -> settings configuration. Thanks Jon Dufresne for the report.
2013-11-23Fixed #21200 -- Consistantly raise errors across all cache backends.Florian Apolloner
Thanks to tchaumeny for the patch.
2013-11-23Fixed #21488 -- Multiple locales treatment in i18n commands.Ramiro Morales
Removed multiple locales separated by commas variation (that wasn't working as documented) in favor of simply allowing use of the ``--locale``/``-l`` options more than once for ``makemessages`` and ``compilemessages``. Thanks Romain Beylerian for the report and Claude, Simon for their help. 8750296918072c97a51f6809d19828ce3f1b8d40 from stable/1.6.x.
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-23Removed information about releases < 1.7.Haiko Schol
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-23Fixed #21491 -- Removed documented workaround for a known issue.Loic Bistuer
The issue was that two M2M hidden reverse managers (related_name ending with a '+') could clash with each other. Refs #21375 and #15932. Thanks Baptiste.
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-22Fixed sentence structure in docs/internals/contributing/triaging-tickets.txtCody Scott
2013-11-21Fixed #21405 -- Prevented queryset overwrite in BaseModelAdminClaude Paroz
Thanks guido@20tab.com for the report and Tim Graham for the analyze.
2013-11-21Fixed #21479 -- Favor 'migrate' over 'syncdb' in the docs.Loic Bistuer
2013-11-21Fixed #21427 -- Clearly state integer field value ranges in docsMarkus Amalthea Magnuson
Added an explicit mention of the exact value ranges for integer type fields that are safe in all databases supported by Django. Also, put all value numbers inside double ticks.
2013-11-20Fixed #21472 -- Fixed inline formsets display when parent pk is 0Claude Paroz
Thanks agale031176@gmail.com for the report.
2013-11-19Recommended setuptools in the reuseable app tutorial.Dražen Lučanin
setuptools has merged with distribute.
2013-11-19Added more examples to the get_object_or_404 documentation.Baptiste Mispelon
2013-11-19fixed typo in builtins.txtJulia Antokhine
2013-11-19Fixed the base class note in the Date Views docs.Rocky Meza
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-18Fixed #21457 -- Allowed fixture file name to contain dotsClaude Paroz
Thanks Keryn Knight for the report.
2013-11-18Added more internal links in the management command documentation.Baptiste Mispelon
2013-11-18Fixed #21397 -- Re-added flexibility to TypedChoiceField coercionClaude Paroz
Thanks Elec for the report and Simon Charette for the review.
2013-11-18Added release note for TypedChoiceField coerce limitationClaude Paroz
Thanks Elec for the report and Simon Charette for the review. Refs #21397.
2013-11-18Fixed #21240 -- Added 1.5 release note for OneToOneField/select_related change.Tim Graham
Thanks marcin at sokrates.pl.
2013-11-18Fixed #21404 -- Added session.set_expiry() note to 1.6 release notes.Tim Graham
Thanks pwr for the suggestion.
2013-11-17Updated 1.6.1 release notesClaude Paroz
Partial forward port of e85baa813f.
2013-11-16Fixed #21428 -- editable GenericRelation regressionAnssi Kääriäinen
The GenericRelation refactoring removed GenericRelations from model._meta.many_to_many. This had the side effect of disallowing editable GenericRelations in ModelForms. Editable GenericRelations aren't officially supported, but if we don't fix this we don't offer any upgrade path for those who used the ability to set editable=True in GenericRelation subclass. Thanks to Trac alias joshcartme for the report and stephencmd and Loic for working on this issue.
2013-11-15Fixed #21440 -- Typo #2 in topics/http/shortcuts.txtTim Graham
Thanks alasdair.
2013-11-15Clarified MySQL Connector note.DanSears
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-14Added backported fixes to 1.6.1 release notes.Baptiste Mispelon
2013-11-14Release notes for ORM changes in 1.6Anssi Kääriäinen
2013-11-13Added release note for #21410; thanks Loic.Tim Graham
2013-11-12Fixed typos in previous commit (9aa6d4bdb6618ba4f17acc7b7c0d1462d6cbc718).Baptiste Mispelon
2013-11-12Removed a mention of `Form._errors` from the documentation.Baptiste Mispelon
Also removed a sentence that was incorrect: raising a `ValidationError` inside `Form.clean` doesn't clear the `cleaned_data` attribute. Thanks to loic84 and timograham for the review.
2013-11-11Merge pull request #1907 from Bouke/tickets/21388Claude Paroz
Fixed #21388 -- Corrected language code for Frisian
2013-11-11Fixed #21421 -- Added level_tag attribute on messages.Sjoerd Langkemper
Exposing the level name (e.g. "info") makes it possible to prepend something to the class name. For example, Twitter Bootstrap has an alert-info class. This class can now be added to the message using `class="alert-{{ message.level_tag }}". Because the level_tag was on the end of the `tags` property, it could not be used in this fashion when extra_tags were given.
2013-11-11Fixed #21388 -- Corrected language code for FrisianBouke Haarsma
2013-11-11Merge pull request #1906 from DanSears/masterAymeric Augustin
Added description of MySQL Connector/Python
2013-11-11Fixed #21351 -- Replaced memoize with Python's lru_cache.Bouke Haarsma
Replaced the custom, untested memoize with a similar decorator from Python's 3.2 stdlib. Although some minor performance degradation (see ticket), it is expected that in the long run lru_cache will outperform memoize once it is implemented in C. Thanks to EvilDMP for the report and Baptiste Mispelon for the idea of replacing memoize with lru_cache.
2013-11-10added description of MySQL Connector/PythonDanSears
Reorganized the MySQLdb section into a "MySQL DB API Drivers" section that describes both MySQLdb and MySQL Connector/Python. Included description of the Django adaptors for these DB API drivers.