| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-01-24 | Fixed #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-24 | Fixed #19639 - Updated contributing to reflect model choices best practices. | Tim Graham | |
| Thanks charettes. | |||
| 2013-01-24 | Fixed a typo. | Florian Apolloner | |
| 2013-01-24 | More i18n makemessages tests tweaks. | Ramiro Morales | |
| 2013-01-24 | Minor optimization in the static serve view. | Aymeric Augustin | |
| 2013-01-24 | Fixed #19125 -- The startproject command should validate the name earlier | Claude Paroz | |
| Thanks Łukasz Rekucki for the report and the patch. | |||
| 2013-01-24 | Fixed #17416 -- Added widgets argument to inlineformset_factory and ↵ | Nick Sandford | |
| modelformset_factory | |||
| 2013-01-23 | Fixed typo. | Justin Bronn | |
| 2013-01-23 | Fixed #19610 - Added enctype note to forms topics doc. | Tim Graham | |
| Thanks will@ for the suggestion. | |||
| 2013-01-22 | Merge pull request #666 from mjtamlyn/dup-select-related | Preston Holmes | |
| Remove dup_select_related method. | |||
| 2013-01-23 | Remove dup_select_related method. | Marc Tamlyn | |
| This undocumented method was used in an old version of the admin, is totally untested and hails from 2008. Although it's listed in the "public methods" section, as it's not documented or used I don't think it needs a deprecation path. If we think it's useful I'll write some tests/docs for it instead... | |||
| 2013-01-22 | Fixed #19633 - Discouraged use of gunicorn's Django integration. | Tim Graham | |
| 2013-01-22 | Fixed #19477 - Documented generic_inlineformset_factory | Tim Graham | |
| Thanks epicserve for the suggestion. | |||
| 2013-01-22 | Fixed #19640 - Added inlineformset_factory to reference docs. | Tim Graham | |
| Thanks wim@ for the suggestion. | |||
| 2013-01-22 | Fixed #19523 -- Improved performance of Django's bash completion | Anders Kaseorg | |
| Previous version took about 150ms to source, even on a warm cache, primarily because it forks+execs /usr/bin/basename 44 times. This patch makes it faster by a factor of 5 (and I imagine that a little more thought would reduce the time to effectively zero). | |||
| 2013-01-22 | Fixed #19596 -- Use `_default_manager` instead of `objects` in the auth app. | Florian Apolloner | |
| This is needed to support custom user models which don't define a manager named `objects`. | |||
| 2013-01-21 | Simplified a i18n test. | Ramiro Morales | |
| 2013-01-21 | Fixed error introduced when testing patch for 013db6ba85 | Claude Paroz | |
| Shame on me. | |||
| 2013-01-21 | Fixed #18051 -- Allowed admin fieldsets to contain lists | Claude Paroz | |
| Thanks Ricardo di Virgilio for the report, Mateus Gondim for the patch and Nick Sandford for the review. | |||
| 2013-01-21 | Fixed #19637 -- Ensured AdminEmailHandler fails silently | Claude Paroz | |
| Thanks lsaffre for the report. Refs #19325. | |||
| 2013-01-20 | Cleaned up testing models.py added for earliest() | Anssi Kääriäinen | |
| The main cleanup was removal of non-necessary __unicode__ method. The tests didn't break on py3 as the string representation was never used in the tests. Refs #17813. Thanks to Simon Charette for spotting this issue. | |||
| 2013-01-20 | Added missing versionadded 1.6 to docs of earliest() | Anssi Kääriäinen | |
| Refs #17813 | |||
| 2013-01-20 | Fixed #17813 -- Added a .earliest() method to QuerySet | Nick 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-19 | Fix in makemessages refactoring plus UI tweaks. | Ramiro Morales | |
| 2013-01-19 | Refactored makemessages command | Claude Paroz | |
| 2013-01-19 | Fixed #19606 -- Adjusted cx_Oracle unicode detection. | Jani Tiainen | |
| 2013-01-18 | Fixed #19628 - Noted that app for custom user model must be in INSTALLED_APPS | Tim Graham | |
| Thanks dpravdin and Jordan Messina. | |||
| 2013-01-18 | Fixed #19632 -- Bug in code sample. | Aymeric Augustin | |
| Thanks grossmanandy at bfusa com and Simon Charette. | |||
| 2013-01-18 | Removed models/related.py BoundRelatedObject | Anssi Kääriäinen | |
| The class wasn't used anywhere except in RelatedObject.bind(), which wasn't used anywhere. The class had one method defined as NotImplemented, yet the class wasn't subclassed anywhere. In short, the class was dead code. | |||
| 2013-01-18 | Avoided unnecessary recreation of RelatedObjects | Anssi Kääriäinen | |
| Refs #19399. Thanks to Track alias KJ for the patch. | |||
| 2013-01-17 | Made (make|compile)messages commands accept multiple locales at once. | Craig Blaszczyk | |
| Thanks Craig Blaszczyk for the initial patch. Refs #17181. | |||
| 2013-01-17 | Simplified i18n commands tests. | Ramiro Morales | |
| 2013-01-16 | Modified makemessages so it creates .pot files once per invocation. | Ramiro Morales | |
| It creates a `locale/django.pot` file once instead of one `locale/<locale_code>/django.pot` file for every locale involved. Thanks Michal Čihař for the report and patch. | |||
| 2013-01-16 | Fixed #17008 -- Added makemessages option to not remove .pot files. | Ramiro Morales | |
| Thanks airstrike for the report and initial patch, Julien for an enhanced patch and Jannis for reviewing. | |||
| 2013-01-15 | Fixed #19597 - Added some notes on jQuery in admin. | Tim Graham | |
| Thanks Daniele Procida. | |||
| 2013-01-15 | Merge pull request #649 from mattrobenolt/patch-1 | Aymeric Augustin | |
| Removed untested optional dependency on mx libraries. | |||
| 2013-01-15 | Kill mx.TextTools with fire | Matt Robenolt | |
| 2013-01-15 | Removed obsolete comment. | Aymeric Augustin | |
| These features are implemented, tracked in tickets, or not necessary. Thanks Bruno Renié. | |||
| 2013-01-15 | Fixed #19099 -- Split broken link emails out of common middleware. | Aymeric Augustin | |
| 2013-01-15 | Fixed a typo in the error reporting docs. | Aymeric Augustin | |
| 2013-01-15 | Removed some uses of the deprecated assertEquals | Alex Gaynor | |
| 2013-01-15 | Fixed #19614 -- Missing request argument in render call. | Aymeric Augustin | |
| Thanks Dima Pravdin for the report. | |||
| 2013-01-15 | Clarified WizardView.get_form_prefix doc, refs #19024 | Tim Graham | |
| 2013-01-15 | Fixed #19605 - Removed unused url imports from doc examples. | Tim Graham | |
| Thanks sergzach for the suggestion. | |||
| 2013-01-15 | Fixed #19092 -- Completed Lithuanian date/time formats | Claude Paroz | |
| Thanks Tadas Dailyda for the report and the patch. | |||
| 2013-01-14 | Merge pull request #642 from dcramer/patch-1 | Alex Gaynor | |
| Send post_delete signals immediately | |||
| 2013-01-14 | Improve test to ensure that post_delete was actually called | David Cramer | |
| 2013-01-14 | Move logic seperation as its not longer repetitive | David Cramer | |
| 2013-01-14 | Move signal disconnect into finally block | David Cramer | |
| 2013-01-14 | Add David Cramer to AUTHORS | David Cramer | |
