summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2015-10-07Added some function links in translation docsClaude Paroz
2015-10-06Fixed #25508 -- Modified QuerySet.__repr__() to disambiguate it from a list.Tim Graham
2015-10-02Fixed #25481 -- Added field.help_text to "Looping over a form's fields" docs.John Moses
2015-09-30Clarified that Model.delete() isn't called as a result of a cascading delete.David Sanders
2015-09-29Improved "“standalone” Django usage" example.David Sanders
2015-09-29Fixed #25376 -- Required virtualenv in installation instructions.Tim Graham
Thanks Anjul Tyagi for some of the draft text.
2015-09-28Documented auth's login/logout function parameters.Tim Graham
2015-09-27Fixed #25468 -- Made DjangoJSONEncoder lazy string awareClaude Paroz
Thanks Stavros Korokithakis for the report and Tim Graham for the review.
2015-09-25Fixed #25462 -- Removed Model.__unicode__() in favor of ↵Tim Graham
@python_2_unicode_compatible.
2015-09-25Fixed #25451 -- Added advice about organizing tests.Tim Graham
2015-09-24Fixed #25455 -- Optimized dictfetchall() example.Tim Graham
Thanks aklim007 for the suggestion.
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-09-23Removed dictionary and context_instance parameters for render functions.Tim Graham
Per deprecation timeline.
2015-09-23Removed dirs parameter in template engine methods and related funtions.Tim Graham
Per deprecation timeline.
2015-09-23Removed current_app argument to render() and TemplateResponse().Tim Graham
Per deprecation timeline.
2015-09-23Refs #23957 -- Required session verification per deprecation timeline.Tim Graham
2015-09-23Refs #21648 -- Removed is_admin_site option from password_reset() view.Tim Graham
Per deprecation timeline.
2015-09-23Refs #19973 -- Removed optparse support in management commands per ↵Tim Graham
deprecation timeline.
2015-09-23Refs #21977 -- Removed SimpleTestCase.urls per deprecation timeline.Tim Graham
2015-09-23Refs #22218 -- Removed conf.urls.patterns() per deprecation timeline.Tim Graham
2015-09-23Refs #24022 -- Removed the ssi tag per deprecation timeline.Tim Graham
2015-09-23Refs #24351 -- Removed support for the old allow_migrate() signature per ↵Tim Graham
deprecation timeline.
2015-09-23Fixed typo in docs/topics/db/examples/one_to_one.txtDon Kirkby
2015-09-23Refs #25373 -- Doc'd logging of exceptions during {% include %} rendering.Tim Graham
2015-09-22Refs #24115 -- Added docs for password updates on bcrypt rounds change.Tim Graham
2015-09-22Added link to Babel's message extracting functionality.Rik
2015-09-21Fixed #24921 -- set_autocommit(False) + ORM queries.Aymeric Augustin
This commits lifts the restriction that the outermost atomic block must be declared with savepoint=False. This restriction was overly cautious. The logic that makes it safe not to create savepoints for inner blocks also applies to the outermost block when autocommit is disabled and a transaction is already active. This makes it possible to use the ORM after set_autocommit(False). Previously it didn't work because ORM write operations are protected with atomic(savepoint=False).
2015-09-21Fixed #12856 -- Documented BoundField API.Moritz Sichert
2015-09-19Fixed #25390 -- Allowed specifying a start migration in squashmigrationsMarkus Holtermann
Thanks Tim Graham for the review.
2015-09-18Fixed #25269 -- Allowed method_decorator() to accept a list/tuple of decorators.fabrizio ettore messina
2015-09-18Fixed #24944 -- Added extra_email_context parameter to password_reset() view.sujayskumar
2015-09-09Allowed a port range for the liveserver by default.Aymeric Augustin
This is required for running tests in parallel.
2015-09-05Updated references to the TEST_* database settings.Aymeric Augustin
They were removed in Django 1.9. I could leave the reference to TEST_DEPENDENCIES in the 1.2.4 release notes because the link points to the right location and the name was accurate at the time.
2015-09-05Fixed #25355 -- Made two tweaks to docs/topics/db/aggregation.txt.Maarten
2015-09-04Added links to new security settings introduced in 1.8.David Sanders
2015-09-04Refs #25345 -- Updated links to code.google.com.Maxime Lorant
2015-09-03Fixed #25326 -- Added namedtuple example for executing custom SQL.Dražen Odobašić
2015-08-31Cleaned up example migration files in docsTyson Clugg
2015-08-31Fixed #25259 -- Added comments to header of generated migration filesTyson Clugg
2015-08-31Clarified 404.html usage, excplicitly stated that it's used when DEBUG is FalseDavid Sanders
Thanks to Keryn Knight, Curtis Maloney and Tim Graham for their reviews.
2015-08-27Fixed #22634 -- Made the database-backed session backends more extensible.Sergey Kolosov
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.
2015-08-27Removed historical note about session serialization.Tim Graham
2015-08-25Fixed #25311 -- Removed vague language about "partial commits" from docs.Tim Graham
2015-08-24Fixed #23727 -- Inhibited the post_migrate signal when using ↵Tommy Beadle
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().
2015-08-22Tweak some examples.Aymeric Augustin
"Area man/woman" is confusing to people not familiar with the conventions of American journalism (like me).
2015-08-20Refs #24914 -- Added docs for more auth mixin methods.Tim Graham
2015-08-19Fixed style issues in testing docsMarkus Holtermann
2015-08-18Used consistent capitalization and hyphenation of "class-based views" in docs.Anton Strogonoff
2015-08-11Updated memcached library links to point to PyPI.Tim Graham
2015-08-11Fixed #25205 -- Removed doc references to deprecated GeoManager class.Brendan Hayward