summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-10-10Use renamed threading event API in Python 3.3Ian Clelland
Refs #19038.
2012-10-10Fixed error output from runserverClaude Paroz
This has been missed in commit 822d6d6dab (Refs #18325).
2012-10-09Fixed #19097 -- documented module of origin for HttpRes/req objectsPreston Holmes
2012-10-10Removed some uses of F() expression & and |Anssi Kääriäinen
Refs #16211
2012-10-09Mark the test for left/right lookup types as a known failure on PostGIS 2.0.Justin Bronn
2012-10-10Fixed #18927 -- Fixed bulk_create tests when no has_bulk_insertMichael Manfre
2012-10-10Moved F() '&' and '|' to .bitand() and .bitor()Anssi Kääriäinen
Done for consistency with Q() expressions and QuerySet combining. This will allow usage of '&' and '|' as boolean logical operators in the future. Refs #16211.
2012-10-10Revert "Fixed #16211 -- Added comparison and negation ops to F() expressions"Anssi Kääriäinen
This reverts commit 28abf5f0ebc9d380f25dd278d7ef4642c4504545. Conflicts: docs/releases/1.5.txt
2012-10-10Revert "Splitted expressions tests into smaller methods"Anssi Kääriäinen
This reverts commit c2532825dbe2a422bbce67285637febb0ef9c9f1.
2012-10-10Fixed #19096 -- Made can_return_id_from_insert more extendableMichael Manfre
RETURNING is an extension of the SQL standard, which is not implemented the same by all databases. Allow DatabaseOperations.return_insert_id to return a None to allow for other 3rd party backends with a different implementation.
2012-10-09Fixed test failure after IDN domain validation fixClaude Paroz
Refs #17867. The address in test_email_regexp_for_performance used to take forever (security issue), then was supposed to fail after the fix (commit 9f8287a3f). Now we are less strict with domain validation, due to new IDN domains, hence the validation of this address pass now.
2012-10-09Fix exception message from 3190abcd. Refs #18153.Aymeric Augustin
Thanks Preston Holmes.
2012-10-09Fixed #18153 -- Reverse OneToOne lookups on unsaved instances.Aymeric Augustin
Thanks David Hatch and Anssi Kääriäinen for their inputs.
2012-10-09Fixed #19095 -- invalid code in multidb tests.Aymeric Augustin
2012-10-09Fixed #17867 -- Made email validation pass with IDN domainsClaude Paroz
Thanks Pierre Matri for the report and the initial patch.
2012-10-09Moved some email validation tests to validators testsClaude Paroz
2012-10-09Improved assertion error messages in validators testsClaude Paroz
2012-10-08Use smarter string decoding in GeoDjangoClaude Paroz
The first try to solve the Python 3 GIS encoding/decoding issue was too naive. Using decode() on all read strings is bound to fail as soon as a non-ascii string is concerned. This patch is a little more clever, leaving ascii decoding when plain ascii strings are expected, and allowing to specify a custom encoding in DataSource hierarchy.
2012-10-08Fixed #19087 -- Ensured query's base table is never LOUTER joinedAnssi Kääriäinen
This fixes a regression created by join promotion logic refactoring: 01b9c3d5193fe61b82ae8b26242a13fdec22f211 Thanks to Ivan Virabyan for the report.
2012-10-08[py3] Decoded the parsed source file encoding in debug viewClaude Paroz
2012-10-07Moved Travis Pinney and Dane Springmeyer into the AUTHORS file where they ↵Justin Bronn
belong.
2012-10-07Fixed `inspectapp` tests to work with improved PG driver in GDAL 1.9+.Justin Bronn
2012-10-07GDAL docstring tweaks.Justin Bronn
2012-10-07Added section about URL reversion to URL mapper document.Ramiro Morales
2012-10-07Used pkgutil to get list of backend modulesClaude Paroz
Refs #18827.
2012-10-07Fixed #18640 -- Allowed access to GDAL Feature without DatasourceClaude Paroz
Thanks Justin Bronn for improving my initial patch.
2012-10-06Removed ad-hoc support for usage of short names of built-in DB backends.Ramiro Morales
This non-standard naming was deprecated in Django 1.2.
2012-10-06Updated .gitignore with files created when running setup.py sdist.Ramiro Morales
2012-10-06Ensure we ignore __pycache__ PEP 3174 dirs in a few more places.Ramiro Morales
2012-10-06More URL mapping documentation fixes.Ramiro Morales
2012-10-06Use native geometry types on PostGIS 2.0+ instead of `AddGeometryColumn` and ↵Justin Bronn
don't query database in `PostGISCreation.sql_table_creation_suffix`.
2012-10-06Refactored URL mapping documentation.Ramiro Morales
Reorganized topic document so it introduces concepts form simple to more complex. Moved reference parts to their own documents.
2012-10-06Un-gzipped test geometries fixture as plain jsonClaude Paroz
This is easier to track changes through the VCS.
2012-10-06Added assertXML[Not]Equal assertionsClaude Paroz
This is especially needed to compare XML when hash randomization is on, as attribute order may vary. Refs #17758, #19038. Thanks Taylor Mitchell for the initial patch, and Ian Clelland for review and cleanup.
2012-10-06Fixed #17435 - Clarified that QuerySet.update returns the number of rows matchedTim Graham
2012-10-06Fixed #19069 -- Improved the error message when trying to query a swapped model.Russell Keith-Magee
Thanks to Preston Holmes for the suggestion.
2012-10-06Fixed #19074 -- Corrected some minor issues with the new custom User docs.Russell Keith-Magee
Thanks to Bradley Ayers for the review.
2012-10-06Fixed #19060 -- Corrected assumptions about the name of the User model in ↵Russell Keith-Magee
the ModelBackend. Thanks to Ivan Virabyan for the report and initial patch.
2012-10-05Fixed type in MySQL spatial backend.Justin Bronn
2012-10-05Fixed `F()` expression regressions in GeoDjango caused by recent ↵Justin Bronn
datastructure changes in `SQLEvaluator`.
2012-10-05Fixed format-o in docs/topics/db/queries.txtDon Spaulding
It appears that our infamous villain, Significant Whitespace, has struck again. In this episode, little Timmy finds himself trapped in a code well.  He need not despair, however, as Indentation Man has heard his cries for help and sprung into action. With his feline helper, Octocat, at his side, Indentation Man races to the scene, flings open a web-based code editor, and with terrific aplomb, frees Timmy to be the documentation he always wanted to be. Once again Goodness has prevailed.  In the fight for readable documentation, no stray whitespace will ever be able to withstand the str.strip()ing nature of....INDENTATION MAN.
2012-10-05Fixed GMLv3 output test failure on PostGIS versions < 1.5.Justin Bronn
2012-10-05Forgot to import `unittest` from `django.utils`.Justin Bronn
2012-10-05Updated `GeoSQLCompiler.get_default_columns`.Justin Bronn
2012-10-05Skip `LayerMapRouterTest` if there are not multiple databases.Justin Bronn
2012-10-05Lowered tolerance to fix failing distance test.Justin Bronn
2012-10-05Added comment in `geoapp` tests about PostGIS 2.0 change in ST_NumGeometries.Justin Bronn
2012-10-05Need to catch `ImproperlyConfigured` to be freed from the schackles of ↵Justin Bronn
`DJANGO_SETTINGS_MODULE`.
2012-10-05Fixed #19072 -- Corrected an external file path in GeoIP docsClaude Paroz
Thanks Flavio Curella for the report and the initial patch.
2012-10-05Merge pull request #425 from Osmose/queryset_doc_typoPreston Holmes
Fixed typo in queryset docs under update method.