| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-07-28 | Fixed #18656 -- Fixed LocaleMiddleware link; thanks mitar for the report. | Tim Graham | |
| 2012-07-25 | Updated example of customized ModelAdmin in documentation for 1.4 | Rafik Draoui | |
| The change_view method of django.contrib.admin.ModelAdmin takes an extra `form_url` argument in Django 1.4. | |||
| 2012-07-25 | Merge pull request #220 from dirn/staticfiles-docs-typo | Florian Apolloner | |
| Fix typo in staticfiles app documentation | |||
| 2012-07-25 | Merge pull request #230 from pjdelport/cleanup | Alex Gaynor | |
| Cleanup | |||
| 2012-07-25 | Merge pull request #232 from yohanboniface/ticket18667 | Alex Gaynor | |
| Ticket 18667: fix typo in CBV doc | |||
| 2012-07-25 | Merge pull request #231 from kevin1024/master | James Bennett | |
| Documentation fix - Change the word "brackets" to "parentheses" | |||
| 2012-07-25 | Fixed a typo in the admin reference docs. | Aymeric Augustin | |
| Thanks Yohan Boniface for the report. | |||
| 2012-07-25 | Ticket 18667: fix typo in CBV doc | Yohan Boniface | |
| 2012-07-24 | Changed the word "brackets" to "parentheses" | Kevin McCarthy | |
| I want to change the word "brackets" to "parentheses" because when I think of brackets, I think of [], and when I think of parentheses, I think of (), and when I originally read this, I found the word confusing. | |||
| 2012-07-24 | Clarified default name of M2M relationship DB table. | Ramiro Morales | |
| 2012-07-25 | Fix typo. | Piet Delport | |
| 2012-07-18 | Fix typo in staticfiles app documentation | Andy Dirnberger | |
| In the documentation for the `static` template tag, a `::` was used prior to a `code-block`. Doing so caused the `code-block` line to render as code. Changing the `::` to `:` corrects the display. | |||
| 2012-07-17 | Merge pull request #215 from mgrouchy/add-interpreter-options | Alex Gaynor | |
| Adds interpreter option to shell command as per ticket #18639 | |||
| 2012-07-17 | Adds interpreter option to shell command as per ticket #18639 | Mike Grouchy | |
| Specify python interpreter interface ipython or bpython with the -i, --interface options argument. ex// python manage.py shell -i bpython ex// python manage.py shell --interface bpython Like all other options, defaults to default python interpreter when your selected choice isn't available. updated documentation where appropriate | |||
| 2012-07-17 | Fixed #17788 -- Added batch_size argument to qs.bulk_create() | Anssi Kääriäinen | |
| The qs.bulk_create() method did not work with large batches together with SQLite3. This commit adds a way to split the bulk into smaller batches. The default batch size is unlimited except for SQLite3 where the batch size is limited to 999 SQL parameters per batch. Thanks to everybody who participated in the discussions at Trac. | |||
| 2012-07-15 | Changed myapps.models.py to myapps/models.py | Daniel Greenfeld | |
| 2012-07-15 | Added mention in MRO section about method/attribute inheritence. Added ↵ | Daniel Greenfeld | |
| simple examples to Generic editing views, added index to Generic editing views and Editing mixins, added missing template_name_suffix attribute to Generic editing views. | |||
| 2012-07-15 | Dropped support for GDAL < 1.5 | Claude Paroz | |
| GDAL 1.5 has been released in December 2007. | |||
| 2012-07-15 | Fixed #18625 -- Removed old-style use of url tag | Aymeric Augustin | |
| from the documentation. | |||
| 2012-07-14 | Deprecate two methods (which I seriously doubt anyone ever used, but they ↵ | Alex Gaynor | |
| were documented so...) because they cannot be implemented efficiently on top of collections.SortedDict in Python 2.7 and up. | |||
| 2012-07-13 | Updated links for MacOSX python installers | Claude Paroz | |
| 2012-07-12 | Fixed #18617 -- Highlighted that the app_directories template loader depends ↵ | Aymeric Augustin | |
| on the order of INSTALLED_APPS. Thanks evildmp for the patch. | |||
| 2012-07-12 | Removed old gis install instructions for obsolete distros | Claude Paroz | |
| 2012-07-08 | Fixed #18173 - Corrected ModelAdmin documentation for get_changelist. | Tim Graham | |
| Thanks Keryn Knight for the report and vanessagomes for the patch. | |||
| 2012-07-08 | Fixed #18374 -- Explained "corrupt image" error | Aymeric Augustin | |
| Thanks fabian and charettes. | |||
| 2012-07-07 | Fixed #18164 -- Precised startapp template context content | Claude Paroz | |
| 2012-07-07 | Removed Django 1.0-specific sections. | Aymeric Augustin | |
| 2012-07-07 | Fixed #18254 -- Added ability to the static template tags to store the ↵ | Jannis Leidel | |
| result in a contextt variable. Many thanks to Andrei Antoukh for the initial patch. | |||
| 2012-07-05 | Fixed #17997 - Documented that the debug server is now multithreaded by default. | Tim Graham | |
| Thanks trey.smith@ for the report and vanessagomes for the patch. | |||
| 2012-07-03 | Added 'format_html' utility for formatting HTML fragments safely | Luke Plant | |
| 2012-07-03 | Documented utils.html.escape and conditional_escape | Luke Plant | |
| 2012-07-01 | Fixed #17436 - Added warning about overriding Model.__init__() | Tim Graham | |
| Thanks zsiciarz for the draft patch. | |||
| 2012-07-01 | Fixed #16882 - Clarified why one should not use 'init_command' after initial ↵ | Tim Graham | |
| database creation. | |||
| 2012-06-30 | Fixed #18145 -- Improved documentation of unique_together type fields | Raúl Cumplido | |
| 2012-06-30 | Fixed #17026 -- Improved wording of contrib.messages' storage backends section | Claude Paroz | |
| 2012-06-30 | Fixed #16519 -- Deprecated mimetype kwarg of HttpResponse __init__ | Claude Paroz | |
| This keyword was already deprecated in the code (supported for backwards compatibility only), but never formally deprecated. Thanks Paul McMillan for the report and yasar11732 for the initial patch. | |||
| 2012-06-28 | Fixed a formatting issue in the CBV docs. | Aymeric Augustin | |
| 2012-06-28 | Fixed #18306 -- Removed most of GeoDjango-specific deployment docs | Claude Paroz | |
| 2012-06-28 | Updated obsolete links in the documentation | Claude Paroz | |
| 2012-06-27 | Fixed #17511 - Removed reference to deprecated "reset" management command in ↵ | Tim Graham | |
| FAQ; thanks voxpuibr@ for the report. | |||
| 2012-06-26 | Fixed #17485 -- Made defer work with select_related | Anssi Kääriäinen | |
| This commit tackles a couple of issues. First, in certain cases there were some mixups if field.attname or field.name should be deferred. Field.attname is now always used. Another issue tackled is a case where field is both deferred by .only(), and selected by select_related. This case is now an error. A lot of thanks to koniiiik (Michal Petrucha) for the patch, and to Andrei Antoukh for review. | |||
| 2012-06-23 | Updated TEMPLATE_CONTEXT_PROCESSORS defaults in the docs. | jnns | |
| django.core.context_processors.tz was missing from default TEMPLATE_CONTEXT_PROCESSORS in the template api documentation. | |||
| 2012-06-22 | Corrected the `instance_dict` description for form wizards. | Florian Apolloner | |
| 2012-06-19 | Fixed a documentation typo on the widget page. | Tim Saylor | |
| 2012-06-19 | Fixed #14502 again -- saner verbatim closing token | Chris Beaven | |
| Previously, the closing token for the verbatim tag was specified as the first argument of the opening token. As pointed out by Jannis, this is a rather major departure from the core tag standard. The new method reflects how you can give a specific closing name to {% block %} tags. | |||
| 2012-06-18 | Fixed #18444 -- Replace hard coded "View on Site" URLs | Daniel Hepper | |
| 2012-06-11 | Fixed #18451 -- Vastly improved class based view documentation. | Jannis Leidel | |
| Many thanks to Daniel Greenfeld, James Aylett, Marc Tamlyn, Simon Williams, Danilo Bargen and Luke Plant for their work on this. | |||
| 2012-06-08 | Cleaned whitespace errors introduced in previous commit | Anssi Kääriäinen | |
| 2012-06-08 | Fixed #18399 – Added a way to get ContentTypes for proxy models | Simon Charette | |
| Added kwargs for_concrete_model and for_concrete_models to ContentType methods get_for_model() and get_for_models(). By setting the flag to False, it is possible to get the contenttype for proxy models. | |||
| 2012-06-07 | Fixed #18445 -- Added a links in the docs. | Aymeric Augustin | |
| Thanks Audrey Roy for the patch. | |||
