Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fixed #28079 -- Restored "No POST data" (rather than an empty table) in HTML ↵ | Tim Graham | 2017-04-15 | 1 | -1/+1 | |
| | | | | | debug page. Regression in 7b6dccc82fa5b03cf431742c0655e5ac954e228e | |||||
* | Fixed #28007 -- Moved debug templates to the filesystem | Claude Paroz | 2017-04-12 | 1 | -746/+14 | |
| | | | | Thanks Tim Graham for the review. | |||||
* | Fixed #27987 -- Added default colors in debug view CSS. | Ionuț Ciocîrlan | 2017-03-28 | 1 | -1/+1 | |
| | ||||||
* | Refs #27656 -- Updated django.views docstring verbs according to PEP 257. | Anton Samarchyan | 2017-03-03 | 1 | -20/+21 | |
| | ||||||
* | Refs #23919 -- Removed an used block in ExceptionReporter.get_traceback_data(). | Tim Graham | 2017-02-09 | 1 | -3/+0 | |
| | | | The test from refs #20368 only runs this block on Python 2. | |||||
* | Converted usage of ugettext* functions to their gettext* aliases | Claude Paroz | 2017-02-07 | 1 | -1/+1 | |
| | | | | Thanks Tim Graham for the review. | |||||
* | Removed unused ExceptionReporter.format_exception() method. | Tim Graham | 2017-02-01 | 1 | -12/+0 | |
| | | | | Unused since its introduction in e7e4b8b0f774b119bc1c46a62a97e51d7c8a35e3. | |||||
* | Removed ExceptionReporter support for string exceptions. | Tim Graham | 2017-02-01 | 1 | -5/+0 | |
| | | | | | Reverted refs #6423 since raising string exceptions is prohibited since Python 2.5. | |||||
* | Refs #23919, #27778 -- Removed obsolete mentions of unicode. | Vytis Banaitis | 2017-01-26 | 1 | -2/+2 | |
| | ||||||
* | Refs #23919 -- Removed unneeded force_str calls | Claude Paroz | 2017-01-20 | 1 | -2/+2 | |
| | ||||||
* | Refs #23919 -- Stopped inheriting from object to define new style classes. | Simon Charette | 2017-01-19 | 1 | -3/+3 | |
| | ||||||
* | Refs #23919 -- Stopped using django.utils.lru_cache(). | Aymeric Augustin | 2017-01-18 | 1 | -2/+3 | |
| | ||||||
* | Refs #23919 -- Removed six.<various>_types usage | Claude Paroz | 2017-01-18 | 1 | -5/+5 | |
| | | | | Thanks Tim Graham and Simon Charette for the reviews. | |||||
* | Refs #23919 -- Removed six.PY2/PY3 usage | Claude Paroz | 2017-01-18 | 1 | -7/+3 | |
| | | | | Thanks Tim Graham for the review. | |||||
* | Refs #23919 -- Removed encoding preambles and future imports | Claude Paroz | 2017-01-18 | 1 | -2/+0 | |
| | ||||||
* | Refs #26601 -- Removed support for old-style middleware using ↵ | Tim Graham | 2017-01-17 | 1 | -4/+4 | |
| | | | | settings.MIDDLEWARE_CLASSES. | |||||
* | Removed an unnecessary, discouraging sentence on the "It worked!" page. | Merrin Macleod | 2016-12-13 | 1 | -1/+0 | |
| | ||||||
* | Fixed #27567 -- Fixed crash in the debug view when request.user errors. | Andreas Pelme | 2016-12-06 | 1 | -3/+15 | |
| | ||||||
* | Fixed E305 flake8 warnings. | Ramin Farajpour Cami | 2016-11-14 | 1 | -0/+1 | |
| | ||||||
* | Fixed #27373 -- Corrected 404 debug page message for an empty request path. | Mariusz Felisiak | 2016-10-27 | 1 | -1/+5 | |
| | ||||||
* | Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6. | Tim Graham | 2016-09-17 | 1 | -1/+1 | |
| | | | | http://bugs.python.org/issue27364 | |||||
* | Fixed #27191 -- Fixed debug view crash for requests with 'items' in ↵ | Anatoly Burov | 2016-09-07 | 1 | -18/+22 | |
| | | | | GET/POST/COOKIES/FILES. | |||||
* | Replaced smart_* by force_* calls whenever possible | Claude Paroz | 2016-09-03 | 1 | -3/+3 | |
| | | | | | The smart_* version should only be used when a lazy string should keep its lazy status. | |||||
* | Fixed #26938 -- Fixed invalid HTML in template postmortem on the debug page. | Jon Dufresne | 2016-07-24 | 1 | -1/+0 | |
| | ||||||
* | Fixed XSS in admin's add/change related popup. | Tim Graham | 2016-07-18 | 1 | -2/+2 | |
| | | | | This is a security fix. | |||||
* | Fixed #26601 -- Improved middleware per DEP 0005. | Florian Apolloner | 2016-05-17 | 1 | -2/+4 | |
| | | | | | Thanks Tim Graham for polishing the patch, updating the tests, and writing documentation. Thanks Carl Meyer for shepherding the DEP. | |||||
* | Fixed E128 flake8 warnings in django/. | Tim Graham | 2016-04-08 | 1 | -6/+10 | |
| | ||||||
* | Fixed W503 flake8 warnings. | Tim Graham | 2016-04-04 | 1 | -9/+10 | |
| | ||||||
* | Fixed #25670 -- Allowed dictsort to sort a list of lists. | Andrew Kuchev | 2016-02-23 | 1 | -5/+5 | |
| | | | | Thanks Tim Graham for the review. | |||||
* | Fixed #26209 -- Masked sensitive settings in debug reports regardless of case. | François Freitag | 2016-02-11 | 1 | -1/+1 | |
| | ||||||
* | Refs #25755 -- Unified a couple more spellings of 'website'. | pp | 2016-01-11 | 1 | -1/+1 | |
| | ||||||
* | Fixed #26013 -- Moved django.core.urlresolvers to django.urls. | Marten Kenbeek | 2015-12-31 | 1 | -1/+1 | |
| | | | | Thanks to Tim Graham for the review. | |||||
* | Fixed #25037 -- Added request.user to the debug view. | John Moses | 2015-10-05 | 1 | -0/+7 | |
| | ||||||
* | Removed unused views.debug.linebreak_iter() function. | Tim Graham | 2015-09-24 | 1 | -9/+0 | |
| | ||||||
* | Fixed #23395 -- Limited line lengths to 119 characters. | Dražen Odobašić | 2015-09-12 | 1 | -5/+7 | |
| | ||||||
* | Fixed #25099 -- Fixed crash in AdminEmailHandler on DisallowedHost. | Vlastimil Zíma | 2015-09-04 | 1 | -3/+3 | |
| | ||||||
* | Refs #25236 -- Removed ifequal/ifnotequal usage. | Tim Graham | 2015-08-08 | 1 | -7/+7 | |
| | ||||||
* | Fixed #25147 -- Fixed debug view copy-paste/interactive toggle. | Tim Graham | 2015-07-20 | 1 | -1/+1 | |
| | | | | | The whitespace added in 1101467ce0756272a54f4c7bc65c4c335a94111b broke the initial comparison. | |||||
* | Fixed #25099 -- Cleaned up HttpRequest representations in error reporting. | Vlastimil Zíma | 2015-07-13 | 1 | -16/+7 | |
| | ||||||
* | Improved whitespace in debug templates. | Tim Graham | 2015-07-13 | 1 | -24/+26 | |
| | | | | | Removed extra blank lines in the template text debug template, and prevented overindentation in the HTML debug template. | |||||
* | Ref #23643 -- Added plain text report of exception chain. | Tomáš Ehrlich | 2015-06-01 | 1 | -4/+9 | |
| | ||||||
* | Refs #23643 -- Fixed debug view regression on Python 2. | Luca Ferroni | 2015-05-29 | 1 | -2/+4 | |
| | | | | Thanks Tomáš Ehrlich for help with the patch. | |||||
* | Fixed #24119, #24120 -- Formalized debug integration for template backends. | Preston Timmons | 2015-05-06 | 1 | -23/+5 | |
| | ||||||
* | Improved display of template loader postmortem on debug page. | Preston Timmons | 2015-04-22 | 1 | -73/+57 | |
| | | | | | | | This now works for multiple Django engines and recursive loaders. Support for non-Django engines is still pending. Refs #15053. | |||||
* | Removed cases of six.iter* wrapped in a list() | Curtis Maloney | 2015-04-18 | 1 | -1/+1 | |
| | | | | | There's absolutely no advantage [and a mild performance hit] to using six.iter* in these cases. | |||||
* | Fixed #24440 -- Added padding to debug view stacktrace lines. | andy matthews | 2015-03-23 | 1 | -2/+2 | |
| | ||||||
* | Cleaned up the template debug implementation. | Preston Timmons | 2015-03-20 | 1 | -48/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | This patch does three major things: * Merges the django.template.debug implementation into django.template.base. * Simplifies the debug implementation. The old implementation copied debug information to every token and node. The django_template_source attribute was set in multiple places, some quite hacky, like django.template.defaulttags.ForNode. Debug information is now annotated in two high-level places: * Template.compile_nodelist for errors during parsing * Node.render_annotated for errors during rendering These were chosen because they have access to the template and context as well as to all exceptions that happen during either the parse or render phase. * Moves the contextual line traceback information creation from django.views.debug into django.template.base.Template. The debug views now only deal with the presentation of the debug information. | |||||
* | Fixes #23643 -- Added chained exception details to debug view. | Tomáš Ehrlich | 2015-03-14 | 1 | -3/+52 | |
| | ||||||
* | Fixed #24455 -- Fixed crash in debug view with lazy objects | Bas Peschier | 2015-03-09 | 1 | -1/+9 | |
| | ||||||
* | Fixed #24399 -- Made filesystem loaders use more specific exceptions. | Preston Timmons | 2015-03-03 | 1 | -4/+0 | |
| |