aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels
AgeCommit message (Collapse)Author
2011-06-10Merge pull request #174 from maraujop/masterDavid Cramer
Caught AttributeError while rendering: 'Template' object has no attribute 'origin'
2011-06-10Issue #163: SQL expand does show query fields now. So does clicking on bullets.Tomasz Buchert
2011-06-10Checking if the origin attribute exists on the Template object insteadMiguel Araujo Perez
2011-06-09Fixes TemplateDebugPanel iterating over an unknown template without origin ↵Miguel Araujo Perez
or name
2011-06-09Timeline width in SQL panel properly scaled.Tomasz Buchert
2011-06-02Fixes RequestVarsDebugPanel' object has no attribute 'view_func' bug.Tomasz Buchert
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-13Python version in 'versions' panelTomasz Buchert
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-04-26Integrating line_profilerDave McLain
2011-04-22Basic support for toggling everywhere correctlyDavid Cramer
2011-04-22Initial refactor of toggline so that profiling matches sqlDavid 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-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-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-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 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-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
2011-03-28SQL injection now happens without interfering with the underlying db.queries ↵David Cramer
objects (and no longer requires DEBUG to be set)
2011-03-24Remove debug printDavid Cramer
2011-03-24Fix for infinite math fail :)David Cramer
2011-03-24Much better coloring scaleDavid Cramer
2011-03-24basic color code grouping of db aliasesDavid Cramer
2011-03-24Only show connections which executed queries. Show number of used ↵David Cramer
connections in title
2011-03-24Add multi db support and summaries to SQL panelDavid Cramer
2011-03-23Overhaul SQL panel to include better timeline, more compact queries, and ↵David Cramer
better view of stacktrace
2011-03-22Fix issue with __name__ if a class-based view (i.e. a FormWizard) is usedRob Golding
If view_func doesn't have a __name__ attribute, then __class__.__name__ is tried instead. If that doesn't exist either, then '<unknown>' is used.
2011-03-03As it turns out, view_func is not always availableMathijs de Bruin
as a request attribute. This is especially true for 'fallback' type of views that are rendered from within middleware, such as the one used in Django's own flatpages.
2011-01-09Added support for executemany. Fixes issue #120postal2600
Signed-off-by: Rob Hudson <rob@cogit8.org>