summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-01-02Fixed PR 478 -- Removed superfluous try/except block.Aymeric Augustin
2013-01-02Minor fixes in the known_related_objects tests.Aymeric Augustin
* Fixed JSON indentation. * Avoided relying on implicit ordering.
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-02Fixed #19549 - Typo in docs/topics/auth/default.txtTim Graham
2013-01-01Fixed #19520 - Corrected some misleading docs about template_name_suffix.Tim Graham
Thanks jnns for the report.
2013-01-01Modernized middleware tests.Aymeric Augustin
* Used override_settings consistently -- changes to DEBUG could leak. * Took advantage of assertRaisesRegexp. * Fixed indentation -- some code was indented at 2 spaces.
2013-01-01Removed unusable parameters to empty_form propertyClaude Paroz
2013-01-01Merge pull request #615 from evildmp/patch-3Florian Apolloner
Tiny typo fixed in logging docs
2013-01-01Tiny typo fixed in logging docsDaniele Procida
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-01Added a helper script for managing django translationsClaude Paroz
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-29Removed links to deprecated IGNORABLE_404_STARTS/ENDS settings.Tim Graham
refs #19516 and 641acf76e7
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-29Removed versionadded/changed annotations dating back to 1.4.Aymeric Augustin
2012-12-29Advanced pending deprecation warnings.Aymeric Augustin
Also added stacklevel argument, fixed #18127.
2012-12-29Removed csrf_response_exempt and csrf_view_exempt.Aymeric Augustin
2012-12-29Removed legacy ways of calling cache_page.Aymeric Augustin
2012-12-29Removed truncate_words and truncate_html_words.Aymeric Augustin
2012-12-29Removed obsolete compatibility functions for old Pythons.Aymeric Augustin
2012-12-29Removed support is_safe and needs_autoescape as function attributes.Aymeric Augustin
2012-12-29Removed IGNORABLE_404_STARTS/ENDS settings.Aymeric Augustin
2012-12-29Removed HttpRequest.raw_post_data.Aymeric Augustin
2012-12-29Removed django.core.management.setup_environ and execute_manager.Aymeric Augustin
2012-12-29Removed django.core.cache.backends.memcached.CacheClass.Aymeric Augustin
2012-12-29Removed django.contrib.markup.Aymeric Augustin
2012-12-29Removed django.contrib.localflavor.Aymeric Augustin
Each localflavor lives on as a separate app.
2012-12-29Removed legacy shortcut for importing GeoIP.Aymeric Augustin
2012-12-29Removed the legacy form wizard.Aymeric Augustin
2012-12-29Removed django.contrib.databrowse.Aymeric Augustin
RIP -- you served us well.
2012-12-29Removed interpolation of post_url_continue in the admin.Aymeric Augustin