summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2013-05-18Fixed #20430 - Enable iterable of iterables for model choicesDonald Stufft
Allows for any iterable, not just lists or tuples, to be used as the inner item for a list of choices in a model.
2013-05-18Merge pull request #1122 from ambv/issue13285Aymeric Augustin
Fixed #13285: populate_xheaders breaks caching
2013-05-18Fixed #13285: populate_xheaders breaks cachingŁukasz Langa
2013-05-18Fixed #20444 -- Cookie-based sessions does not include a remote code ↵Erik Romijn
execution-warning
2013-05-18Fixed #9595 -- Allow non-expiring cache timeouts.Jacob Burch
Also, streamline the use of 0 and None between cache backends.
2013-05-18Fixed #20269 -- Adapted PostGIS template create script for CentOS/RHELClaude Paroz
Thanks Stephane Benchimol for the report and the initial script and mfandreas for the patch.
2013-05-18Added example of using sitemaps with static views.Zbigniew Siciarz
References #16829.
2013-05-18Fixed #13546 -- Easier handling of localize field options in ModelFormErik Romijn
2013-05-18Fixed #20402: removed as-limit from uWSGI example.Aymeric Augustin
It can fail in hard-to-diagnose ways.
2013-05-18Fixed #20408 -- Clarified that values_list() doesn't return a list.Aymeric Augustin
Thanks marktranchant, bmispelon, and alextreme.
2013-05-18Fixed #20294 -- Documented context processors in TemplateResponseMixin.Zbigniew Siciarz
2013-05-18Reorganize committers list chronologically.Aymeric Augustin
This completes the removal of the distinction between core devs and specialists. Patch by Simon Meers.
2013-05-17Finally add myself to the committers listDonald Stufft
2013-05-17Tidy up some of the transaction documentation.Marc Tamlyn
2013-05-17Fix up company link.Marc Tamlyn
2013-05-17Added myself to committers.Marc Tamlyn
2013-05-17Fixed #20426 -- Added some extra info to the auth forms.Florian Apolloner
Thanks to Joel Hansson for the suggestion and Curtis Maloney for the initial patch.
2013-05-17Fixed #5472 --Added OpenLayers-based widgets in contrib.gisClaude Paroz
Largely inspired from django-floppyforms. Designed to not depend on OpenLayers at code level.
2013-05-16Removed "specialists".Jacob Kaplan-Moss
The distinction's not really one we make any more, so updated the docs accordingly.
2013-05-16Updated my bio.Jacob Kaplan-Moss
2013-05-16Fixed #20421 - Typo in class-based view docs.Tim Graham
2013-05-16Fixed #19712 - Clarified admindocs regarding which attributes appear.Tim Graham
Thanks Daniele Procida for the report.
2013-05-16Merge pull request #1073 from mjtamlyn/import_by_path-docs-fixTim Graham
Made the example usage of import_by_path less confusing.
2013-05-16Make the example usage of import_by_path less confusing.Marc Tamlyn
Using import_by_path to import import_by_path is a really odd use case and makes the code example difficult to read.
2013-05-16small typo, example pk=27 but description pk=24Stefan hr Berder
2013-05-15Improved the timezone middleware example slightly.Aymeric Augustin
This change avoids having the timezone leak from a request to the next.
2013-05-15Fixed #20165 - Updated testing example to use django.test.TestCase.Tim Graham
Thanks Lorin Hochstein.
2013-05-14Fixed #19934 - Use of Pillow is now preferred over PIL.Daniel Lindsley
This starts the deprecation period for PIL (support to end in 1.8).
2013-05-14Merge pull request #1062 from dstufft/switch-bcrypt-recommendationsDonald Stufft
Recommend using the bcrypt library instead of py-bcrypt
2013-05-14Merge pull request #1039 from cannona/masterTim Graham
Clarified what unique_for_date considers
2013-05-14Fixing a minor spelling mistake in the queryset documentationWilfred Hughes
2013-05-13Recommend using the bcrypt library instead of py-bcryptDonald Stufft
* py-bcrypt has not been updated in some time * py-bcrypt does not support Python3 * py3k-bcrypt, a port of py-bcrypt to python3 is not compatible with Django * bcrypt is supported on all versions of Python that Django supports
2013-05-13Merge pull request #1053 from makto/patch-1Tim Graham
Fixed #20394 - Clarified argument of get_user in docs
2013-05-13Fixed #20398 - Added language selection code to example in documentationTim Graham
Thanks ggbaker for the suggestion and Simeon Visser for the patch.
2013-05-12Merge pull request #1058 from svisser/ticket_20397Tim Graham
Fixed #20397 - Cleaned up issue with quotation marks in documentation
2013-05-12Updated test failure example.Ramiro Morales
2013-05-12Fixed #20397 - Cleaned up issue with quotation marks in documentationSimeon Visser
2013-05-11Fixed #20136 - Fixed and expanded the docs for loaddata and model signals.Tim Graham
Thanks brandon@ and Anssi for the report.
2013-05-11Fixed #20249 - Removed a "feature" in the tutorial that doesn't actually work.Tim Graham
Thanks bmispelon for the report and draft patch.
2013-05-11Update customizing.txtzhongqi
The origin statement "which could be ... or whatever" **misguides** many newbies like me. In fact, the ``login`` function in ``contrib.auth`` stores ``user.pk`` in session, then ``get_user`` function in ``contrib.auth`` gets ``user.pk`` in session and then passes it to your custom ``get_user`` as ``user_id``. Which means, ``user_id`` prarameter in your custom ``get_user`` has to be the primary key of ``User`` object, too.
2013-05-10Fixed #17365, #17366, #18727 -- Switched to discovery test runner.Carl Meyer
Thanks to Preston Timmons for the bulk of the work on the patch, especially updating Django's own test suite to comply with the requirements of the new runner. Thanks also to Jannis Leidel and Mahdi Yusuf for earlier work on the patch and the discovery runner. Refs #11077, #17032, and #18670.
2013-05-10Updated my bio.Jannis Leidel
2013-05-10Fixed #20385 -- Typo in files docs.Aymeric Augustin
2013-05-09Fixed #19733 - deprecated ModelForms without 'fields' or 'exclude', and ↵Luke Plant
added '__all__' shortcut This also updates all dependent functionality, including modelform_factory and modelformset_factory, and the generic views `ModelFormMixin`, `CreateView` and `UpdateView` which gain a new `fields` attribute.
2013-05-09Fixed #20215 -- Disabled persistent connections by default.Aymeric Augustin
2013-05-08Marked tests of BinaryFields as expected failures on MySQL and Python 3.Aymeric Augustin
Current ports of MySQLdb are very buggy in this area.
2013-05-08Fixed #20025 -- Pointed to a MySQLdb fork for Python 3.Aymeric Augustin
Made a few minor compatibility adjustments.
2013-05-08Fixed test failures on MySQL.Aymeric Augustin
Some tests failed when the time zone definitions were loaded in MySQL and pytz wasn't installed. This setup isn't supported.
2013-05-07Fixed Sphinx error in tutorial 1.Carl Meyer
2013-05-07Fixed inconsistent punctuation in tutorial 5.Carl Meyer