aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
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-26Integrating line_profilerDave McLain
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
2011-04-06Mark the correct query as ending the transactionDavid Cramer
2011-04-06Transaction id tracing is not specific to psycopg2David Cramer
2011-04-06Generate fake transaction ids so we can match up transaction end state correctlyDavid Cramer
2011-04-06SQL panel now guesses at Psycopg2 transactions (when autocommit swaps to in ↵David Cramer
trans and vice versa)
2011-04-06Added protection against toolbar injections on gzipped responses.Rob Hudson
2011-04-06Added basic support for multi-db.Rob Hudson
Thanks to David Cramer, Ionel Cristian Mărieș, noah256, and Sander Steffann, who all supplied patches.
2011-04-05Add support for engine-per-query as well as pulling out psycopg2's isolation ↵David Cramer
level and transaction status
2011-03-31Add utilities to inject and monitor functions. Change DB tracking to use new ↵David Cramer
injection method on BaseDatabaseWrapper.cursor
2011-03-30Some initial tests and fix for execution modelDavid Cramer
2011-03-30Inject our SQL tracker on BaseDatabaseWrapper.cursor rather than discovering ↵David Cramer
different CursorWrapper's
2011-03-30Ensure we wrap all cursorsDavid Cramer
2011-03-30Ensure we're always returning a response(?)David Cramer
2011-03-28Add a note when no SQL queries are loggedDavid Cramer
2011-03-28Store actual function as __wrapped__ instead of __wraps for Python 3.2 ↵David Cramer
compatibility
2011-03-28Fail gracefully when theres no queries on a pageDavid Cramer