aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar
AgeCommit message (Collapse)Author
2009-08-25adhere to css spacing standardIdan Gazit
2009-08-25Working panel structure with scroll, Wider handle tab for hover.Idan Gazit
2009-08-25Merge commit 'upstream/ui-rf' into django-colorsIdan Gazit
2009-08-25toolbar handle padding made orange on hoverIdan Gazit
2009-08-25Fixed position toolbar, Smaller close handle, ported style changes from ↵Idan Gazit
idan/ui-rf
2009-08-24Some locale tweaks and template tweaks after merge.Rob Hudson
2009-08-24Merge locale work by Percy.Rob Hudson
2009-08-25Updated graphics for new colorschemeIdan Gazit
2009-08-24Make panel content stylings look like Django's debug template.Rob Hudson
2009-08-21Cleaning up and simplifying the closed handle HTML and CSS.Rob Hudson
2009-08-21Standardize spacing in CSS.Rob Hudson
2009-08-21Remove added border on hover which was causing flicker and scrollbars toRob Hudson
appear.
2009-08-18Pegged the panels to fill available space and moved close button.Rob Hudson
2009-08-18A few font size adjustments and removing declarations that have no effect.Rob Hudson
2009-08-18Deserify font family.Rob Hudson
2009-08-18Removed extra line spaces.Rob Hudson
2009-08-18Adding debug toolbar reset CSS.Rob Hudson
2009-08-18Standardized CSS to use tabs.Rob Hudson
2009-08-12panel width, content boxing, safe scrollingIdan Gazit
2009-08-12Panel title larger, <code> is monospacedIdan Gazit
2009-08-12oops, retitled templates panelIdan Gazit
2009-08-12Proper handling of template panel titleIdan Gazit
2009-08-12Added hover state for close button, scroll paddingIdan Gazit
2009-08-12Cleaned up the panelsIdan Gazit
2009-08-12Remove indicator if closed via panel closeIdan Gazit
2009-08-12added in-panel titleIdan Gazit
2009-08-12renamed title/subtitle -> nav_title/nav_subtitleIdan Gazit
2009-08-12toolbar restyling, switched to non-minified css/jsIdan Gazit
2009-08-11Refactored the UI to be a right hand side vertical toolbar. DebugPanel ↵Rob Hudson
subclass grew a subtitle method to display informative text under the title.
2009-08-07Cleaned up trailing spaces.Rob Hudson
2009-08-07Merge branch 'master' into debug-sql-shellRob Hudson
2009-07-28Bypass context variables which 'repr' is broken.Mike Korobov
Signed-off-by: Rob Hudson <rob@tastybrew.com>
2009-06-16Captured redirection requests must be urlencoded.Philip Zeyliger
I ran into this when I had a URL with a ? (%3F) mark in it. Signed-off-by: Rob Hudson <rob@tastybrew.com>
2009-06-16only conditionally include the Django 1.1 signal for backwards compatibilityAlex Gaynor
Signed-off-by: Rob Hudson <rob@tastybrew.com>
2009-06-11Adding a management command that will display the SQL generated by Django asRob Hudson
you use the interactive Python shell.
2009-05-27Adding a signals panel to display list of signals and their providing argumentsAlex Gaynor
and receivers. Thanks Alex Gaynor! Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-04-02Bumping version number preparing for release.Rob Hudson
2009-04-02Disable cache panel in default list of panels to load since it's slightly ↵Rob Hudson
broken at the moment.
2009-04-02Moving media so they are "namespaced" like templates.Rob Hudson
2009-03-26New configuration option to provide your own 'show_toolbar' method.Rob Hudson
This change allows a custom method to be used in place of the default 'show_toolbar' method on whether the toolbar should be displayed.
2009-03-26Minor cleanup of imports and long lines.Rob Hudson
2009-03-22Add fix so jQuery doesn't conflict with other Javascript libraries.Rob Hudson
I think I finally got this one working. The saving of the temporary variable has to happen *before* jQuery loads, or else jQuery has already stomped on the '$' variable that another library might have used. This patch moves the temporary saving of this variable the HTML template so it tucks it aside before jQuery loads and puts it back after we're done. Tested and works with jQuery, mootools, and prototype.
2009-03-22Close the panel if the toolbar is hiding.Rob Hudson
2009-03-21Adding stack traces to SQL panel to see where the calls are coming from.Rob Hudson
Merge branch 'sql_stacktrace' * sql_stacktrace: Tuple unpacking of stacktrace variables for niceness. Add preliminary support for stacktraces to see where SQL queries are coming from.
2009-03-21jQuery 1.3 cleanup.Rob Hudson
* jQuery events changed slightly which caused the click event on '#djDebugPanelList li a' to fire when the hide link was clicked. The hide link has no class attribute and an error was occurring. This checks for the lack of a class attribute and returns false immediately if it doesn't exist. The other event should catch normally and hide the toolbar. * Updating all click methods to return false. * Close the opened panel when hide is clicked.
2009-03-21Reverting commit 2a839fd, "Restrict the debug toolbar to a single row of ↵Rob Hudson
panels." There were some issues with this commit that need to be resolved before it's added back in.
2009-03-21fixed bug when the string </body> matches more than once in the htmlLoic Bistuer
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-03-21Making CSS classes 'odd' and 'even' more specific.Rob Hudson
2009-03-21Restrict the debug toolbar to a single row of panels.Malcolm Tredinnick
Any panels that would cause the toolbar to wrap to a new line are put into a new final panel called "more..." and are accessible via a vertical list under that panel. Slight tweaks were made to the original to match a previous commit's Javascript style. Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-03-21Tidied up SQL formatting in SQL panel.Malcolm Tredinnick
Added formatting of "GROUP BY" and "HAVING", which now show up in trunk queries and could have shown up previously if manually patched into the QuerySet.query instance. Also indent joined tables a bit more underneath the "FROM" statement: they are sub-statements of "FROM". Signed-off-by: Rob Hudson <rob@cogit8.org>