1
0
mirror of https://github.com/django/django.git synced 2025-03-12 10:22:37 +00:00

1137 Commits

Author SHA1 Message Date
Peter Harley
2724cdbff6 Fixed -- Added ordering options to list based generic views.
Added MultipleObjectMixin.ordering and get_ordering().

Refs .
2014-08-15 11:09:47 -04:00
Tim Graham
e122facbd8 Fixed -- Deprecated django.utils.remove_tags() and removetags filter.
Also the unused, undocumented django.utils.html.strip_entities() function.
2014-08-15 08:20:02 -04:00
Gabriel Muñumel
deed00c0d8 Fixed -- Renamed forms.Field._has_changed() to has_changed(). 2014-08-15 08:14:45 -04:00
Claude Paroz
12adcd505e Complemented 1.6 release notes for 457c16d0d6
And accessorily added missing bits fixing .
Forward port of 2cbafd814 from stable/1.7.x
2014-08-15 10:14:55 +02:00
areski
3021453285 Fixed -- Added summary to admin deletion confirmation pages.
Thanks jonash for the suggestion and initial patch.
2014-08-14 13:56:23 -04:00
Tim Graham
cf79b57ad0 Fixed -- Removed the useless app_name argument to AdminSite.
Thanks MarkusH for the report and Florian for review.
2014-08-14 09:05:51 -04:00
Claude Paroz
055d95fce0 Fixed -- Used system-specific encoding in runserver
Thanks SpaceFox for the report.
2014-08-14 12:08:06 +02:00
zsoldosp
01801edd37 Fixed : Added support for the MySQL ssl-ca option to dbshell. 2014-08-13 18:29:42 -04:00
Ola Sitarska
6947885926 Fixed -- Added default=False to BooleanField's in the docs.
Thanks Baptiste for the suggestion.
2014-08-13 18:23:52 -04:00
Claude Paroz
2cc8ffe258 Fixed -- Made call_command accept option name parameter
Thanks giulettamasina for the report and Tim Graham for the review.
2014-08-12 21:53:29 +02:00
Tim Graham
a9fd740d22 Fixed -- Deprecated passing views as strings to url(). 2014-08-12 13:15:40 -04:00
Markus Bertheau
c2d3f18874 Fixed typo in 1.8 release notes. 2014-08-11 07:06:29 -04:00
Jaap Roes
e92b057e06 Fixed -- Deprecated old style list support for unordered_list filter. 2014-08-11 07:04:33 -04:00
Andrew Godwin
173d989c91 Fixed : Call out removed features in release notes.
Also added StrAndUnicode mixin note to deprecation plan as it was
missing.
2014-08-07 14:14:12 +10:00
Tim Graham
0efd72dc90 Fixed broken links in docs. 2014-08-05 08:23:34 -04:00
Stanislas Guerra
98e8da3709 Fixed -- Added a RelatedOnlyFieldListFilter class in admin.filters. 2014-08-04 09:39:02 -04:00
Tim Graham
0f2ceee025 Fixed -- Deprecated RegexField.error_message.
Thanks Baptiste Mispelon for the suggestion.
2014-08-03 11:21:01 -04:00
Tim Graham
d28396f526 Fixed -- Dropped support for MySQL 5.0, 5.1. 2014-08-02 10:28:40 -04:00
Tim Graham
fb4f3e04b1 Updated MySQL links to version 5.6. 2014-08-02 10:27:01 -04:00
Tim Graham
8f9d6e83a0 Fixed -- Dropped support for Oracle < 11.1 2014-08-01 19:32:00 -04:00
Tim Graham
a2479f46f3 Fixed -- Allowed AbstractBaseUser.last_login to be null.
Thanks veena for the suggestion and Simon Charette and Kévin Etienne for reviews.
2014-08-01 17:51:49 -04:00
Tim Graham
a9bdce7e55 Fixed -- Dropped support for PostgreSQL 8.4 & PostGIS 1.3, 1.4.
Thanks Claude Paroz for the review.
2014-08-01 10:26:00 -04:00
Petras Zdanavičius
8b7347220f Fixed -- Annotated ImageField file with image and content_type attributes.
Thanks Jeremy Dunck for the suggestion and Nick Sanford for review.
2014-08-01 09:30:58 -04:00
Nick Sandford
9d9f0acd7e Fixed -- Added ability to show change links on inline objects in admin.
Thanks DrMeers for the suggestion.
2014-07-31 08:07:28 -04:00
Christoph Heer
d47409831f Fixed -- Updated docs to use django-admin 2014-07-30 14:14:03 -04:00
Tim Graham
7fcfefbc4a Forwardported 1.6.6 release note for . 2014-07-30 09:33:02 -04:00
Tim Graham
f294f93a17 Forwardported 1.6.6 release notes for refs . 2014-07-29 09:39:51 -04:00
Gabriel Muñumel
0af593dbe5 Fixed -- Documented that sql* commands now respect allow_migrate(). 2014-07-28 10:05:41 -04:00
David Hoffman
e1c85167a3 Fixed -- Switched to new octal format in docs 2014-07-26 11:20:24 +02:00
Andrew Godwin
f44dbf74a4 Mark initial_data as deprecated separately from syncdb. Refs . 2014-07-25 09:09:15 -07:00
Tim Graham
bb395a15ba Forward ported release notes for refs . 2014-07-24 19:55:57 -04:00
Tim Graham
8568e7cfa4 Added backwards incompatibility note for refs ; refs .
Thanks Kyle Owens for the report.
2014-07-23 15:23:36 -04:00
Damien Nozay
70c54a3694 Fixed : Added unique_togther support to inspectdb. 2014-07-18 16:10:59 +00:00
Tim Graham
c62c480b2b Added 1.6.6 release notes for (also forwardported those for ). 2014-07-16 13:34:53 -04:00
Loic Bistuer
671e0c937c Further fix the release notes for refs .
Mention of custom user models has been removed since UserCreationForm
didn't support custom user models anyway. Refs .
2014-07-15 17:59:16 +07:00
Tim Graham
38e001ab6c Fixed -- Deprecated django.contrib.webdesign.
Moved the {% lorem %} tag to built-in tags.
2014-07-14 08:45:19 -04:00
Tim Graham
7affb4ad58 Fixed/improved release note for refs ; thanks Loic. 2014-07-14 07:46:19 -04:00
Andrew Godwin
ceb2aaf1d4 Add south upgrade note to 1.7 release notes 2014-07-10 10:00:31 -07:00
Yin Jifeng
849538d03d Fixed -- Moved User validation logic from form to model. 2014-07-10 09:36:43 -04:00
Jorge C. Leitão
8780849da0 Fixed -- Refactored lookup API documentation.
Thanks Anssi and Tim for reviews.
2014-07-08 20:05:49 -04:00
Anubhav Joshi
75ff7b8fb8 Fixed -- Updated prompt, tests, and docs to show that USERNAME_FIELD supports FK after 9bc2d76.
Also added get_input_data() hook in createsuperuser.

