| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-02-03 | Fixed #19730 -- Don't validate importability of settings by using i18n in ↵ | Ramiro Morales | |
| management commands. They are handled independently now and the latter can be influenced by the new BaseCommand.leave_locale_alone internal option. Thanks chrischambers for the report, Claude, lpiatek, neaf and gabooo for their work on a patch, originally on refs. #17379. | |||
| 2013-02-03 | Fixed a typo in docs/topics/auth/customizing.txt | Tim Graham | |
| 2013-02-02 | Fixed #17797 -- Enabled support for PATCH requests in the dummy test client. ↵ | Julien Phalip | |
| Thanks to pfarmer for the suggestion and initial patch. | |||
| 2013-02-02 | Fixed #14305 -- Switched inspectdb to create unmanaged models. | Ramiro Morales | |
| Thanks Ian Kelly for the report and initial patch. | |||
| 2013-02-02 | Fixed #19333 -- Moved compress.py outside of the admin static folder. Thanks ↵ | Julien Phalip | |
| to camilonova, Russell Keith-Magee, Aymeric Augustin and Ramiro Morales for the feedback. | |||
| 2013-02-02 | Fixed #19445 -- Skip admin fieldsets validation when the ↵ | Nick Sandford | |
| ModelAdmin.get_form() method is overridden. | |||
| 2013-02-02 | Fixed #19700 - Added documentation for BoundField.field. | Tim Graham | |
| Thanks Tiberiu Ana for the report and patch. | |||
| 2013-02-01 | Small generic FK docs tweaks. | Ramiro Morales | |
| 2013-02-01 | Fixed content types contrib app doc typos. | Ramiro Morales | |
| 2013-02-01 | Merge pull request #682 from LucianU/master | Tim Graham | |
| Fixed #19690 - Removed unused import in doc examples | |||
| 2013-02-01 | Avoided ambiguous output when runserver port is already in use. | Aymeric Augustin | |
| Thanks James Pic for the suggestion (PR 88). | |||
| 2013-02-01 | Fix rst syntax error. | Aymeric Augustin | |
| Thanks Chris Rebert for the report. | |||
| 2013-02-01 | Added myself to core developpers | Simon Charette | |
| 2013-02-01 | Documented ArchiveIndexView's date_list context variable. | Aymeric Augustin | |
| Refs #16218. | |||
| 2013-02-01 | Fixed #19715 -- Simplified findstatic output when verbosity set to 0 | Matt Robenolt | |
| 2013-02-01 | Fixed #19714 -- Updated documentation about TemplateView context | Claude Paroz | |
| Thanks Aramgutang for the report. Refs #17228. | |||
| 2013-01-31 | Deprecated undocumented warnings manipulation testing tools. | Ramiro Morales | |
| 2013-01-31 | Fixed #19692 -- Completed deprecation of mimetype in favor of content_type. | Aymeric Augustin | |
| Thanks Tim for the report and initial patch. | |||
| 2013-01-31 | Attempted to reduce version mismatch problems in the tutorial. | Aymeric Augustin | |
| 2013-01-30 | Changed "versionadded" after the decision to backport. | Aymeric Augustin | |
| Refs #19076. | |||
| 2013-01-30 | Fixed #19076 -- Added content_type attribute to TemplateView. | Aymeric Augustin | |
| Thanks Gavin Wahl. | |||
| 2013-01-30 | Fixed #19160 -- Made lazy plural translations usable. | Aymeric Augustin | |
| Many thanks to Alexey Boriskin, Claude Paroz and Julien Phalip. | |||
| 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 | Updated metrics on the documentation. | Aymeric Augustin | |
| 2013-01-29 | Fixed #19683 - Added a missing import in signing example. | Tim Graham | |
| Thanks sunsongxp@ for the report. | |||
| 2013-01-28 | Added HTML5 url input type | Claude Paroz | |
| Refs #16630. | |||
| 2013-01-28 | Added HTML5 email input type | Claude Paroz | |
| Refs #16630. | |||
| 2013-01-27 | Fixed two malformed links. | Tim Graham | |
| 2013-01-26 | Fixed #19589 -- assertRegexpMatches is deprecated in Python 3.3. | Aymeric Augustin | |
| 2013-01-25 | Moved has_changed logic from widget to form field | Claude Paroz | |
| Refs #16612. Thanks Aymeric Augustin for the suggestion. | |||
| 2013-01-25 | Revert "Patch by Claude for #16084." | Ramiro Morales | |
| This reverts commit 2babab0bb351ff7a13fd23795f5e926a9bf95d22. | |||
| 2013-01-25 | Added more shortcuts to i18n docs in index page. | Ramiro Morales | |
| 2013-01-25 | Patch by Claude for #16084. | Ramiro Morales | |
| 2013-01-25 | Fixed #19577 - Added HTML escaping to admin examples. | Tim Graham | |
| Thanks foo@ for the report and Florian Apolloner for the review. | |||
| 2013-01-24 | Fixed #6682 -- Made shell's REPL actually execute $PYTHONSTARTUP and ↵ | Ramiro Morales | |
| `~/.pythonrc.py`. Also: * Added a ``--no-startup`` option to disable this behavior. Previous logic to try to execute the code in charge of this funcionality was flawed (it only tried to do so if the user asked for ipython/bpython and they weren't found) * Expand ``~`` in PYTHONSTARTUP value. Thanks hekevintran at gmail dot com for the report and initial patch. Refs #3381. | |||
| 2013-01-24 | Fixed #19639 - Updated contributing to reflect model choices best practices. | Tim Graham | |
| Thanks charettes. | |||
| 2013-01-24 | Fixed a typo. | Florian Apolloner | |
| 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 #19633 - Discouraged use of gunicorn's Django integration. | Tim Graham | |
| 2013-01-22 | Fixed #19477 - Documented generic_inlineformset_factory | Tim Graham | |
| Thanks epicserve for the suggestion. | |||
| 2013-01-22 | Fixed #19640 - Added inlineformset_factory to reference docs. | Tim Graham | |
| Thanks wim@ for the suggestion. | |||
| 2013-01-20 | Added missing versionadded 1.6 to docs of earliest() | Anssi Kääriäinen | |
| Refs #17813 | |||
| 2013-01-20 | Fixed #17813 -- Added a .earliest() method to QuerySet | Nick Sandford | |
| Thanks a lot to everybody participating in developing this feature. The patch was developed by multiple people, at least Trac aliases tonnzor, jimmysong, Fandekasp and slurms. Stylistic changes added by committer. | |||
| 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-17 | Made (make|compile)messages commands accept multiple locales at once. | Craig Blaszczyk | |
| Thanks Craig Blaszczyk for the initial patch. Refs #17181. | |||
