summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-08-30Fixed #18647 - Removed link to Malcolm's blog which is gone.Tim Graham
2012-08-30Fixed #18871 - Fixed typo in multi-db docs.Tim Graham
2012-08-29Fixed comment typoDavid 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-29Fixed #18874 -- Updated new name of README.rst to auxiliary filesBruno Renié
2012-08-29Made FileSystemStorage accept both text and byte streamsClaude Paroz
Thanks Alexey Boriskin for his help on the patch.
2012-08-29Removed unnecessary bytes prefix for ContentFileClaude Paroz
2012-08-29Fixed #11739 -- Made ContentFile support Unicode inputClaude Paroz
2012-08-29Replaced many smart_bytes by force_bytesClaude 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-28Indexing bytes is the problem not slicing.Benjamin Peterson
2012-08-29[py3] Fixed test failures introduced in ↵Florian Apolloner
3afb5916b215c79e36408b729c9516bc435f5cb7.
2012-08-28Fixed #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 sixAymeric Augustin
2012-08-28Added latex preamble for ≤.Florian Apolloner
Thanks to bnomis for the report and yajogo for the initial patch.
2012-08-28Merge pull request #309 from mitar/patch-1Florian Apolloner
Code comment fix.
2012-08-27fix documentation testing of Selenium WebDriverWaitjuanpex
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-26Code comment fix.Mitar
2012-08-26Made model instance history admin view link not hard-coded. Refs #15294.Ramiro Morales
2012-08-26Fixed typo in model fields reference docs.Ramiro Morales
2012-08-25Fixed #18852 -- Restored backwards compatibilityAymeric Augustin
in django.core.signing. Specifically, kept the same return types (str/unicode) under Python 2. Related to [92b2dec918].
2012-08-25Fixed #17448 -- Improved test and documented raw-sql gis queryClaude Paroz
2012-08-25Updated doc for settings.MEDIA_ROOT based on what's generated by ↵Tim Graham
settings.py; thanks ryan-blunden.
2012-08-25Fixed #18804 - Reorganized class based views docs a bit; thanks anthonyb for ↵Tim Graham
the initial patch.
2012-08-25Fixed #16715 -- Fixed join promotion logic for nested nullable FKsAnssi 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-25Added a GeoDjango test with a raw query (Refs #17448)Claude Paroz
Thanks David Eklund for the initial patch.
2012-08-24Cleaned up the implementation of in_bulkAlex Gaynor
2012-08-24Fixed #18847 - Updated for media examples to use static.example.com. Thanks ↵Tim Graham
Jamie Curle.
2012-08-24Merge pull request #301 from carlospalol/quickfix/blog-post-typoKaren Tracey
Fixed typo in docs
2012-08-23Modified docs about SpatiaLite version that doesn't need manual initial SQL ↵Ramiro Morales
file loading as per 675431dfaaa.
2012-08-23Fixed #18843 -- Replaced more special chars in column names (inspectdb)Claude Paroz
Thanks airstrike for the report.
2012-08-23Fixed #12460 -- Improved inspectdb handling of special field namesClaude Paroz
Thanks mihail lukin for the report and elijahr and kgibula for their work on the patch.
2012-08-23Fixed typo in docsCarlos Palol
2012-08-23Fixed #18798 -- Renamed conflicting test methods in i18n testsAlexey Boriskin
2012-08-23Fixed #18678 -- HttpResponse init arguments allowed for subclassesClaude Paroz
Thanks hp1337@gmail.com for the report.
2012-08-23Reordered importsAymeric Augustin
to avoid an error introduced in 5301a9d7b1.
2012-08-23[py3] Removed duplicate imports.Aymeric Augustin
Fixed #18837. Refs #18791.
2012-08-22Merge pull request #297 from mjjohnson/ticket_17069Tim Graham
Fixed #17069 -- Added log filter example to docs.
2012-08-22Fixed #11340 -- Prevented HttpResponseNotModified to have content/content-typeClaude Paroz
The HTTP 1.1 spec tells that the 304 response MUST NOT contain a message body. Thanks aparajita for the report.
2012-08-22Used the decorator syntax for properties in django.httpClaude Paroz
2012-08-22Revert "Fixed #18063 -- Avoid unicode in Model.__repr__ in python 2"Simon Meers
This reverts commit 3fce0d2a9162cf6e749a6de0b18890dea8955e89.
2012-08-21Fixed #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-21Fixed #14885 - Clarified that ModelForm cleaning may not fully complete if ↵Tim Graham
the form is invalid. Thanks Ben Sturmfels for the patch.
2012-08-21Fixed #18196 -- Improved loaddata error messages.Claude Paroz
2012-08-21Fixed #17886 -- Fixed join promotion in ORed nullable queriesAnssi 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-21Fixed #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-21Merge walk and find_files in makemessages commandClaude Paroz
2012-08-21Removed obsolete __members__ definitionsClaude Paroz
This was useful for pre-Python 2.6 support. See commit c6e8e5d9.
2012-08-21Reverted type check added in 62954ba04c.Aymeric Augustin
Refs #17040.
2012-08-20Fixed #18819 -- fixed some typos in the auth docsAlex 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.