Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Separated XML serialization testsClaude Paroz2015-09-263-114/+119
|
* Separated YAML serialization testsClaude Paroz2015-09-263-177/+181
|
* Corrected use of 'affect' vs 'effect' in docs.Rob Hudson2015-09-261-2/+2
|
* Used ternary operator to simplify contrib.messages.api.GhostThrone2015-09-251-8/+2
|
* Fixed #25462 -- Removed Model.__unicode__() in favor of ↵Tim Graham2015-09-253-83/+16
| | | | @python_2_unicode_compatible.
* Removed redundancy in admin_changelist tests.Tim Graham2015-09-251-115/+58
|
* Fixed #25196 -- Normalized database representations in ↵Ville Skyttä2015-09-255-22/+38
| | | | | | test database messages. Left over Oracle mostly as-is since it's more complicated.
* Fixed #25451 -- Added advice about organizing tests.Tim Graham2015-09-252-1/+12
|
* Fixed #25457 -- Improved formatting of password ↵Tzu-ping Chung2015-09-253-3/+3
| | | | validation errors in management command output.
* Refs #25294 -- Added BoundField import for backwards ↵Moritz Sichert2015-09-241-0/+2
| | | | compatibility.
* Fixed #25455 -- Optimized dictfetchall() example.Tim Graham2015-09-241-2/+2
| | | | Thanks aklim007 for the suggestion.
* Bumped latest Python 2.7 release in docs/ref/databases.txt.Tim Graham2015-09-241-1/+1
|
* Removed unused Aggregate.input_field.Tim Graham2015-09-241-4/+0
| | | | Obsolete since 4a66a69239c493c05b322815b18c605cd4c96e7c.
* Added django.template.engine.Engine.render_to_string() ↵Tim Graham2015-09-241-6/+4
| | | | docstring.
* Removed unused views.debug.linebreak_iter() function.Tim Graham2015-09-241-9/+0
|
* Refs #14030 -- Removed more backwards compatiblity for ↵Tim Graham2015-09-241-32/+0
| | | | | | old-style aggregates. Per deprecation timeline.
* Fixed typo in 1.9 release notes.Samir Shah2015-09-241-1/+1
|
* Increased the default PBKDF2 iterations for the 1.10 ↵Tim Graham2015-09-243-5/+8
| | | | release cycle.
* Removed versionadded/changed annotations for 1.8.Tim Graham2015-09-2474-852/+44
|
* Removed RemovedInDjango110Warning.Tim Graham2015-09-243-11/+5
|
* Refs #23913 -- Removed support for a single equals sign ↵Tim Graham2015-09-242-56/+7
| | | | | | in {% if %} tag. Per deprecation timeline.
* Made template response APIs enforce the use of dict and ↵Tim Graham2015-09-243-110/+4
| | | | | | backend-specific template objects. Per deprecation timeline; refs 79deb6a0716e554cac5308e86f5754f19ad436dc.
* Refs #22804 -- Made an unsafe value of 'sep' in Signer ↵Tim Graham2015-09-242-10/+6
| | | | | | an exception. Per deprecation timeline.
* Removed support for passing a context to a generic ↵Tim Graham2015-09-244-70/+4
| | | | | | Template.render(). Per deprecation timeline; refs a3e783fe11dd25bbf84bfb6201186566ed473506.
* Removed template.loader.BaseLoader per deprecation timeline.Tim Graham2015-09-244-36/+1
|
* Removed deprecated TEMPLATE_* settings per deprecation ↵Tim Graham2015-09-246-176/+6
| | | | timeline.
* Removed dictionary and context_instance parameters for ↵Tim Graham2015-09-2411-256/+29
| | | | | | render functions. Per deprecation timeline.
* Removed dirs parameter in template engine methods and ↵Tim Graham2015-09-2411-152/+24
| | | | | | related funtions. Per deprecation timeline.
* Removed current_app argument to render() and ↵Tim Graham2015-09-2415-175/+19
| | | | | | TemplateResponse(). Per deprecation timeline.
* Refs #24099 -- Removed compatibility shim for ↵Tim Graham2015-09-243-37/+0
| | | | ContentType.name field.
* Refs #23162 -- Removed forms.Field._has_changed() method.Tim Graham2015-09-242-15/+2
| | | | Per deprecation timeline.
* Refs #23656 -- Required FormMixin.get_form() form_class ↵Tim Graham2015-09-243-56/+1
| | | | | | parameter to be optional. Per deprecation timeline.
* Refs #23957 -- Required session verification per ↵Tim Graham2015-09-2419-152/+38
| | | | deprecation timeline.
* Refs #24152 -- Removed deprecated GeoQuerySet aggregate ↵Tim Graham2015-09-247-233/+35
| | | | | | methods. Per deprecation timeline.
* Refs #23151 -- Removed RegexField.error_message per ↵Tim Graham2015-09-243-26/+0
| | | | deprecation timeline.
* Removed django.core.context_processors per deprecation ↵Tim Graham2015-09-241-9/+0
| | | | timeline.
* Refs #22835 -- Removed NoArgsCommand per deprecation ↵Tim Graham2015-09-244-54/+4
| | | | timeline.
* Refs #24133 -- Removed legacy formatting syntax in ↵Tim Graham2015-09-244-46/+6
| | | | | | success_url placeholders. Per deprecation timeline.
* Refs #23359 -- Removed the migrate --list option per ↵Tim Graham2015-09-243-61/+1
| | | | deprecation timeline.
* Refs #23613 -- Removed django.utils.checksums per ↵Tim Graham2015-09-242-67/+0
| | | | deprecation timeline.
* Refs #21414 -- Removed Field.related per deprecation ↵Tim Graham2015-09-242-25/+1
| | | | timeline.
* Refs #21648 -- Removed is_admin_site option from ↵Tim Graham2015-09-244-36/+4
| | | | | | password_reset() view. Per deprecation timeline.
* Refs #14030 -- Removed backwards compatiblity for ↵Tim Graham2015-09-244-223/+3
| | | | | | old-style aggregates. Per deprecation timeline.
* Refs #23444 -- Removed ↵Tim Graham2015-09-242-43/+1
| | | | InlineAdminForm.original_content_type_id per deprecation timeline.
* Refs #9893 -- Removed shims for lack of max_length ↵Tim Graham2015-09-246-84/+2
| | | | support in file storage per deprecation timeline.
* Refs #19973 -- Removed optparse support in management ↵Tim Graham2015-09-248-209/+47
| | | | commands per deprecation timeline.
* Refs #13408 -- Made unpacking mismatch an exception in ↵Tim Graham2015-09-242-38/+20
| | | | {% for %} tag per deprecation timeline.
* Refs #21977 -- Removed SimpleTestCase.urls per ↵Tim Graham2015-09-244-89/+9
| | | | deprecation timeline.
* Refs #22933 -- Removed template.resolve_variable() per ↵Tim Graham2015-09-242-18/+0
| | | | deprecation timeline.
* Refs #23269 -- Removed the removetags template tag and ↵Tim Graham2015-09-247-189/+7
| | | | related functions per deprecation timeline.