| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-08-30 | Fixed #18647 - Removed link to Malcolm's blog which is gone. | Tim Graham | |
| 2012-08-30 | Fixed #18871 - Fixed typo in multi-db docs. | Tim Graham | |
| 2012-08-29 | Fixed comment typo | David Fischer | |
| 2012-08-29 | [py3] Ported the 'shell' management command. | Aymeric Augustin | |
| The user module and the execfile function were removed in Python 3. Thanks Linovia for the report. | |||
| 2012-08-29 | Fixed #18874 -- Updated new name of README.rst to auxiliary files | Bruno Renié | |
| 2012-08-29 | Made FileSystemStorage accept both text and byte streams | Claude Paroz | |
| Thanks Alexey Boriskin for his help on the patch. | |||
| 2012-08-29 | Removed unnecessary bytes prefix for ContentFile | Claude Paroz | |
| 2012-08-29 | Fixed #11739 -- Made ContentFile support Unicode input | Claude Paroz | |
| 2012-08-29 | Replaced many smart_bytes by force_bytes | Claude Paroz | |
| In all those occurrences, we didn't care about preserving the lazy status of the strings, but we really wanted to obtain a real bytestring. | |||
| 2012-08-28 | Indexing bytes is the problem not slicing. | Benjamin Peterson | |
| 2012-08-29 | [py3] Fixed test failures introduced in ↵ | Florian Apolloner | |
| 3afb5916b215c79e36408b729c9516bc435f5cb7. | |||
| 2012-08-28 | Fixed #18091 -- Non-ASCII templates break `django-admin.py startproject ↵ | Florian Apolloner | |
| --template=TEMPLATE`. Thanks to Claude Huchet and Tomáš Ehrlich for the patch. | |||
| 2012-08-28 | [py3] Updated bundled version of six | Aymeric Augustin | |
| 2012-08-28 | Added latex preamble for ≤. | Florian Apolloner | |
| Thanks to bnomis for the report and yajogo for the initial patch. | |||
| 2012-08-28 | Merge pull request #309 from mitar/patch-1 | Florian Apolloner | |
| Code comment fix. | |||
| 2012-08-27 | fix documentation testing of Selenium WebDriverWait | juanpex | |
| According to the documentation of Selenium, WebDriverWait class has no timeout parameter and using the code fails. http://selenium.googlecode.com/svn/trunk/docs/api/java/org/openqa/selenium/support/ui/FluentWait.html#until%28com.google.common.base.Predicate%29 | |||
| 2012-08-26 | Code comment fix. | Mitar | |
| 2012-08-26 | Made model instance history admin view link not hard-coded. Refs #15294. | Ramiro Morales | |
| 2012-08-26 | Fixed typo in model fields reference docs. | Ramiro Morales | |
| 2012-08-25 | Fixed #18852 -- Restored backwards compatibility | Aymeric Augustin | |
| in django.core.signing. Specifically, kept the same return types (str/unicode) under Python 2. Related to [92b2dec918]. | |||
| 2012-08-25 | Fixed #17448 -- Improved test and documented raw-sql gis query | Claude Paroz | |
| 2012-08-25 | Updated doc for settings.MEDIA_ROOT based on what's generated by ↵ | Tim Graham | |
| settings.py; thanks ryan-blunden. | |||
| 2012-08-25 | Fixed #18804 - Reorganized class based views docs a bit; thanks anthonyb for ↵ | Tim Graham | |
| the initial patch. | |||
| 2012-08-25 | Fixed #16715 -- Fixed join promotion logic for nested nullable FKs | Anssi Kääriäinen | |
| The joins for nested nullable foreign keys were often created as INNER when they should have been OUTER joins. The reason was that only the first join in the chain was promoted correctly. There were also issues with select_related etc. The basic structure for this problem was: A -[nullable]-> B -[nonnull]-> C And the basic problem was that the A->B join was correctly LOUTER, the B->C join not. The major change taken in this patch is that now if we promote a join A->B, we will automatically promote joins B->X for all X in the query. Also, we now make sure there aren't ever join chains like: a LOUTER b INNER c If the a -> b needs to be LOUTER, then the INNER at the end of the chain will cancel the LOUTER join and we have a broken query. Sebastian reported this problem and did also major portions of the patch. | |||
| 2012-08-25 | Added a GeoDjango test with a raw query (Refs #17448) | Claude Paroz | |
| Thanks David Eklund for the initial patch. | |||
| 2012-08-24 | Cleaned up the implementation of in_bulk | Alex Gaynor | |
| 2012-08-24 | Fixed #18847 - Updated for media examples to use static.example.com. Thanks ↵ | Tim Graham | |
| Jamie Curle. | |||
| 2012-08-24 | Merge pull request #301 from carlospalol/quickfix/blog-post-typo | Karen Tracey | |
| Fixed typo in docs | |||
| 2012-08-23 | Modified docs about SpatiaLite version that doesn't need manual initial SQL ↵ | Ramiro Morales | |
| file loading as per 675431dfaaa. | |||
| 2012-08-23 | Fixed #18843 -- Replaced more special chars in column names (inspectdb) | Claude Paroz | |
| Thanks airstrike for the report. | |||
| 2012-08-23 | Fixed #12460 -- Improved inspectdb handling of special field names | Claude Paroz | |
| Thanks mihail lukin for the report and elijahr and kgibula for their work on the patch. | |||
| 2012-08-23 | Fixed typo in docs | Carlos Palol | |
| 2012-08-23 | Fixed #18798 -- Renamed conflicting test methods in i18n tests | Alexey Boriskin | |
| 2012-08-23 | Fixed #18678 -- HttpResponse init arguments allowed for subclasses | Claude Paroz | |
| Thanks hp1337@gmail.com for the report. | |||
| 2012-08-23 | Reordered imports | Aymeric Augustin | |
| to avoid an error introduced in 5301a9d7b1. | |||
| 2012-08-23 | [py3] Removed duplicate imports. | Aymeric Augustin | |
| Fixed #18837. Refs #18791. | |||
| 2012-08-22 | Merge pull request #297 from mjjohnson/ticket_17069 | Tim Graham | |
| Fixed #17069 -- Added log filter example to docs. | |||
| 2012-08-22 | Fixed #11340 -- Prevented HttpResponseNotModified to have content/content-type | Claude Paroz | |
| The HTTP 1.1 spec tells that the 304 response MUST NOT contain a message body. Thanks aparajita for the report. | |||
| 2012-08-22 | Used the decorator syntax for properties in django.http | Claude Paroz | |
| 2012-08-22 | Revert "Fixed #18063 -- Avoid unicode in Model.__repr__ in python 2" | Simon Meers | |
| This reverts commit 3fce0d2a9162cf6e749a6de0b18890dea8955e89. | |||
| 2012-08-21 | Fixed #18637 - Updated some documentation for aspects of models that are ↵ | Tim Graham | |
| ModelForm specific, not admin specific. Thanks Ben Sturmfels for the patch. | |||
| 2012-08-21 | Fixed #14885 - Clarified that ModelForm cleaning may not fully complete if ↵ | Tim Graham | |
| the form is invalid. Thanks Ben Sturmfels for the patch. | |||
| 2012-08-21 | Fixed #18196 -- Improved loaddata error messages. | Claude Paroz | |
| 2012-08-21 | Fixed #17886 -- Fixed join promotion in ORed nullable queries | Anssi Kääriäinen | |
| The ORM generated a query with INNER JOIN instead of LEFT OUTER JOIN in a somewhat complicated case. The main issue was that there was a chain of nullable FK -> non-nullble FK, and the join promotion logic didn't see the need to promote the non-nullable FK even if the previous nullable FK was already promoted to LOUTER JOIN. This resulted in a query like a LOUTER b INNER c, which incorrectly prunes results. | |||
| 2012-08-21 | Fixed #17069 -- Added log filter example to docs. | Michael Johnson | |
| Added an example of filtering admin error emails (to exclude UnreadablePostErrors) to the docs. | |||
| 2012-08-21 | Merge walk and find_files in makemessages command | Claude Paroz | |
| 2012-08-21 | Removed obsolete __members__ definitions | Claude Paroz | |
| This was useful for pre-Python 2.6 support. See commit c6e8e5d9. | |||
| 2012-08-21 | Reverted type check added in 62954ba04c. | Aymeric Augustin | |
| Refs #17040. | |||
| 2012-08-20 | Fixed #18819 -- fixed some typos in the auth docs | Alex Gaynor | |
| 2012-08-20 | [py3] Fixed #17040 -- ported django.utils.crypto.constant_time_compare. | Aymeric Augustin | |
| This is a private API; adding a type check is acceptable. | |||
