- 27 Agu, 2015 1 kayıt (commit)
-
-
Sergey Kolosov yazdı
Introduced an AbstractBaseSession model and hooks providing the option of overriding the model class used by the session store and the session store class used by the model.
-
- 25 Agu, 2015 1 kayıt (commit)
-
-
sarthakmeh yazdı
-
- 24 Agu, 2015 2 kayıt (commit)
-
-
Maxime Lorant yazdı
-
Tommy Beadle yazdı
When using a TransactionTestCase with serialized_rollback=True, after creating the database and running its migrations (along with emitting the post_migrate signal), the contents of the database are serialized to _test_serialized_contents. After the first test case, _fixture_teardown() would flush the tables but then the post_migrate signal would be emitted and new rows (with new PKs) would be created in the django_content_type table. Then in any subsequent test cases in a suite, _fixture_setup() attempts to deserialize the content of _test_serialized_contents, but these rows are identical to the rows already in the database except for their PKs. This causes an IntegrityError due to the unique constraint in the django_content_type table. This change made it so that in the above scenario the post_migrate signal is not emitted after flushing the tables, since it will be repopulated during fixture_setup().
-
- 15 Agu, 2015 1 kayıt (commit)
-
-
- 11 Agu, 2015 1 kayıt (commit)
-
-
Brendan Hayward yazdı
-
- 22 Tem, 2015 1 kayıt (commit)
-
-
Kenneth Love yazdı
contrib.auth.mixins is based on our work with django-braces.
-
- 13 Tem, 2015 1 kayıt (commit)
-
-
Andrei Kulakov yazdı
The new attribute is checked when the `migrate --fake-initial` option is used. initial will be set to True for all initial migrations (this is particularly useful when initial migrations are split) as well as for squashed migrations.
-
- 03 Tem, 2015 1 kayıt (commit)
-
-
Rigel Di Scala yazdı
-
- 02 Tem, 2015 2 kayıt (commit)
-
-
Jan Pazdziora yazdı
-
William Schwartz yazdı
-
- 22 Haz, 2015 1 kayıt (commit)
-
-
Francisco Albarran yazdı
-
- 18 Haz, 2015 1 kayıt (commit)
-
-
Nick Pope yazdı
When the Host header contains a port, looking up the Site record fails as the host will never match the domain.
-
- 17 Haz, 2015 2 kayıt (commit)
-
-
Markus Holtermann yazdı
Added the mixins LoginRequiredMixin, PermissionRequiredMixin and UserPassesTestMixin to contrib.auth as counterparts to the respective view decorators. The authentication mixins UserPassesTestMixin, LoginRequiredMixin and PermissionRequiredMixin have been inspired by django-braces <https://github.com/brack3t/django-braces/> Thanks Raphael Michel for the initial patch, tests and docs on the PR and Ana Balica, Kenneth Love, Marc Tamlyn, and Tim Graham for the review.
-
JensDiemer yazdı
-
- 11 Haz, 2015 1 kayıt (commit)
-
-
Sutrisno Efendi yazdı
-
- 09 Haz, 2015 1 kayıt (commit)
-
-
girishkumarkh yazdı
-
- 06 Haz, 2015 1 kayıt (commit)
-
-
Markus Amalthea Magnuson yazdı
Made some contributions in the past, seems like I never got around to adding myself :) https://github.com/django/django/commits?author=alimony
-
- 05 Haz, 2015 1 kayıt (commit)
-
-
Matthew Somerville yazdı
Updated the command to match the documentation, which states it runs over all .po files.
-
- 31 May, 2015 1 kayıt (commit)
-
-
Adam Chainz yazdı
-
- 19 May, 2015 1 kayıt (commit)
-
-
Riccardo Magliocchetti yazdı
-
- 16 May, 2015 1 kayıt (commit)
-
-
Piotr Jakimiak yazdı
-
- 24 Nis, 2015 1 kayıt (commit)
-
-
Nicolas Noé yazdı
-
- 20 Nis, 2015 1 kayıt (commit)
-
-
Jon Dufresne yazdı
-
- 13 Nis, 2015 1 kayıt (commit)
-
-
Jay Wineinger yazdı
-
- 05 Nis, 2015 1 kayıt (commit)
-
-
Marten Kenbeek yazdı
Fixed MigrationWriter.serialize() to correctly handle migration operations by utilizing OperationWriter. Thanks Piotr Maliński for the report.
-
- 01 Nis, 2015 1 kayıt (commit)
-
-
Ryan Hall yazdı
-
- 30 Mar, 2015 1 kayıt (commit)
-
-
Andriy Sokolovskiy yazdı
-
- 27 Mar, 2015 1 kayıt (commit)
-
-
Moritz Sichert yazdı
-
- 21 Mar, 2015 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
-
- 20 Mar, 2015 1 kayıt (commit)
-
-
Loek van Gent yazdı
-
- 12 Mar, 2015 2 kayıt (commit)
-
-
ifedapo olarewaju yazdı
-
Aksel Ethem yazdı
-
- 05 Mar, 2015 1 kayıt (commit)
-
-
Grzegorz Slusarek yazdı
-
- 23 Şub, 2015 1 kayıt (commit)
-
-
Ian Lee yazdı
The website only renders code blocks at 96 chars, and therefore long code lines get wrapped. Manually breaking the lines prevents the wrapping from occurring.
-
- 09 Şub, 2015 1 kayıt (commit)
-
-
- 03 Şub, 2015 1 kayıt (commit)
-
-
Matthew Somerville yazdı
make_bytes() assumed that if the Content-Encoding header is set, then everything had already been dealt with bytes-wise, but in a streaming situation this was not necessarily the case. make_bytes() is only called when necessary when working with a StreamingHttpResponse iterable, but by that point the middleware has added the Content-Encoding header and thus make_bytes() tried to call bytes(value) (and dies). If it had been a normal HttpResponse, make_bytes() would have been called when the content was set, well before the middleware set the Content-Encoding header. This commit removes the special casing when Content-Encoding is set, allowing unicode strings to be encoded during the iteration before they are e.g. gzipped. This behaviour was added a long time ago for #4969 and it doesn't appear to be necessary any more, as everything is correctly made into bytes at the appropriate places. Two new tests, to show that supplying non-ASCII characters to a StreamingHttpResponse works fine normally, and when passed through the GZip middleware (the latter dies without the change to make_bytes()). Removes the test with a nonsense Content-Encoding and Unicode input - if this were to happen, it can still be encoded as bytes fine.
-
- 19 Ock, 2015 1 kayıt (commit)
-
-
Jakub Wilk yazdı
-
- 12 Ock, 2015 1 kayıt (commit)
-
-
Michał Modzelewski yazdı
-
- 22 Ara, 2014 1 kayıt (commit)
-
-
Oscar Ramirez yazdı
-