summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-01-24Fixed #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-24Fixed #19639 - Updated contributing to reflect model choices best practices.Tim Graham
Thanks charettes.
2013-01-24Fixed a typo.Florian Apolloner
2013-01-24More i18n makemessages tests tweaks.Ramiro Morales
2013-01-24Minor optimization in the static serve view.Aymeric Augustin
2013-01-24Fixed #19125 -- The startproject command should validate the name earlierClaude Paroz
Thanks Łukasz Rekucki for the report and the patch.
2013-01-24Fixed #17416 -- Added widgets argument to inlineformset_factory and ↵Nick Sandford
modelformset_factory
2013-01-23Fixed typo.Justin Bronn
2013-01-23Fixed #19610 - Added enctype note to forms topics doc.Tim Graham
Thanks will@ for the suggestion.
2013-01-22Merge pull request #666 from mjtamlyn/dup-select-relatedPreston Holmes
Remove dup_select_related method.
2013-01-23Remove 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-22Fixed #19633 - Discouraged use of gunicorn's Django integration.Tim Graham
2013-01-22Fixed #19477 - Documented generic_inlineformset_factoryTim Graham
Thanks epicserve for the suggestion.
2013-01-22Fixed #19640 - Added inlineformset_factory to reference docs.Tim Graham
Thanks wim@ for the suggestion.
2013-01-22Fixed #19523 -- Improved performance of Django's bash completionAnders 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-22Fixed #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-21Simplified a i18n test.Ramiro Morales
2013-01-21Fixed error introduced when testing patch for 013db6ba85Claude Paroz
Shame on me.
2013-01-21Fixed #18051 -- Allowed admin fieldsets to contain listsClaude Paroz
Thanks Ricardo di Virgilio for the report, Mateus Gondim for the patch and Nick Sandford for the review.
2013-01-21Fixed #19637 -- Ensured AdminEmailHandler fails silentlyClaude Paroz
Thanks lsaffre for the report. Refs #19325.
2013-01-20Cleaned 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-20Added missing versionadded 1.6 to docs of earliest()Anssi Kääriäinen
Refs #17813
2013-01-20Fixed #17813 -- Added a .earliest() method to QuerySetNick 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-19Fix in makemessages refactoring plus UI tweaks.Ramiro Morales
2013-01-19Refactored makemessages commandClaude Paroz
2013-01-19Fixed #19606 -- Adjusted cx_Oracle unicode detection.Jani Tiainen
2013-01-18Fixed #19628 - Noted that app for custom user model must be in INSTALLED_APPSTim Graham
Thanks dpravdin and Jordan Messina.
2013-01-18Fixed #19632 -- Bug in code sample.Aymeric Augustin
Thanks grossmanandy at bfusa com and Simon Charette.
2013-01-18Removed models/related.py BoundRelatedObjectAnssi 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-18Avoided unnecessary recreation of RelatedObjectsAnssi Kääriäinen
Refs #19399. Thanks to Track alias KJ for the patch.
2013-01-17Made (make|compile)messages commands accept multiple locales at once.Craig Blaszczyk
Thanks Craig Blaszczyk for the initial patch. Refs #17181.
2013-01-17Simplified i18n commands tests.Ramiro Morales
2013-01-16Modified 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-16Fixed #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-15Fixed #19597 - Added some notes on jQuery in admin.Tim Graham
Thanks Daniele Procida.
2013-01-15Merge pull request #649 from mattrobenolt/patch-1Aymeric Augustin
Removed untested optional dependency on mx libraries.
2013-01-15Kill mx.TextTools with fireMatt Robenolt
2013-01-15Removed obsolete comment.Aymeric Augustin
These features are implemented, tracked in tickets, or not necessary. Thanks Bruno Renié.
2013-01-15Fixed #19099 -- Split broken link emails out of common middleware.Aymeric Augustin
2013-01-15Fixed a typo in the error reporting docs.Aymeric Augustin
2013-01-15Removed some uses of the deprecated assertEqualsAlex Gaynor
2013-01-15Fixed #19614 -- Missing request argument in render call.Aymeric Augustin
Thanks Dima Pravdin for the report.
2013-01-15Clarified WizardView.get_form_prefix doc, refs #19024Tim Graham
2013-01-15Fixed #19605 - Removed unused url imports from doc examples.Tim Graham
Thanks sergzach for the suggestion.
2013-01-15Fixed #19092 -- Completed Lithuanian date/time formatsClaude Paroz
Thanks Tadas Dailyda for the report and the patch.
2013-01-14Merge pull request #642 from dcramer/patch-1Alex Gaynor
Send post_delete signals immediately
2013-01-14Improve test to ensure that post_delete was actually calledDavid Cramer
2013-01-14Move logic seperation as its not longer repetitiveDavid Cramer
2013-01-14Move signal disconnect into finally blockDavid Cramer
2013-01-14Add David Cramer to AUTHORSDavid Cramer