| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-09-10 | Fixed #16534 -- Improved ability to customize DiscoverRunner | Tim Graham | |
| Added DiscoverRunner.test_suite and .test_runner attributes. Thanks tomchristie for the suggestion and jcd for the patch. | |||
| 2013-09-10 | Fixed #4574 -- Added CSS classes to the admin calendar widget for better ↵ | Roberto Aguilar | |
| control over styling. | |||
| 2013-09-10 | Fixed #18403 -- Initialized bad_cookies in SimpleCookie | e0ne | |
| Thanks Stefano Crosta for the report. | |||
| 2013-09-10 | Fixed #21033 -- Fixed uploaded filenames not always being truncated to 255 ↵ | homm | |
| characters | |||
| 2013-09-09 | Removed unneeded imports in tests's __init__.py and unified them. | Florian Apolloner | |
| 2013-09-09 | Refactored code and tests that relied on django.utils.tzinfo. | Aymeric Augustin | |
| Refs #17262. | |||
| 2013-09-09 | Fixed #17262 -- Refactored tzinfo implementations. | Aymeric Augustin | |
| This commit deprecates django.utils.tzinfo in favor of the more recent django.utils.timezone which was introduced when Django gained support for time zones. | |||
| 2013-09-09 | Fixed #19885 -- cleaned up the django.test namespace | Kevin Christopher Henry | |
| * override_settings may now be imported from django.test * removed Approximate from django.test * updated documentation for things importable from django.test Thanks akaariai for the suggestion. | |||
| 2013-09-09 | Fixed #21078 -- Handled additional bad Accept-Language header | Josh Mize | |
| 2013-09-09 | Fixed #21063 -- AdminSite app_index should be fail early if the user has no ↵ | Keryn Knight | |
| permissions. | |||
| 2013-09-09 | Fixed syntax error on Python 3.2; refs #20889. | Tim Graham | |
| 2013-09-09 | Simplify FilterExpression.args_check | Curtis Maloney | |
| 2013-09-09 | Fixed #20889 -- Prevented email.Header from inserting newlines | Daniel Boeve | |
| Passed large maxlinelen to email.Header to prevent newlines from being inserted into value returned by _convert_to_charset Thanks mjl at laubach.at for the report. | |||
| 2013-09-09 | Added a test to show that the user.is_staff check in admin base.html is ↵ | Tim Graham | |
| necessary. refs #21067 | |||
| 2013-09-08 | Fix #20745: Don't silence TypeError raised inside templates. | Baptiste Mispelon | |
| Thanks to robin for the report and claudep for the review. | |||
| 2013-09-08 | Removed some more unused local vars | Alex Gaynor | |
| 2013-09-08 | Further hardening. Refs #18766. | Aymeric Augustin | |
| 2013-09-08 | Hardened the test introduced in ded11aa6. Refs #18766. | Aymeric Augustin | |
| Inputs acceptable to time.mktime are platform-dependent. | |||
| 2013-09-08 | Removed a ton of unused local vars | Alex Gaynor | |
| 2013-09-08 | Fixed #18766 -- Pointed to pytz when LocalTimezone fails. | Aymeric Augustin | |
| Thanks void for the report. | |||
| 2013-09-07 | Fixed #16869 -- BaseGenericInlineFormSet.save_new should use form's save() ↵ | Pablo Mouzo | |
| method Thanks mattaustin for the report and Pablo Recio (pyriku) for the patch. | |||
| 2013-09-07 | Fixed some flake8 warnings | Alex Gaynor | |
| 2013-09-07 | Fixed #21013 -- Ensure that ModelAdmin.get_queryset is considered for the ↵ | Juan Catalano | |
| admin history view. | |||
| 2013-09-07 | Fixed a test failure introduced in 55a11683f7b094ae4fd0b9fa030d18a12657ba98. | Julien Phalip | |
| 2013-09-07 | Fixed #20836 -- Ensure that the ForeignKey's to_field attribute is properly ↵ | Julien Phalip | |
| considered by the admin's interface when creating related objects. Many thanks to Collin Anderson for the report and patch and to Peter Sheats for the test. | |||
| 2013-09-07 | Fixed #20530 -- Properly decoded non-ASCII query strings on Python 3. | Aymeric Augustin | |
| Thanks mitsuhiko for the report. This commit just adds a test since the problem was fixed in 8aaca651. | |||
| 2013-09-07 | RunSQL migration operation and alpha SeparateDatabaseAndState op'n. | Andrew Godwin | |
| 2013-09-07 | Fixed tests introduced in previous commit on Python 2. Refs #20557. | Aymeric Augustin | |
| 2013-09-07 | Fixed #20557 -- Properly decoded non-ASCII cookies on Python 3. | Aymeric Augustin | |
| Thanks mitsuhiko for the report. Non-ASCII values are supported. Non-ASCII keys still aren't, because the current parser mangles them. That's another bug. | |||
| 2013-09-06 | Fixed this syntax error on py32 | Alex Gaynor | |
| 2013-09-06 | Fixed #21032 -- pip 1.4 can't install pytz. | Aymeric Augustin | |
| 2013-09-06 | Fixed #20007 -- Configured psycopg2 to return UnicodeArrays | Eric Boersma | |
| Thanks hogbait for the report. | |||
| 2013-09-06 | Merge pull request #1566 from adamsc64/ticket_11857 | Russell Keith-Magee | |
| Fixed #11857 -- Added missing 'closed' property on TemporaryFile class. | |||
| 2013-09-06 | Fixed deprecation warning on Python 3 | Tim Graham | |
| 2013-09-06 | Fixed #21037 -- Made MigrationWriter raise a ValueError when serializing ↵ | Loic Bistuer | |
| lambda functions. | |||
| 2013-09-06 | Fixed test failure introduced in efd1e6096ee87fe332cf989ba5479e9461d0fb3a ↵ | Tim Graham | |
| (sqlmigrate) | |||
| 2013-09-06 | Merge pull request #1582 from ↵ | Russell Keith-Magee | |
| rca/12756-missing-yaml-module-serializer-error-message Fixed #12756: Improved error message when yaml module is missing. | |||
| 2013-09-06 | Cleanup commit after peer review. | Roberto Aguilar | |
| 2013-09-06 | Merge pull request #1580 from ianawilson/ticket_16502 | Russell Keith-Magee | |
| Fixed #16502 -- Fixed a TemplateDoesNotExist error that should be an ImproperlyConfigured. Assistance on the patch from #jambronrose. | |||
| 2013-09-06 | Fixed existing tests to handle BadSerializer. | Roberto Aguilar | |
| When a BadSerializer instance is stubbed in for the yaml serializer, make sure tests do not fail. | |||
| 2013-09-06 | Updated NoYamlSerializerTestCase to run with yaml. | Roberto Aguilar | |
| In order to verify the behavior of using the yaml serializer when yaml is on the system, fake the ImportError when the serializer is being registered. | |||
| 2013-09-06 | fixed test name from an old, overly specific iteration of the test | Ian Wilson | |
| 2013-09-06 | Fixed #11811 -- Data-loss bug in queryset.update. | Aymeric Augustin | |
| It's now forbidden to call queryset.update(field=instance) when instance hasn't been saved to the database ie. instance.pk is None. | |||
| 2013-09-06 | Merge pull request #1579 from ianawilson/ticket_21058 | Russell Keith-Magee | |
| Fixed #21058 -- Fixed debug view blowing up when no template is provided to the template rendering functions. Assistance on this commit from @jambonrose. | |||
| 2013-09-06 | Removed unnecessary, leftover imports | Ian Wilson | |
| 2013-09-06 | Moved a settings usage up the stack in utils/formats.py #unsettings | Adrian Holovaty | |
| 2013-09-06 | adds fix for SingleObjectTemplateResponseMixin raising a ↵ | Ian Wilson | |
| TemplateDoesNotExist when it should have raised an ImproperlyConfigured. fixes 16502. by @ianawilson, @jambonrose | |||
| 2013-09-06 | Merge pull request #1578 from rmutter/ticket_20821 | Julien Phalip | |
| Fixed #20821 -- Added tooltips to Admin SelectBox widget | |||
| 2013-09-06 | adds fix and test for when a template is not specified at all to render(). ↵ | Ian Wilson | |
| fixes #21058. by jambonrose and ianawilson | |||
| 2013-09-06 | Fixed #20821 -- Added tooltips to Admin SelectBox widget | Rudy Mutter | |
| The Admin widget, which can be used to filter multiple selects can sometimes be too narrow and hide information such as user permissions. This commit adds tooltips to the select options so that a user can hover over and see the hidden text. | |||
