aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2011-05-26Add failing test for #165 and #166David Cramer
2011-05-26Add tests for show_toolbar on TEST, DEBUG, and INTERNAL_IP. Add test to ↵David Cramer
ensure we're appending urlpatterns correctly.
2011-05-26only load the toolbar if DEBUG, TEST, or INTERNAL_IPS matchDavid Cramer
2011-05-26Merge pull request #167 from cooyeah/masterDavid Cramer
toolbar should be disabled when settings.TEST is True
2011-05-26toolbar should be disabled when settings.TEST is TrueGu Ye
2011-05-23handle cases when text is a NoneTypeDavid Cramer
2011-05-16Correct ordering of stacktraceDavid Cramer
2011-05-16Correct display of text in stacktracesDavid Cramer
2011-05-16alias should be derived from cursor's db, not the cursor itselfDavid Cramer
2011-05-16Merge branch 'master' of github.com:django-debug-toolbar/django-debug-toolbarDavid Cramer
2011-05-16Remove trailing quotation in SQL stacktrace displayDavid Cramer
2011-05-13Merge pull request #162 from thinred/masterDavid Cramer
Python version in versions panel
2011-05-13Python version in 'versions' panelTomasz Buchert
2011-05-10Support multiple databases in profile, select, and explain calls (fixes #155)David Cramer
2011-05-10Hide CursorWrapper in query tracebacksDavid Cramer
2011-05-10Merge branch 'master' of github.com:django-debug-toolbar/django-debug-toolbarDavid Cramer
2011-05-10Add support for __traceback_hide__ (tidy_stacktrace now inspects ↵David Cramer
inspect.stack() rather than traceback.extract_stack()) (fixes #160)
2011-05-10Merge pull request #146 from robgolding63/masterDavid Cramer
Fix for missing __name__ attribute when using class based views (i.e. FormWizard)
2011-05-10Bump version and use get-distribution to avoid unnescesary importsDavid Cramer
2011-05-10Catch non-200 requests (fixes #147)David Cramer
2011-05-10Merge branch 'master' into andrepl-masterDavid Cramer
Conflicts: debug_toolbar/middleware.py
2011-05-09Dont error out if Content-Type is missing (fixes #153)David Cramer
2011-05-09Update URLs to reflect organization changeDavid Cramer
2011-05-09Merge branch 'master' of ↵David Cramer
git://github.com/django-debug-toolbar/django-debug-toolbar
2011-04-25Merge branch 'release/v0.8.5'v0.8.5Rob Hudson
2011-04-25Bumped version and updated NEWSRob Hudson
2011-04-25Ensure if we're overriding the urlconf that we're resetting handler404/500David Cramer
Signed-off-by: Rob Hudson <rob@cogit8.org>
2011-04-22Basic support for toggling everywhere correctlyDavid Cramer
2011-04-22Initial refactor of toggline so that profiling matches sqlDavid Cramer
2011-04-22Clean up some oddly formatted CSSDavid Cramer
2011-04-22Remove print statementDavid Cramer
2011-04-22Kill off requirement of PROJECT_ROOT and clean up lint violations in ↵David Cramer
profiling panel
2011-04-22Merge branch 'profiling' of git://github.com/dmclain/django-debug-toolbar ↵David Cramer
into dmclain-master Conflicts: debug_toolbar/media/debug_toolbar/css/toolbar.min.css debug_toolbar/media/debug_toolbar/js/toolbar.min.js
2011-04-22Merge branch 'develop' of git://github.com/robhudson/django-debug-toolbar ↵David Cramer
into robhudson-develop Conflicts: debug_toolbar/media/debug_toolbar/css/toolbar.css debug_toolbar/media/debug_toolbar/css/toolbar.min.css debug_toolbar/media/debug_toolbar/js/toolbar.min.js debug_toolbar/middleware.py debug_toolbar/panels/sql.py debug_toolbar/templates/debug_toolbar/base.html debug_toolbar/templates/debug_toolbar/panels/sql.html
2011-04-22first pass at a profiler panelDave McLain
2011-04-21Creating a profiling panel from the version panel for basic stuffDave McLain
2011-04-20Updated middleware logic to avoid work if content-type isn't right.Rob Hudson
If content-type isn't an HTML type, we no longer process the panels or try to adjust the content length header.
2011-04-20Change .load() calls to GET to avoid CSRF protection.Rob Hudson
Thanks to Tomasz Buchert for the suggestion.
2011-04-20Revert "Made views for AJAX sub-panels CSRF exempt."Rob Hudson
This reverts commit 0b2fcf045e9434c6efbbddae07d8b79b779483a5.
2011-04-18Ensure if we're overriding the urlconf that we're resetting handler404/500David Cramer
2011-04-16Ensure tests are compatible with unittest (Django <1.3)David Cramer
2011-04-16Ensure tests are compatible with unittest (Django <1.3)David Cramer
2011-04-13Ensure we are verifying that template.name is present before running a ↵David Cramer
string check
2011-04-13Fix a bug with marking the last query in a transaction as the end of chainDavid Cramer
2011-04-12Fixed KeyError when content-type is not set on an HttpResponseAndre LeBlanc
2011-04-08Stripped out logging of SQL queries from logging panel.Rob Hudson
2011-04-08Updated sql panel to include logging support.Rob Hudson
This matches Django's added logging support to the debug cursor.
2011-04-06Correctly reference num_queriesDavid Cramer
2011-04-06Only mark starting a new transaction if new trans_id is setDavid Cramer
2011-04-06unset transaction id if we're not in a transactionDavid Cramer