| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-09-07 | Document ``six.assertRaisesRegex``. | Alex Gaynor | |
| 2012-09-07 | Merge pull request #331 from davidfischer/master | James Bennett | |
| Ticket #17324 - Improve security docs with better CSRF explanation | |||
| 2012-09-07 | [py3] Documented forwards-compatible aliases | Aymeric Augustin | |
| that will be available as of version 1.4.2. | |||
| 2012-09-06 | Formatting fix for host headers section | David Fischer | |
| 2012-09-06 | Added CSRF with HTTPS/HSTS and forwarding note | David Fischer | |
| 2012-09-06 | Added note about Strict Transport Security (HSTS) | David Fischer | |
| 2012-09-03 | Changes day to from 2 to 30 | Matt Stevens | |
| 2012-09-03 | Clarifies day and month in example queryset | Matt Stevens | |
| 2012-09-01 | Merge pull request #315 from streeter/auth-docs-cleanup-patch | Tim Graham | |
| Clarify some of the password reset docs | |||
| 2012-09-01 | Fixed #18840 - Added a mentioned of the upload_to parameter to the ModelForm ↵ | Tim Graham | |
| example in file uploads. | |||
| 2012-09-01 | Fixed #13608 - Noted that template lookups use literal values. | Tim Graham | |
| 2012-08-31 | Clarify some of the password reset docs | Chris Streeter | |
| Some of the wording was copied from the change password section. Updated the text to clarify that the we are talking about password resets. | |||
| 2012-08-31 | Merge pull request #310 from juanpex/master | Florian Apolloner | |
| fix documentation testing of Selenium WebDriverWait | |||
| 2012-08-31 | Merge pull request #311 from gutworth/py3-doc | Florian Apolloner | |
| Indexing bytes is the problem not slicing. | |||
| 2012-08-30 | Fixed #18871 - Fixed typo in multi-db docs. | Tim Graham | |
| 2012-08-29 | Replaced many smart_bytes by force_bytes | Claude Paroz | |
| In all those occurrences, we didn't care about preserving the lazy status of the strings, but we really wanted to obtain a real bytestring. | |||
| 2012-08-28 | Indexing bytes is the problem not slicing. | Benjamin Peterson | |
| 2012-08-27 | fix documentation testing of Selenium WebDriverWait | juanpex | |
| According to the documentation of Selenium, WebDriverWait class has no timeout parameter and using the code fails. http://selenium.googlecode.com/svn/trunk/docs/api/java/org/openqa/selenium/support/ui/FluentWait.html#until%28com.google.common.base.Predicate%29 | |||
| 2012-08-25 | Fixed #18804 - Reorganized class based views docs a bit; thanks anthonyb for ↵ | Tim Graham | |
| the initial patch. | |||
| 2012-08-24 | Fixed #18847 - Updated for media examples to use static.example.com. Thanks ↵ | Tim Graham | |
| Jamie Curle. | |||
| 2012-08-23 | Fixed typo in docs | Carlos Palol | |
| 2012-08-22 | Merge pull request #297 from mjjohnson/ticket_17069 | Tim Graham | |
| Fixed #17069 -- Added log filter example to docs. | |||
| 2012-08-21 | Fixed #18637 - Updated some documentation for aspects of models that are ↵ | Tim Graham | |
| ModelForm specific, not admin specific. Thanks Ben Sturmfels for the patch. | |||
| 2012-08-21 | Fixed #14885 - Clarified that ModelForm cleaning may not fully complete if ↵ | Tim Graham | |
| the form is invalid. Thanks Ben Sturmfels for the patch. | |||
| 2012-08-21 | Fixed #17069 -- Added log filter example to docs. | Michael Johnson | |
| Added an example of filtering admin error emails (to exclude UnreadablePostErrors) to the docs. | |||
| 2012-08-20 | Fixed #18819 -- fixed some typos in the auth docs | Alex Gaynor | |
| 2012-08-20 | Made an example more readable in the URLs docs. | Aymeric Augustin | |
| 2012-08-20 | Added links in URLs doc for consistency. | Aymeric Augustin | |
| 2012-08-19 | Fixed #17180 - Emphasized the need to load the i18n template tag in each ↵ | Tim Graham | |
| template that uses translations. Thanks stefan.freyr for the suggestion and buddylindsey for the draft patch. | |||
| 2012-08-19 | Clarified a sentence in the Python 3 docs. | Aymeric Augustin | |
| Thanks dstufft for the report. | |||
| 2012-08-19 | Fixed indentation in the Python3 docs | Marc Tamlyn | |
| 2012-08-19 | [py3] Wrote Django-specific porting tips | Aymeric Augustin | |
| and extended the existing Python 3 documentation. | |||
| 2012-08-18 | [py3] Added compatibility import of thread/_thread | Aymeric Augustin | |
| This commit fixes the auto-reload of the development server. I should have done that change in ca07fda2. | |||
| 2012-08-17 | Update docs/topics/class-based-views/index.txt | Preston Holmes | |
| View class does not have a render_to_response method - so does not make sense for this mixin | |||
| 2012-08-16 | Fixed #17183 - Added a note regarding LocaleMiddleware at the top of the ↵ | Tim Graham | |
| i18n docs. Thanks krzysiumed for the patch. | |||
| 2012-08-13 | Consistenly use _ as alias for ugettext_lazy in the i18n docs. | Florian Apolloner | |
| 2012-08-12 | [py3] Explained @python_2_unicode_compatible usage | Aymeric Augustin | |
| 2012-08-10 | Fixed #17680 - Clarified when logging is configured. | Tim Graham | |
| 2012-08-10 | Fixed #17016 - Added examples for file uploads in views. | Tim Graham | |
| Thanks Tim Saylor for the draft patch and Aymeric Augustin and Claude Paroz for feedback. | |||
| 2012-08-08 | [py3] Replaced __nonzero__ by __bool__ | Claude Paroz | |
| Of course, __nonzero__ alias has been kept for Python 2 compatibility. | |||
| 2012-08-07 | [py3] Ported django.utils.encoding. | Aymeric Augustin | |
| * Renamed smart_unicode to smart_text (but kept the old name under Python 2 for backwards compatibility). * Renamed smart_str to smart_bytes. * Re-introduced smart_str as an alias for smart_text under Python 3 and smart_bytes under Python 2 (which is backwards compatible). Thus smart_str always returns a str objects. * Used the new smart_str in a few places where both Python 2 and 3 want a str. | |||
| 2012-08-06 | Fixed #17053 - Added a note about USE_THOUSAND_SEPARATOR setting to ↵ | Tim Graham | |
| localizations docs. Thanks shelldweller for the draft patch. | |||
| 2012-08-04 | Merge pull request #153 from webjunkie/patch-1 | Tim Graham | |
| Fixed #18110 -- Improve template cache tag documentation | |||
| 2012-08-04 | Merge pull request #244 from mbrochh/master | Tim Graham | |
| Fixed small typo in class based view docs. | |||
| 2012-08-04 | Fixed #16980 - Misc updates to the auth docs. Thanks Preston Holmes for the ↵ | Tim Graham | |
| patch. | |||
| 2012-08-04 | Fixed #18700 -- Added URL reversal for i18n set_language view. | Simon Meers | |
| 2012-08-03 | Documented the trick used in 9908201d7f. | Aymeric Augustin | |
| 2012-08-02 | Update docs/topics/class-based-views/index.txt | Martin Brochhaus | |
| Fixed a small typo: "We can use create" should be "We can create" | |||
| 2012-08-02 | Fixed #18472 - Added warning regarding set_language / i18n_patterns. | Simon Meers | |
| 2012-08-01 | Fixed #16168 - Added note regarding type requirements when overridng ↵ | Tim Graham | |
| ModelForm fields. Thanks Pieter Swinkels for the patch. | |||
