aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar
AgeCommit message (Collapse)Author
2013-12-15Pull translations from Transifex.Aymeric Augustin
2013-12-15Added translation strings for the staticfiles panel.Aymeric Augustin
2013-12-15Properly disable instrumentation for the template panel.Aymeric Augustin
It's important to disconnect the signal at the end of a request because the toolbar now stores panels for past request. Fix #491 (presumably).
2013-12-14Merge pull request #494 from django-debug-toolbar/staticfilesAymeric Augustin
Added staticfiles panel class.
2013-12-11Put debug_toolbar's url patterns firstGavin Wahl
Some applications require using a catch-all urlpattern that must come last in the list of urlpatterns. If the __debug__ urls come after it, they'll never be hit. Putting the debug_toolbar urls first fixes this, but could possibly shadow an existing url, but the old version of debug toolbar did the same thing.
2013-12-09Storing the original on module level.Jannis Leidel
2013-12-09Use enable_instrumentation/disable_instrumentation instead of module level ↵Jannis Leidel
monkey patching.
2013-12-09Some imports.Jannis Leidel
2013-12-09Use collections.OrderedDict if available.Jannis Leidel
2013-12-09Be helpful when d.c.staticfiles isn't installed.Aymeric 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-08Actual show the number of used static files in panel title.Jannis Leidel
2013-12-08Added staticfiles panel class.Jannis Leidel
2013-12-01Review translated strings.Aymeric Augustin
- Include trailing colons inside translated strings because some languages (eg. French) need a space before the colon. - Normalize capitalization (title-style didn't seem warranted and looked weird in some cases). - Normalize quotes (not very useful, but we had a random mixture of single and double quotes). - Remove msgstr from the English po file because they're identical to msgid by definition.
2013-11-30Fix regression from last week-end's massive renaming.Aymeric Augustin
2013-11-30Provide a solution to prevent monkey-patching the settings.Aymeric Augustin
This is necessary to work around extreme cases of circular imports. We really need to reverse URLs at import time and this isn't always possible.
2013-11-30Reduce the risk of circular imports.Aymeric Augustin
2013-11-30Extract output of context processors instead of recreating it.Aymeric Augustin
Also include context processors explicitly passed to RequestContext. Fix #353.
2013-11-29Fix JS regression in the template panel.Aymeric Augustin
It was introduced during last week-end's large renaming.
2013-11-29Also record SQL from callproc.Aymeric Augustin
I'm not sure anyone is using that, but it's in the DB API. Fix #293.
2013-11-29Record SQL from executemany.Aymeric Augustin
Fix #293.
2013-11-29Stop sharing unsafely a context dict across threads.Aymeric Augustin
Panels that need to share data with other panels shall do it through the record_stats / get_stats API. Statistics are automatically pushed to the template context. Fix #450.
2013-11-29Remove support for logbook.Aymeric Augustin
If you were relying on this feature, it should be quite easy to implement it in a third-party panel, and we'll reference it in the documentation. Fix #478.
2013-11-29Move support for line_profiler to a 3rd party panel.Aymeric Augustin
Many thanks to Dave McLain. Fix #477.
2013-11-26Add comments in DebugToolbarMiddleware.Aymeric Augustin
Reorder process_response slightly to ensure instrumentation is deactivated for streaming responses.
2013-11-25Support non-str keys in request.META.Aymeric Augustin
Fix #482.
2013-11-24OopsAymeric Augustin
2013-11-24Degrade docs because I can't put a flake8 ignore :'(Aymeric Augustin
2013-11-24Update all panels to follow the public API.Aymeric Augustin
2013-11-24Compatibility with Django 1.7.Aymeric Augustin
2013-11-24Clean up and document the Panel API.Aymeric Augustin
2013-11-24Remove unused import.tAymeric Augustin
2013-11-24Removed unneeded Panel.slug attribute.Aymeric Augustin
2013-11-24Fix cyclic import issues in db2de5b.Aymeric Augustin
2013-11-24Take advantage of django.contrib.staticfiles to serve static files.Aymeric Augustin
It is the de facto standard nowadays and there's no good reason not to use it.
2013-11-24Make SHOW_TOOLBAR_CALLBACK a dotted path.Aymeric Augustin
Fix #473.
2013-11-24Remove HIDE_DJANGO_SQL configuration option.Aymeric Augustin
It was badly named and HIDE_IN_STACKTRACES provides a more general solution. The ability to show code in django.contrib but not in django doesn't seem particularly useful. Fix #474.
2013-11-24Simplify how the toolbar is inserted in responses.Aymeric Augustin
2013-11-24Rename some settings for clarity and consistency.Aymeric Augustin
Thanks Jannis for his help.
2013-11-24Rename storage to store to avoid conflicting with Django terminology.Aymeric Augustin
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-23Stop bundling jQuery.Aymeric Augustin
2013-11-23Fix incompatibility with jQuery 2.Aymeric Augustin
Fix #463.
2013-11-22connection_created is available since Django 1.1.Aymeric Augustin
2013-11-22Add tests for redirects panel.Aymeric Augustin
Also simplify the implementation.
2013-11-22Fix regression introduced in 87a7375.Aymeric Augustin
Fix #466.
2013-11-18Add an option to collapse the toolbar by default.Aymeric Augustin
Fix #258.
2013-11-18Decode source code with the declared encoding.Aymeric Augustin
Fix #228.
2013-11-16Fix instrumentation of multiple database connections.Aymeric Augustin
Python requires a function call to create a new scope; lambdas don't create closures! Fix #457.
2013-11-16Better solution than ca24b3f.Aymeric Augustin