| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-02-08 | Fixed #18906 -- Ignored to-be-deleted forms in formset validate_unique | Claude Paroz | |
| Thanks c.pollock at bangor.ac.uk for the report. | |||
| 2013-02-08 | Cleaned up some lingering signals in the test suite that were causing ↵ | Julien Phalip | |
| spurious failures with Pypy and Postgres. | |||
| 2013-02-07 | Changed test assertion strategy used in 04d9730. | Ramiro Morales | |
| 2013-02-07 | Fixed #13085 -- Don't fail on creation of model with GFK to a model with ↵ | Ramiro Morales | |
| __len__() returning zero. Also, according to the comments on the ticket and its duplicates, added tests execising saving an instance of a model with a GFK to: * An unsaved object -- This actually doesn't generate the same failure but another ORM-level exception. The test verifies it's the case. * An instance of a model with a __nonzero__() method thant returns False for it. This doesn't fail because that code path isn't executed. * An instance of a model with a CharField PK and an empty value for it. This doesn't fail. | |||
| 2013-02-07 | Fixed #15808 -- Added optional HttpOnly flag to the CSRF Cookie. | Aymeric Augustin | |
| Thanks Samuel Lavitt for the report and Sascha Peilicke for the patch. | |||
| 2013-02-06 | Fixed a typo in the test suite that was causing some spurious failures with ↵ | Julien Phalip | |
| pypy. | |||
| 2013-02-06 | Fixed #19704 -- Make use of new ungettext_lazy function at appropriate places | Alexey Boriskin | |
| 2013-02-06 | Improved regex in strip_tags | Claude Paroz | |
| Thanks Pablo Recio for the report. Refs #19237. | |||
| 2013-02-06 | Fixed #9800 -- Allow "isPermaLink" attribute in <guid> element of an RSS item. | Simon Charette | |
| Thanks @rtnpro for the patch! | |||
| 2013-02-05 | Fixed #17683 -- Make sure `BaseModelFormSet` respects defined widgets. | Simon Charette | |
| 2013-02-05 | Fixed #19689 -- Renamed `Model._meta.module_name` to `model_name`. | Simon Charette | |
| 2013-02-04 | Fixed error message test assertions under Python 3.3 | Claude Paroz | |
| Thanks Florian Apolloner for testing. | |||
| 2013-02-04 | Fixed #17061 -- Factored out importing object from a dotted path | Claude Paroz | |
| Thanks Carl Meyer for the report. | |||
| 2013-02-03 | Fixed #19730 -- Don't validate importability of settings by using i18n in ↵ | Ramiro Morales | |
| management commands. They are handled independently now and the latter can be influenced by the new BaseCommand.leave_locale_alone internal option. Thanks chrischambers for the report, Claude, lpiatek, neaf and gabooo for their work on a patch, originally on refs. #17379. | |||
| 2013-02-03 | Fixed #19645 -- Added tests for TransactionMiddleware | Anssi Kääriäinen | |
| 2013-02-02 | Fixed Python 3.2 compatibility for a test. | Julien Phalip | |
| 2013-02-02 | Fixed #17797 -- Enabled support for PATCH requests in the dummy test client. ↵ | Julien Phalip | |
| Thanks to pfarmer for the suggestion and initial patch. | |||
| 2013-02-02 | Fixed #14305 -- Switched inspectdb to create unmanaged models. | Ramiro Morales | |
| Thanks Ian Kelly for the report and initial patch. | |||
| 2013-02-02 | Fixed #19445 -- Skip admin fieldsets validation when the ↵ | Nick Sandford | |
| ModelAdmin.get_form() method is overridden. | |||
| 2013-02-02 | Made ungettext_lazy usable for messages that do not contain the count. | Aymeric Augustin | |
| Fixed #19160 (again). Thanks Alexey Boriskin. | |||
| 2013-02-02 | Fixed the test introduced in 2ca37af6 under Python 3. | Aymeric Augustin | |
| 2013-02-01 | Added test to demonstrate issue 11387 isn't there anymore. | Ramiro Morales | |
| Thanks adurdin for the report and patch. Fixes #11387. | |||
| 2013-02-01 | Added test to demonstrate issue 11263 isn't there anymore. | Ramiro Morales | |
| Thanks veena for the report and jaklaassen for the patch. Fixes #11263. | |||
| 2013-02-01 | Fixed #19663 -- Allowed None in colorize() text parameter | Claude Paroz | |
| Thanks Jonathan Liuti for the report and the initial patch, and Simon Charette for the review. | |||
| 2013-02-01 | Fixed #19715 -- Simplified findstatic output when verbosity set to 0 | Matt Robenolt | |
| 2013-02-01 | Renamed inspectdb field names for clarity | Simon Charette | |
| 2013-01-31 | Fixed #19341 -- Detected NullBooleanField when introspecting models | Claude Paroz | |
| Thanks Tim Bowden for the report. | |||
| 2013-01-31 | Fixed #19709 -- Fixed TimeField introspection on MySQL | Claude Paroz | |
| Thanks Eugene Grachev for the report. | |||
| 2013-01-31 | Added introspection tests for most of Django model fields | Claude Paroz | |
| 2013-01-31 | Deprecated undocumented warnings manipulation testing tools. | Ramiro Morales | |
| 2013-01-31 | Fixed #19708 -- Exception in timezone.override(None). | Aymeric Augustin | |
| Thanks rafales. | |||
| 2013-01-31 | Fixed #19692 -- Completed deprecation of mimetype in favor of content_type. | Aymeric Augustin | |
| Thanks Tim for the report and initial patch. | |||
| 2013-01-30 | Added file forgotten in 23e319d7. | Aymeric Augustin | |
| 2013-01-30 | Fixed #19076 -- Added content_type attribute to TemplateView. | Aymeric Augustin | |
| Thanks Gavin Wahl. | |||
| 2013-01-30 | Fixed #19160 -- Made lazy plural translations usable. | Aymeric Augustin | |
| Many thanks to Alexey Boriskin, Claude Paroz and Julien Phalip. | |||
| 2013-01-29 | Fixed #19552 -- Enhanced makemessages handling of ``{# #}``-style template ↵ | Ramiro Morales | |
| comments. They are simply ignored now. This allows for a more correct behavior when they are placed before translatable constructs on the same line. Previously, the latter were wrongly ignored because the former were preserved when converting template code to the internal Python-syntax form later fed to xgettext but Python has no ``/* ... */``-style comments. Also, special comments directed to translators are now only taken in account when they are located at the end of a line. e.g.:: {# Translators: ignored #}{% trans "Literal A" %}{# Translators: valid, associated with "Literal B" below #} {% trans "Literal B" %} Behavior of ``{% comment %}...{% endcomment %}``tags remains unchanged. Thanks juneih at redpill-linpro dot com for the report and Claude for his work on the issue. | |||
| 2013-01-29 | Fixed typos in docs and comments | Tim Graham | |
| 2013-01-28 | Added HTML5 url input type | Claude Paroz | |
| Refs #16630. | |||
| 2013-01-28 | Added HTML5 email input type | Claude Paroz | |
| Refs #16630. | |||
| 2013-01-28 | Fixed #19676 -- Supported 'self' foreign keys in inspectdb. | Aymeric Augustin | |
| Thanks Georgy Kutsurua for the report and Simon Charette for the patch. | |||
| 2013-01-28 | Fixed #19677 -- Introspection of recursive foreign keys under SQLite. | Aymeric Augustin | |
| Thanks Simon Charette. | |||
| 2013-01-26 | Fixed #16123 -- Ensured strptime receive proper string type | Claude Paroz | |
| strptime generates an UnicodeEncodeError when using a non-ascii unicode string on Python 2. | |||
| 2013-01-26 | Fixed #17158 -- Used a non-ambiguous representation of SQL queries | Aymeric Augustin | |
| when a correct representation cannot be obtained. | |||
| 2013-01-26 | Fixed #19589 -- assertRegexpMatches is deprecated in Python 3.3. | Aymeric Augustin | |
| 2013-01-26 | Fixed validation of email addresses when the local part contains an @. | Aymeric Augustin | |
| See also BaseUserManager.normalize_email -- it uses rsplit. Refs #4833. | |||
| 2013-01-25 | Moved has_changed logic from widget to form field | Claude Paroz | |
| Refs #16612. Thanks Aymeric Augustin for the suggestion. | |||
| 2013-01-25 | Revert "Patch by Claude for #16084." | Ramiro Morales | |
| This reverts commit 2babab0bb351ff7a13fd23795f5e926a9bf95d22. | |||
| 2013-01-25 | Patch by Claude for #16084. | Ramiro Morales | |
| 2013-01-25 | Fixed #19665 -- Ensured proper stderr output for Command.run_from_argv | Claude Paroz | |
| Thanks Stefan Koegl for the report and Simon Charette for the review. | |||
| 2013-01-24 | More i18n makemessages tests tweaks. | Ramiro Morales | |
