aboutsummaryrefslogtreecommitdiffstats
path: root/example
AgeCommit message (Collapse)Author
2013-12-21Update screenshot for 1.0 release.1.0Aymeric Augustin
2013-12-09Another pass over the staticfiles panel.Jannis Leidel
- adds some docstrings - adds some basic tests - adds the staticfiles panel to the default list of panels - fixed a pluralization bug in the template - refactored some things into own methods for easier testing
2013-12-08Added staticfiles panel class.Jannis Leidel
2013-11-24Rename all panels consistently.Aymeric Augustin
Enforce absolute imports to avoid clashing with built-in package names. Thanks Jannis for his feedback.
2013-11-17Include configurations for PostgreSQL and MySQL.Aymeric Augustin
2013-11-15Implement redirects interception as a panel.Aymeric Augustin
Fix #122.
2013-11-15Add doctype to HTML templates.Aymeric Augustin
2013-11-11Automatically enable DebugToolbarMiddleware when it isn't enabled.Aymeric Augustin
2013-11-11Set INTERNAL_IPS to a convenient default when it isn't set.Aymeric Augustin
2013-11-01Add response headers to the Headers panel.Aymeric Augustin
2013-10-26Eliminate almost all flake8 messages.Aymeric Augustin
2013-10-17Add a screenshot to the README.Aymeric Augustin
Fix #182. Thanks Miserlou for the idea.
2013-10-17Remove unused imports.Aymeric Augustin
2013-10-15Fix a few issues in the updated example project.Aymeric Augustin
2013-10-14Add a README for the example project.Aymeric Augustin
2013-10-14Add a link to the admin.Aymeric Augustin
2013-10-14Update the example app with a modern project template.Aymeric Augustin
2013-10-14Remove unecessary template.Aymeric Augustin
2013-10-14Update versions of JavaScript libraries.Aymeric Augustin
Use Google's hosted libraries instead of vendoring. This is just for testing purposes and browser caching will help after the first access.
2013-02-12Updated example to use class-based generic viewsAlex Meng
Django dropped the function-based generic views in favor of class-based generic views.  The transition is outlined here: https://docs.djangoproject.com/en/1.4/topics/generic-views-migration/
2012-08-20use links to static files rather than direct inclusion, Fixes #307Thomas Grainger
2011-10-27fixed AttributeError on 404 page exception in ProfilerPanel.process_responseApkawa
2011-10-26Fixed ProfilingDebugPanel; fixed example site if installed other ↵Apkawa
debug_toolbar in system
2011-09-11Cache an HTML fragment on to exercise the cache pannel.Yann Malet
2011-09-11Fix the profiling panel when the line_profiler module is not available.Yann Malet
2011-09-10Comment the profiler panel out because it does not work on ubuntu. psats is ↵Yann Malet
not in stdlib it need to be downloaded.
2011-09-10Revert some of the previous changes and modify slightly the panels to ↵Yann Malet
separate the gneration of the stats and the generation of the content.
2011-09-09Comment the profiling pannel that cause an error because pstat was miisingYann Malet
2011-07-12Dont access __copy__ when it doesnt work. Preprocess context list so the ↵David Cramer
dictionary cannot be modified.
2011-05-10Add support for __traceback_hide__ (tidy_stacktrace now inspects ↵David Cramer
inspect.stack() rather than traceback.extract_stack()) (fixes #160)
2011-04-22Initial refactor of toggline so that profiling matches sqlDavid Cramer
2011-04-22Kill off requirement of PROJECT_ROOT and clean up lint violations in ↵David Cramer
profiling panel
2011-04-06Generate fake transaction ids so we can match up transaction end state correctlyDavid Cramer
2011-04-05Add support for engine-per-query as well as pulling out psycopg2's isolation ↵David Cramer
level and transaction status
2011-03-30Ensure we wrap all cursorsDavid Cramer
2010-10-20HTML Validation fixesChris Adams
It turns out that <script … charset="utf-8">inline script</script> is not valid (charset is valid with script src). This avoids debug_toolbar causing HTML validation errors simply by being active. Signed-off-by: Rob Hudson <rob@cogit8.org>
2010-02-11Added example project directory.Rob Hudson
Currently this allows for easy manual testing a few other Javascript libraries and whether the debug toolbar javascript conflicts with them.