summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-10-05Fixed typo in queryset docs under update method.Michael Kelly
2012-10-04Fixed #17959 -- Silenced output during GIS testsClaude Paroz
2012-10-04Removed unused and undocumented gdal_release_date functionClaude Paroz
2012-10-04Fixed #18996 - Docs on overriden model methodsTomáš Ehrlich
2012-10-04Fixed #19051 - Fixed Selenium tearDownClass method; thanks glarrain for the ↵Tim Graham
report.
2012-10-04Fixed #17207 -- Added a troubleshooting note about failing createdbJohn Paulett
2012-10-04Readded docs anchor removed in 92b5341b and still in useClaude Paroz
2012-10-03Fixed #19006 - Quoted filenames in Content-Disposition header.Tim Graham
2012-10-03Fixed #18413 - Noted that a model's files are not deleted when the model is ↵Tim Graham
deleted. Thanks lawgon for the report.
2012-10-03Fixed #15915 -- Cleaned handling of duplicate permission codenamesMateusz Haligowski
Previously, a duplicate model, codename for permission would lead to database integrity error. Cleaned the implementation so that this case now raises an CommandError instead.
2012-10-03Fixed #14567 -- Made ModelMultipleChoiceField return EmptyQuerySet as empty ↵Stephen Burrows
value
2012-10-03Fixed #19063 -- Fixed version parameter of gml GeoQuerySet methodClaude Paroz
Thanks lmisek@go2.pl for the report.
2012-10-03Added a note about postgis_topology in install docsClaude Paroz
Thanks Paolo Corti for the suggestion.
2012-10-03Corrected test docstring.Russell Keith-Magee
2012-10-03Fixed #19049 -- Corrected dumb logic negation error from earlier patch.Russell Keith-Magee
2012-10-02Fixed #19049 -- Ensure that swapped models aren't included in reverse field ↵Russell Keith-Magee
caches. Thanks to Ivan Virabyan for the report.
2012-10-02Fixed #19057 -- support custom user models in mod_wsgi auth handlerPreston Holmes
thanks @freakboy3742 for the catch and review
2012-10-02Fixed #19056 -- Ensure admin change password template doesn't rely on ↵Russell Keith-Magee
username attribute.
2012-10-01Removed incorrectly reintroduced 1.3 version notesPreston Holmes
2012-10-01Cleaned up loaddata command options help textPreston Holmes
2012-10-01Fixed postgres rollback issue with fixture testPreston Holmes
2012-10-01Fixed #19045 -- removed 'fixed on a branch' from triage docsPreston Holmes
2012-10-01Prevented flatpage view from directly accessing settings.SITE_IDClaude Paroz
Refs #15089
2012-09-30Fixed #9279 -- Added ignorenonexistent option to loaddataPreston Holmes
Thanks to Roman Gladkov for the initial patch and Simon Charette for review.
2012-09-30Fixed #18616 -- added user_login_fail signal to contrib.authMichael Farrell
Thanks to Brad Pitcher for documentation
2012-09-30Fixed #18807 -- Made 404.html and 500.html optionalClaude Paroz
Thanks Aymeric Augustin for the report and Jannis Leidel for the review.
2012-09-30Cared for PostGIS 2 renamed operationsClaude Paroz
2012-09-30Fixed #16455 -- Added support for PostGIS 2.0Flavio Curella
Thanks ckarrie for the report and the initial patches, Flavio Curella for updating the patch, and Anssi Kääriäinen for testing. See ticket for other valuable contributors.
2012-09-30Fixed #7936 -- Added Last-Modified header to feedsClaude Paroz
Thanks julianb for the report and the initial patch, and Roman Gladkov for working on tests.
2012-09-30Fixed #15338 - Documented django.utils.decoratorsTim Graham
2012-09-30Fixed #18991 -- Allowed permission lookup by "if in"Anssi Kääriäinen
When looking permissions from PermWrapper it is now possible to use {% if "someapp.someperm" in perms %} instead of {% if perms.someapp.someperm %}.
2012-09-30Splitted expressions tests into smaller methodsAnssi Kääriäinen
2012-09-30Fixed #16211 -- Added comparison and negation ops to F() expressionsAnssi Kääriäinen
Work done by Walter Doekes and Trac alias knoeb. Reviewed by Simon Charette.
2012-09-30Avoided storing ExpressionNodes in dictsAnssi Kääriäinen
2012-09-29Added a missing commaPreston Holmes
2012-09-29Fixed a couple errors and inconsistencies in mod_wsgi docsPreston Holmes
Fixes #19042
2012-09-30Corrected links to only()/defer() in Model documentationAnssi Kääriäinen
Refs #18306
2012-09-29Moved filter at handler levelClaude Paroz
Filters at logger level are only processed for messages directly logged to the specific logger, not for loggers in the parent chain. As the 'django' logger is almost always processed as an inherited logger, it makes more sense to filter messages at the 'console' handler level.
2012-09-29Fixed #18993 -- 'django' logger logs to console when DEBUG=TrueClaude Paroz
Thanks Preston Holmes for the review.
2012-09-29Combined Django DEFAULT_LOGGING with user LOGGING configClaude Paroz
Refs #18993.
2012-09-29Fixed #17058 - Clarified where extras/csrf_migration_helper.py is locatedTim Graham
2012-09-29Merge branch 'ticket15695'Florian Apolloner
2012-09-29Added link to PostGIS matrix on OSGeo WikiClaude Paroz
2012-09-29Fixed #18919 -- Stopped dropping Z attribute when transforming geometriesClaude Paroz
Previously, the wkb of geometries was dropping the Z attribute. Thanks luizvital for the report and tests and georger.silva@gmail.com for the tests.
2012-09-29Used TransactionTestCase in ModWsgiHandlerTestCaseClaude Paroz
Now the data created in setUp() is not discarded when the connection is closed in the handler's methods.
2012-09-29Fixed #11948 -- Added interpolate and project linear referencing methodsClaude Paroz
Thanks novalis for the report and the initial patch, and Anssi Kääriäinen and Justin Bronn for the review.
2012-09-29Fixed #19041 -- Corrected the handling of default usernames in createsuperuser.Russell Keith-Magee
2012-09-28Fixed #12871 - Documented creation of a comment form for authenticated ↵Tim Graham
users; thanks shacker for patch.
2012-09-28Made more extensive use of get_current_siteClaude Paroz
Refs #15089
2012-09-28Fixed #18676 -- Allow fast-path deletion of objectsAnssi Kääriäinen
Objects can be fast-path deleted if there are no signals, and there are no further cascades. If fast-path is taken, the objects do not need to be loaded into memory before deletion. Thanks to Jeremy Dunck, Simon Charette and Alex Gaynor for reviewing the patch.