aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/templates
AgeCommit message (Collapse)Author
2014-08-25Remove css text-indent hack for back and close buttons.HEADmasterBo Lopker
Fixes #624. Remove text-index Remove old 'Back' text Remove 'close' text
2014-06-17Prefixing common CSS classes with djdt-tschilling
2014-05-17Make the fix for #591 more focused and explain it.Aymeric Augustin
2014-05-17Merge pull request #591 from mbarrien/jquery-requireAymeric Augustin
undefine "define" to avoid requirejs conflict
2014-05-17Don't show AJAX loader for preloaded panels.Aymeric Augustin
Fix #582, #594. Thanks TacoDelPaco for the report and ionelmc for the fix.
2014-04-29undefine "define" to avoid requirejs conflictMichael Barrientos
2014-04-25Make the pain go away.Aymeric Augustin
Fix #581, #544, #541, #535 and a few others.
2014-04-03Fix #571 -- Improve database engine detection.Aymeric Augustin
2014-02-13XML validity.Aymeric Augustin
2014-02-13Add loading animation for panels. Fix #488.Aymeric Augustin
2014-02-08Color-code SQL query "Timeline" stripes according to stacktraceDavid Wolfe
2014-02-01Stop accessing non-existing 'url' attribute.Aymeric Augustin
Fix #536.
2014-01-17Merge pull request #513 from ifduyue/fix-ifequal-mysql-engineJannis Leidel
Fix: query.engine can be 'MySQLdb' for msyql.
2014-01-15Remove dependency on jquery-cookie pluginDan Farrelly
Replace plugin with simpler get and set methods.
2013-12-27Fix: sql panel sql uncollapseYue Du
sql_select.html, sql_explain.html, sql_profile.html These three templates all need toolbar.sql.js, otherwise the `select ...` cannot be uncollapsed.
2013-12-27Fix: query.engine can be 'MySQLdb' for msyql.Yue Du
query.engine could be 'mysql' or 'MySQLdb' for mysql driver.
2013-12-23Fix staticfiles panel to work with prefixed STATICFILES_DIRS.Jannis Leidel
Closes #503 and #507. Many thanks to Alexander Clausen (@sk1p) for the inspiration for the patch.
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-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-29Move support for line_profiler to a 3rd party panel.Aymeric Augustin
Many thanks to Dave McLain. Fix #477.
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-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-16Better solution than ca24b3f.Aymeric Augustin
2013-11-16Move JS specific to the SQL panel to its own file.Aymeric Augustin
2013-11-16Stop bothering with CSS compression.Aymeric Augustin
For the same reasons we stopped compressing JS.
2013-11-16Avoid providing the same information through multiple paths.Aymeric Augustin
2013-11-16Clean up DebugToolbar class, especially panels handling.Aymeric Augustin
2013-11-15Move some panel-specific javascript in specific files.Aymeric Augustin
2013-11-15Implement redirects interception as a panel.Aymeric Augustin
Fix #122.
2013-11-15Make panels behave more like Django middleware.Aymeric Augustin
2013-11-15Add doctype to HTML templates.Aymeric Augustin
2013-11-13Provide an option to force rendering panels in page.Aymeric Augustin
Requested by David who seems to runs the debug toolbar in production :-)
2013-11-12Move store/fetch logic inside the DebugToolbar class.Aymeric Augustin
2013-11-11Switch to regular URL reversing in templates.Aymeric Augustin
2013-11-10Make the handle draggable.Aymeric Augustin
Fix #278.
2013-11-10Remove Panel.disabled, always use Panel.enabled.Aymeric Augustin
2013-11-10Load the content of panels dynamically.Aymeric Augustin
This should drastically reduce the overhead of the browser toolbar when a page has a complex template structure or many SQL queries. This change is backwards-incompatible for third-party panels because it changes the signature of __init__. The JavaScript could probably be improved; I'm outside my comfort zone.
2013-11-10Restore XML validity.Aymeric Augustin
2013-11-10The smart way didn't work, keep it simple.Aymeric Augustin
When jQuery wasn't loaded yet, the <script> tag was inserted properly, but jQuery wasn't loaded before jquery.cookie.js and toolbar.js. As a consequence these scripts crashed. Refs #440.
2013-11-06load jQuery with document.createElement instead of document.writeDavid Baumgold
to satisfy integration test
2013-11-05Change how JS libs are loadedDavid Baumgold
This change makes Django-Debug-Toolbar use the existing version of jQuery on the page if one exists, and only loads jQuery if it isn't already loaded. It also explicitly loads the jQuery cookie plugin and the toolbar script as separate files. Finally, we are no longer compressing/minimizing scripts; this is for debug purposes, and presumably will not be served in production.
2013-11-01Make help text a bit more helpful.Aymeric Augustin
2013-11-01Add a checkbox to toggle panels from the frontend.Aymeric Augustin
Fix #35.
2013-11-01Add response headers to the Headers panel.Aymeric Augustin
2013-11-01Show all HTTP headers in the headers panel.Aymeric Augustin
Show a relevant subset of the WSGI environ separately. Fix #62.