Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/AUTHORS
Commit message (Collapse)AuthorAgeFilesLines
* Updated my email address in AUTHORS.Chris Lamb2015-10-271-1/+1
|
* Removed duplicated entry from AUTHORS.Sergey Fedoseev2015-10-211-1/+0
|
* Fixed #25578 -- Corrected the casing of "GitHub".Yusuke Miyazaki2015-10-211-0/+1
|
* Added myself to AUTHORS.Jonas Haag2015-10-071-0/+1
|
* Fixed #25503 -- Fixed system check crash on ForeignKey ↵Mariusz Felisiak2015-10-071-0/+1
| | | | to abstract model.
* Fixed #25481 -- Added field.help_text to "Looping over a ↵John Moses2015-10-021-0/+1
| | | | form's fields" docs.
* Fixed #15760 -- Added JavaScript events for admin inline ↵ramez2015-09-211-0/+1
| | | | forms.
* Fixed #24944 -- Added extra_email_context parameter to ↵sujayskumar2015-09-191-0/+1
| | | | password_reset() view.
* Fixed #25259 -- Added comments to header of generated ↵Tyson Clugg2015-08-311-0/+1
| | | | migration files
* Fixed #22634 -- Made the database-backed session ↵Sergey Kolosov2015-08-271-0/+1
| | | | | | | | backends more extensible. 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.
* Fixed #14217 -- Added validation for field name ↵sarthakmeh2015-08-251-0/+1
| | | | collision when using model inheritance.
* Fixed #25302 -- Prevented BrokenLinkEmailsMiddleware ↵Maxime Lorant2015-08-251-0/+1
| | | | from reporting 404s when Referer = URL.
* Fixed #23727 -- Inhibited the post_migrate signal when ↵Tommy Beadle2015-08-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | using serialized_rollback. 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().
* Fixed #24986 -- Added support for annotations in ↵Valentina Mukhamedzhanova2015-08-151-0/+2
| | | | DISTINCT queries.
* Fixed #25205 -- Removed doc references to deprecated ↵Brendan Hayward2015-08-111-0/+1
| | | | GeoManager class.
* Added Chris Jones and Kenneth Love to AUTHORS.Kenneth Love2015-07-221-0/+2
| | | | contrib.auth.mixins is based on our work with django-braces.
* Fixed #24375 -- Added Migration.initial attributeAndrei Kulakov2015-07-131-0/+1
| | | | | | | 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.
* Fixed #23190 -- Made Paginator.page_range an iteratorRigel Di Scala2015-07-031-0/+1
|
* Fixed #25029 -- Added PersistentRemoteUserMiddleware for ↵Jan Pazdziora2015-07-021-0/+1
| | | | login-page-only external authentication.
* Fixed #24997 -- Enabled bulk_create() on proxy modelsWilliam Schwartz2015-07-021-0/+1
|
* Fixed #25009 -- Allowed ↵Francisco Albarran2015-06-221-0/+1
| | | | User.objects.create_user(...,is_staff=True) to work.
* Fixed #24834 -- Fixed get_current_site() when Host ↵Nick Pope2015-06-181-0/+1
| | | | | | | header contains port. When the Host header contains a port, looking up the Site record fails as the host will never match the domain.
* Fixed #24914 -- Added authentication mixins for CBVsMarkus Holtermann2015-06-171-0/+1
| | | | | | | | | | | | | | 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.
* Refs #9619 -- Added a test that Field.from_db_value() is ↵JensDiemer2015-06-171-0/+1
| | | | called on QuerySet.values()
* Added Sutrisno Efendi to AUTHORS.Sutrisno Efendi2015-06-111-0/+1
|
* Added myself to AUTHORSgirishkumarkh2015-06-091-0/+1
|
* Added Markus Amalthea Magnuson to AUTHORS.Markus Amalthea Magnuson2015-06-061-0/+1
| | | | | Made some contributions in the past, seems like I never got around to adding myself :) https://github.com/django/django/commits?author=alimony
* Fixed #24159 -- Made compilemessages run across all apps.Matthew Somerville2015-06-051-1/+1
| | | | | Updated the command to match the documentation, which states it runs over all .po files.
* Fixed #24846 -- Added support to MySQL SchemaEditor for ↵Adam Chainz2015-05-311-0/+1
| | | | all blob/text data types
* Added myself to AUTHORSRiccardo Magliocchetti2015-05-191-0/+1
|
* Fixed #24774 -- Made contrib.site's Site.domain field uniquePiotr Jakimiak2015-05-161-0/+1
|
* Fixed #24656 -- Added missing imports to query ↵Nicolas Noé2015-04-241-0/+1
| | | | expressions doc.
* Fixed #22394 -- Refactored built-in datetime lookups to ↵Jon Dufresne2015-04-201-0/+1
| | | | transforms.
* Fixed #24611 -- Fixed update() crash with related UUID ↵Jay Wineinger2015-04-131-0/+1
| | | | pk object.
* Fixed #24278 -- Fixed serialization of migration operations.Marten Kenbeek2015-04-051-0/+1
| | | | | | | Fixed MigrationWriter.serialize() to correctly handle migration operations by utilizing OperationWriter. Thanks Piotr Maliński for the report.
* Added Ryan Hall to AUTHORS. Refs #24554Ryan Hall2015-04-021-0/+1
|
* Fixed #24301 -- Added PostgreSQL-specific aggregate ↵Andriy Sokolovskiy2015-03-301-1/+1
| | | | functions
* Fixed #24469 -- Refined escaping of Django's form ↵Moritz Sichert2015-03-281-0/+1
| | | | elements in non-Django templates.
* Added Alex Hill to AUTHORS.Aymeric Augustin2015-03-211-0/+1
|
* Fixed #24419 -- Added sendtestemail management commandLoek van Gent2015-03-201-0/+1
|
* Added myself to AUTHORS; refs #24226.ifedapo olarewaju2015-03-131-0/+1
|
* Fixed #24364 -- Doc'ed that ManifestStaticFileStorage ↵Aksel Ethem2015-03-121-0/+1
| | | | shouldn't be used during testing.
* Fixed #21495 -- Added settings.CSRF_HEADER_NAMEGrzegorz Slusarek2015-03-051-0/+1
|
* Broke long lines in code examples.Ian Lee2015-02-231-0/+1
| | | | | | 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.
* Updated my email address in AUTHORS.Justine Alexandra Roberts Tunney2015-02-091-1/+1
|
* Fixed #24240 -- Allowed GZipping a Unicode ↵Matthew Somerville2015-02-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | StreamingHttpResponse 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.
* Updated my e-mail address in AUTHORS.Jakub Wilk2015-01-191-1/+1
|
* Fixed #24031 -- Added CASE expressions to the ORM.Michał Modzelewski2015-01-131-0/+1
|
* Fixed #23998 -- Added datetime.time support to ↵Oscar Ramirez2014-12-221-0/+1
| | | | migrations questioner.
* Fixed #23983 -- Fixed a crash in migrations when adding ↵Andriy Sokolovskiy2014-12-161-0/+1
| | | | order_with_respect_to to non-empty table.