summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2013-06-10Merge pull request #1255 from camilonova/patch-2Tim Graham
Made URL patterns consistent in docs/ref/contrib/flatpages.txt
2013-06-10Added TransactionTestCase.available_apps.Aymeric Augustin
This can be used to make Django's test suite significantly faster by reducing the number of models for which content types and permissions must be created and tables must be flushed in each non-transactional test. It's documented for Django contributors and committers but it's branded as a private API to preserve our freedom to change it in the future. Most of the credit goes to Anssi. He got the idea and did the research. Fixed #20483.
2013-06-09Fixed #19875 - Added warnings regarding DEBUG=False and empty ALLOWED_HOSTSTim Graham
2013-06-09Fixed #20567 - Documented BoundField.id_for_label.Tim Graham
Thanks littlepig for the suggestion.
2013-06-09Update media.txtKenny Rachuonyo
Fixed typo: froms -> forms
2013-06-08Update flatpages.txtCamilo Nova
Fixed typo
2013-06-08Allow build of translated documentationClaude Paroz
2013-06-08Update submitting-patches.txtrusskel
Few quick fixes to the terminology in order to match what is used on the Django Trac at the moment.
2013-06-06Explained that timezone.now() always returns times in UTC.Jacob Kaplan-Moss
The docs were ambiguous about the time zone for now(), leading people to assume that it would be the current time zone rather that UTC.
2013-06-06Merge pull request #1245 from oinopion/list_select_relatedMarc Tamlyn
Fixed #19080 -- Fine-grained control over select_related in admin
2013-06-05Fixed #19080 -- Fine-grained control over select_related in adminTomek Paczkowski
2013-06-05Proofed the 1.6 release notesTim Graham
2013-06-04Fixed #18924 -- Made test.Client.logout send user_logged_out signal.Tim Graham
Thanks awsum for the suggestion and Pavel Ponomarev and Florian Hahn for the patch.
2013-06-04Fixed #17601 -- expose underlying db exceptions under py2James Aylett
Use __cause__ to expose the underlying database exceptions even under python 2.
2013-06-03Fixed #20545 - Made class-based view MRO lists consistent.Tim Graham
Thanks wim@ for the suggestion.
2013-06-03Fixed #20552 -- Corrected release notes reference to name of new test ↵Russell Keith-Magee
discovery runner.
2013-06-01Fixed #18388 - Added InlineModelAdmin.get_max_num hook.Tim Graham
Thanks d.willy.c.c@ for the suggestion and Melevir and Areski Belaid for work on the patch.
2013-06-01Fixed #20543 - Typo in db model fields docs.Tim Graham
Thanks i.amber.jain@ for the report.
2013-06-01Fixed #18169 -- NoReverseMatch not silenced if from block.superAnssi Kääriäinen
2013-05-31Fixed #20166 - Corrected TEST_DEPENDENCIES example in testing docs.Tim Graham
Thanks czambran.
2013-05-31Fixed #20326 - Corrected form wizard get_form() example.Tim Graham
Thanks tris@ for the report.
2013-05-31Fixed #20515 - Clarified note regarding translator comments.Tim Graham
Thanks wim@ for the suggestion.
2013-05-31Fixed #20511 -- Corrected link about isolation levels in databases docsClaude Paroz
Thanks tinodb for the report.
2013-05-31Merge pull request #1232 from fusionbox/normalize_emailClaude Paroz
Fixed #20531 -- Don't hard-code class names when calling static methods
2013-05-30Tweak caching decorators/utility functions xrefs.Ramiro Morales
2013-05-30Fixed #19425 - Added InlineModelAdmin.get_extra hook.Tim Graham
Thanks dave@ for the suggestion and Rohan Jain for the patch.
2013-05-30Fixed #16856 - Added a way to clear select_related.Tim Graham
Thanks Carl for the suggestion and David Cramer for the patch.
2013-05-29Fixed regroup example.Gavin Wahl
Chicago was missing.
2013-05-29Don't hard-code class names when calling static methodsGavin Wahl
normalize_email should be called on the instance, not the class. This has the same effect normally but is more helpful to subclassers. When methods are called directly on the class, subclasses can't override them.
2013-05-28Fixed #20525 -- Added versionadded for clearsessions.Tim Graham
Thanks wiml@.
2013-05-28Fixed #20484 -- Added model validation for GenericIPAddressFieldTim Graham
GenericIPAddressField must not allow blank for NOT NULL fields Thanks Erik Romijn.
2013-05-28Fixed #20523 - Incorrect form field for FilePathField.Tim Graham
Thanks sane4ka.sh@ for the report.
2013-05-28Fixed #20228 - Documented unique_for_date and exclude behavior.Tim Graham
Thanks Deepak Thukral for the patch.
2013-05-28Fixed #20513 - Expanded docs on QuerySet caching.Tim Graham
Thanks seddonym.
2013-05-27Fixed #20503 - Moved doctest utilities in with the rest of the deprecated ↵Carl Meyer
test code. The ``DocTestRunner`` and ``OutputChecker`` were formerly in ``django.test.testcases``, now they are in ``django.test.simple``. This avoids triggering the ``django.test._doctest`` deprecation message with any import from ``django.test``. Since these utility classes are undocumented internal API, they can be moved without a separate deprecation process. Also removed the deprecation warnings specific to these classes, as they are now covered by the module-level warning in ``django.test.simple``. Thanks Anssi for the report. Refs #17365.
2013-05-27Fixed #11603 - Added django.test.SimpleTestCase.assertFormsetErrorTim Graham
Thank-you Martin Green for the patch.
2013-05-27Fixed #16137 - Removed kwargs requirement for QuerySet.get_or_createTim Graham
Thanks wilfred@, poirier, and charettes for work on the patch.
2013-05-27Merge pull request #1226 from bmispelon/ticket-20505Tim Graham
Fixed #20505 -- Typo in BinaryField documentation.
2013-05-27Fixed #17582 - Added message to DoesNotExist exceptions.Tim Graham
Thanks simon@ for the suggestion and JordanPowell for the initial patch.
2013-05-27Fix #20505: Typo in BinaryField documentation.Baptiste Mispelon
2013-05-27Fixed URL for six inventory.Aymeric Augustin
2013-05-27Fixed #20508 -- ReST typo.Aymeric Augustin
2013-05-27Patch for ticket #20506 - documentation typeyishaibeeri
2013-05-26Replaced `and...or...` constructs with PEP 308 conditional expressions.Ramiro Morales
2013-05-25Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.Preston Holmes
SuspiciousOperations have been differentiated into subclasses, and are now logged to a 'django.security.*' logger. SuspiciousOperations that reach django.core.handlers.base.BaseHandler will now return a 400 instead of a 500. Thanks to tiwoc for the report, and Carl Meyer and Donald Stufft for review.
2013-05-25Fixed #20099 -- Eased subclassing of BrokenLinkEmailsMiddlewareClaude Paroz
Thanks Ram Rachum for the report and the initial patch, and Simon Charette for the review.
2013-05-25Fixed #14825 -- LocaleMiddleware keeps languageVlastimil Zíma
* LocaleMiddleware stores language into session if it is not present there.
2013-05-24Fixed #20492 - Removed a broken link in GIS docs.Tim Graham
2013-05-24Merge pull request #1210 from alasdairnicol/jquery_cookie_plugin_linkTim Graham
Updated link to jQuery Cookie plugin site
2013-05-24Merge pull request #1209 from tax/masterPreston Holmes
Updated link to active project for ODBC backend