summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-05-18Merge pull request #24 from marcneuwirth/masterAdrian Holovaty
Removed 'return false' in favor of preventDefault in admin JS.
2012-05-18Merge pull request #68 from BooBSD/patch-1Adrian Holovaty
Fixed e-mail duplicates in the AUTHORS.
2012-05-18Merge pull request #70 from tswicegood/fix-js-scopeAdrian Holovaty
Cleaned up various JavaScript in admin JS.
2012-05-18Merge pull request #79 from stratoukos/masterAdrian Holovaty
Removed mention of djangoproject.com from cbv topic
2012-05-18Cleaned up WSGIRequestHandler get_environ to be Python 3 compatibleClaude Paroz
headers.type/typeheader attributes are gone in Python 3. Thanks Vinay Sajip for the inspiration of his Python 3 branch.
2012-05-18Added more relative imports in contrib.gis.Claude Paroz
2012-05-18Got rid of old __cmp__methods replaced by rich comparison.Claude Paroz
The __cmp__ methods are unsupported in Python 3. _doctest.py has been left untouched because it is likely it will not be migrated to Python 3.
2012-05-18Fixed broken ES localflavor test after 4774875.Claude Paroz
2012-05-18remove mention of djangoproject.com from cbv topicStratos Moros
The class based views topic mentions that the djangoproject.com weblog is built using the date-based generic views, but looking at the code, it actually uses the deprecated pre-1.3 function based generic views.
2012-05-18Fixed #18334 -- Fixed detection of supports_stddev backend feature.Claude Paroz
Thanks to Michael Manfre for the report and Anssi Kääriäinen for the review.
2012-05-18Small change to a template in the FormWizard docsChris Beaven
Specifically, the template was referred to as a "full example template" but didn't {% load i18n %} even though {% trans %} was used.
2012-05-17Added load i18n code to the base wizard form template documentation as it ↵Jeremy Cowgar
uses the trans tag.
2012-05-17Fixed #6916 -- Wrong spelling of Spanish province.Aymeric Augustin
2012-05-17Added a test for DayArchiveView. Refs #17192.Aymeric Augustin
2012-05-17Fixed #18323 -- Refactored date arithmeticAymeric Augustin
in date based generic views, in order to deal properly with both DateFields and DateTimeFields.
2012-05-17Fixed #9893 -- Validated the length of file namesAymeric Augustin
after the full file name is generated by the storage class. Thanks Refefer for the report, carsongee for the patch, and everyone else involved in the discussion.
2012-05-17Mentioned the previous commit in the release notesAymeric Augustin
2012-05-17Fixed #17449 -- Added OPTIONS to generic views.Aymeric Augustin
Thanks estebistec for the report and patch.
2012-05-17Fixed #17535 -- Optimized list generic views.Aymeric Augustin
When allow_empty is False, prevented the view from loading the entire queryset in memory when pagination is enabled.
2012-05-17Fixed #18326 -- Stripped ending chars in LiveServerViews tests.Claude Paroz
Ending chars might be different depending on git crlf setting. Thanks Michael Manfre for the report and the patch.
2012-05-16Hidden __pycache__ dirs for FilePathField. Refs #17393.Claude Paroz
This will be tested as soon as tests will run under Python 3. Patch taken from Vinay Sajip's Python 3 branch.
2012-05-16Swap out to === for the true comparison to avoid possible coercion issuesTravis Swicegood
2012-05-16Add missing semi-colonsTravis Swicegood
2012-05-16Remove `var` declaration---this variable is already delcared as an argumentTravis Swicegood
2012-05-16Make sure these functions don't bleed into the global scopeTravis Swicegood
This makes sure that all of these functions are assigned to variables assigned to the current scope, rather than the global scope. It also adds a trailing semi-colon to make sure various linters are happy.
2012-05-16Fixing my e-mail duplicates.Boo
2012-05-16Merge pull request #43 from techtonik/patch-1Adrian Holovaty
Fixed #18267 -- document `settings.configured` property.
2012-05-16Fix issue #18267 - document `settings.configured` property.anatoly techtonik
2012-05-16Fixed #17896 -- Added file_hash method to CachedStaticFilesStorage to be ↵Jannis Leidel
able to customize the way the hashed name of a file is created. Thanks to mkai for the initial patch.
2012-05-15Updated installation instructions.Aymeric Augustin
Django 1.5 requires Python 2.6 or 2.7, and setup.py install over a previous installation doesn't work.
2012-05-15Fixed #18019 -- Use threaded runserver only when database supports it.Claude Paroz
2012-05-14Fixed #10890: added prev/next_week in the contextAymeric Augustin
of per-week date-based generic views. Thanks ee_lars for the report.
2012-05-12Replaced im_func and im_self by __func__ and __self__.Claude Paroz
The new names are Python 3 compatible.
2012-05-12Added missing relative imports in test files.Claude Paroz
2012-05-12Avoided test failure on MySQL by skipping a failing testAnssi Kääriäinen
MySQL generates an extra query in inheritance cases when doing an update. This results in a test failure when checking for number of queries in update_only_fields tests. Added a skip temporarily to avoid this test failure. Refs #18304.
2012-05-12Fixed #4102 -- Allow update of specific fields in model.save()Andrei Antoukh
Added the ability to update only part of the model's fields in model.save() by introducing a new kwarg "update_fields". Thanks to all the numerous reviewers and commenters in the ticket
2012-05-12Removed 'return false' in favor of preventDefault.Marc Neuwirth
Moved preventDefault to the top
2012-05-11Fixed typo in utils/archive.py docstringAdrian Holovaty
2012-05-11Fixed #18301 -- Fixed url name in password reset example.Claude Paroz
Thanks nicknnn for the report.
2012-05-11Fixed #18281 -- Misleading wording in the tutorial.Aymeric Augustin
Thanks bhp for the report.
2012-05-11Fixed #18298 -- Marked error strings as translatable in CA localflavor.Tyler Ball
2012-05-10Fixed #17518 -- CSS glitch in StackedInline.Aymeric Augustin
Thanks sebastian for the report and patch.
2012-05-10Fixed #16335 -- Clarified an unintuitive behavior.Aymeric Augustin
The DTL will perform dict lookup before method lookup, which yields an unexpected result for defaultdicts.
2012-05-10Fixed #17798 -- Tweaked the CA localflavor.Aymeric Augustin
Thanks shelldweller.
2012-05-10Fixed #17950 -- Warned about usability limits of ModelChoiceField.Aymeric Augustin
Thanks poirier for the report.
2012-05-10Fixed #18093 -- Added a pk to AnonymousUser.Aymeric Augustin
2012-05-10Fixed #18257 -- Typo in contenttypes docs.Aymeric Augustin
2012-05-10Replaced foo.next() by next(foo).Claude Paroz
This new syntax for next() has been introduced in Python 2.6 and is compatible with Python 3.
2012-05-10Set the post process cache when finished instead of one by one.Jannis Leidel
This should prevent a race condition if running collectstatic is canceled or its cache is accessed from other processes, leaving the cache in a corrupt state.
2012-05-09Fix proxy model Query.remove_inherited_models()Anssi Kääriäinen
Fixed #18248 -- proxy models were added to included_inherited_models in sql.query.Query. The variable is meant to be used for multitable inheritance only. This mistake caused problems in situations where proxy model's query was reused.