summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-03-23Fixed #24440 -- Added padding to debug view stacktrace lines.andy matthews
2015-03-23Fixed #24521 -- Added support for serializing frozensets in migrations.Baptiste Mispelon
2015-03-23Fixed #23697 -- Improved ForeignObject.get_lookup_constraint() error message.Michael Blatherwick
2015-03-23Removed redundant model instantiation in contrib.admin; refs #11390.TomV
2015-03-23Fixed #16362 -- Allowed lookaround assertions in URL patterns.Bas Peschier
2015-03-23Added test for LogEntry.get_edited_object(); refs #24244.Varun Sharma
2015-03-23Fixed #13525 -- Added tests and docs for nested parameters in URL patterns.Bas Peschier
When reversing, only outer parameters are used if captured parameters are nested. Added tests to check the edge cases and documentation for the behavior with an example to avoid it.
2015-03-22Switched to use assertEqual instead of assertEquals.Berker Peksag
2015-03-22Fixed #23814 -- Pointed localflavor documentation to external packageIacopo Spalletti
Edited localflavor doc to point to the external package documentation, leaving just the 'How to migrate' section in Django.
2015-03-22Refs #18586 -- Split up tests/m2m_signalsAlain IVARS
2015-03-22Fixed #24485 -- Allowed combined expressions to set output_fieldJosh Smeaton
2015-03-22Fixed #24508 -- Made annotations commutativeJosh Smeaton
2015-03-21Revert "Removed unneeded app_label definitions in gis_tests"Claude Paroz
This reverts commit e0cc36f615f70061e034f5ba3f4e75330f51d3ca. The problem is the following: * With non-gis backends, gis_tests sub apps are not discovered (see runtests.py) * Consequently, the app_label is inferred from the gis_tests AppConfig * Then models with same names in different sub apps conflict because of same model_name/app_label pair.
2015-03-21Removed unneeded app_label definitions in gis_testsClaude Paroz
2015-03-21Fixed #24500 -- Fixed makemessages encoding problems retrieving gettext version.Pakal
2015-03-21Fixed #24479 -- Added system check to prevent both ordering and order_wrt.Jon Dufresne
2015-03-21Removed double pop from meta_attrs.Jon Dufresne
2015-03-21Added Alex Hill to AUTHORS.Aymeric Augustin
2015-03-21Explicitly disable FK constraints in SQLite editorAlex Hill
2015-03-21Safer table alterations under SQLiteAlex Hill
Table alterations in SQLite require creating a new table and copying data over from the old one. This change ensures that no Django model ever exists with the temporary table name as its db_table attribute.
2015-03-21Fixed #24515 -- Fixed DjangoTranslation plural handlingClaude Paroz
2015-03-20Fixed #24490 -- Set LogEntry.change_message when adding an object.Karl Hobley
2015-03-20Removed unused imports.Tim Graham
2015-03-20Refs #14645 -- Documented bug with exclude() and multi-value relationsDavid Seddon
2015-03-20Removed spaces after 'function' in jsi18nMoritz Sichert
2015-03-20Fixed #22106 -- Allowed using more than one instance of javascript_catalog ↵Moritz Sichert
per project.
2015-03-20Fixed #23520 -- Explained that custom plural forms should be avoidedClaude Paroz
Thanks aruseni for the report.
2015-03-20Adapted sendtestemail to be more argparse-ishClaude Paroz
2015-03-20Fixed gis test failures when numpy isn't installed.Daniel Wiesmann
Thanks to Bas Peschier for pointing this out. Refs #23804.
2015-03-20Removed unused import.Tim Graham
2015-03-20Used testing domain names in mail tests per rfc2606.Tim Graham
2015-03-20Fixed #24503 -- Added docs on LANGUAGE_CODE fallback change in 1.8.Tim Graham
Thanks Pakal and Claude.
2015-03-20Fixed #24419 -- Added sendtestemail management commandLoek van Gent
2015-03-20Cleaned up the template debug implementation.Preston Timmons
This patch does three major things: * Merges the django.template.debug implementation into django.template.base. * Simplifies the debug implementation. The old implementation copied debug information to every token and node. The django_template_source attribute was set in multiple places, some quite hacky, like django.template.defaulttags.ForNode. Debug information is now annotated in two high-level places: * Template.compile_nodelist for errors during parsing * Node.render_annotated for errors during rendering These were chosen because they have access to the template and context as well as to all exceptions that happen during either the parse or render phase. * Moves the contextual line traceback information creation from django.views.debug into django.template.base.Template. The debug views now only deal with the presentation of the debug information.
2015-03-20Fixed #24285 -- Made for_user argument optional for {% get_admin_log %} tagYair Chuchem
2015-03-19Fixed #24417 -- Added ModelAdmin.get_list_select_related()Loek van Gent
2015-03-19Fixed typo in escape_filter() docstring.Jon Walsh
2015-03-18Added today's security issues to archive.Tim Graham
2015-03-18Made is_safe_url() reject URLs that start with control characters.Tim Graham
This is a security fix; disclosure to follow shortly.
2015-03-18Fixed an infinite loop possibility in strip_tags().Tim Graham
This is a security fix; disclosure to follow shortly.
2015-03-18Added stub release notes for security releases.Tim Graham
2015-03-18Fixed #24495 -- Allowed unsaved model instance assignment check to be bypassed.Karl Hobley
2015-03-18Fixed build failure introduced by refs #23757.Tim Graham
2015-03-18Fixed #23757 -- Added 3D introspection support to Spatialite backendClaude Paroz
Thanks Tim Graham for the review.
2015-03-18Refs #24483 -- Added a test for deconstruction of Field.choicesTim Graham
2015-03-18Fixed #23960 -- Removed http.fix_location_headerClaude Paroz
Thanks Carl Meyer for the report and Tim Graham for the review.
2015-03-18Fixed #24476 -- Added context manager/decorator for overriding script prefix.Bas Peschier
Tests were using an undocumented keyword argument for easily overriding script prefix while reversing. This is now changed into a test utility which can be used as decorator or context manager.
2015-03-18Refs #24469 -- Fixed escaping of forms, fields, and media in non-Django ↵Moritz Sichert
templates.
2015-03-18Updated translation catalogsClaude Paroz
Strings are frozen in anticipation of the Django 1.8 release. Forward port of 1cd2584c980 from stable/1.8.x
2015-03-18Removed translations from contrib.messagesClaude Paroz
The only one translatable string will be handled in the core catalog. Forward port of 1bb712d79c8d0 from stable/1.8.x