summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-12-07Fixed #19444 -- Clarified IGNORABLE_404_URLS documentationClaude Paroz
2012-12-06Fixed #18574 -- Make BaseFormSet.is_valid call its underlying forms' is_validAndreas Hug
Thanks Simon Charette for the report and the initial patch.
2012-12-06Fixed #19367 -- Fixed saving ContentFile in filesystem storageClaude Paroz
This was not working properly when ContentFile was initialized with an unicode string. Thanks Alexey Boriskin for the report and the test.
2012-12-06Fixed #19429 -- Applied linebreaksbr to read-only fields in inlinesMarc Aymerich
Applied to inlines what ec9d6b1122d did for main fieldsets.
2012-12-04Amended explanation of LOCALE_PATHS setting.Daniele Procida
Thanks Daniele Procida for the patch.
2012-12-04Minor idiomatic and docstring edits in ar localflavor.Ramiro Morales
2012-12-04Fixed #19391 -- Oracle specific failure in testsAnssi Kääriäinen
The failure was caused by using None as a choice for a CharField. To avoid Oracle's "" <-> NULL handling the field type was changed to IntegerField.
2012-12-04Fixed the admin_filters tests for Postgres.Julien Phalip
2012-12-04Fixed #19378 -- Ensured get_success_url returns a non-lazy URLClaude Paroz
2012-12-04Merge pull request #573 from tominsam/masterAndrew Godwin
Fixed #19070: urlize template filter raises exception in some cases
2012-12-04Fixed #18697 -- Made values accepted for two customizable admin templates ↵Ramiro Morales
consistent. Thanks and at cloverfastfood dot com for the report.
2012-12-03Fixed #19318 -- Ensured that the admin's SimpleListFilter options can be ↵Sebastián Magrí
displayed as selected even if the lookup's first element is not a string.
2012-12-03Fixed #19416 -- Fixed multi-line commands in initial SQL filesClaude Paroz
Thanks Aymeric Augustin for detecting this regression.
2012-12-03Merge pull request #569 from orblivion/masterPreston Holmes
Fixed typo in ValuesQuerySet._as_sql docstring
2012-12-03cope with unsplittable urls in smarl_urlquote.Tom Insam
2012-12-03another failing test case for square brackets.Tom Insam
2012-12-03Fixed #19397 -- Crash on binary files in project templates.Aymeric Augustin
Thanks gw 2012 at tnode com for the report.
2012-12-02Fixed #17050 -- Added some CSS class names to the admin index pages to ↵Julien Phalip
facilitate per-app or per-model style customizations. Thanks to scytale for the report and to H0ff1 and thiderman for their work on the patch.
2012-12-02fix a spelling error in docsVal Neekman
2012-12-01Typeo in ValuesQuerySet._as_sql docstringorblivion
2012-12-01Fixed #19015 -- Removed ISO formats from localized formats.pyClaude Paroz
ISO formats are automatically appended to the list of input formats. Kept only when it is specified in first position, as it has a special meaning in localize_input. Thanks Bojan Mihelac for the report.
2012-12-01Fixed #19015 -- Add ISO input formats to all formatsClaude Paroz
2012-12-01Fixed #19347 -- Removed unused variable definition in FetchFromCacheMiddlewareClaude Paroz
Thanks gregplaysguitar at gmail.com for the report.
2012-12-01Fixed #19349 -- Fixed re-rendering of ReadOnlyPasswordHashWidgetClaude Paroz
Thanks tim.bowden at mapforge.com.au for the report, Andreas Hug for the patch and Anton Baklanov for the review.
2012-11-30Added missing custom user skip decoratorPreston Holmes
PermissionDeniedBackendTest references User model.
2012-11-30Fixed #19400 - Typo in docs/topics/auth.txtTim Graham
2012-11-29Fixed #19354 -- Do not assume usermodel.pk == usermodel.idClaude Paroz
Thanks markteisman at hotmail.com for the report.
2012-11-29Fixed #19356 -- Increased session key entropy.Aymeric Augustin
2012-11-28Merge pull request #560 from brutasse/fix/1.5-typosRamiro Morales
Fixed typo in the 1.5* release notes. Thanks brutasse.
2012-11-28Fixed two docstring/comment typos.Ramiro Morales
2012-11-28Converted a couple of assertEquals -> assertEqualAnssi Kääriäinen
2012-11-28Fixed #19366 -- Prevented GEOSIndexError when comparing geometriesClaude Paroz
Thanks Craig de Stigter for the report and collaboration on the patch.
2012-11-28Fixed #14694 -- Made ``defer()`` work with reverse relationsTai Lee
Reverse o2o fields are now usable with defer.
2012-11-28Typo in the 1.5 release notesBruno Renié
2012-11-28Merge pull request #559 from tail/ticket_19374Claude Paroz
Fixed #19374 -- Typo in docs/ref/models/instances.txt.
2012-11-27Fixed #19374 -- Typo in docs/ref/models/instances.txt.Jason Yan
2012-11-27Fixed #19239 - Added examples for generic date viewsTim Graham
Thank-you Daniel Greenfeld and Scott Nixon.
2012-11-27Fixed #19352 - Added an example in the QuerySet docs.Tim Graham
Thanks colinkeenan for the suggestion.
2012-11-27Fixed a couple of typos in the 1.5 (and beta) release notes.Jacob Kaplan-Moss
2012-11-27Added 1.5 beta release notes.Jacob Kaplan-Moss
2012-11-27Fixed #19370 -- Made date filter properly handle midnight valueDanilo Bargen
2012-11-27Removed duplicate opts.pk_index() methodAnssi Kääriäinen
2012-11-27Refactored gis/spatialite connection initializationAnssi Kääriäinen
The connection state is now initialized in get_new_connection(). Refs #19274.
2012-11-27Made some tests behave nicer re connection handlingAnssi Kääriäinen
2012-11-27Made sure global settings are changed in test db creationAnssi Kääriäinen
There was an assumption that changing connection.settings_dict changed also the settings.DATABASES values. This assumption is now gone.
2012-11-27Fixed #19274 -- Made db connection creation overridable in subclassesAnssi Kääriäinen
Connection creation was done in db backend ._cursor() call. This included taking a new connection if needed, initializing the session state for the new connection and finally creating the connection. To allow easier modifying of these steps in subclasses (for example to support connection pools) the _cursor() now calls get_new_connection() and init_connection_state() if there isn't an existing connection. This was done for all non-gis core backends. In addition the parameters used for taking a connection are now created by get_connection_params(). We should also do the same for gis backends and encourage 3rd party backends to use the same pattern. The pattern is not enforced in code, and as the backends are private API this will not be required by documentation either.
2012-11-27Fixed #19362 -- Detected invalid use of @python_2_unicode_compatible.Aymeric Augustin
Thanks m3wolf for the report and akaariai for reproducing the problem.
2012-11-25Fixed #17911 -- Ensure that admin readonly fields' display values are shown ↵Edward Tjörnhammar
in change forms when the raw value is None.
2012-11-25Merge pull request #476 from wraithan/patch-1Aymeric Augustin
Indented comments consistently in project template
2012-11-25Merge pull request #518 from vanschelven/patch-1Aymeric Augustin
Fixed interpolation in a translated string. Refs #14678.