1
0
mirror of https://github.com/django/django.git synced 2025-03-16 04:10:45 +00:00

18046 Commits

Author SHA1 Message Date
Simon Charette
f7c609b9dc [1.7.x] Silenced PostGIS deprecation warnings.
Backport of a6fc1859 from master
2014-08-08 12:11:52 -04:00
Tim Graham
fda3eccea3 [1.7.x] Bumped django_next_version in docs config. 2014-08-08 11:45:14 -04:00
Andrew Godwin
267630ad50 [1.7.x] Don't treat .pyc/pyo files as migrations. Refs #23237 among others. 2014-08-08 09:57:49 +10:00
Jacob Haslehurst
29585e9b6a [1.7.x] Fixed #22982 -- Added GenericRelatedObjectManager.__str__. to prevent crash.
Thanks bendavis78 for the report.
2014-08-07 14:41:28 -04:00
Tim Graham
4c56b6f820 [1.7.x] Fixed flake8 warning.
Backport of f9f9f3ad60 from master
2014-08-07 10:12:09 -04:00
Andrew Godwin
a7336cdcbe [1.7.x] Use smart_text rather than naive forcing-to-unicode for state reading 2014-08-07 22:34:53 +10:00
Tim Graham
796030590a [1.7.x] Added a missing unicode_literals that caused a test failure after refs #23226.
Backport of 57b60f9f93 from master
2014-08-07 08:32:12 -04:00
Andrew Godwin
9cc5d99bde [1.7.x] Fixed #23252: Call out removed features in release notes.
Also added StrAndUnicode mixin note to deprecation plan as it was
missing.
2014-08-07 14:15:44 +10:00
Mohammed Attia
b6a6033096 [1.7.x] Removed a doc reference to the deprecated mimetype kwarg.
Backport of 61ed959235 from master
2014-08-06 22:18:29 -04:00
Andrew Godwin
bbcd86e264 [1.7.x] Fixed #23226: Model options appearing as bytes type in migrations 2014-08-07 12:14:42 +10:00
Andrew Godwin
91195c77d0 [1.7.x] Moved index dropping after FK dropping to please MySQL and fix test 2014-08-07 12:00:13 +10:00
Andrew Godwin
0e69af51b1 [1.7.x] Fixed #23244: Error altering FK to non-FK in migrations 2014-08-07 11:52:49 +10:00
Tim Graham
5e42e9f059 [1.7.x] Fixed #21792 -- Documented Form.has_changed()
Thanks bjb at credil.org for the suggestion and
Ivan Mesic for the draft patch.

Backport of edcc75e5ac from master
2014-08-05 08:49:34 -04:00
Tim Graham
9ed92906b3 [1.7.x] Fixed broken links in docs.
Backport of 0efd72dc90 from master
2014-08-05 08:23:57 -04:00
Tim Graham
0014d5b305 [1.7.x] Updated links for continous integration server.
Backport of 21d0ceefb5 from master
2014-08-05 07:28:54 -04:00
Andrew Godwin
d679672a39 [1.7.x] Stop errors on older Spatialite versions that miss some tables 2014-08-05 21:10:30 +10:00
Shai Berger
f3c0cb0120 [1.7.x] Fixed #23061: Avoided setting a limit on a query for get with select_for_update on Oracle
Thanks Michael Miller for reporting the issue.

Backport of 746f2a4bed from master
2014-08-05 03:21:25 +03:00
areski
a582431b41 [1.7.x] Fixed #23169 - Misc docs fixes.
Backport of e4dd8b5dde from master
2014-08-04 08:31:18 -04:00
Andrew Godwin
d723da383d 1.7-specific fix to help text to stop extra migration 2014-08-04 14:18:22 +10:00
Andrew Godwin
d77f92fa1e [1.7.x] Fixed #23161: Drop PostGIS geography fields correctly 2014-08-04 14:07:08 +10:00
Andrew Godwin
b2ab666aad [1.7.x] Fixed #23163: Align user help text with migrations 2014-08-04 13:57:36 +10:00
Andrew Godwin
6ebfff7f66 [1.7.x] Fixed #23153: Properly recreate spatialite triggers on alter table 2014-08-04 13:28:41 +10:00
Andrew Godwin
a918c60c37 [1.7.x] Fixed #23091: CreateModel and AddField were clashing with deferred SQL 2014-08-04 11:59:48 +10:00
Simon Charette
99f3a65c73 [1.7.x] Fixed a MySQL test failure introduced by cbb29af1aa.
Seems like unlike other backends MySQL get_constraints fails when dealing
with a non-existing table. refs #23160.

Backport of 1b00738f73 from master
2014-08-03 17:02:49 -04:00
Simon Charette
6b2473d3e8 [1.7.x] Fixed #23160 -- Correctly rename models with self referential fields.
Thanks to whitews AT gmail for the report.

Backport of cbb29af1aa from master
2014-08-03 17:02:41 -04:00
Florian Apolloner
1cb919e408 [1.7.x] Ensured that Paginator.page_range works the same on Python 2 and 3.
This somewhat fixes #23088, refs 23140.

