summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-26Bumped verion numbers for 1.6a1.1.6a1Jacob Kaplan-Moss
2013-05-26Replaced `and...or...` constructs with PEP 308 conditional expressions.Ramiro Morales
2013-05-25Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.Preston Holmes
SuspiciousOperations have been differentiated into subclasses, and are now logged to a 'django.security.*' logger. SuspiciousOperations that reach django.core.handlers.base.BaseHandler will now return a 400 instead of a 500. Thanks to tiwoc for the report, and Carl Meyer and Donald Stufft for review.
2013-05-26Fixed get_or_create...test_savepoint_rollback test for Python3Shai Berger
The test was always skipped on Python3 because string literals are unicode
2013-05-26Fix get_or_create test failure under OracleShai Berger
Test expected that when given invalid utf-8, the backend should raise a DatabaseError, but the Oracle backend raises a UnicodeDecodeError.
2013-05-25Fixed #19938 -- Consumed iterator only once in paginator's PageAndrew Jesaitis
Thanks Joshua Fialkoff for the report.
2013-05-25Fixed #20296 -- Allowed SafeData and EscapeData to be lazyBaptiste Mispelon
2013-05-25Fixed #11725 -- Made possible to create widget label tag without "for"Claude Paroz
Thanks Denis Martinez for the report and initial patch, and Sergey Kolosov for bringing the patch up to date.
2013-05-25Updated translation catalogsClaude Paroz
Updated core/admin/admindocs/comments translation catalogs.
2013-05-25Fixed some minor translation-related issuesClaude Paroz
2013-05-25Fixed #20455 -- Do not use ngettext for undefined pluralsMarc Egli
Using two separate translation strings instead of gettext plural when there is no reference to the number in the translated string. This prevents some translations like Russian and Latvian to use the singular form for 11 or 21.
2013-05-25Removed obsolete attribute of DjangoTranslationClaude Paroz
2013-05-25Fixed #20099 -- Eased subclassing of BrokenLinkEmailsMiddlewareClaude Paroz
Thanks Ram Rachum for the report and the initial patch, and Simon Charette for the review.
2013-05-25Fixed #14825 -- LocaleMiddleware keeps languageVlastimil Zíma
* LocaleMiddleware stores language into session if it is not present there.
2013-05-24Rotate CSRF token on loginAndrew Godwin
2013-05-24Fixed a regression in router initializationClaude Paroz
Regression was introduced in 6a6bb168b. Thanks Bas Peschier for the report.
2013-05-24Fixed #20492 - Removed a broken link in GIS docs.Tim Graham
2013-05-24Merge pull request #1210 from alasdairnicol/jquery_cookie_plugin_linkTim Graham
Updated link to jQuery Cookie plugin site
2013-05-24Merge pull request #1209 from tax/masterPreston Holmes
Updated link to active project for ODBC backend
2013-05-24Updated my bioBrian Rosner
2013-05-24Update link to jQuery Cookie plugin siteAlasdair Nicol
2013-05-24Link to active fork for ODBC backendPaul Tax
It took me quite some time to find if and where the ODBC backend was maintained. I found (on djangoproject.com): http://code.google.com/p/django-pyodbc/ (last commit about 3 years ago) then: https://github.com/avidal/django-pyodbc avidal fork. then: https://github.com/aurorasoftware/django-pyodbc/ aurorasoftware version which has avidal improvements merged. Avidals version now links to https://github.com/aurorasoftware/django-pyodbc/ which is also the version installed through PIP.
2013-05-24Optimisation in prefetch_related_objectsLuke Plant
2013-05-24Fixed #19607 - prefetch_related crashLuke Plant
Thanks to av@rdf.ru and flarno11@yahoo.de for the report.
2013-05-23Fixed #17648 -- Add `for_concrete_model` to `GenericForeignKey`.Gavin Wahl
Allows a `GenericForeignKey` to reference proxy models. The default for `for_concrete_model` is `True` to keep backwards compatibility. Also added the analog `for_concrete_model` kwarg to `generic_inlineformset_factory` to provide an API at the form level.
2013-05-23Removed noise from pre_syncdb signal testsDonald Stufft
Only make assertions that actually test the functionality of the change and not unrelated pieces.
2013-05-23Fixed #20316 - Clarified transaction behavior of TestCase.Tim Graham
Thanks uberj@ for the report and lolek09 for the patch.
2013-05-23Added back a link to docs/internals/committers.txtTim Graham
2013-05-23Update my employer.Alex Gaynor
2013-05-23Fixing some FIXMEs in howto-release-django. Refs #20082Andrew Godwin
2013-05-23Delayed settings.DATABASE_ROUTERS usage by ConnectionRouterClaude Paroz
Refs #20474.
2013-05-23Delayed settings.DATABASES usage by ConnectionHandlerClaude Paroz
Refs #20474.
2013-05-23Fixed #20474 -- Proxied and deprecated django.db.backendClaude Paroz
2013-05-23Fixed #20417 - Noted that a server restart is required to load new ↵Tim Graham
templatetag modules. Thanks Katya for the suggestion.
2013-05-23Fixed #20482 - Added a file reference in tutorial 3.Tim Graham
Thanks diek@ for the suggestion.
2013-05-23Fixed #20080 - Recommended use of PYTHONHASHSEEDTim Graham
Thanks jacob for the suggestion and ryankask for the patch.
2013-05-23Fixed #19237 (again) - Made strip_tags consistent between Python versionsClaude Paroz
2013-05-23Made fix for #9321 less buggy and more effective.Ramiro Morales
Don't try to be smart about building a good-looking help string because it evaluates translations too early, simply use the same old strategy as before. Thanks Donald Stufft for the report. Also, actually fix the case reported by the OP by special-casing CheckboxSelectMultiple. Added tests. Refs #9321.
2013-05-23Merge pull request #1201 from takis/docs_typoMarc Tamlyn
Fixed comments for translators example in the i18n documentation
2013-05-23Fixed comments for translators example in the i18n documentationPanagiotis H.M. Issaris
The documentation regarding adding a comment for translators was confusing as the example contained mismatching tags.
2013-05-22Merge pull request #1200 from dstufft/pre-syncdb-signalDonald Stufft
Fixed #11398 - Added a pre_syncdb signal
2013-05-23Fixed #11398 - Added a pre_syncdb signalDonald Stufft
2013-05-22Merge pull request #1198 from KrzysiekJ/http-patch-methodRussell Keith-Magee
Fixed #20478 – Added support for HTTP PATCH method in generic views.
2013-05-22Removed check for 0.15 version of gettext toolsClaude Paroz
gettext 0.15 has been released in July 2006.
2013-05-22Fixed #19237 -- Used HTML parser to strip tagsClaude Paroz
The regex method used until now for the strip_tags utility is fast, but subject to flaws and security issues. Consensus and good practice lead use to use a slower but safer method.
2013-05-22Clarified policy for stable branches.Tim Graham
Thanks Ramiro Morales for the initial patch and Preston Holmes for the review.
2013-05-22Added some text I meant to add in the last commit.Tim Graham
2013-05-22Added a note about pip upgrade flag.Tim Graham
Thanks Jannis Leidel for the suggestion.
2013-05-22Fixed #17048 - Added docs for upgrading Django.Tim Graham
Thanks Donald Stufft for the suggestion and Susan Tan and Brian Fabian Crain for the patch.
2013-05-22Fixed a broken link introduced in a542b808baf.Tim Graham