Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/topics
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #25681 -- Added 'default' to DATABASES example.Attila Tovt2015-11-071-0/+1
|
* Fixed typo in docs/topics/auth/default.txt.japrogramer2015-11-031-1/+1
|
* Fixed typo in docs/topics/db/models.txt.Tomasz Anielak2015-10-311-1/+1
|
* Fixed #24212 -- Added example pylibmc CACHES configuration.Bryan Marty2015-10-301-0/+9
|
* Added class-based view example to RequestFactory example.bee_keeper2015-10-301-1/+3
|
* Fixed #21516 -- Updated imports paths for some formset ↵Bryan Marty2015-10-282-28/+28
| | | | | | | functions/classes. Since refs #21489, FormSet classes and factories are exposed on the django.forms package.
* Made LiveServerTestCase example use ↵Tim Graham2015-10-281-14/+13
| | | | StaticLiveServerTestCase.
* Fixed #25550 -- Deprecated direct assignment to the ↵Tim Graham2015-10-274-27/+10
| | | | reverse side of a related set.
* Fixed #25397 -- Documented class-based view context ↵Jacek Bzdak2015-10-231-0/+5
| | | | variable clash with context processors.
* Clarified that the test client response content ↵薛丞宏2015-10-231-3/+3
| | | | attribute is bytes.
* Refs #24622 -- Documented alternatives to some test ↵Benjamin Wohlwend2015-10-221-0/+17
| | | | response attributes when using alternative template engines.
* Fixed #25584 -- Documented a pip error when installing ↵Tim Graham2015-10-221-1/+2
| | | | Django 1.9.
* Refs #25527 -- Removed redundant doc heading link that ↵Tim Graham2015-10-081-2/+2
| | | | leads to a warning when generating PDF.
* Added some function links in translation docsClaude Paroz2015-10-071-5/+6
|
* Fixed #25508 -- Modified QuerySet.__repr__() to ↵Tim Graham2015-10-066-92/+92
| | | | disambiguate it from a list.
* Fixed #25481 -- Added field.help_text to "Looping over a ↵John Moses2015-10-021-0/+3
| | | | form's fields" docs.
* Clarified that Model.delete() isn't called as a result ↵David Sanders2015-09-301-3/+5
| | | | of a cascading delete.
* Improved "“standalone” Django usage" example.David Sanders2015-09-291-1/+3
|
* Fixed #25376 -- Required virtualenv in installation ↵Tim Graham2015-09-291-128/+19
| | | | | | instructions. Thanks Anjul Tyagi for some of the draft text.
* Documented auth's login/logout function parameters.Tim Graham2015-09-281-2/+2
|
* Fixed #25468 -- Made DjangoJSONEncoder lazy string awareClaude Paroz2015-09-271-4/+3
| | | | | Thanks Stavros Korokithakis for the report and Tim Graham for the review.
* Fixed #25462 -- Removed Model.__unicode__() in favor of ↵Tim Graham2015-09-251-3/+3
| | | | @python_2_unicode_compatible.
* Fixed #25451 -- Added advice about organizing tests.Tim Graham2015-09-252-1/+12
|
* Fixed #25455 -- Optimized dictfetchall() example.Tim Graham2015-09-241-2/+2
| | | | Thanks aklim007 for the suggestion.
* Removed versionadded/changed annotations for 1.8.Tim Graham2015-09-2424-275/+16
|
* Removed dictionary and context_instance parameters for ↵Tim Graham2015-09-242-59/+5
| | | | | | render functions. Per deprecation timeline.
* Removed dirs parameter in template engine methods and ↵Tim Graham2015-09-242-20/+4
| | | | | | related funtions. Per deprecation timeline.
* Removed current_app argument to render() and ↵Tim Graham2015-09-242-18/+1
| | | | | | TemplateResponse(). Per deprecation timeline.
* Refs #23957 -- Required session verification per ↵Tim Graham2015-09-243-31/+12
| | | | deprecation timeline.
* Refs #21648 -- Removed is_admin_site option from ↵Tim Graham2015-09-241-6/+1
| | | | | | password_reset() view. Per deprecation timeline.
* Refs #19973 -- Removed optparse support in management ↵Tim Graham2015-09-241-16/+0
| | | | commands per deprecation timeline.
* Refs #21977 -- Removed SimpleTestCase.urls per ↵Tim Graham2015-09-241-30/+2
| | | | deprecation timeline.
* Refs #22218 -- Removed conf.urls.patterns() per ↵Tim Graham2015-09-241-7/+1
| | | | deprecation timeline.
* Refs #24022 -- Removed the ssi tag per deprecation timeline.Tim Graham2015-09-241-15/+0
|
* Refs #24351 -- Removed support for the old ↵Tim Graham2015-09-241-6/+0
| | | | allow_migrate() signature per deprecation timeline.
* Fixed typo in docs/topics/db/examples/one_to_one.txtDon Kirkby2015-09-231-1/+1
|
* Refs #25373 -- Doc'd logging of exceptions during {% ↵Tim Graham2015-09-231-2/+8
| | | | include %} rendering.
* Refs #24115 -- Added docs for password updates on bcrypt ↵Tim Graham2015-09-231-3/+7
| | | | rounds change.
* Added link to Babel's message extracting functionality.Rik2015-09-221-2/+3
|
* Fixed #24921 -- set_autocommit(False) + ORM queries.Aymeric Augustin2015-09-211-2/+6
| | | | | | | | | | | | | 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).
* Fixed #12856 -- Documented BoundField API.Moritz Sichert2015-09-211-0/+5
|
* Fixed #25390 -- Allowed specifying a start migration in ↵Markus Holtermann2015-09-191-1/+1
| | | | | | squashmigrations Thanks Tim Graham for the review.
* Fixed #25269 -- Allowed method_decorator() to accept a ↵fabrizio ettore messina2015-09-191-1/+21
| | | | list/tuple of decorators.
* Fixed #24944 -- Added extra_email_context parameter to ↵sujayskumar2015-09-191-1/+8
| | | | password_reset() view.
* Allowed a port range for the liveserver by default.Aymeric Augustin2015-09-091-5/+12
| | | | This is required for running tests in parallel.
* Updated references to the TEST_* database settings.Aymeric Augustin2015-09-051-17/+29
| | | | | | | | 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.
* Fixed #25355 -- Made two tweaks to ↵Maarten2015-09-051-2/+2
| | | | docs/topics/db/aggregation.txt.
* Added links to new security settings introduced in 1.8.David Sanders2015-09-041-7/+8
|
* Refs #25345 -- Updated links to code.google.com.Maxime Lorant2015-09-041-1/+1
|
* Fixed #25326 -- Added namedtuple example for executing ↵Dražen Odobašić2015-09-031-8/+30
| | | | custom SQL.