summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-12-08Made flake8 ignore the .git directory.Loic Bistuer
2013-12-08Merge pull request #2048 from loic/ValidationError.message_dictFlorian Apolloner
Trigger AttributeError in ValidationError.message_dict when error_dict is missing.
2013-12-07Merge pull request #2050 from maurycyp/masterAlex Gaynor
Renamed first argument of class method to cls
2013-12-07Renamed first argument of class method to clsmaurycyp
2013-12-07Fixed #18531 -- Deprecated Geo SitemapsClaude Paroz
I've chosen a quick deprecation path, as Geo Sitemaps themselves are deprecated from some time now.
2013-12-07Fixed #21573 -- Improved performance of utils.text.normalize_newlines.Vajrasky Kok
2013-12-07Trigger AttributeError in ValidationError.message_dict when error_dict is ↵Loic Bistuer
missing. The goal of this change is twofold; firstly, matching the behavior of Django 1.6 and secondly, an AttributeError is more informative than an obscure ValueError about mismatching sequence lengths. Refs #20867.
2013-12-07Removed unneeded string normalization in contrib.adminClaude Paroz
With Python 2.7 and up, named parameter keys are not limited to bytestrings any longer. This mainly reverts 3bd384aa626.
2013-12-07Added extra newline for flake8.Tim Graham
2013-12-07Fixed #21555 -- Made ValidationError pickable.Loic Bistuer
Thanks trac username zanuxzan for the report and original patch.
2013-12-07Fixed #21551 -- Reenabled loading fixtures from subdirectoryClaude Paroz
This was a regression in Django 1.6 that was only partially restored in 839940f27f. Thanks Jonas Haag for the report.
2013-12-07Fixed #21568 -- Added missing ModelMultipleChoiceField to_python methodClaude Paroz
Thanks dibrovsd at gmail.com for the report and Simon Charette for the review.
2013-12-07Merge pull request #2045 from vajrasky/ticket_21572Claude Paroz
Fixed #21572 -- Added unit test for django.utils.text.normalize_newlines...
2013-12-07Fixed #21572 -- Added unit test for django.utils.text.normalize_newlines.Vajrasky Kok
2013-12-07Added fix for #21530 to 1.6.1 release notes.Baptiste Mispelon
2013-12-07Fixed #21530 -- Prevent AttributeError in default URLconf detection code.Baptiste Mispelon
Thanks to @dmyerscoug for the report and original patch and to @alasdairnicol for the added tests.
2013-12-06Corrected a flake8 issue -- this line is imported for the purpose of ↵Alex Gaynor
re-exposing the name
2013-12-06Fixed #21566 -- Fixed AttributeError when using bulk_create with ForeignObject.Roger Hu
2013-12-06Fixed #21554 -- Incorrect SQL generated when using multiple inheritance.pegler
2013-12-06Removed a u'' prefix that prevented the docs from building on Python 3.2.Tim Graham
2013-12-06Added new 'srtext' spatialite 4.x SpatialRefSys column to its model.Ramiro Morales
This is for general consistency in the GeoDjango DB backends. Thanks Claude for the fix. Refs #19678.
2013-12-06Added missing deconstruct() methods.Baptiste Mispelon
2013-12-06Made the migration detector use meta.local_fields instead of meta.fields.Baptiste Mispelon
Refs #21010. Thanks to Loïc for the patch.
2013-12-06Fixed ModelState breaking when unique_together has unhashable elements.Baptiste Mispelon
2013-12-06Fixed error in ManyToManyField.deconstruct().Baptiste Mispelon
2013-12-06Added app_label to the error message when field reconstructing fails.Baptiste Mispelon
2013-12-06Merge pull request #2037 from bmispelon/invalidbaseserrorAndrew Godwin
Fixed TypeError when rendering ModelState with multiple bases.
2013-12-06Fixed #19678 -- GeoDjango test failure with spatialite >= 3.0.Ramiro Morales
Thanks Julien for the report and Claude for the fix.
2013-12-06Renamed syncdb to migrate in spatialite backendClaude Paroz
2013-12-06Removed unreachable `else` in `try` block.maurycyp
2013-12-05Fixed #21562 -- Warned against using the same app name as a django contrib app.Alasdair Nicol
Thanks yourcelf for the report.
2013-12-06Fixed TypeError when rendering ModelState with multiple bases.Baptiste Mispelon
2013-12-05Fixed another typo in custom model field documentation.Baptiste Mispelon
2013-12-05Fixed typo in custom model field documentation.Baptiste Mispelon
2013-12-05Corrected setting name in gis test error message.Ramiro Morales
2013-12-05Better error reporting when from_app_cache failsAndrew Godwin
2013-12-05Fix poor variable name (flake8 warning)Andrew Godwin
2013-12-05Fixed a flake8 errorAlex Gaynor
2013-12-05Merge pull request #2030 from frankwiles/masterTim Graham
Fixed manager documentation inaccuracy
2013-12-05Removed 'return' in __init__maurycyp
2013-12-04Fixing manager documentation inaccuracyFrank Wiles
2013-12-04Merge pull request #2029 from alasdairnicol/releases_orderingTim Graham
List ed 1.6.x releases in descending order
2013-12-04List 1.6.x releases in descending orderAlasdair Nicol
2013-12-04Migration VCS conflict detection and --merge for makemigrationsAndrew Godwin
2013-12-04Fixed #21558 -- Support building CHM files.Aymeric Augustin
Thanks Michał Pasternak.
2013-12-04Don't make a second migration if there was a force-null-default addcol.Andrew Godwin
2013-12-04Add clone() method to Field to get clean copies of it.Andrew Godwin
2013-12-04Add --dry-run option to makemigrationsAndrew Godwin
2013-12-04Migrate prompts if you need makemigrations, runserver prompts for migrateAndrew Godwin
2013-12-04Added link to localized formatting doc from main index.Ramiro Morales