Backport of 2d542bf60cc37c59872c5a20d6af3bf826038739 from master.
2014-08-03 21:11:32 +02:00
Baptiste Mispelon
23b0d636d3 [1.7.x] Fixed #23156 -- Added missing BinaryField.deconstruct() method.
Backport of 72f1eb48df335c110f39d56f7978d95896a56bb8 from master.
2014-08-03 15:28:14 +02:00
Baptiste Mispelon
0b1d0afc92 [1.7.x] Added missing logic to TimeField.deconstruct().
If auto_now or auto_now_add was used then the serialized
field in the migration contained unnecessary `editable` and
`blank` arguments.

Backport of 74325339327e5b8a2480aee7f482bc71f73c71f9 from master.
2014-08-03 15:27:57 +02:00
Baptiste Mispelon
2c5eee9f88 [1.7.x] Removed unnecessary code in ManyToManyField.deconstruct()
Backport of 44169a00c1fe7c130a8b9774e3b02ccce524a3eb from master.
2014-08-03 15:27:26 +02:00
Tim Graham
27b7783fbe [1.7.x] Removed notes for versions of SQLite older than 5 years.
Backport of a9fa3d4667 from master
2014-08-02 20:02:48 -04:00
Tim Graham
59fca56469 [1.7.x] Fixed #23154 -- Removed reference to deprecated run_gunicorn command.
Thanks frewsxcv for the report.

Backport of 75f2c65cb6 from master
2014-08-02 15:03:57 -04:00
Erik Romijn
a4eb590958 [1.7.x] Fixed #23149 -- Clarified note on HTTPOnly in cookie-based session docs
Backport of e26366da44bb343e7a95d01ff0dd18b8026c2802 from master.
2014-08-02 18:57:34 +02:00
Tim Graham
2ff2809c73 [1.7.x] Updated MySQL links to version 5.6.
Backport of fb4f3e04b1 from master
2014-08-02 10:27:26 -04:00
Erik Romijn
893f188386 [1.7.x] Fixed #23148 -- Minor tweaks in tutorial code samples
Backport of e075d2e66baae98c5b5c06bff384665ab50e0223 from master.
2014-08-02 10:26:08 +02:00
Tim Graham
ee0208108b Revert "[1.7.x] Fixed #23088 -- Used six range type in Paginator.page_range."
This reverts commit ce95ab8f025cc9f35990f0c2d9a290eec1ece753.

It caused some backwards compatibility concerns (refs #23140).
2014-08-01 10:14:28 -04:00
Tim Graham
e02d82155a [1.7.x] Fixed typo in docs/topics/testing/tools.txt.
Backport of 7ce4ef58c9 from master
2014-08-01 09:43:47 -04:00
Loic Bistuer
e2c129fa5b [1.7.x] Used JsonResponse in CBV examples.
Thanks Hiroki Kiyohara and Tim Graham for the reviews.

Backport of 7579080899 from master
2014-07-31 13:46:53 -04:00
Tim Graham
42bb047d33 [1.7.x] Updated timezone docs to use timezone.now()
Thanks James Cleveland for the report and Aymeric for suggesting
the solution.

Backport of da59902250 from master
2014-07-31 12:57:50 -04:00
Tim Graham
063e7e56bc [1.7.x] Fixed flake8 warnings.
Backport of 9a922dcad1 from master
2014-07-31 09:25:23 -04:00
Florian Apolloner
567ae0d529 [1.7.x] Fixed the previous commit for Python3.
Backport of 4453c80634fb72b60e849480e52c06b570c696d5 from master.
2014-07-30 22:22:56 +02:00
areski
e22ad1c325 [1.7.x] Fixed #23112 -- Field.get_choices tries to index an iterable
Backport of 97a38de230371c0b6ad8a86abba8425186c147c7 from master.
2014-07-30 21:36:01 +02:00
Tim Graham
5736631233 [1.7.x] Fixed test failure on Windows.
os.close(fd) is needed to avoid "The process cannot access the file
because it is being used by another process"

Backport of c2ab501bab from master
2014-07-30 14:33:58 -04:00
Tim Graham
7dc29dcb99 [1.7.x] Fixed #23134 -- Fixed typos in docs/ref/models/querysets.txt.
Thanks Josh Kupershmidt.

Backport of 66630f589c from master
2014-07-30 13:04:38 -04:00
Tim Graham
82695c3f2b [1.7.x] Fixed flake8 errors.
Backport of 34c60c42b6 from master
2014-07-30 12:59:46 -04:00
areski
7cb4a82eaf [1.7.x] Fixed #23107 -- Made runserver output respect --no-color.
Backport of 67d7da5fb9 from master
2014-07-30 12:59:39 -04:00
Tim Graham
813f938093 [1.7.x] Forwardported 1.6.6 release note for #19107.
Backport of 7fcfefbc4a from master
2014-07-30 09:33:44 -04:00
Tim Graham
7e6eeef366 [1.7.x] Fixed #23132 -- Removed confusing clause in auth docs.
Backport of abb97cffdf from master
2014-07-30 08:16:01 -04:00
Andrew Godwin
8e7fdfdb6f [1.7.x] Fixed #23092: Squashing handles external dependencies 2014-07-29 10:22:30 -07:00
Andrew Godwin
cc875e94cf [1.7.x] Fixed #23127: south_migrations note in docs 2014-07-29 10:10:58 -07:00
Andrew Godwin
3deddc2fdf [1.7.x] Fixed #23090: Document and enforce not double-squashing migrations 2014-07-29 10:03:59 -07:00