| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-08-12 | Fixed #18306 -- Made deferred models issue update_fields on save | Andrei Antoukh | |
| Deferred models now automatically update only the fields which are loaded from the db (with .only() or .defer()). In addition, any field set manually after the load is updated on save. | |||
| 2012-08-12 | [py3] Added python_2_unicode_compatible decorator. | Aymeric Augustin | |
| 2012-08-10 | Create headings and expand CBV docs so that the "Built-In CBV" docs include ↵ | Issac Kelly | |
| a complete list. | |||
| 2012-08-09 | Clarified thread safety note in class based views; thanks rafadura for the ↵ | Tim Graham | |
| patch. | |||
| 2012-08-08 | Fix #18062: Document best practices for choices in model fields. | James Bennett | |
| 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-05 | Fixed a rst error introduced in f2abfe1e. | Aymeric Augustin | |
| 2012-08-05 | Merge pull request #233 from rafikdraoui/modeladmin-doc | Tim Graham | |
| Updated example of customized ModelAdmin in documentation for 1.4 | |||
| 2012-08-04 | Small improvement to the `contrib.messages` doc introduction. | Julien Phalip | |
| 2012-08-04 | Added a missing space to the description of the `cut` filter. | Florian Apolloner | |
| 2012-08-04 | Merge pull request #210 from pydanny/ticket_18632 | Alex Gaynor | |
| Ticket 18632 Cleanup of CBV edit/edit mixin documentation. | |||
| 2012-08-04 | For #210, cleaned up text and formatting. | Daniel Greenfeld | |
| 2012-08-04 | Fixed #18713 -- Fixed custom comment app name in comments docs | Claude Paroz | |
| Thanks Pratyush for the report. | |||
| 2012-08-04 | Fixed #5524 -- Do not remove cleaned_data when a form fails validation | Claude Paroz | |
| cleaned_data is no longer deleted when form validation fails but only contains the data that did validate. Thanks to the various contributors to this patch (see ticket). | |||
| 2012-08-03 | Fixed #15932 - Documented how to supress multiple reverse relations to the ↵ | Tim Graham | |
| same model. Thanks Claude Paroz for the patch. | |||
| 2012-08-03 | [py3] Removed uses of sys.maxint under Python 3. | Aymeric Augustin | |
| Also fixed #18706: improved exceptions raised by int_to_base36. | |||
| 2012-08-03 | Fixed #13904 - Documented how to avoid garbage collection messages in GIS. | Tim Graham | |
| Thanks Claude Peroz for the patch. | |||
| 2012-08-02 | Fixed #16941 - Clarified naturaltime output when the time is more than a day ↵ | Tim Graham | |
| old. Thanks antoviaque for the patch. | |||
| 2012-08-02 | Fixed #18581 - Updated admin actions screenshots. Thanks Kevin London. | Tim Graham | |
| 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 | |
