summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-07-08Fixed #18487 -- Made sure that protocol-relative URLs aren't processed by ↵Jannis Leidel
the cached staticfiles storage. Thanks to LukaszBalcerzak for the patch.
2012-07-08Fixed #18050 -- Fixed a rather glaring bug in the handling of @import ↵Jannis Leidel
statements when using the cached staticfiles storage.
2012-07-08Merge branch 'master' of github.com:django/djangoJannis Leidel
2012-07-08Fixed #18430 -- Use the FILE_CHARSET setting when reading from a file during ↵Jannis Leidel
post processing with the cached staticfiles storage. Thanks to Brant Young for initial debugging.
2012-07-08Fixed #18374 -- Explained "corrupt image" errorAymeric Augustin
Thanks fabian and charettes.
2012-07-07Fixed #17978 -- Fixed a minor layout issue when an inline contains a filter ↵Julien Phalip
horizontal widget. Thanks to Aymeric Augustin for the report.
2012-07-07Fixed #18164 -- Precised startapp template context contentClaude Paroz
2012-07-07Fixed #18589 -- Typo in generic CBV docs.Aymeric Augustin
Thanks cpthomas for the report.
2012-07-07Removed Django 1.0-specific sections.Aymeric Augustin
2012-07-07Fixed #18587 -- Typo in management command exampleAymeric Augustin
Thanks Frank Wiles.
2012-07-07Merge branch 'master' of github.com:django/djangoFlorian Apolloner
2012-07-07Fixed #18254 -- Added ability to the static template tags to store the ↵Jannis Leidel
result in a contextt variable. Many thanks to Andrei Antoukh for the initial patch.
2012-07-07Fixed a regression in the user admin page introduced in ↵Florian Apolloner
a92e7f37c4ae84b6b8d8016cc6783211e9047219. a92e7f37c4ae84b6b8d8016cc6783211e9047219 switched most of the internal stuff to format_html. Using format_html in the `render` method of `ReadOnlyPasswordHashWidget` caused it to generate `SafeString` instances. Later these safe strings where returned from `BoundField.__unicode__` which caused force_unicode to loose the "safe" information. This commit fixes that by ensuring that the render method returns `SafeUnicode` instead of `SafeString`.
2012-07-07Fixed #17257 - Removed outdated comment in syndication viewClaude Paroz
Thanks krzysiumed for the patch.
2012-07-06Merge pull request #176 from benspaulding/ticket_18521Adrian Holovaty
Add reST role to templates named in some view docs.
2012-07-06Merge pull request #183 from rpedigoni/masterAdrian Holovaty
Fixed typo in 1.5 release notes
2012-07-06Merge pull request #187 from evildmp/docs_typosAdrian Holovaty
Added a missing \ in uwsgi docs. Thanks, evildmp.
2012-07-06Merge pull request #188 from semente/patch-1Adrian Holovaty
Fixed copyright holder in baseconf.py.
2012-07-06Fix copyright holderGuilherme Gondim
2012-07-06Fixed #18484 - 'display:none' on CSRF token div is redundant and causes ↵Luke Plant
problems with some browsers Thanks to hedleyroos for the report
2012-07-06Fixed #18576 -- Added missing import in tutorial02Claude Paroz
Thanks jaaruiz at yahoo.com for the report.
2012-07-06Used skipIf decorator to skip image tests when PIL is not availableClaude Paroz
2012-07-06restored a missing \ in uwsgi docsDaniele Procida
2012-07-06Fixed #18572 - Python26 string format incompatibilityLuke Plant
Thanks to anonymous/AeroNotix for the report
2012-07-05Fixed #18330 - Made cache culling 3rd party db backend friendlyAnssi Kääriäinen
This is Ian Kelly's patch from #15580 with minor modifications.
2012-07-05Fixed #18362 - Made model.save() update_fields accept attnamesAndrei Antoukh
2012-07-05Fixed #17997 - Documented that the debug server is now multithreaded by default.Tim Graham
Thanks trey.smith@ for the report and vanessagomes for the patch.
2012-07-04fixed typoRenato Pedigoni
2012-07-04Correct Lithuanian short date format. kspi
2012-07-03Fixed incorrect URL to object on delete confirmation and history pageLuke Plant
2012-07-03Removed various unnecessary instances of mark_safe applied to URLsLuke Plant
Also fixed some test breakages introduced in last commit
2012-07-03Changed a lot of internal code to use 'format_html' where appropriate/possibleLuke Plant
2012-07-03Added 'format_html' utility for formatting HTML fragments safelyLuke Plant
2012-07-03Documented utils.html.escape and conditional_escapeLuke Plant
2012-07-03Fixed widget parent class in generic_relations testClaude Paroz
2012-07-03Fixed comment wording in sql/where.pyAnssi Kääriäinen
Thanks to Simon Charette for noticing this.
2012-07-03Stylistic cleanup of Postgres autocommit testsAnssi Kääriäinen
Cleaned up tests introduced in f572ee0c65ec5eac9edb0cb3e35c96ec86d89ffb. Thanks to Claude Paroz for suggesting the changes.
2012-07-02Replaced 'return' by 'raise' in custom model field docsClaude Paroz
Thanks Simon Charette for noticing it. Refs #11162.
2012-07-01Fixed #18550 -- Ensured that the admin history view works with escaped ↵Julien Phalip
primary keys. Thanks to josh.oosterman for the report and patch.
2012-07-01Fixed #17436 - Added warning about overriding Model.__init__()Tim Graham
Thanks zsiciarz for the draft patch.
2012-07-01Fixed a regression introduced in where.as_sql() refactorAnssi Kääriäinen
At least Oracle needs parentheses in negated where conditions, even if there is only single condition negated. Fixed this by reverting to old logic in that part of as_sql() and adding a comment about this. I did not investigate why the parentheses are needed. The original offending commit was bd283aa844b04651b7c8b4e85f48c6dced1678f0.
2012-07-01Fixed #16047 -- Restore autocommit state correctly on psycopg2Anssi Kääriäinen
When the postgresql_psycopg2 backend was used with DB-level autocommit mode enabled, after entering transaction management and then leaving it, the isolation level was never set back to autocommit mode. Thanks brodie for report and working on this issue.
2012-07-01Fixed some locations to work with autocommit=TrueAnssi Kääriäinen
- backends: supports_transactions() - select_for_update tests
2012-07-01Refactored the empty/full result logic in WhereNode.as_sql()Anssi Kääriäinen
Made sure the WhereNode.as_sql() handles various EmptyResultSet and FullResultSet conditions correctly. Also, got rid of the FullResultSet exception class. It is now represented by '', [] return value in the as_sql() methods.
2012-07-01Fixed #18251 -- Removed a deadlock possibility in apploadingAnssi Kääriäinen
Thanks to harm for the report and comments.
2012-07-01Fixed #16882 - Clarified why one should not use 'init_command' after initial ↵Tim Graham
database creation.
2012-07-01Fixed #18493 - Added instructions to locate the Django source files to the tTim Graham
Thanks Claude Paroz for the draft patch.
2012-06-30Fixed #17705 - Updated TabularInline image and doc in tutorial 2.Tim Graham
Thanks xbito for the draft patch.
2012-06-30Fixed #18145 -- Improved documentation of unique_together type fieldsRaúl Cumplido
2012-06-30Fixed #17026 -- Improved wording of contrib.messages' storage backends sectionClaude Paroz