summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-09-15Clearer wording for defer docsPreston Holmes
2012-09-15Fixes docs typoCamilo Nova
2012-09-15Fixed #17948 -- Isolated auth tests from custom template loadersClaude Paroz
Thanks andrey@kostenko.name for the report.
2012-09-15Modernized views.DebugViewTestsClaude Paroz
2012-09-15Fixed #18131 - Documented ContentTypeManager.get_for_id; thanks sir_sigurd ↵Tim Graham
for the report.
2012-09-15Fixed #16929 - Documented how to extend UserAdmin with UserProfile fields; ↵Tim Graham
thanks charettes for the draft example.
2012-09-15Added an example of using a form wizard with different templates; thanks ↵Tim Graham
Lorin Hochstein for the patch.
2012-09-15Removed reference to note removed in ↵Tim Graham
a78dd109e6c81c49e90e36e9b793bad67c46c23c; refs #15552
2012-09-15Fixed #11185 - Expanded docs on customizing widgets; thanks fadeev for the ↵Tim Graham
draft patch.
2012-09-15Used ST_AsText for testing PostGIS raw queryClaude Paroz
AsText will not be supported in further versions of PostGIS (>=2).
2012-09-14Correcting my English.Bryan Veloso
2012-09-14Adding myself to the committers list.Bryan Veloso
2012-09-13Merge pull request #364 from martey/ticket_18933Tim Graham
Fixed #18933 - Fixes code example for cycle in docstring.
2012-09-13Removed unused quoting/encoding in gis db backendClaude Paroz
2012-09-13Fixed #18795 -- Fixed failing GeoDjango testsClaude Paroz
Proj.4 and SRS strings may slightly vary depending on the installed libraries. Made some tests pass again with recent Proj.4/GDAL lib versions.
2012-09-12Fixed my terribly outdated profile in committers.txt in celebration of my ↵Jeremy Dunck
commit bit.
2012-09-12[py3] Fixed GeoDjango mutable list testsClaude Paroz
2012-09-12Made minimal changes to make gis test suite start with Python 3Claude Paroz
2012-09-12Fixed test output check when password is blankClaude Paroz
2012-09-12Fixed #18182 -- Made is_usable_password check if hashing algorithm is correctClaude Paroz
The display of the ReadOnlyPasswordHashWidget has also been improved to distinguish empty/unusable password from erroneous password. Fixed #18453 also. Thanks danielr and Leo for the reports and Moritz Sichert for the initial patch.
2012-09-12Fixed #18790 -- Encoded database password on Python 2Claude Paroz
Thanks thcourbon@gmail.com for the report.
2012-09-10Removed a colloquialism ("and then some") from the documentation index page ↵Julien Phalip
that would be confusing to non-native English speakers.
2012-09-10Removed an obsolete documentation page about admin style customization.Julien Phalip
2012-09-10Document and test 'type' usage in Widget attrsClaude Paroz
Refs #16630.
2012-09-10Merge pull request #366 from collinanderson/patch-6Alex Gaynor
fixed rfc comment typo in middleware/csrf.py
2012-09-10fixed rfc comment typo in middleware/csrf.pyCollin Anderson
2012-09-10Fixed #18611 -- Display current date/time when running runserverMike Grouchy
2012-09-09Fixed a couple of test failures on Windows.Karen Tracey
2012-09-09Fix an HTML-parser test that's failed in Python 2.6.8 since 5c79dd58.Carl Meyer
The problem description in #18239 asserted that http://bugs.python.org/issue670664 was fixed in Python 2.6.8, but based on http://bugs.python.org/issue670664#msg146770 it appears that's not correct; the fix was only applied in 2.7, 3.2, and Python trunk. Therefore we must use our patched HTMLParser subclass in all Python 2.6 versions.
2012-09-09Fix Python 3 test failure introduced in a78dd109.Carl Meyer
2012-09-09Replaced backwards-incompatible changes referenceKaren Tracey
The previously-referenced wiki page documents backwards-incompatible changes from .96 to 1.0. Changed that referece to point to current in-development release notes, which is where such changes are now documented.
2012-09-09Replace nested try/finally try/except with try/except/finally.Florian Apolloner
2012-09-09Fixes #18933. Fixes code example in docstring.Martey Dodoo
Makes code example of silent keyword docstring in cycle templatetag method the same as in the documentation.
2012-09-08Adjust d7853c5 to not show ignorable warnings when running tests.Malcolm Tredinnick
2012-09-08Remove an outdated import inadvertently introduced in tests.Carl Meyer
2012-09-08Internal refactoring; moving LOOKUP_SEP up one level.Malcolm Tredinnick
In an ideal world, nothing except django.db.models.query should have to import stuff from django.models.sql.*. A few things were needing to get hold of sql.constants.LOOKUP_SEP, so this commit moves it up to django.db.models.constants.LOOKUP_SEP. There are still a couple of places (admin) poking into sql.* to get QUERY_TERMS, which is unfortunate, but a slightly different issue and harder to adjust.
2012-09-08Fixed #15552 -- LOGIN_URL and LOGIN_REDIRECT_URL can take URLpattern names.Carl Meyer
Thanks UloPe and Eric Florenzano for the patch, and Malcolm Tredinnick for review.
2012-09-08Fixed #15906 - Documented HEAD method in CBVs; thanks zsiciarz for the patch.Tim Graham
2012-09-08Fixed typo in commit for #15730; thanks Bruno Renié for the catch.Tim Graham
2012-09-08Remove a couple unused imports.Carl Meyer
2012-09-08Fixed #18545 -- Make the 'no DJANGO_SETTINGS_MODULE' error message more ↵Carl Meyer
useful.Thanks Nick Coghlan for the report, and Malcolm Tredinnick for review.
2012-09-08Merge pull request #363 from ubernostrum/multidb-examples-18657James Bennett
Ticket 18657: Fix inconsistent DB names in router example.
2012-09-08Fix typo: Non -> NoneJames Bennett
2012-09-08Untabify multi-db docs.James Bennett
2012-09-08Ticket 18657: Fix inconsistent DB names in router example.James Bennett
This rewrites the entire example to use the same DB names throughout, and also is hopefully a bit more sensibly described. Additionally, the missing import of the random module for choosing a read slave is included in the example now.
2012-09-08Removed warning check in test_load_overlong_keyClaude Paroz
Some backends issue a warning here, others not. This is not the primary goal of the test, so the assertion about the warning has been removed. Thanks Carl Meyer for noticing the issue and suggesting the fix.
2012-09-08Updated print statements to work with py3; thanks Claude Paroz noting this.Tim Graham
2012-09-08Moved the admin inline JS to new JS files for cleanliness.Travis Swicegood
2012-09-08Fixed #18478 - Documented how to use a mutable default in a model field.Tim Graham
2012-09-08Fixed #18628 - Added methods/attributes to CBV docs. Thanks Daniel Greenfeld!Tim Graham