Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/AUTHORS
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #20242 - Added a regression test for prefetch_related.Tim Graham2013-05-281-0/+1
| | | | | | | Issue was fixed by removal of chunked reads from QuerySet iteration in 70679243d1786e03557c28929f9762a119e3ac14. Thanks Simeon Visser for the patch.
* Fixed #11603 - Added ↵Tim Graham2013-05-271-0/+1
| | | | | | django.test.SimpleTestCase.assertFormsetError Thank-you Martin Green for the patch.
* Fixed #20099 -- Eased subclassing of ↵Claude Paroz2013-05-251-0/+1
| | | | | | | BrokenLinkEmailsMiddleware Thanks Ram Rachum for the report and the initial patch, and Simon Charette for the review.
* Fixed #17648 -- Add `for_concrete_model` to ↵Gavin Wahl2013-05-241-0/+1
| | | | | | | | | | | `GenericForeignKey`. Allows a `GenericForeignKey` to reference proxy models. The default for `for_concrete_model` is `True` to keep backwards compatibility. Also added the analog `for_concrete_model` kwarg to `generic_inlineformset_factory` to provide an API at the form level.
* Fixed #17048 - Added docs for upgrading Django.Tim Graham2013-05-221-0/+1
| | | | | Thanks Donald Stufft for the suggestion and Susan Tan and Brian Fabian Crain for the patch.
* Fixed #20459 - Improved example for setting HTTP header ↵Tim Graham2013-05-191-0/+1
| | | | | | fields. Thanks Jérémie Blaser.
* Fixed #15961 -- Modified ModelAdmin to allow for custom ↵Bozidar Benko2013-05-191-0/+1
| | | | | | | | | search methods. This adds a get_search_results method that users can override to provide custom search strategies. Thanks to Daniele Procida for help with the docs.
* Fix #19664 -- Illegal Characters In Session Key Give ↵Erik Romijn2013-05-191-0/+1
| | | | Fatal Error On File Backend Only
* Added Baptiste to AUTHORS.Marc Tamlyn2013-05-191-0/+1
|
* Add missing imports and models to the examples in the ↵vkuzma2013-05-191-0/+1
| | | | admin documentation
* Merge pull request #1094 from senko/ticket_11160Andrew Godwin2013-05-191-0/+1
|\ | | | | Fixed #11160: Formset non_form_errors returns ErrorList() if is_valid is not called
| * Added myself to AUTHORSSenko Rasic2013-05-181-0/+1
| |
* | Merge pull request #1129 from frog32/masterMarc Tamlyn2013-05-191-0/+3
|\ \ | | | | | | Add needed Imports to the Documentation
| * | add Leandra Finger, Silvan Spross and Marc Egli to AUTHORSMarc Egli2013-05-181-0/+3
| | |
* | | Fixed #20246 -- Added non-breaking spaces between values ↵Emil Stenström2013-05-181-0/+1
| | | | | | | | | | | | an units
* | | Fixed #20440 -- Ensured CharField's ↵Tome Cvitan2013-05-181-0/+1
|/ / | | | | | | max_length/min_length are integers
* | Fixed #19436 -- Don't log warnings in ensure_csrf_cookie.Olivier Sels2013-05-181-0/+1
| |
* | Fixed #18998 - Prevented session crash when auth backend ↵Jorge Bastida2013-05-181-0/+1
| | | | | | | | | | | | | | | | | | removed Removing a backend configured in AUTHENTICATION_BACKENDS should not raise an exception for existing sessions, but should make already logged-in users disconnect. Thanks Bradley Ayers for the report.
* | Fixed #9595 -- Allow non-expiring cache timeouts.Jacob Burch2013-05-181-0/+1
| | | | | | | | Also, streamline the use of 0 and None between cache backends.
* | Fixed #20235 -- Use self.object_list if object_list not ↵Matthew Somerville2013-05-181-0/+1
|/ | | | | | | present in get_context_data kwargs. This is so MultipleObjectMixin can be used in the same way as SingleObjectMixin.
* Reorganize committers list chronologically.Aymeric Augustin2013-05-181-5/+8
| | | | | | | This completes the removal of the distinction between core devs and specialists. Patch by Simon Meers.
* Added myself to committers.Marc Tamlyn2013-05-171-1/+1
|
* Added clarification to the docs, pointing out that ↵Aaron Cannon2013-05-031-0/+1
| | | | unique_for_date only considers the date portion of DateTime fields.
* Fixed #18231 -- Made JavaScript i18n not pollute global ↵Matthew Tretter2013-04-141-0/+1
| | | | | | | | | JS namespace. Also, use Django templating for the dynamic generated JS code and use more idiomatic coding techniques. Thanks Matthew Tretter for the report and the patch.
* Updated some 'Dive Into Python' linksClaude Paroz2013-04-011-1/+2
|
* Add Donald Stufft to the AUTHORS fileDonald Stufft2013-03-261-0/+1
|
* Reordered AUTHORS in last name alphabetic orderClaude Paroz2013-03-201-3/+3
|
* Fixed #16319 -- added SuccessMessageMixin to ↵Paul Collins2013-03-201-0/+1
| | | | | | contrib.messages Thanks martinogden for the initial patch and d1ffuz0r for tests.
* Reworded Mark Pilgrim section in AUTHORS.Adrian Holovaty2013-03-191-1/+1
| | | | Removed the RIP, which seemed callous given today's news of Malcolm's death.
* Fixed #19327 -- Added handling of double login attempts ↵Deric Crago2013-03-191-0/+1
| | | | | | | in admin. Thanks to Krzysztof Jurewicz for initial patch and adupin for tests.
* Implemented an 'atomic' decorator and context manager.Aymeric Augustin2013-03-111-0/+1
| | | | | | Currently it only works in autocommit mode. Based on @xact by Christophe Pettus.
* Fixed #15363 -- Renamed and normalized to `get_queryset` ↵Loic Bistuer2013-03-081-1/+1
| | | | the methods that return a QuerySet.
* Fixed #19997 -- Added custom EMPTY_VALUES to form fieldsClaude Paroz2013-03-071-0/+1
| | | | Thanks Loic Bistuer for the report and the patch.
* Fixed #6585 -- Admin relationship widgets: Respect ↵Juan Pedro Fisanotti2013-03-041-0/+2
| | | | | | | ordering defined by target model's ModelAdmin. Thanks Gary Wilson for the report and Juan Pedro Fisanotti, Carlos Matías de la Torre for the fix.
* Fixed #19838 -- Admin: Don't leak a 500 HTTP status when ↵Javier Mansilla2013-03-041-0/+1
| | | | | | trying to delete protected FKs. Thanks rafadev for the report and Javier Mansilla for the fix.
* Fixes #19763 - LocaleMiddleware should check for ↵Łukasz Langa2013-02-241-0/+1
| | | | supported languages in settings.LANGUAGE_CODE
* Fixed #19253 -- Extracted template cache key building logicTomek Paczkowski2013-02-241-0/+2
| | | | | | Introduced a public function django.core.cache.utils.make_template_fragment_key Thanks @chrismedrela for fruitful cooperation.
* Fixed #19609: admin Inlines doesn't display help_text ↵Wiktor Kolodziej2013-02-231-0/+2
| | | | | | | | for readonly fields Refactoring: field was renamed to field_name, since flatten_fieldsets returns field name, not field. Original patch from Marc Aymerich Gubern
* Fixed #18558 -- Added url property to HttpResponseRedirect*Hiroki Kiyohara2013-02-131-0/+1
| | | | Thanks coolRR for the report.
* Added myself to core developpersSimon Charette2013-02-011-1/+1
|
* Fixed #19715 -- Simplified findstatic output when ↵Matt Robenolt2013-02-011-0/+1
| | | | verbosity set to 0
* Made (make|compile)messages commands accept multiple ↵Craig Blaszczyk2013-01-171-0/+1
| | | | | | locales at once. Thanks Craig Blaszczyk for the initial patch. Refs #17181.
* Add David Cramer to AUTHORSDavid Cramer2013-01-141-0/+1
|
* Fixed #19192 -- Allowed running tests with dummy db backendClaude Paroz2013-01-041-0/+1
| | | | | Thanks Simon Charette for the initial patch, and Jan Bednařík for his work on the ticket.
* Fixed #9589 -- Made development web server more robust ↵Ramiro Morales2012-12-151-0/+1
| | | | | | in the presence of a wider variety of code errors. Thanks goes to contributor with Trac user 'berto' for the patch.
* Merge branch 'ticket_19325' of ↵Jannis Leidel2012-11-221-0/+1
|\ | | | | | | https://github.com/hannesstruss/django into hannesstruss-ticket_19325
| * Fixed #19325 - Made email backend of AdminEmailHandler ↵Hannes Struss2012-11-201-0/+1
| | | | | | | | configurable
* | Fixed #18658 -- Improved ModelAdmin.message_user APIPreston Holmes2012-11-201-0/+1
|/ | | | Thanks to Lowe Thiderman for the patch and tests
* Merge pull request #218 from mgrouchy/ticket_18582Aymeric Augustin2012-11-111-0/+1
|\ | | | | Fixed #18582 -- Added a no-op close to BaseCache
| * BaseCache now has a no-op close method as per ticket #18582Mike Grouchy2012-07-181-0/+1
| | | | | | | | | | | | Also removed the hasattr check when firing request_finished signal for caches with a 'close' method. Should be safe to call `cache.close` everywhere now