| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-11-22 | Removed unused import in docs/topics/http/sessions.txt | Tim Graham | |
| 2013-11-23 | Fixed #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-22 | Fixed #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-22 | Fixed sentence structure in docs/internals/contributing/triaging-tickets.txt | Cody Scott | |
| 2013-11-21 | Fixed #21405 -- Prevented queryset overwrite in BaseModelAdmin | Claude Paroz | |
| Thanks guido@20tab.com for the report and Tim Graham for the analyze. | |||
| 2013-11-21 | Fixed #21479 -- Favor 'migrate' over 'syncdb' in the docs. | Loic Bistuer | |
| 2013-11-21 | Fixed #21427 -- Clearly state integer field value ranges in docs | Markus 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-20 | Fixed #21472 -- Fixed inline formsets display when parent pk is 0 | Claude Paroz | |
| Thanks agale031176@gmail.com for the report. | |||
| 2013-11-19 | Recommended setuptools in the reuseable app tutorial. | Dražen Lučanin | |
| setuptools has merged with distribute. | |||
| 2013-11-19 | Added more examples to the get_object_or_404 documentation. | Baptiste Mispelon | |
| 2013-11-19 | fixed typo in builtins.txt | Julia Antokhine | |
| 2013-11-19 | Fixed the base class note in the Date Views docs. | Rocky Meza | |
| 2013-11-19 | Fixed #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-18 | Fixed typo in topics/http/sessions.txt. | Tim Graham | |
| 2013-11-18 | Fixed #21457 -- Allowed fixture file name to contain dots | Claude Paroz | |
| Thanks Keryn Knight for the report. | |||
| 2013-11-18 | Added more internal links in the management command documentation. | Baptiste Mispelon | |
| 2013-11-18 | Fixed #21397 -- Re-added flexibility to TypedChoiceField coercion | Claude Paroz | |
| Thanks Elec for the report and Simon Charette for the review. | |||
| 2013-11-18 | Added release note for TypedChoiceField coerce limitation | Claude Paroz | |
| Thanks Elec for the report and Simon Charette for the review. Refs #21397. | |||
| 2013-11-18 | Fixed #21240 -- Added 1.5 release note for OneToOneField/select_related change. | Tim Graham | |
| Thanks marcin at sokrates.pl. | |||
| 2013-11-18 | Fixed #21404 -- Added session.set_expiry() note to 1.6 release notes. | Tim Graham | |
| Thanks pwr for the suggestion. | |||
| 2013-11-17 | Updated 1.6.1 release notes | Claude Paroz | |
| Partial forward port of e85baa813f. | |||
| 2013-11-16 | Fixed #21428 -- editable GenericRelation regression | Anssi 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-15 | Fixed #21440 -- Typo #2 in topics/http/shortcuts.txt | Tim Graham | |
| Thanks alasdair. | |||
| 2013-11-15 | Clarified MySQL Connector note. | DanSears | |
| 2013-11-15 | Fixed #21425 -- Made order in which loggers are introduced consistent. | Tim Graham | |
| Thanks oubiga for the suggestion. | |||
| 2013-11-15 | Fixed #21440 -- Typo in topics/http/shortcuts.txt | Tim Graham | |
| Thanks olof.bjarnason at gmail.com for the report. | |||
| 2013-11-14 | Added backported fixes to 1.6.1 release notes. | Baptiste Mispelon | |
| 2013-11-14 | Release notes for ORM changes in 1.6 | Anssi Kääriäinen | |
| 2013-11-13 | Added release note for #21410; thanks Loic. | Tim Graham | |
| 2013-11-12 | Fixed typos in previous commit (9aa6d4bdb6618ba4f17acc7b7c0d1462d6cbc718). | Baptiste Mispelon | |
| 2013-11-12 | Removed 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-11 | Merge pull request #1907 from Bouke/tickets/21388 | Claude Paroz | |
| Fixed #21388 -- Corrected language code for Frisian | |||
| 2013-11-11 | Fixed #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-11 | Fixed #21388 -- Corrected language code for Frisian | Bouke Haarsma | |
| 2013-11-11 | Merge pull request #1906 from DanSears/master | Aymeric Augustin | |
| Added description of MySQL Connector/Python | |||
| 2013-11-11 | Fixed #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-10 | added description of MySQL Connector/Python | DanSears | |
| 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. | |||
| 2013-11-10 | Fixed typo in tutorial 2; refs #21418. | Tim Graham | |
| 2013-11-09 | Fixed #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-09 | Fixed #14800 -- Suppressed WSGIRequestHandler message filtering | Claude Paroz | |
| Filtering out static file requests in runserver has been judged arbitrary and can hide some debugging-related activity. Thanks Roy Smith for the report and Aymeric Augustin for the review. | |||
| 2013-11-09 | Fixed spelling of compatibility. | Tim Graham | |
| 2013-11-09 | Fixed #21398 -- Fixed BCryptSHA256PasswordHasher with py-bcrypt and Python 3. | Tim Graham | |
| Thanks arjan at anymore.nl for the report. | |||
| 2013-11-09 | Fixed doc typo. | Tim Graham | |
| 2013-11-09 | Fixed versionadded misuse in the admin documentation. | Baptiste Mispelon | |
| 2013-11-09 | Fixed #21378 -- Updated tutorial02 for how to override admin site header. | Vajrasky Kok | |
| 2013-11-09 | Recommended flake8 to check coding style. | Tim Graham | |
| 2013-11-09 | Fixed #16969 -- Don't connect to named database when possible | Claude Paroz | |
| Thanks Andreas Pelme for the report and initial patch, and Aymeric Augustin, Shai Berger and Tim Graham for the reviews. | |||
| 2013-11-08 | Noted that .clear() will delete intermediary models | Cody Scott | |
| 2013-11-08 | Fixed docs for EmailMessage extra_headers attribute | Tom 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-08 | Added missing parameter in npgettext_lazy docs | glts | |
