| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-01-29 | Fixed #19552 -- Enhanced makemessages handling of ``{# #}``-style template ↵ | Ramiro Morales | |
| comments. They are simply ignored now. This allows for a more correct behavior when they are placed before translatable constructs on the same line. Previously, the latter were wrongly ignored because the former were preserved when converting template code to the internal Python-syntax form later fed to xgettext but Python has no ``/* ... */``-style comments. Also, special comments directed to translators are now only taken in account when they are located at the end of a line. e.g.:: {# Translators: ignored #}{% trans "Literal A" %}{# Translators: valid, associated with "Literal B" below #} {% trans "Literal B" %} Behavior of ``{% comment %}...{% endcomment %}``tags remains unchanged. Thanks juneih at redpill-linpro dot com for the report and Claude for his work on the issue. | |||
| 2013-01-29 | Fixed typos in docs and comments | Tim Graham | |
| 2013-01-29 | Fixed #19690 - Removed unused import | Lucian Ursu | |
| Removed an import of a class unused in the Ajax example. | |||
| 2013-01-29 | Fixed #19683 - Added a missing import in signing example. | Tim Graham | |
| Thanks sunsongxp@ for the report. | |||
| 2013-01-28 | Added HTML5 email input type | Claude Paroz | |
| Refs #16630. | |||
| 2013-01-26 | Fixed #19589 -- assertRegexpMatches is deprecated in Python 3.3. | Aymeric Augustin | |
| 2013-01-25 | Revert "Patch by Claude for #16084." | Ramiro Morales | |
| This reverts commit 2babab0bb351ff7a13fd23795f5e926a9bf95d22. | |||
| 2013-01-25 | Patch by Claude for #16084. | Ramiro Morales | |
| 2013-01-24 | Fixed #17416 -- Added widgets argument to inlineformset_factory and ↵ | Nick Sandford | |
| modelformset_factory | |||
| 2013-01-23 | Fixed typo. | Justin Bronn | |
| 2013-01-23 | Fixed #19610 - Added enctype note to forms topics doc. | Tim Graham | |
| Thanks will@ for the suggestion. | |||
| 2013-01-22 | Fixed #19640 - Added inlineformset_factory to reference docs. | Tim Graham | |
| Thanks wim@ for the suggestion. | |||
| 2013-01-18 | Fixed #19628 - Noted that app for custom user model must be in INSTALLED_APPS | Tim Graham | |
| Thanks dpravdin and Jordan Messina. | |||
| 2013-01-18 | Fixed #19632 -- Bug in code sample. | Aymeric Augustin | |
| Thanks grossmanandy at bfusa com and Simon Charette. | |||
| 2013-01-15 | Fixed #19614 -- Missing request argument in render call. | Aymeric Augustin | |
| Thanks Dima Pravdin for the report. | |||
| 2013-01-15 | Fixed #19605 - Removed unused url imports from doc examples. | Tim Graham | |
| Thanks sergzach for the suggestion. | |||
| 2013-01-12 | Fixed #14633 - Organized settings reference docs and added a topical index. | Tim Graham | |
| Thanks Gabriel Hurley for the original idea and adamv for the draft patch. | |||
| 2013-01-11 | Fixed code examples in which render() calls were missing `request` parameter. | Vinod Kurup | |
| 2013-01-11 | Fixed #10239 - Added docs for modelform_factory | Tim Graham | |
| Thanks ingenieroariel for the suggestion and slurms for the review. | |||
| 2013-01-04 | Fixed #19562 -- cleaned up password storage docs | Preston Holmes | |
| 2013-01-02 | Fixed #19516 - Fixed remaining broken links. | Tim Graham | |
| Added -n to sphinx builds to catch issues going forward. | |||
| 2013-01-02 | Fixed #19549 - Typo in docs/topics/auth/default.txt | Tim Graham | |
| 2013-01-01 | Tiny typo fixed in logging docs | Daniele Procida | |
| 2012-12-29 | Removed versionadded/changed annotations dating back to 1.4. | Aymeric Augustin | |
| 2012-12-29 | Removed django.contrib.markup. | Aymeric Augustin | |
| 2012-12-29 | Removed django.contrib.localflavor. | Aymeric Augustin | |
| Each localflavor lives on as a separate app. | |||
| 2012-12-29 | Fixed broken links, round 4. refs #19516 | Tim Graham | |
| 2012-12-28 | Fixed #19498 -- refactored auth documentation | Preston Holmes | |
| The auth doc was a single page which had grown unwieldy. This refactor split and grouped the content into sub-topics. Additional corrections and cleanups were made along the way. | |||
| 2012-12-26 | Fixed broken links, round 3. refs #19516 | Tim Graham | |
| 2012-12-24 | Fixed links to DATABASE ENGINE setting. refs #19516 | Tim Graham | |
| 2012-12-21 | Fixed #19497 -- Refactored testing docs. | Ramiro Morales | |
| Thanks Tim Graham for the review and suggestions. | |||
| 2012-12-21 | Fixed #19506 - Remove 'mysite' prefix in model example. | Tim Graham | |
| Thanks Mike O'Connor for the report. | |||
| 2012-12-18 | Fixed #19442 - Clarified that raw SQL must be committed. | Tim Graham | |
| Thanks startup.canada for the suggestion. | |||
| 2012-12-18 | Fixed #17312 - Warned about database side effects in tests. | Tim Graham | |
| Thanks jcspray for the suggestion. | |||
| 2012-12-16 | Fixed #19279 - Clarified order of database setup and Django install. | Tim Graham | |
| Thanks colinnkeenan for the suggestion. | |||
| 2012-12-16 | Replaced the test case hierarchy schema with a vector version. | Aymeric Augustin | |
| The OmniGraffle source file is included for future use. | |||
| 2012-12-16 | Added PDF version of SVG file for latexpdf builds. | Aymeric Augustin | |
| Thanks Tim Graham for reporting this issue and testing the fix. | |||
| 2012-12-15 | Fixed #19412 -- Added PermissionsMixin to the auth.User heirarchy. | Russell Keith-Magee | |
| This makes it easier to make a ModelBackend-compliant (with regards to permissions) User model. Thanks to cdestigter for the report about the relationship between ModelBackend and permissions, and to the many users on django-dev that contributed to the discussion about mixins. | |||
| 2012-12-15 | Fixed #19472 -- Documented the testing requirements and tools for custom ↵ | Russell Keith-Magee | |
| User models. Thanks to gcc for the report. | |||
| 2012-12-15 | Fixed #19384 -- Documented the behavior of custom managers on abstract models. | Russell Keith-Magee | |
| This documents the behavior introduced by cc337a74, which is BACKWARDS INCOMPATIBLE for any attempt to invoke a method on a manager using the abstract class as the calling class (e.g., AbstractBase.objects.do_something()) Thanks to mhsparks for the report. | |||
| 2012-12-14 | Merge pull request #585 from blongden/clarify_php_refs | Tim Graham | |
| Removed poor PHP references | |||
| 2012-12-14 | Fixed #2304 -- Documented TRANSACTIONS_MANAGED. | Aymeric Augustin | |
| 2012-12-13 | Removes PHP references | Ben Longden | |
| 2012-12-13 | Fixed #19462 -- Made assertQuerysetEqual detect undefined ordering | Anssi Kääriäinen | |
| If there are more than one values to compare against and the qs isn't ordered then assertQuerysetEqual will raise a ValueError. | |||
| 2012-12-11 | Fixed #19461 - Linked to psycopg in topics/install.txt | Tim Graham | |
| Thanks Chris Jerdonek for the suggestion. | |||
| 2012-12-10 | Fixed a security issue in get_host. | Florian Apolloner | |
| Full disclosure and new release forthcoming. | |||
| 2012-12-09 | Edited the middleware doc for completeness, clarity, and consistency. | Aymeric Augustin | |
| 2012-12-09 | Fixed #12502 -- Improved middleware diagram. | Aymeric Augustin | |
| 2012-12-08 | Removed US localflavor-specific tests from core | Claude Paroz | |
| Also fixes #9045. | |||
| 2012-12-02 | fix a spelling error in docs | Val Neekman | |
