https://github.com/django/django

sort by:
Revision Author Date Message Commit Date
d7f8894 [1.5.x] Sphinx conf to 1.5 alpha 1. 25 October 2012, 19:30:53 UTC
8b18f0d [1.5.x] Make 1.5 alpha release notes consistent with previous pre-release versions. 25 October 2012, 19:22:25 UTC
50dfd4b [1.5.x] We actually only support 3.2+ on Py3k. 25 October 2012, 19:21:02 UTC
ed96292 [1.5.x] Bump version information and classifiers for 1.5 alpha release. 25 October 2012, 19:18:06 UTC
e8b2588 Tweaked tense of URL tag changes for clarity 25 October 2012, 19:03:01 UTC
137fdbe Added release notes for Django 1.5 alpha 1. Also updated 1.5-proper release notes a bit. 25 October 2012, 18:59:13 UTC
bd6d9ea Fixed regression caused by #19102 25 October 2012, 16:13:10 UTC
7de439f Fixed #19187 -- Raise consistent error from qs.values().delete() 25 October 2012, 14:16:56 UTC
11b8712 Added docstring to DeleteQuery.delete_qs() 25 October 2012, 14:16:56 UTC
f64a5ef Fixed #19102 -- Fixed fast-path delete for modified SELECT clause cases There was a bug introduced in #18676 which caused fast-path deletes implemented as "DELETE WHERE pk IN <subquery>" to fail if the SELECT clause contained additional stuff (for example extra() and annotate()). Thanks to Trac alias pressureman for spotting this regression. 25 October 2012, 14:16:44 UTC
da56e1b Fixed #18796 -- Refactored conversion to bytes in HttpResponse Thanks mrmachine for the review. 25 October 2012, 06:49:51 UTC
ce1eb32 Remove a case that is no longer reachable in encodings.py. This case was originally designed to handle Exception's which didn't gracefully support coercing themselves to unicode. However, because it lives in the `else` case of `if hasattr(s, '__unicode__'):` we can be sure it's no longer reachable in djanog anymore, because since Python 2.5 exception has subclassed object, which means Exception objects always have an __unicode__ method. 24 October 2012, 22:53:00 UTC
da958eb Fixed #9471 - Expanded ModelAdmin.raw_id_fields docs; thanks adroffne for the suggestion. 24 October 2012, 21:43:24 UTC
1b096ad Removed a function that is already fully implemented by a base class. 24 October 2012, 19:49:57 UTC
82b3e6f Fixed #13222 -- Made HttpResponse iterable once response.content can be accessed many times as desired, and always returns the same result. iter(response) works only once and consumes the iterator. 24 October 2012, 15:19:56 UTC
495a8b8 Fixed #6527 -- Provided repeatable content access in HttpResponses instantiated with iterators. 24 October 2012, 15:08:37 UTC
83041ca Fixed a DeprecationWarning under Python 3. 24 October 2012, 14:52:21 UTC
c736a1a Fixed #19176 -- Typo in copy-pasted error message. Thanks maxirobaina for the report. 24 October 2012, 14:21:30 UTC
9fd2f9c Fixed #19088 -- Always escape % inside blocktrans tag Thanks vlinhart for the report and Łukasz Rekucki for the patch. 23 October 2012, 16:49:22 UTC
3541a10 Fixed #19164 -- Fixed diffsettings command broken in fix for #18545. Thanks Mario César for the report and draft patch. 23 October 2012, 00:49:08 UTC
ea57112 Reverted 6a64822bf4632707212314a25a843c862bdb3874. This commit caused every test that does two or more assertContains to fail, because of #6527. It also made HttpResponse non-pickleable. Refs #13222. 22 October 2012, 22:11:17 UTC
11a4b6d Merge pull request #460 from JanBednarik/ticket_19162 Fixed #19162 -- Wrong indentation. 22 October 2012, 21:43:28 UTC
6a64822 Fixed #13222 -- Repeated iteration of HttpResponse Thanks teepark for the report and grahamd for his insights. 22 October 2012, 20:52:36 UTC
4cceb5c Fixed #19162 -- Wrong indentation. 22 October 2012, 17:23:19 UTC
e70170c Cleaned up i18n regression tests 22 October 2012, 12:45:41 UTC
58cc3e8 Fixed #19157 -- Removed test-only string from translatable strings Thanks Alexey Boriskin for the report. Refs #18240. 22 October 2012, 07:31:28 UTC
104ca49 Removed inaccurate statement from the StreamingHttpResponse docs. Iterators will be closed for both regular and streaming responses; this shouldn't be described as a difference. 21 October 2012, 20:44:02 UTC
5e629a0 Added tests for conditional_content_removal. Refs #7581. Thanks mrmachine. 21 October 2012, 20:40:31 UTC
b4066d7 Cleaned up the the http module. Moved all of the code from __init__.py to request.py, response.py and utils.py 21 October 2012, 18:12:59 UTC
22471a4 Merge pull request #457 from JanBednarik/ticket_19142 Fixed #19142 -- Language codes can include numbers (RFC 3066) 21 October 2012, 17:35:01 UTC
e987d20 Added 1.4.2 release notes 21 October 2012, 14:49:35 UTC
1a3ff63 Updated error message for bad database engine removing typo in the process. Thanks to Carlos Palol for the catch. Closes pull 450 21 October 2012, 14:41:59 UTC
6b3d2bc Merge pull request #444 from mitar/patch-2 Allow reversed iteration over SortedDict. 21 October 2012, 03:39:49 UTC
e6b3419 Fixed #19142 -- Language codes can include numbers (RFC 3066). 20 October 2012, 23:25:35 UTC
6b0d93d Merge pull request #456 from JanBednarik/ticket_19151 Fixed #19151 -- Added missing methods to EmptyQuerySet. 20 October 2012, 22:33:40 UTC
b87e2f4 Fixed #19151 -- Added missing methods to EmptyQuerySet. Added values() and values_list() methods to EmptyQuerySet. 20 October 2012, 22:19:38 UTC
d7c6a57 Used @override_settings in several tests. 20 October 2012, 21:22:46 UTC
2f722d9 Fixed #13869 - Warned that QuerySet.iterator() doesn't affect DB driver caching; thanks jtiai for the suggestion. 20 October 2012, 19:22:34 UTC
4b27813 Fixed #7581 -- Added streaming responses. Thanks mrmachine and everyone else involved on this long-standing ticket. 20 October 2012, 18:05:11 UTC
300d052 Fixed arguments for get_inline_instances example; refs #17856 20 October 2012, 13:57:15 UTC
cfb3eb2 Used FakePayload in requests tests 20 October 2012, 13:54:26 UTC
c2e19e2 Fixed #17856 -- Passed obj to get_inline_instances Thanks ybon, quinode and sjaensch for the patch, and Tim Graham for the review. 20 October 2012, 13:49:52 UTC
dcbf08c Fixed #19094 -- Improved FakePayload to support write, len and string input Thanks Ondrej Slinták for the suggestion. 20 October 2012, 13:36:24 UTC
dfd4a71 Fixed #5611 -- Restricted accepted content types in parsing POST data Thanks paulegan for the report and Preston Holmes for the review. 20 October 2012, 12:56:16 UTC
eed4faf Fixed #17006 - Documented ModelAdmin get_form() and get_formsets() 20 October 2012, 12:40:54 UTC
681550c Removed custom WSGIRequestHandler.get_environ We probably historically customized it for good reasons, but currently, the differences with upstream Python are not significant any longer. Also fixes #19075 for which a test has been added. 20 October 2012, 11:55:13 UTC
3084b1c Separated GIS installation docs in sections 20 October 2012, 09:08:52 UTC
7a90874 Fixed #19150 -- Added validation for USERNAME_FIELD being included in REQUIRED_FIELDS. Thanks to Chris Pagnutti for the suggestion. 20 October 2012, 03:51:15 UTC
04b53eb Fixed #19133 -- Corrected regression in form handling for user passwords. Thanks to pressureman for the report, and to Preston Holmes for the draft patch. 20 October 2012, 03:41:54 UTC
4cef9a0 Fixed #17388 - Noted in the custom model field docs that field methods need to handle None if the field may be null. 19 October 2012, 21:51:24 UTC
0b908b9 Fixed #8001 -- Made redirections after add/edit in admin customizable. Also fixes #18310. 18 October 2012, 23:58:52 UTC
db598dd Fixed #18046 - Documented than an index is created by default for ForeignKeys; thanks jbauer for the suggestion. 18 October 2012, 20:58:05 UTC
4fb510f Added missed poisoned host header tests 18 October 2012, 18:10:46 UTC
0775ab2 Fixed #19132 -- Added example for creating custom lazy function Thanks flagzeta@yahoo.it for the report and Luke Plant for his expert assistance. 18 October 2012, 07:02:20 UTC
31dcaf4 Fixed an error in cookie documentation 17 October 2012, 21:53:21 UTC
9305c0e Fixed a security issue related to password resets Full disclosure and new release are forthcoming 17 October 2012, 21:36:41 UTC
3e08570 Fixed #18473 - Fixed a suggestion that GZipMiddleware needs to be first in the list of middleware. 17 October 2012, 19:46:59 UTC
9d2e1f0 Reported OpenLayersWidget exceptions through logging 17 October 2012, 09:59:10 UTC
fd02bcf Fixed #18548 - Clarified note regarding reusing model instances when form validation fails. 17 October 2012, 00:39:13 UTC
bfcda77 Fixed #19130 -- Made some of the auth forms more flexible for user models. 16 October 2012, 08:03:29 UTC
8f94d28 Fixed #19128 -- Reworded admonition about Jython and Django 1.5 Thanks adam@hopelessgeek.com for the report. 16 October 2012, 07:04:12 UTC
9190d89 Fixed #10936 - Tempered recommendation of SQLite - thanks Karen Tracey for the feedback. 15 October 2012, 23:55:46 UTC
07abb7a Fixed #18715 - Refactored tutorial 3. Thank-you Daniel Greenfeld! 15 October 2012, 23:47:26 UTC
08286ca Made use of assertXMLEqual in sitemaps tests 15 October 2012, 21:05:40 UTC
6b0a836 Fixed assertXMLEqual when first node was a comment 15 October 2012, 21:05:40 UTC
1636b03 Added docs link to new third-party Lithuanian localflavor 15 October 2012, 19:18:16 UTC
2811e54 Added tests for reversed iteration over SortedDict. 15 October 2012, 19:12:10 UTC
2ee6a46 Fixed #15753 -- Cleared cache between sitemaps tests When caching was activated, test_simple_sitemap would fail because the test result was fetched from cache. Thanks lucho for the initial patch and krzysiumed@gmail.com for the review. 15 October 2012, 19:11:32 UTC
72efdc4 Merge pull request #436 from ddbeck/patch-1 Removed heteronormativity from coding style doc 15 October 2012, 14:45:27 UTC
05b8491 Added DeprecationWarning for django.contrib.localflavor. Note this is DeprecationWarning instead of PendingDeprecationWarning because we've decided to accelerate this particular deprecation. 15 October 2012, 14:37:29 UTC
2236351 Updated Transifex base url 15 October 2012, 12:19:41 UTC
c3fabb2 Allow reversed iteration over SortedDict. Iterators cannot be reversed easily without this method. 15 October 2012, 11:16:46 UTC
5836540 Updated base translation files 15 October 2012, 09:17:06 UTC
afbf913 Build context strings out of [u|n]gettext The context strings in [n]pgettext functions should not be marked themselves for translation. 15 October 2012, 08:00:22 UTC
a451d2b Replaced mentions of Subversion by Git in docs 14 October 2012, 21:03:01 UTC
e6f45aa Added release note about removed div around csrf token Refs #18484. Thanks Simon Charette for the suggestion. 13 October 2012, 19:01:30 UTC
7a44dc5 Fixed #16479 - Forms generated from formsets use ErrorList instead of supplied error_class Patch with tests from charettes, updated. 13 October 2012, 14:28:20 UTC
cc83a4a Added 'groups' to UserAdmin.filter_horizontal Is there some reason it's not there already? Our list of groups is very cumbersome to use with the standard widget. 13 October 2012, 13:58:36 UTC
fa2e28c Fixed #18484 -- Removed the div around the csrf token input 13 October 2012, 09:30:09 UTC
22742e4 Added ref to format localization in Date[Time]Field docs Thanks henrik@aisti.fi for the suggestion in #19119. 13 October 2012, 09:17:25 UTC
10dc479 Fixed #19119 -- Corrected default date input formats in docs Thanks henrik@aisti.fi for the report. 13 October 2012, 09:02:18 UTC
b3b3db3 Fixed #19067 -- Clarified handling of username in createsuperuser. Thanks to clelland for the report, and Preston Holmes for the draft patch. 13 October 2012, 05:36:07 UTC
c433fcb Fixed #19077, #19079 -- Made USERNAME_FIELD a required field, and modified UserAdmin to match. 13 October 2012, 03:44:50 UTC
5fb2232 Merge pull request #422 from elvard/18996 Fixed #18996 - Clarified overriden model methods not called on bulk operations 12 October 2012, 23:45:45 UTC
c870cb4 Fixed #18256 - Added a potential pitfall when upgrading to MySQL 5.5.5 12 October 2012, 23:17:00 UTC
f8c3acc Updated localflavor docs to note the new packages 12 October 2012, 22:00:35 UTC
ffbc599 Removed country-specific localflavor tests. They now live in separate django-contrib-XX packages. 12 October 2012, 21:21:51 UTC
24c7d82 Moved de_CH/formats.py in its correct location Refs #16188. 12 October 2012, 21:18:42 UTC
95f7ea3 Fixed #19028 -- Support GeoJSON output with SpatiaLite 3.0+ 12 October 2012, 15:23:22 UTC
470deb5 Fixed #10936 - Noted that using SQLite for development is a good idea 12 October 2012, 00:01:30 UTC
6b56aee Merge pull request #428 from donspaulding/patch-1 Removed extra indent in docs/topics/db/queries.txt 11 October 2012, 23:19:32 UTC
dd0cbc6 Fixed #16588 - Warned about field names that conflict with the model API 11 October 2012, 22:05:12 UTC
2d1214d Fixed #14165 - Documented that TransactionMiddleware only applies to the default database. 11 October 2012, 21:47:37 UTC
b5f224e Fixed tests introduced for #15915 The tests didn't clean up properly. The commit that introduced the errors was 8c427448d53ec0d860e1669f35deed73d0240ba1. Thanks to Trac alias rizumu for spotting this. 11 October 2012, 21:10:49 UTC
501d793 Fixed #19107 -- Workarounded message-encoding bug on Python < 2.6.6 Thanks Bernardo Pires for the report. 11 October 2012, 19:40:14 UTC
0614e99 More URL reversion docs typo fixes. 11 October 2012, 18:40:38 UTC
0921b74 Merge pull request #437 from dmedvinsky/bug/docs-typo-reversing Fixed typo in URL reversing docs 11 October 2012, 10:15:39 UTC
06f5da3 Fixed #16817 - Added a guide of code coverage to contributing docs. Thanks Pedro Lima for the draft patch. 11 October 2012, 10:11:52 UTC
b498ce8 Fix typo in URLs reversing docs 11 October 2012, 08:38:14 UTC
7ef2781 Fixed #4501 - Documented how to use coverage.py with Django tests. Thanks krzysiumed for the draft patch. 11 October 2012, 00:03:27 UTC
back to top