| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-05-23 | Removed noise from pre_syncdb signal tests | Donald Stufft | |
| Only make assertions that actually test the functionality of the change and not unrelated pieces. | |||
| 2013-05-23 | Fixed #20316 - Clarified transaction behavior of TestCase. | Tim Graham | |
| Thanks uberj@ for the report and lolek09 for the patch. | |||
| 2013-05-23 | Added back a link to docs/internals/committers.txt | Tim Graham | |
| 2013-05-23 | Update my employer. | Alex Gaynor | |
| 2013-05-23 | Fixing some FIXMEs in howto-release-django. Refs #20082 | Andrew Godwin | |
| 2013-05-23 | Delayed settings.DATABASE_ROUTERS usage by ConnectionRouter | Claude Paroz | |
| Refs #20474. | |||
| 2013-05-23 | Delayed settings.DATABASES usage by ConnectionHandler | Claude Paroz | |
| Refs #20474. | |||
| 2013-05-23 | Fixed #20474 -- Proxied and deprecated django.db.backend | Claude Paroz | |
| 2013-05-23 | Fixed #20417 - Noted that a server restart is required to load new ↵ | Tim Graham | |
| templatetag modules. Thanks Katya for the suggestion. | |||
| 2013-05-23 | Fixed #20482 - Added a file reference in tutorial 3. | Tim Graham | |
| Thanks diek@ for the suggestion. | |||
| 2013-05-23 | Fixed #20080 - Recommended use of PYTHONHASHSEED | Tim Graham | |
| Thanks jacob for the suggestion and ryankask for the patch. | |||
| 2013-05-23 | Fixed #19237 (again) - Made strip_tags consistent between Python versions | Claude Paroz | |
| 2013-05-23 | Made fix for #9321 less buggy and more effective. | Ramiro Morales | |
| Don't try to be smart about building a good-looking help string because it evaluates translations too early, simply use the same old strategy as before. Thanks Donald Stufft for the report. Also, actually fix the case reported by the OP by special-casing CheckboxSelectMultiple. Added tests. Refs #9321. | |||
| 2013-05-23 | Merge pull request #1201 from takis/docs_typo | Marc Tamlyn | |
| Fixed comments for translators example in the i18n documentation | |||
| 2013-05-23 | Fixed comments for translators example in the i18n documentation | Panagiotis H.M. Issaris | |
| The documentation regarding adding a comment for translators was confusing as the example contained mismatching tags. | |||
| 2013-05-22 | Merge pull request #1200 from dstufft/pre-syncdb-signal | Donald Stufft | |
| Fixed #11398 - Added a pre_syncdb signal | |||
| 2013-05-23 | Fixed #11398 - Added a pre_syncdb signal | Donald Stufft | |
| 2013-05-22 | Merge pull request #1198 from KrzysiekJ/http-patch-method | Russell Keith-Magee | |
| Fixed #20478 – Added support for HTTP PATCH method in generic views. | |||
| 2013-05-22 | Removed check for 0.15 version of gettext tools | Claude Paroz | |
| gettext 0.15 has been released in July 2006. | |||
| 2013-05-22 | Fixed #19237 -- Used HTML parser to strip tags | Claude Paroz | |
| The regex method used until now for the strip_tags utility is fast, but subject to flaws and security issues. Consensus and good practice lead use to use a slower but safer method. | |||
| 2013-05-22 | Clarified policy for stable branches. | Tim Graham | |
| Thanks Ramiro Morales for the initial patch and Preston Holmes for the review. | |||
| 2013-05-22 | Added some text I meant to add in the last commit. | Tim Graham | |
| 2013-05-22 | Added a note about pip upgrade flag. | Tim Graham | |
| Thanks Jannis Leidel for the suggestion. | |||
| 2013-05-22 | Fixed #17048 - Added docs for upgrading Django. | Tim Graham | |
| Thanks Donald Stufft for the suggestion and Susan Tan and Brian Fabian Crain for the patch. | |||
| 2013-05-22 | Fixed a broken link introduced in a542b808baf. | Tim Graham | |
| 2013-05-22 | Fixed #20478 – Added support for HTTP PATCH method in generic views. | Krzysztof Jurewicz | |
| 2013-05-22 | Fixed #20463 -- Made get_or_create more robust. | Aymeric Augustin | |
| When an exception other than IntegrityError was raised, get_or_create could fail and leave the database connection in an unusable state. Thanks UloPe for the report. | |||
| 2013-05-22 | Merge pull request #246 from dekkers/ticket_18709 | Marc Tamlyn | |
| Fixed #18709 -- Check if initial_value is a callable | |||
| 2013-05-22 | Fixed #19895 -- Second iterator over invalid qs raises errors | Anssi Kääriäinen | |
| The fix was already in the patch for #18702, so only test added for ticket #19895. | |||
| 2013-05-21 | Merge pull request #1196 from selwin/last-doc-fix | Tim Graham | |
| Slightly reworded 'last()' docs | |||
| 2013-05-22 | Fixed #18709 -- Check if initial_value is a callable | Jeroen Dekkers | |
| In _get_changed_data, check if initial_value is a callable and call it if it is. | |||
| 2013-05-22 | Fixed #20012 -- test_year_lookup_edge_case fails under Oracle | Shai Berger | |
| Used formatted date instead of datetime object for the end of the year range, as the datetime object loses fractions-of-seconds when inserted into the db. | |||
| 2013-05-22 | Fixed #20015 -- date__startswith('2008') fails under Oracle | Shai Berger | |
| Removed the explicit casting of strings to dates | |||
| 2013-05-22 | Fixed #20453 -- inspectdb test failure on Oracle | Shai Berger | |
| 2013-05-21 | Fixed #20476 -- Typo. | Aymeric Augustin | |
| 2013-05-21 | Fixed #18702 -- Removed chunked reads from QuerySet iteration | Anssi Kääriäinen | |
| 2013-05-21 | Slightly reworded 'last()' docs. | Selwin Ong | |
| 2013-05-21 | Fixed #19326 -- Added first() and last() methods to QuerySet | Selwin Ong | |
| 2013-05-21 | (Re-)moved some imports | Claude Paroz | |
| 2013-05-21 | Fixed #6412 -- More details if a template file cannot be loaded | Mathijs de Bruin | |
| Report more details about template files in loader postmortem. | |||
| 2013-05-21 | Imported copyreg from six.moves | Claude Paroz | |
| 2013-05-21 | Merge pull request #1194 from ambv/python26_is_fun | Florian Apolloner | |
| Fixed a Python 2.6 regression (GzipFile can't act as a context manager) | |||
| 2013-05-21 | Fixed #17308 -- Enabled the use of short_description on properties in the admin. | Wiktor Kolodziej | |
| 2013-05-21 | Fixed a Python 2.6 regression (GzipFile can't act as a context manager) | Łukasz Langa | |
| 2013-05-21 | Fixed test failures from 09f865276554f35060ff939722ec4cefd578edf6. | Florian Apolloner | |
| 2013-05-21 | Merge pull request #1192 from mjtamlyn/assertIsInstance | Marc Tamlyn | |
| Use assertIsInstance in test code. | |||
| 2013-05-21 | Use assertIsInstance in tests. | Marc Tamlyn | |
| Gives much nicer errors when it fails. | |||
| 2013-05-21 | Merge pull request #1190 from ambv/doc_settings_fix | Florian Apolloner | |
| Removed a confusing duplicate SESSION_COOKIE_DOMAIN header | |||
| 2013-05-21 | Merge pull request #1191 from ambv/content_is_bytes | Aymeric Augustin | |
| Fixed #20472: response.content should be bytes on both Python 2 and 3 | |||
| 2013-05-21 | Fixed #20212 - __reduce__ should only be defined for Py3+. | Daniel Lindsley | |
