| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-08-04 | For #210, cleaned up text and formatting. | Daniel Greenfeld | |
| 2012-08-04 | Merge pull request #153 from webjunkie/patch-1 | Tim Graham | |
| Fixed #18110 -- Improve template cache tag documentation | |||
| 2012-08-04 | Merge pull request #244 from mbrochh/master | Tim Graham | |
| Fixed small typo in class based view docs. | |||
| 2012-08-04 | Fixed #16980 - Misc updates to the auth docs. Thanks Preston Holmes for the ↵ | Tim Graham | |
| patch. | |||
| 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-04 | Fixed #18700 -- Added URL reversal for i18n set_language view. | Simon Meers | |
| 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 | Documented the trick used in 9908201d7f. | Aymeric Augustin | |
| 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 #17704 - Updated the StackedInline section in Tutorial 2; thanks xbito ↵ | Tim Graham | |
| for the draft 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-08-02 | Update docs/topics/class-based-views/index.txt | Martin Brochhaus | |
| Fixed a small typo: "We can use create" should be "We can create" | |||
| 2012-08-02 | Fixed #18472 - Added warning regarding set_language / i18n_patterns. | Simon Meers | |
| 2012-08-02 | Reinstated Pinax link that was still in use by others. | Simon Meers | |
| 2012-08-01 | Fixed #16168 - Added note regarding type requirements when overridng ↵ | Tim Graham | |
| ModelForm fields. Thanks Pieter Swinkels for the patch. | |||
| 2012-07-31 | Fixed #18122 - Clarified section title regarding applying permissions to ↵ | Tim Graham | |
| generic views. | |||
| 2012-07-30 | Fixed #17131 - Added per object permission notes to docs. | Tim Graham | |
| Thanks dchandek for the suggestion and mateusgondim for the patch. | |||
| 2012-07-29 | Updated my bio. | Justin Bronn | |
| 2012-07-29 | Fixed #18476 - Added use of {% url %} tag to tutorial. | Tim Graham | |
| Thanks Claude Paroz for the patch. | |||
| 2012-07-28 | Fixed #18656 -- Fixed LocaleMiddleware link; thanks mitar for the report. | Tim Graham | |
| 2012-07-28 | Fixed #18630 -- Updated version in docs/intro/install.txt; thanks Kevin London. | Tim Graham | |
| 2012-07-25 | [py3] Updated dict-like data structures for Python 3. | Aymeric Augustin | |
| The keys/items/values methods return iterators in Python 3, and the iterkeys/items/values methods don't exist in Python 3. The behavior under Python 2 is unchanged. | |||
| 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 | Fixed #18614 -- Added missing imports in code samples. | Florian Apolloner | |
| 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 #224 from reclosedev/patch-1 | Florian Apolloner | |
| Documentation: Fix link to uWSGI deployment | |||
| 2012-07-25 | Merge pull request #230 from pjdelport/cleanup | Alex Gaynor | |
| Cleanup | |||
| 2012-07-25 | Merge pull request #228 from nklas/master | Alex Gaynor | |
| Documentation: Fixed a typo in docs/releases/1.4.txt | |||
| 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-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 | |
