summaryrefslogtreecommitdiff
path: root/django/views/debug.py
AgeCommit message (Expand)Author
2014-07-26[1.7.x] Fixed code to solve #23070 problemHiroki KIYOHARA
2014-02-15Corrected a pair of flake8 violationsAlex Gaynor
2014-02-15Improved fix for #18373 -- backward compatibilityGrzegorz Nosek
2014-02-15Fixed some flake8 errors from recent commits.Tim Graham
2014-02-15Fixed #18373 - improved handling of Resolver404s from viewsGrzegorz Nosek
2014-02-08Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...Berker Peksag
2013-12-28Used app_label instead of appname.Aymeric Augustin
2013-12-07Fixed #21530 -- Prevent AttributeError in default URLconf detection code.Baptiste Mispelon
2013-11-28Fixed E125 pep8 warningsChristopher Medrela
2013-11-22Fixed #21443 -- Cannot show debug info on PY3's importlibBouke Haarsma
2013-11-03Fixed all E226 violationsAlex Gaynor
2013-11-02Correct flake8 E302 violationsRay Ashman Jr
2013-11-02Fixed all E261 warningscoagulant
2013-10-30Fixed #21345: Don't evaluate callable settings in the debug page.Baptiste Mispelon
2013-10-26Fixed all the E203 violationsAlex Gaynor
2013-10-26Fixed up some more flake8 violations (this particular violation still has man...Alex Gaynor
2013-10-14Fixed #21266 -- Fixed E201,E202 pep8 warnings.Larry O'Neill
2013-09-18Fixed #21098 -- Applied sensitive_post_parameters to MultiValueDictTim Graham
2013-09-06adds fix and test for when a template is not specified at all to render(). fi...Ian Wilson
2013-08-12Unlocalize line numbers and ids in debug 500 view.Ramiro Morales
2013-06-19Removed several unused imports.Aymeric Augustin
2013-05-30Merge pull request #1027 from intgr/debug_no_exc_messageTim Graham
2013-05-26Replaced `and...or...` constructs with PEP 308 conditional expressions.Ramiro Morales
2013-05-21Fixed #6412 -- More details if a template file cannot be loadedMathijs de Bruin
2013-05-18Fixed #13958 -- problem reporting exception from \r-line-ended fileShai Berger
2013-04-23Clearer explanation when exception has no messageMarti Raudsepp
2013-02-24Loaded cycle and firstof from future in built-in templates. Refs #17906.Aymeric Augustin
2013-02-04Fixed #17061 -- Factored out importing object from a dotted pathClaude Paroz
2013-02-04Simplified default project template.Aymeric Augustin
2012-12-31Fixed #19453 -- Ensured that the decorated function's arguments are obfuscate...Julien Phalip
2012-10-26PEP 302 source loaders already decode appropriatelyIan Clelland
2012-10-08[py3] Decoded the parsed source file encoding in debug viewClaude Paroz
2012-08-29Replaced many smart_bytes by force_bytesClaude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-06-30Removed usage of mimetype kwarg of HttpResponseClaude Paroz
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-06-03Fixed #17138 -- Made the sensitive_variables decorator work with object methods.Julien Phalip
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
2012-05-05Made more extensive usage of context managers with open.Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-02-09Fixed #17460 -- Extended the HIDDEN_SETTINGS constant in with a few more sen...Jannis Leidel
2012-01-01Fixed #17486 -- Updated the welcome page of new projects to reflect the new s...Aymeric Augustin
2011-12-22Fixed super-edge-case bug in debug view where exc_value.args was empty. I man...Adrian Holovaty
2011-12-17Fixed various dodgy behavioursAdrian Holovaty
2011-10-02Fixed #10841 -- Switched response served when DEBUG=True and request.is_ajax(...Ramiro Morales
2011-09-16Fixed #16770 -- Eliminated TemplateSyntaxError wrapping of exceptions. Thanks...Carl Meyer
2011-09-09Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin vo...Jannis Leidel