summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2014-09-12Fixed #19139 -- Made OpenLayersWidget follow GeoModelAdmin's modifiable ↵Flavio Curella
attribute Thanks Tim Graham for the review.
2014-09-11Fixed #23403 -- Fixed crash in contrib.sitemaps if lastmod returned a date ↵Tim Graham
rather than datetime. Thanks igorcc for the report.
2014-09-10Added ordering to prevent non-deterministic test failure; refs #23099.Tim Graham
2014-09-10Avoided using deprecated version of importlib; refs #23418.Tim Graham
2014-09-10Corrected indentation in a contrib.humanize test; refs #23340.Tim Graham
Thanks Zach Borboa for the report.
2014-09-10Fixed #20743 -- Added support for keyfile/certfile in SMTP connections.Andi Albrecht
Thanks jwmayfield, serg.partizan, and Wojciech Banaś for work on the patch.
2014-09-10Corrected grammar in migrations error message.Markus Bertheau
2014-09-10Fixed #23417 -- Completed locale formats for zh_CN, zh_Hans, zh_Hant and zh_TW.Malte Beckmann
2014-09-10Fixed #23452 -- Prevented infinite migrations for empty unique/index_together.Markus Holtermann
Thanks fwkroon for the report.
2014-09-09Fixed flake8 warnings.Tim Graham
2014-09-09Fixed #23368 -- Overhauled the Welsh formats.py file.Duncan Parkes
The only debatable thing here is setting FIRST_DAY_OF_WEEK to 1. The only examples of calendars I can find in Welsh start on Monday, for example, the calendar on S4C (the only all Welsh TV station). http://www.s4c.co.uk/clic/c_clicschedule.shtml
2014-09-09Fixed urlize after smart_urlquote rewriteClaude Paroz
Refs #22267.
2014-09-09Fixed #22267 -- Fixed unquote/quote in smart_urlquoteClaude Paroz
Thanks Md. Enzam Hossain for the report and initial patch, and Tim Graham for the review.
2014-09-09Fixed #23442 -- Added django.__version__ per PEP 396.Tim Graham
Thanks abhillman for the suggestion and Claude Paroz for review.
2014-09-09Fixed #23398 -- Added helpful error message when runserver is accessed via HTTPSFlavio Curella
2014-09-09Fixed #11775 -- Made ABSOLUTE_URL_OVERRIDES work with models that don't ↵Tim Graham
define get_absolute_url(). Thanks jukvalim for the report and initial patch, and Preston Timmons for review.
2014-09-08Fixed #23399 -- Optimized django.utils.http.int_to_bas36()Tim Graham
Thanks liminspace for the patch and Keryn Knight for benchmarking.
2014-09-08Fixed flake8 warning.Tim Graham
2014-09-08Fixed #23451 -- Fixed typo in inlineformset_factory() error message.Petras Zdanavičius
2014-09-08Fixed #22920 -- Avoid masking some exceptions.Aymeric Augustin
If loading an application trigger an ImportError, the details of that error were lost in some cases. Thanks Ben Davis for the report.
2014-09-08Use "catch" instead of "trap" for exceptions.Aymeric Augustin
This is the idiomatic word in the Python world.
2014-09-08Updated links to point to dev documentation.Markus Holtermann
2014-09-08Fixed #23418 -- Fail when migration deconstruct produces invalid importMarkus Holtermann
2014-09-08Fixed #23431 -- Allowed inline and hidden references to admin fields.Simon Charette
This fixes a regression introduced by the 53ff096982 security fix. Thanks to @a1tus for the report and Tim for the review. refs #23329.
2014-09-08Fixed #23434 -- Coerce Oracle bool params to intJosh Smeaton
2014-09-08Fixed #22951 -- Checked for types during deep_deconstruct migration ↵Andrew Pinkham
serialization process. Thanks Sam Hartsfield for the report.
2014-09-06Fixed #23416 -- Make sure DatabaseCreation respects checks.Marc Tamlyn
Migrations respected Field.db_parameters()['check'], but DatabaseCreation was still using just Field.db_type().
2014-09-06Fixed #22882 -- Fixed a UnicodeDecodeError in flush.Tim Graham
Thanks djbaldey for the report.
2014-09-06Additional edits for refs #23340; thanks Loic.Tim Graham
2014-09-06Fixed #23340 -- Corrected naturaltime docs to match behavior.Collin Anderson
Thanks zachborboa for the report and blackguest for the patch.
2014-09-05 switch out recursive dfs for stack based approach, to avoid possibly ↵Ben Reilly
hitting the recursion limit
2014-09-05Fixed #22411: Throw a more helpful error if contenttypes doesn't exist.Andrew Godwin
2014-09-05Revert "Fixed #23384 -- Allowed overriding part of a dictionary-type setting"Claude Paroz
This reverts commit 66757fee7e921ad4c35e0b3f80c25e026100b31c. Discussions have led to think that this functionality does not bring significant benefits to justify the added complexity. Read also discussions on ticket #22734.
2014-09-05Limited lines to 119 characters in django/Tim Graham
refs #23395.
2014-09-03Fixed #18757, #14462, #21565 -- Reworked database-python type conversionsMarc Tamlyn
Complete rework of translating data values from database Deprecation of SubfieldBase, removal of resolve_columns and convert_values in favour of a more general converter based approach and public API Field.from_db_value(). Now works seamlessly with aggregation, .values() and raw queries. Thanks to akaariai in particular for extensive advice and inspiration, also to shaib, manfre and timograham for their reviews.
2014-09-03Fixed #23409 -- Extract PasswordResetForm.get_users method.Carl Meyer
Allows easier customization of policies regarding which users are allowed to reset their password. Thanks Aymeric for review.
2014-09-02Fixed #23302 -- Added --name/-n option to makemigrations commandRaffaele Salmaso
2014-09-02Fixed comments in en_GB and en_AU formats.py files.Duncan Parkes
Changed comments in en_GB and en_AU formats files replacing 'pm' with 'p.m.' to match what is actually output.
2014-09-02Fixed #22918 -- Fixed SeparateDatabaseAndState crashDave Hall
2014-09-02Fixed ping_google management command to use argparse.R3v1L
2014-09-01Fixed #23371 -- Changed en_GB first day of the week to Monday.Duncan Parkes
2014-08-31Fixed #23388 -- Made django.utils.timezone.override usable as a decoratorThomas Chaumeny
2014-08-30Fixed #22820 -- Treated int and long types alike in lazy_numberClaude Paroz
Thanks kwist for the report and the initial patch.
2014-08-30Fixed #23055 -- Made generic admin filter obey ModelAdmin queryset.Ramiro Morales
Thanks to Trac user synasius and to Ola Sitarska for helping in identifying the issue and helping with the test case.
2014-08-30Converted sql_queries into a lazily evaluated list.Bas Peschier
Fixed #23364. Thanks Markush2010 for the report.
2014-08-30Fixed #23370 -- defer() + select_related() crashed with inherited models.Akis Kesoglou
2014-08-30Fixed #23384 -- Allowed overriding part of a dictionary-type settingClaude Paroz
This change is needed for upcoming changes where settings might be grouped in a parent dictionary. Thanks Tim Graham for the review.
2014-08-29Fixed a non-deterministic test; refs #23099.Tim Graham
2014-08-29Fixed #21483 -- Added WSGI environ to kwargs sent to request_started signal.Joshua "jag" Ginsberg
2014-08-29Fixed #21201 -- Improved customization of ClearableFileInput.Vlastimil Zíma