summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-01-14Send post_delete signals immediatelyDavid Cramer
In a normal relational construct, if you're listening for an event that signals a child was deleted, you dont expect that the parent was deleted already. This change ensures that post_delete signals are fired immediately after objects are deleted in the graph.
2013-01-13Added details on minified jQuery and DEBUG mode for contrib.admin.Tim Graham
Thanks Daniele Procida.
2013-01-13Fixed typo in file storage docs.Aymeric Augustin
Thanks Jørgen Abrahamsen.
2013-01-12Fixed #14633 - Organized settings reference docs and added a topical index.Tim Graham
Thanks Gabriel Hurley for the original idea and adamv for the draft patch.
2013-01-12Fixed #17574 -- Implemented missing get_key_columns in PostgreSQL backendClaude Paroz
2013-01-12Return namedtuple from get_table_descriptionClaude Paroz
We don't make use of it currently to not break third-party db backends.
2013-01-12Fixed #19024 -- Corrected form wizard docs for get_form_prefix.Stephan Jaekel
2013-01-12Fixed #18026 -- Don't return an anonymous dict if extra_data in storage is ↵Stephan Jaekel
empty.
2013-01-11Removed some now dead code from deletion (thanks to Carl Meyer for noticing it).Alex Gaynor
2013-01-11Fixed #19488 -- Made i18n_patterns redirect work with non-slash-ending pathsClaude Paroz
Thanks Daniel Gerzo for the report and the initial patch.
2013-01-11Fixed #19585 -- Fixed loading cookie value as a dictClaude Paroz
This regression was introduced by the 'unicode_literals' patch.
2013-01-11Fixed #4833 -- Validate email addresses with localhost as domainClaude Paroz
2013-01-11Minor DEBUG setting reference formatting edit.Ramiro Morales
2013-01-11Fixed code examples in which render() calls were missing `request` parameter.Vinod Kurup
2013-01-11Made dev server autoreloader ignore filenames reported as None.Thomas Bartelmess
Useful under Jython. Thanks Thomas Bartelmess for the report and patch. Ref #9589.
2013-01-11Fixed #19360 -- Raised an explicit exception for aggregates on date/time ↵Nick Sandford
fields in sqlite3 Thanks lsaffre for the report and Chris Medrela for the initial patch.
2013-01-11Adapted test assertion against yaml dumpClaude Paroz
Fixes #12914 (again).
2013-01-11Fixed #19437 - Clarified pip install instructions in contributing tutorial.Tim Graham
2013-01-11Fixed #10239 - Added docs for modelform_factoryTim Graham
Thanks ingenieroariel for the suggestion and slurms for the review.
2013-01-10Fixed #19588 - Added create_superuser to UserManager docs.Tim Graham
Thanks minddust for the report.
2013-01-10Fixed #19573 -- Allow override of username field label in AuthenticationFormNick Sandford
2013-01-09Fixed #19581 -- ensure unique html ids with CheckboxSelectMultiple widgetsLoic Raucy
ID check is now done the same way as MultipleHiddenInput.
2013-01-09Addeded CSS to bold deprecation notices.Tim Graham
Thanks Sam Lai for mentioning this on the mailing list.
2013-01-09Fixed #19586 - Removed URL_VALIDATOR_USER_AGENT from setting docs.Tim Graham
It was removed in Django 1.5, not deprecated.
2013-01-09Fixed lockups in jenkins, refs #19546.Florian Apolloner
2013-01-09Skipped deprecation warning test on Python 2.6Claude Paroz
Refs #19546. On Python 2.6, DeprecationWarnings are visible by default.
2013-01-09Remove inaccurate comment regarding language names.Carl Meyer
2013-01-09Fixed #19546 - ensure that deprecation warnings are shown during testsPreston Holmes
refs #18985
2013-01-08Added sphinx substitutions in place of hardcoded version numbers.Tim Graham
Refs #19571
2013-01-08Fixed #19555 - Removed '2012' from tutorial 1.Tim Graham
Thanks rodrigorosa.lg and others for the report.
2013-01-08Fixed #19576 -- Use `six.with_metaclass` uniformously accross code base.Simon Charette
2013-01-08Fixed #17541 -- Fixed non-saved/nullable fk queryingAnssi Kääriäinen
2013-01-08Updated deprecated test assertionsClaude Paroz
2013-01-08Fixed #16759 -- Remove use of __deepcopy__ in qs.clone()Anssi Kääriäinen
The original problem was that queryset cloning was really expensive when filtering with F() clauses. The __deepcopy__ went too deep copying _meta attributes of the models used. To fix this the use of __deepcopy__ in qs cloning was removed. This commit results in some speed improvements across the djangobench benchmark suite. Most query_* tests are 20-30% faster, save() is 50% faster and finally complex filtering situations can see 2x to order of magnitude improvments. Thanks to Suor, Alex and lrekucki for valuable feedback.
2013-01-07Fixed typo in 1.5 release notes; thanks Jonas Obrist.Carl Meyer
2013-01-07Created special PostgreSQL text indexes when unique is TrueClaude Paroz
Refs #19441.
2013-01-06Fixed #19571 -- Updated runserver output in the tutorialClaude Paroz
2013-01-06Tests for various emptyqs ticketsAnssi Kääriäinen
The tickets are either about different signature between qs.none() and qs or problems with subclass types (either EmptyQS overrided the custom qs class, or EmptyQS was overridden by another class - values() did this). Fixed #15959, fixed #17271, fixed #17712, fixed #19426
2013-01-06Fixed #19173 -- Made EmptyQuerySet a marker class onlyAnssi Kääriäinen
The guarantee that no queries will be made when accessing results is done by new EmptyWhere class which is used for query.where and having. Thanks to Simon Charette for reviewing and valuable suggestions.
2013-01-05Fixed #12914 -- Use yaml faster C implementation when availableClaude Paroz
Thanks Beuc for the report and the initial patch.
2013-01-04Fixed #19562 -- cleaned up password storage docsPreston Holmes
2013-01-04Fixed #19192 -- Allowed running tests with dummy db backendClaude Paroz
Thanks Simon Charette for the initial patch, and Jan Bednařík for his work on the ticket.
2013-01-03Replaced deprecated sslerror by ssl.SSLErrorClaude Paroz
The exact conditions on which this exception is raised are not known, but this replacement is the best guess we can do at this point.
2013-01-03Added documentation for the 'db' argument of the post-syncdb signal.mpaolini
2013-01-03Fixed #19382 -- Stopped smtp backend raising exception when already closedClaude Paroz
Thanks Sebastian Noack for the report and the initial patch.
2013-01-03Fixed #19134 -- Allowed closing smtp backend when the server is stoppedClaude Paroz
Thanks Sebastian Noack for the report and the initial patch.
2013-01-03Updated comment about PostGIS bug 2035Claude Paroz
PostGIS 2.0.2 has been released on December 3rd 2012, with the fix included.
2013-01-03Fixed #19545 -- Make sure media/is_multipart work with empty formsetsSimon Charette
2013-01-02Fixed #19516 - Fixed remaining broken links.Tim Graham
Added -n to sphinx builds to catch issues going forward.
2013-01-03Update doc example for overriding change_form.htmlChris Beaven
Slightly reworded another related paragraph for clarity, too.