summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2013-02-03Fixed #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-03Fixed a typo in docs/topics/auth/customizing.txtTim Graham
2013-02-02Fixed #17797 -- Enabled support for PATCH requests in the dummy test client. ↵Julien Phalip
Thanks to pfarmer for the suggestion and initial patch.
2013-02-02Fixed #14305 -- Switched inspectdb to create unmanaged models.Ramiro Morales
Thanks Ian Kelly for the report and initial patch.
2013-02-02Fixed #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-02Fixed #19445 -- Skip admin fieldsets validation when the ↵Nick Sandford
ModelAdmin.get_form() method is overridden.
2013-02-02Fixed #19700 - Added documentation for BoundField.field.Tim Graham
Thanks Tiberiu Ana for the report and patch.
2013-02-01Small generic FK docs tweaks.Ramiro Morales
2013-02-01Fixed content types contrib app doc typos.Ramiro Morales
2013-02-01Merge pull request #682 from LucianU/masterTim Graham
Fixed #19690 - Removed unused import in doc examples
2013-02-01Avoided ambiguous output when runserver port is already in use.Aymeric Augustin
Thanks James Pic for the suggestion (PR 88).
2013-02-01Fix rst syntax error.Aymeric Augustin
Thanks Chris Rebert for the report.
2013-02-01Added myself to core developpersSimon Charette
2013-02-01Documented ArchiveIndexView's date_list context variable.Aymeric Augustin
Refs #16218.
2013-02-01Fixed #19715 -- Simplified findstatic output when verbosity set to 0Matt Robenolt
2013-02-01Fixed #19714 -- Updated documentation about TemplateView contextClaude Paroz
Thanks Aramgutang for the report. Refs #17228.
2013-01-31Deprecated undocumented warnings manipulation testing tools.Ramiro Morales
2013-01-31Fixed #19692 -- Completed deprecation of mimetype in favor of content_type.Aymeric Augustin
Thanks Tim for the report and initial patch.
2013-01-31Attempted to reduce version mismatch problems in the tutorial.Aymeric Augustin
2013-01-30Changed "versionadded" after the decision to backport.Aymeric Augustin
Refs #19076.
2013-01-30Fixed #19076 -- Added content_type attribute to TemplateView.Aymeric Augustin
Thanks Gavin Wahl.
2013-01-30Fixed #19160 -- Made lazy plural translations usable.Aymeric Augustin
Many thanks to Alexey Boriskin, Claude Paroz and Julien Phalip.
2013-01-29Fixed #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-29Fixed typos in docs and commentsTim Graham
2013-01-29Fixed #19690 - Removed unused importLucian Ursu
Removed an import of a class unused in the Ajax example.
2013-01-29Updated metrics on the documentation.Aymeric Augustin
2013-01-29Fixed #19683 - Added a missing import in signing example.Tim Graham
Thanks sunsongxp@ for the report.
2013-01-28Added HTML5 url input typeClaude Paroz
Refs #16630.
2013-01-28Added HTML5 email input typeClaude Paroz
Refs #16630.
2013-01-27Fixed two malformed links.Tim Graham
2013-01-26Fixed #19589 -- assertRegexpMatches is deprecated in Python 3.3.Aymeric Augustin
2013-01-25Moved has_changed logic from widget to form fieldClaude Paroz
Refs #16612. Thanks Aymeric Augustin for the suggestion.
2013-01-25Revert "Patch by Claude for #16084."Ramiro Morales
This reverts commit 2babab0bb351ff7a13fd23795f5e926a9bf95d22.
2013-01-25Added more shortcuts to i18n docs in index page.Ramiro Morales
2013-01-25Patch by Claude for #16084.Ramiro Morales
2013-01-25Fixed #19577 - Added HTML escaping to admin examples.Tim Graham
Thanks foo@ for the report and Florian Apolloner for the review.
2013-01-24Fixed #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-24Fixed #19639 - Updated contributing to reflect model choices best practices.Tim Graham
Thanks charettes.
2013-01-24Fixed a typo.Florian Apolloner
2013-01-24Fixed #17416 -- Added widgets argument to inlineformset_factory and ↵Nick Sandford
modelformset_factory
2013-01-23Fixed typo.Justin Bronn
2013-01-23Fixed #19610 - Added enctype note to forms topics doc.Tim Graham
Thanks will@ for the suggestion.
2013-01-22Fixed #19633 - Discouraged use of gunicorn's Django integration.Tim Graham
2013-01-22Fixed #19477 - Documented generic_inlineformset_factoryTim Graham
Thanks epicserve for the suggestion.
2013-01-22Fixed #19640 - Added inlineformset_factory to reference docs.Tim Graham
Thanks wim@ for the suggestion.
2013-01-20Added missing versionadded 1.6 to docs of earliest()Anssi Kääriäinen
Refs #17813
2013-01-20Fixed #17813 -- Added a .earliest() method to QuerySetNick 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-18Fixed #19628 - Noted that app for custom user model must be in INSTALLED_APPSTim Graham
Thanks dpravdin and Jordan Messina.
2013-01-18Fixed #19632 -- Bug in code sample.Aymeric Augustin
Thanks grossmanandy at bfusa com and Simon Charette.
2013-01-17Made (make|compile)messages commands accept multiple locales at once.Craig Blaszczyk
Thanks Craig Blaszczyk for the initial patch. Refs #17181.