summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2013-01-11Fixed #19488 -- Made i18n_patterns redirect work with non-slash-ending pathsClaude Paroz
Thanks Daniel Gerzo for the report and the initial patch.
2013-01-11Fixed #19585 -- Fixed loading cookie value as a dictClaude Paroz
This regression was introduced by the 'unicode_literals' patch.
2013-01-11Fixed #4833 -- Validate email addresses with localhost as domainClaude Paroz
2013-01-11Made dev server autoreloader ignore filenames reported as None.Thomas Bartelmess
Useful under Jython. Thanks Thomas Bartelmess for the report and patch. Ref #9589.
2013-01-11Fixed #19360 -- Raised an explicit exception for aggregates on date/time ↵Nick Sandford
fields in sqlite3 Thanks lsaffre for the report and Chris Medrela for the initial patch.
2013-01-11Fixed #10239 - Added docs for modelform_factoryTim Graham
Thanks ingenieroariel for the suggestion and slurms for the review.
2013-01-10Fixed #19573 -- Allow override of username field label in AuthenticationFormNick Sandford
2013-01-09Fixed #19581 -- ensure unique html ids with CheckboxSelectMultiple widgetsLoic Raucy
ID check is now done the same way as MultipleHiddenInput.
2013-01-09Remove inaccurate comment regarding language names.Carl Meyer
2013-01-09Fixed #19546 - ensure that deprecation warnings are shown during testsPreston Holmes
refs #18985
2013-01-08Fixed #19576 -- Use `six.with_metaclass` uniformously accross code base.Simon Charette
2013-01-08Fixed #17541 -- Fixed non-saved/nullable fk queryingAnssi Kääriäinen
2013-01-08Updated deprecated test assertionsClaude Paroz
2013-01-08Fixed #16759 -- Remove use of __deepcopy__ in qs.clone()Anssi Kääriäinen
The original problem was that queryset cloning was really expensive when filtering with F() clauses. The __deepcopy__ went too deep copying _meta attributes of the models used. To fix this the use of __deepcopy__ in qs cloning was removed. This commit results in some speed improvements across the djangobench benchmark suite. Most query_* tests are 20-30% faster, save() is 50% faster and finally complex filtering situations can see 2x to order of magnitude improvments. Thanks to Suor, Alex and lrekucki for valuable feedback.
2013-01-07Created special PostgreSQL text indexes when unique is TrueClaude Paroz
Refs #19441.
2013-01-06Fixed #19173 -- Made EmptyQuerySet a marker class onlyAnssi Kääriäinen
The guarantee that no queries will be made when accessing results is done by new EmptyWhere class which is used for query.where and having. Thanks to Simon Charette for reviewing and valuable suggestions.
2013-01-05Fixed #12914 -- Use yaml faster C implementation when availableClaude Paroz
Thanks Beuc for the report and the initial patch.
2013-01-04Fixed #19192 -- Allowed running tests with dummy db backendClaude Paroz
Thanks Simon Charette for the initial patch, and Jan Bednařík for his work on the ticket.
2013-01-03Replaced deprecated sslerror by ssl.SSLErrorClaude Paroz
The exact conditions on which this exception is raised are not known, but this replacement is the best guess we can do at this point.
2013-01-03Added documentation for the 'db' argument of the post-syncdb signal.mpaolini
2013-01-03Fixed #19382 -- Stopped smtp backend raising exception when already closedClaude Paroz
Thanks Sebastian Noack for the report and the initial patch.
2013-01-03Fixed #19134 -- Allowed closing smtp backend when the server is stoppedClaude Paroz
Thanks Sebastian Noack for the report and the initial patch.
2013-01-03Updated comment about PostGIS bug 2035Claude Paroz
PostGIS 2.0.2 has been released on December 3rd 2012, with the fix included.
2013-01-03Fixed #19545 -- Make sure media/is_multipart work with empty formsetsSimon Charette
2013-01-02Fixed PR 478 -- Removed superfluous try/except block.Aymeric Augustin
2013-01-02Fixed #19547 -- Caching of related instances.Aymeric Augustin
When &'ing or |'ing querysets, wrong values could be cached, and crashes could happen. Thanks Marc Tamlyn for figuring out the problem and writing the patch.
2013-01-01Removed unusable parameters to empty_form propertyClaude Paroz
2013-01-01Updated our six module to follow upstream changes.Florian Apolloner
This includes fixes for the java/jython detection and a new license header. Thanks to Thomas Bartelmess for the report.
2013-01-01Replaced six.reraise with a simple raise.Florian Apolloner
2013-01-01Replaced e.message with e.args[0] in 3aa4b8165da23a2f094d0eeffacbda5484f4c1f6.Florian Apolloner
2013-01-01Merge pull request #182 from kspi/patch-1Florian Apolloner
Correct Lithuanian short date format.
2013-01-01Fixed a NameError in geoip/libgeoip if the GeoIP library is not found.Florian Apolloner
Thx to Bouke Haarsma for the report.
2013-01-01Fixed #19457 -- ImageField size detection failed for some files.Anton Baklanov
This was caused by PIL raising a zlib truncated stream error since we fed the parser with chunks instead of the whole image.
2013-01-01Fixed #19519 again -- Regression in LiveServerTestCase after fd1279a4.Aymeric Augustin
2012-12-31Fixed #17078 -- Made shell use std IPython startup.Ramiro Morales
This allows for a behavior more in line with what is expected by Ipython users, e.g. the user namespace is initialized from config files, startup files. Thanks Benjamin Ragan-Kelley from the IPython dev team for the patch.
2012-12-31Fixed #19453 -- Ensured that the decorated function's arguments are ↵Julien Phalip
obfuscated in the @sensitive_variables decorator's frame, in case the variables associated with those arguments were meant to be obfuscated from the decorated function's frame. Thanks to vzima for the report.
2012-12-31Fixed #19519 -- Fired request_finished in the WSGI iterable's close().Aymeric Augustin
2012-12-31Fixed #16241 -- Ensured the WSGI iterable's close() is always called.Aymeric Augustin
Thanks Graham Dumpleton for the report.
2012-12-31Fixed #19537 -- Made CheckboxInput._has_changed handle 'False' stringClaude Paroz
Thanks dibrovsd@gmail.com for the report.
2012-12-30Added further flexibility to ModelAdmin for controlling post-save redirections.Julien Phalip
Refs #19505.
2012-12-30Fixed GIS regression in get_default_columns()Anssi Kääriäinen
I changed the normal compiler's get_default_columns() but didn't change the copy-pasted code in GIS compiler's get_default_columns(). Refs #19385
2012-12-30Minor improvement to proxy model handlingAnssi Kääriäinen
Refs #19385
2012-12-30Made use of PathInfo.direct flag in trim_joinsAnssi Kääriäinen
Refs #19385
2012-12-30Added Query.join_parent_model()Anssi Kääriäinen
This simplifies especially compiler.py a lot, where almost the same code was repeated multiple times. Refs #19385
2012-12-30Moved join path generation to FieldAnssi Kääriäinen
Refs #19385
2012-12-30Made sure join_field is always available in .join()Anssi Kääriäinen
Refs #19385
2012-12-29Merge pull request #595 from bmispelon/patch-1Aymeric Augustin
Fixed a typo in WidthRatioNode.
2012-12-29Merge pull request #609 from mitar/patch-3Aymeric Augustin
Fixed typo in collectstatic output.
2012-12-29Silenced warnings in the tests of deprecated features.Aymeric Augustin
2012-12-29Advanced pending deprecation warnings.Aymeric Augustin
Also added stacklevel argument, fixed #18127.