| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-07-25 | Ticket 18667: fix typo in CBV doc | Yohan Boniface | |
| 2012-07-25 | Update docs/topics/signals.txt | nklas | |
| Fixed a typo. | |||
| 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-24 | Fixed #18271 -- Changed stage at which TransactionTestCase flushes DB tables. | Ramiro Morales | |
| Previously, the flush was done before the test case execution and now it is performed after it. Other changes to the testing infrastructure include: * TransactionTestCase now doesn't reset autoincrement sequences either (previous behavior can achieved by using `reset_sequences`.) With this, no implicit such reset is performed by any of the provided TestCase classes. * New ordering of test cases: All unittest tes cases are run first and doctests are run at the end. THse changes could be backward-incompatible with test cases that relied on some kind of state being preserved between tests. Please read the relevant sections of the release notes and testing documentation for further details. Thanks Andreas Pelme for the initial patch. Karen Tracey and Anssi Kääriäinen for the feedback and Anssi for reviewing. This also fixes #12408. | |||
| 2012-07-25 | Fixed a small typo. | nklas | |
| 2012-07-22 | Fixed a broken link in the Python 3 docs. | Aymeric Augustin | |
| Thanks ptone for the report. | |||
| 2012-07-22 | Documentation: Fix link to uWSGI deployment | Roman Haritonov | |
| 2012-07-22 | [py3] Documented coding guidelines for Python 3. | Aymeric Augustin | |
| 2012-07-22 | [py3] Bundled six for Python 3 compatibility. | Aymeric Augustin | |
| Refs #18363. | |||
| 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-18 | BaseCache now has a no-op close method as per ticket #18582 | Mike Grouchy | |
| Also removed the hasattr check when firing request_finished signal for caches with a 'close' method. Should be safe to call `cache.close` everywhere now | |||
| 2012-07-18 | Update my bio. | Alex Gaynor | |
| 2012-07-18 | Updated my bio. | Jannis Leidel | |
| 2012-07-18 | Added myself to internals/committers.txt. | Florian Apolloner | |
| 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-16 | Fixed #3881 -- skip saving session when response status is 500 | Anssi Kääriäinen | |
| Saving session data is somewhat likely to lead into error when the status code is 500. It is guaranteed to lead into error if the reason for the 500 code is query error on PostgreSQL. | |||
| 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 #18626 -- rst syntax collision. | Aymeric Augustin | |
| 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-14 | Fixed a misplaced Sphinx reference. | Aymeric Augustin | |
| 2012-07-13 | Updated links for MacOSX python installers | Claude Paroz | |
| 2012-07-13 | Fixed #18601 -- Specified that Python minimum version is 2.6.5 | Preston Holmes | |
| This is due to a bug in previous Python 2.6 versions related to unicode keyword arguments. | |||
| 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-11 | Merge pull request #197 from StefanKjartansson/master | Adrian Holovaty | |
| Fixed typo in docs | |||
| 2012-07-11 | fixed a typo in timezones docs. | mitnk | |
| 2012-07-10 | typo in "django/docs/topics/python3.txt" | Stefan Kjartansson | |
| 2012-07-08 | Fixed #18577 - Clarified middleware initialization. | Tim Graham | |
| Thanks Lukasz Balcerzak for the patch. | |||
| 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 | Fixed #18589 -- Typo in generic CBV docs. | Aymeric Augustin | |
| Thanks cpthomas for the report. | |||
| 2012-07-07 | Removed Django 1.0-specific sections. | Aymeric Augustin | |
| 2012-07-07 | Fixed #18587 -- Typo in management command example | Aymeric Augustin | |
| Thanks Frank Wiles. | |||
| 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-06 | Merge pull request #183 from rpedigoni/master | Adrian Holovaty | |
| Fixed typo in 1.5 release notes | |||
| 2012-07-06 | Merge pull request #187 from evildmp/docs_typos | Adrian Holovaty | |
| Added a missing \ in uwsgi docs. Thanks, evildmp. | |||
| 2012-07-06 | Fixed #18576 -- Added missing import in tutorial02 | Claude Paroz | |
| Thanks jaaruiz at yahoo.com for the report. | |||
| 2012-07-06 | restored a missing \ in uwsgi docs | Daniele Procida | |
| 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-04 | fixed typo | Renato Pedigoni | |
| 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 | |
