Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed #25318 -- Made SILENCED_SYSTEM_CHECKS suppress all ↵Tim Graham2015-08-282-2/+10
| | | | | | | messages. Previously, messages of ERROR level or higher were printed to the console.
* Fixed #25299 -- Fixed crash with ModelAdmin.list_display ↵Tim Graham2015-08-281-0/+4
| | | | value that clashes with a model reverse accessor.
* Refs #20597 -- Fixed spelling of HiDPI.Tim Graham2015-08-281-3/+3
|
* Fixed #20597 -- Replaced admin GIF/PNG icons by SVGelky2015-08-271-3/+4
|
* Fixed #22634 -- Made the database-backed session ↵Sergey Kolosov2015-08-272-3/+179
| | | | | | | | backends more extensible. Introduced an AbstractBaseSession model and hooks providing the option of overriding the model class used by the session store and the session store class used by the model.
* Removed historical note about session serialization.Tim Graham2015-08-271-19/+13
|
* Refs #2495 -- Documented that MySQL cannot have ↵Tim Graham2015-08-271-0/+8
| | | | TextField(unique=True).
* Fixed #24201 -- Added order_with_respect_to support to ↵Alex Hill2015-08-271-0/+7
| | | | GenericForeignKey.
* Added 'subtransactions' to spelling wordlist.Tim Graham2015-08-261-0/+1
|
* Fixed #25311 -- Removed vague language about "partial ↵Tim Graham2015-08-261-3/+3
| | | | commits" from docs.
* Updated PROJ.4 link to new GitHub wiki.David Sanders2015-08-251-1/+1
|
* Fixed #25309 -- Corrected that ATOMIC_REQUESTS applies ↵Tim Graham2015-08-251-2/+2
| | | | per view not per request.
* Fixed #25295 -- Restored 'no active translation' after ↵Claude Paroz2015-08-251-0/+2
| | | | | | language override Thanks David Nelson Adamec for the report and Tim Graham for the review.
* Fixed #25302 -- Prevented BrokenLinkEmailsMiddleware ↵Maxime Lorant2015-08-252-2/+14
| | | | from reporting 404s when Referer = URL.
* Fixed #23727 -- Inhibited the post_migrate signal when ↵Tommy Beadle2015-08-241-0/+7
| | | | | | | | | | | | | | | | | | | | | | | using serialized_rollback. When using a TransactionTestCase with serialized_rollback=True, after creating the database and running its migrations (along with emitting the post_migrate signal), the contents of the database are serialized to _test_serialized_contents. After the first test case, _fixture_teardown() would flush the tables but then the post_migrate signal would be emitted and new rows (with new PKs) would be created in the django_content_type table. Then in any subsequent test cases in a suite, _fixture_setup() attempts to deserialize the content of _test_serialized_contents, but these rows are identical to the rows already in the database except for their PKs. This causes an IntegrityError due to the unique constraint in the django_content_type table. This change made it so that in the above scenario the post_migrate signal is not emitted after flushing the tables, since it will be repopulated during fixture_setup().
* Tweak some examples.Aymeric Augustin2015-08-221-2/+2
| | | | | "Area man/woman" is confusing to people not familiar with the conventions of American journalism (like me).
* Recommend relative imports within Django components.Aymeric Augustin2015-08-221-1/+2
| | | | | django-developers thread: https://groups.google.com/d/msg/django-developers/11XvmVdx58w/sFrF0pL8LTgJ
* Forwardported release note for refs #25040.Tim Graham2015-08-221-0/+2
|
* Fixed #25284 -- Documented removal of implicit QuerySet ↵Tim Graham2015-08-211-0/+16
| | | | __in lookups.
* Refs #24914 -- Added docs for more auth mixin methods.Tim Graham2015-08-201-16/+43
|
* Fixed #24951 -- Fixed AssertionError in delete queries ↵Tim Graham2015-08-201-1/+2
| | | | | | involving a foreign/primary key. Thanks Anssi Kääriäinen for help.
* Fixed #25153 -- Moved 'polls' first in tutorial's ↵Tim Graham2015-08-201-1/+1
| | | | INSTALLED_APPS.
* Recommended the JavaScript Cookie library instead of ↵Marc2015-08-191-3/+3
| | | | | | | jQuery cookie. jQuery cookie is no longer maintained in favor of the JavaScript cookie library. This also removes the jQuery dependency.
* Refs #24451 -- Corrected Django version for {% cycle %} ↵Tim Graham2015-08-192-2/+2
| | | | deprecation.
* Fixed style issues in testing docsMarkus Holtermann2015-08-191-6/+11
|
* Added stub release notes for 1.8.5.Tim Graham2015-08-192-0/+13
|
* Used consistent capitalization and hyphenation of ↵Anton Strogonoff2015-08-1911-15/+14
| | | | "class-based views" in docs.
* Added today's issue to the security archive.Tim Graham2015-08-181-0/+16
|
* Fixed DoS possiblity in contrib.auth.views.logout()Tim Graham2015-08-183-0/+49
| | | | | | Thanks Florian Apolloner and Carl Meyer for review. This is a security fix.
* Added stub release notes for security releases.Tim Graham2015-08-184-6/+16
|
* Limited line length in docs/ref/contrib/messages.txt ↵Anton Strogonoff2015-08-171-2/+4
| | | | example.
* Fixed #25180 -- Prevented varchar_patterns_ops and ↵Caio Ariede2015-08-151-0/+3
| | | | text_patterns_ops indexes for ArrayField.
* Fixed #24986 -- Added support for annotations in ↵Valentina Mukhamedzhanova2015-08-151-0/+2
| | | | DISTINCT queries.
* Fixed #25268 -- Tweaked wording in docs/ref/forms/api.txtTim Graham2015-08-141-2/+2
|
* Fixed #24988 -- Documented passing a dictionary of ↵Adam Brenecki2015-08-131-2/+11
| | | | ValidationErrors to ValidationError
* Fixed #25254 -- Added JsonResponse json_dumps_params ↵Sambhav Satija2015-08-122-1/+12
| | | | parameter.
* Corrected indentation of JsonResponse docs.Tim Graham2015-08-121-18/+16
|
* Fixed #24257 -- Corrected i18n handling of percent signs.Doug Beck2015-08-121-0/+5
| | | | | | | | | | | | | | | Refactored tests to use a sample project. Updated extraction: * Removed special handling of single percent signs. * When extracting messages from template text, doubled all percent signs so they are not interpreted by gettext as string format flags. All strings extracted by gettext, if containing a percent sign, will now be labeled "#, python-format". Updated translation: * Used "%%" for "%" in template text before calling gettext. * Updated {% trans %} rendering to restore "%" from "%%".
* Updated memcached library links to point to PyPI.Tim Graham2015-08-121-2/+2
|
* Fixed #25205 -- Removed doc references to deprecated ↵Brendan Hayward2015-08-117-48/+41
| | | | GeoManager class.
* Fixed typo in docs/ref/contrib/gis/geoquerysets.txtTim Graham2015-08-111-3/+2
|
* Removed unnecessary comma in docsClaude Paroz2015-08-101-1/+1
|
* Fixed #25160 -- Moved unsaved model instance data loss ↵Tim Graham2015-08-106-61/+34
| | | | | | | | | check to Model.save() This mostly reverts 5643a3b51be338196d0b292d5626ad43648448d3 and 81e1a35c364e5353d2bf99368ad30a4184fbb653. Thanks Carl Meyer for review.
* Refs #25236 -- Discouraged use of ifequal/ifnotequal ↵Tim Graham2015-08-082-37/+8
| | | | template tags.
* Corrected some inconsistent headings in ↵Tim Graham2015-08-081-22/+19
| | | | docs/ref/templates/builtins.txt.
* Updated various links in docsClaude Paroz2015-08-0820-89/+85
|
* Updated Wikipedia links to use httpsClaude Paroz2015-08-0834-51/+51
|
* Updated Transifex links in docsClaude Paroz2015-08-081-3/+3
|
* Fixed #25231 -- Added recording of squashed migrations ↵mlavin2015-08-071-0/+3
| | | | | | | | in the migrate command. Ensured squashed migrations are recorded as applied when the migrate command is run and all of the original migrations have been previously applied.
* Fixed #25233 -- Fixed HStoreField.has_changed() handling ↵Tim Graham2015-08-071-2/+2
| | | | | | of initial values. Thanks Simon Charette for review.