summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-06-07Removed references to changes made in 1.2.Aymeric Augustin
Thanks Florian Apolloner for the patch.
2012-06-07Added more precise assertions on two fixture tests.Claude Paroz
2012-06-07Merge pull request #117 from juanriaza/masterAymeric Augustin
Fixed #18380 -- Improved installation instructions for MySQLdb.
2012-06-07Fixed #18380 -- Improve installation instructions for MySQLdbJuan Riaza
2012-06-07Fixed #16916 -- Documented default headers for the test client.Aymeric Augustin
Thanks sailorfred AT yahoo.com for the report and raulcd for the initial version of the patch.
2012-06-07Fixed #18397 -- Avoided referencing lawrence.com.Aymeric Augustin
This commit includes multiple small related changes, see the ticket for a full discussion.
2012-06-07Fixed #18396 -- Changed Spatialite download URLs.Aymeric Augustin
Thanks gabrielcw AT gmail.com for the report.
2012-06-07Fixed #18411 -- Clarified HttpRequest doc slightly.Aymeric Augustin
Thanks torkel.bjornson AT gmail.com for the report.
2012-06-07Fixed #10200 -- Raised CommandError when errors happen in loaddata.Claude Paroz
2012-06-07Fixed #14502 -- Added a verbatim template tag.Aymeric Augustin
Thanks SmileyChris for the patch.
2012-06-06Prevented TestNoInitialDataLoading to pollute other tests (Refs #15926)Claude Paroz
Tests were still failing with MySQL. It seems a rollback is solving the issue.
2012-06-06Small cleanup in prefetch_related codeLuke Plant
2012-06-06Fixed #18309 - Prefetch related does not work for fkey to multitable ↵Luke Plant
inherited model Thanks to milosu for the report, tests and initial patch.
2012-06-06Made TestNoInitialDataLoading pass with MySQL (Refs #15926)Claude Paroz
2012-06-06Replaced documentation snippets using "gender" with less sensitive examples.Jacob Kaplan-Moss
2012-06-06Fixed #18184 -- Moved algorithm identification code to hashers moduleClaude Paroz
Thanks Eli Collins for the report and the patch.
2012-06-06Delayed encoding of password and salt in password checking.Claude Paroz
Applied the rule that string encoding should happen as late as possible. This is also a preparation for Python 3 compatibility.
2012-06-06Fixed #17328 -- Added OpenLayersWidget _has_changed methodClaude Paroz
Thanks Will Hardy for the report and the patch.
2012-06-06Added alt attribute to img tags in docs.Aymeric Augustin
This is a good practice for accessibility. Thanks Jessica McKellar for the report.
2012-06-06Fixed #17736 -- Kept maximal floating-point accuracy in from_bboxClaude Paroz
When constructing a polygon with Polygon.from_bbox, do not convert parameters to strings at this stage (str defaults to 12 significant digits). Thanks tdihp@hotmail.com for the report and David Eklung for the patch.
2012-06-05Fixed #15926 -- Added option --no-initial-data to syncdb and flush.Honza Kral
Thanks msiedlarek, jpaugh64 and vlinhart!
2012-06-05Merge pull request #112 from bohyn/masterHonza Král
Django Admin's input for BigIntegerField should be larger, Fixes #17804
2012-06-05Merge branch 'master' of https://github.com/django/djangomartin.bohacek
2012-06-05Ticket #17804 fix.martin.bohacek
2012-06-04Noted that SECURE_PROXY_SSL_HEADER is needed by CSRF protection.Luke Plant
Both false positives and false negatives of HttpRequest.is_secure can be dangerous.
2012-06-04Rewrote security.txt SSL docs, noting SECURE_PROXY_SSL_HEADER.Luke Plant
2012-06-04Merge pull request #99 from danielroseman/masterAdrian Holovaty
Docs: "Form in a view" example doesn't use RequestContext
2012-06-04Used skipUnless decorator to skip tests in geos tests.Claude Paroz
2012-06-03Fixed #17138 -- Made the sensitive_variables decorator work with object methods.Julien Phalip
2012-06-03Merge pull request #104 from samuraisam/17138-html5-remove-summaryJulien Phalip
Fixed #17138 -- Removed the 'summary' attribute from the admin index tables to be html5-valid.
2012-06-03Changed FilePathField tests to use it's own directory with test files.Honza Kral
In previous version it used /django/forms/ which was fragile - for some users .pyc files were not generated and this tests failed.
2012-06-03Unittest2 style assertTrue instead of assert_Honza Kral
2012-06-03Fixed incorrect assert in test_filepathfield_foldersHonza Kral
2012-06-03Remove the summary attribute of the tableSamuel Sutch
In the discussion here: https://code.djangoproject.com/ticket/17138 it was decided that using the caption for this previously non-visible part of the table element was not semantic, so in this patch is moves that summary to the `title` attribute of the `a` tag which when overed over, on most browsers, will show the text.
2012-06-02Fixed #14478 -- Isolated messages tests from custom TEMPLATE_CONTEXT_PROCESSORSClaude Paroz
2012-06-02Made sitemaps tests use override_settings. Refs #14478Claude Paroz
2012-06-02Fixed override_settings usage in test_client_regressClaude Paroz
2012-06-02Fixed settings override in mail regression testsClaude Paroz
self.settings_override from test subclasses were overwriting parent attribute.
2012-06-02Fixed #18259 -- Specified that ROOT_URLCONF might be needed.Claude Paroz
When using the template system in standalone mode and if the url template tag is used, ROOT_URLCONF has to be defined. Thanks techtonik for the report.
2012-06-01Removed debugging code added in last commit.Ramiro Morales
2012-06-01Made inspectdb tests deal with a smaller generated models.py file.Ramiro Morales
Implemented this by adding a stealth table_name_filter option for the command.
2012-06-01Fixed a typo in a comment. Refs #17742.Aymeric Augustin
2012-05-31Merge pull request #101 from jphalip/tickets/18409-regexfield-unicodeJulien Phalip
Fixed #18409 -- Made RegexField work with unicode characters.
2012-05-31Fixed #18409 -- Made RegexField work with unicode characters.Julien Phalip
2012-05-31Fixed #18408 -- Isolated flatpages tests from existing sites.Jens Page
Resolves Flatpages test issues by: - Creating an example_site fixture - Overriding project SITE_ID setting to 1 - Normalizing the use of the hardcoded (1) site_id to settings.SITE_ID
2012-05-31Cleaned up test_client_regress testsClaude Paroz
2012-05-31Moved test_client_regress tests from models.py to tests.pyClaude Paroz
2012-05-31Fixed #18407 -- Made model field's to_python methods fully accept unicode.Claude Paroz
When generating error message in to_python, any unicode string containing non-ascii characters triggered a UnicodeEncodeError for most field types.
2012-05-31Use render shortcut in form example.Daniel Roseman
2012-05-31Rewrote test_error_messages with helper test utility.Claude Paroz