Thanks Chris Jerdonek and Tim Graham for review.
2014-07-08 08:21:41 -04:00
Tim Graham
e6b3d6c22f Fixed -- Clarified which release notes appear for each doc version.
Thanks haimunt at yahoo.com for the suggestion.
2014-07-07 15:29:01 -04:00
Andrew Godwin
f751109cb2 Merge pull request from charettes/ticket-22943-compiled-regex-deconstruction
Fixed  -- Correctly serialize compiled regexes.
2014-07-05 16:37:10 -07:00
Tim Graham
7fd55c3481 Fixed -- Increased the default EmailField max_length to 254.
Thanks pmartin for the report.
2014-07-04 14:15:00 -04:00
Simon Charette
35c2c37041 Fixed -- Correctly serialize compiled regexes.
Thanks to antialiasis at gmail dot com for the patch.
2014-07-04 13:34:20 -04:00
Loic Bistuer
1966054feb Fixed -- Document backward incompatible changes in the ValidationError constructor.
This patch also fixes update_error_dict to better handle the use case described
in this ticket, previously the type of the provided container could be lost in
some conditions.

Thanks Russell Keith-Magee for the report and Tim Graham for review.
2014-07-04 17:05:31 +07:00
Anubhav Joshi
9bc2d766a0 Fixed -- Added ForeignKey support to REQUIRED_FIELDS.
This allows specifying ForeignKeys in REQUIRED_FIELDS when using a
custom User model.

Thanks cjerdonek and bmispelon for suggestion and timgraham for review.
2014-07-03 07:42:52 -04:00
LarryBrid
a93ee5112d Fixed - Added support for domain-only links with chars after the TLD to urlize.
It now works with something like google.com/foo/bar
2014-07-02 20:36:53 -04:00
Anubhav Joshi
10e83d48a3 Fixed -- Changed ForeignKey.default_error_messages['invalid'] to refer to correct field.
Thanks Tim Graham for suggestion and review.
2014-07-02 13:01:36 -04:00
Tim Graham
20ec9daf7c Fixed -- Deprecated django.template.resolve_variable(). 2014-07-01 17:29:41 -04:00