| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-01-14 | Send post_delete signals immediately | David 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-13 | Added details on minified jQuery and DEBUG mode for contrib.admin. | Tim Graham | |
| Thanks Daniele Procida. | |||
| 2013-01-13 | Fixed typo in file storage docs. | Aymeric Augustin | |
| Thanks Jørgen Abrahamsen. | |||
| 2013-01-12 | Fixed #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-12 | Fixed #17574 -- Implemented missing get_key_columns in PostgreSQL backend | Claude Paroz | |
| 2013-01-12 | Return namedtuple from get_table_description | Claude Paroz | |
| We don't make use of it currently to not break third-party db backends. | |||
| 2013-01-12 | Fixed #19024 -- Corrected form wizard docs for get_form_prefix. | Stephan Jaekel | |
| 2013-01-12 | Fixed #18026 -- Don't return an anonymous dict if extra_data in storage is ↵ | Stephan Jaekel | |
| empty. | |||
| 2013-01-11 | Removed some now dead code from deletion (thanks to Carl Meyer for noticing it). | Alex Gaynor | |
| 2013-01-11 | Fixed #19488 -- Made i18n_patterns redirect work with non-slash-ending paths | Claude Paroz | |
| Thanks Daniel Gerzo for the report and the initial patch. | |||
| 2013-01-11 | Fixed #19585 -- Fixed loading cookie value as a dict | Claude Paroz | |
| This regression was introduced by the 'unicode_literals' patch. | |||
| 2013-01-11 | Fixed #4833 -- Validate email addresses with localhost as domain | Claude Paroz | |
| 2013-01-11 | Minor DEBUG setting reference formatting edit. | Ramiro Morales | |
| 2013-01-11 | Fixed code examples in which render() calls were missing `request` parameter. | Vinod Kurup | |
| 2013-01-11 | Made 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-11 | Fixed #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-11 | Adapted test assertion against yaml dump | Claude Paroz | |
| Fixes #12914 (again). | |||
| 2013-01-11 | Fixed #19437 - Clarified pip install instructions in contributing tutorial. | Tim Graham | |
| 2013-01-11 | Fixed #10239 - Added docs for modelform_factory | Tim Graham | |
| Thanks ingenieroariel for the suggestion and slurms for the review. | |||
| 2013-01-10 | Fixed #19588 - Added create_superuser to UserManager docs. | Tim Graham | |
| Thanks minddust for the report. | |||
| 2013-01-10 | Fixed #19573 -- Allow override of username field label in AuthenticationForm | Nick Sandford | |
| 2013-01-09 | Fixed #19581 -- ensure unique html ids with CheckboxSelectMultiple widgets | Loic Raucy | |
| ID check is now done the same way as MultipleHiddenInput. | |||
| 2013-01-09 | Addeded CSS to bold deprecation notices. | Tim Graham | |
| Thanks Sam Lai for mentioning this on the mailing list. | |||
| 2013-01-09 | Fixed #19586 - Removed URL_VALIDATOR_USER_AGENT from setting docs. | Tim Graham | |
| It was removed in Django 1.5, not deprecated. | |||
| 2013-01-09 | Fixed lockups in jenkins, refs #19546. | Florian Apolloner | |
| 2013-01-09 | Skipped deprecation warning test on Python 2.6 | Claude Paroz | |
| Refs #19546. On Python 2.6, DeprecationWarnings are visible by default. | |||
| 2013-01-09 | Remove inaccurate comment regarding language names. | Carl Meyer | |
| 2013-01-09 | Fixed #19546 - ensure that deprecation warnings are shown during tests | Preston Holmes | |
| refs #18985 | |||
| 2013-01-08 | Added sphinx substitutions in place of hardcoded version numbers. | Tim Graham | |
| Refs #19571 | |||
| 2013-01-08 | Fixed #19555 - Removed '2012' from tutorial 1. | Tim Graham | |
| Thanks rodrigorosa.lg and others for the report. | |||
| 2013-01-08 | Fixed #19576 -- Use `six.with_metaclass` uniformously accross code base. | Simon Charette | |
| 2013-01-08 | Fixed #17541 -- Fixed non-saved/nullable fk querying | Anssi Kääriäinen | |
| 2013-01-08 | Updated deprecated test assertions | Claude Paroz | |
| 2013-01-08 | Fixed #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-07 | Fixed typo in 1.5 release notes; thanks Jonas Obrist. | Carl Meyer | |
| 2013-01-07 | Created special PostgreSQL text indexes when unique is True | Claude Paroz | |
| Refs #19441. | |||
| 2013-01-06 | Fixed #19571 -- Updated runserver output in the tutorial | Claude Paroz | |
| 2013-01-06 | Tests for various emptyqs tickets | Anssi 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-06 | Fixed #19173 -- Made EmptyQuerySet a marker class only | Anssi 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-05 | Fixed #12914 -- Use yaml faster C implementation when available | Claude Paroz | |
| Thanks Beuc for the report and the initial patch. | |||
| 2013-01-04 | Fixed #19562 -- cleaned up password storage docs | Preston Holmes | |
| 2013-01-04 | Fixed #19192 -- Allowed running tests with dummy db backend | Claude Paroz | |
| Thanks Simon Charette for the initial patch, and Jan Bednařík for his work on the ticket. | |||
| 2013-01-03 | Replaced deprecated sslerror by ssl.SSLError | Claude 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-03 | Added documentation for the 'db' argument of the post-syncdb signal. | mpaolini | |
| 2013-01-03 | Fixed #19382 -- Stopped smtp backend raising exception when already closed | Claude Paroz | |
| Thanks Sebastian Noack for the report and the initial patch. | |||
| 2013-01-03 | Fixed #19134 -- Allowed closing smtp backend when the server is stopped | Claude Paroz | |
| Thanks Sebastian Noack for the report and the initial patch. | |||
| 2013-01-03 | Updated comment about PostGIS bug 2035 | Claude Paroz | |
| PostGIS 2.0.2 has been released on December 3rd 2012, with the fix included. | |||
| 2013-01-03 | Fixed #19545 -- Make sure media/is_multipart work with empty formsets | Simon Charette | |
| 2013-01-02 | Fixed #19516 - Fixed remaining broken links. | Tim Graham | |
| Added -n to sphinx builds to catch issues going forward. | |||
| 2013-01-03 | Update doc example for overriding change_form.html | Chris Beaven | |
| Slightly reworded another related paragraph for clarity, too. | |||
