| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-08-18 | Pegged the panels to fill available space and moved close button. | Rob Hudson | |
| 2009-08-18 | A few font size adjustments and removing declarations that have no effect. | Rob Hudson | |
| 2009-08-18 | Deserify font family. | Rob Hudson | |
| 2009-08-18 | Removed extra line spaces. | Rob Hudson | |
| 2009-08-18 | Adding debug toolbar reset CSS. | Rob Hudson | |
| 2009-08-18 | Standardized CSS to use tabs. | Rob Hudson | |
| 2009-08-12 | panel width, content boxing, safe scrolling | Idan Gazit | |
| 2009-08-12 | Panel title larger, <code> is monospaced | Idan Gazit | |
| 2009-08-12 | oops, retitled templates panel | Idan Gazit | |
| 2009-08-12 | Proper handling of template panel title | Idan Gazit | |
| 2009-08-12 | Added hover state for close button, scroll padding | Idan Gazit | |
| 2009-08-12 | Cleaned up the panels | Idan Gazit | |
| 2009-08-12 | Remove indicator if closed via panel close | Idan Gazit | |
| 2009-08-12 | added in-panel title | Idan Gazit | |
| 2009-08-12 | renamed title/subtitle -> nav_title/nav_subtitle | Idan Gazit | |
| 2009-08-12 | toolbar restyling, switched to non-minified css/js | Idan Gazit | |
| 2009-08-11 | allow for handling the pathological case of an insanely large template context | Alex Gaynor | |
| 2009-08-11 | Refactored 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-10 | Merge commit 'rob/master' | Alex Gaynor | |
| 2009-08-10 | Merge commit 'origin/master' | Alex Gaynor | |
| 2009-08-10 | Show the number of rendered templates in the toolbar. | Alex Gaynor | |
| 2009-08-07 | Cleaned up trailing spaces. | Rob Hudson | |
| 2009-08-07 | Merge branch 'master' into debug-sql-shell | Rob Hudson | |
| 2009-07-28 | Merge commit 'rob/master' | Alex Gaynor | |
| 2009-07-28 | Bypass context variables which 'repr' is broken. | Mike Korobov | |
| Signed-off-by: Rob Hudson <rob@tastybrew.com> | |||
| 2009-07-20 | removing trans so we can merge for now | Percy Perez-Pinedo | |
| 2009-06-21 | Merge commit 'rob/master' | Alex Gaynor | |
| 2009-06-16 | Merge commit 'origin/master' | Alex Gaynor | |
| 2009-06-16 | provide an option to see stuff indjango in the sql stack trace | Alex Gaynor | |
| 2009-06-16 | Captured 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-16 | only conditionally include the Django 1.1 signal for backwards compatibility | Alex Gaynor | |
| Signed-off-by: Rob Hudson <rob@tastybrew.com> | |||
| 2009-06-12 | only conditionally include the Django 1.1 signal for backwards compatibility | Alex Gaynor | |
| 2009-06-11 | Adding a management command that will display the SQL generated by Django as | Rob Hudson | |
| you use the interactive Python shell. | |||
| 2009-05-27 | Adding a signals panel to display list of signals and their providing arguments | Alex Gaynor | |
| and receivers. Thanks Alex Gaynor! Signed-off-by: Rob Hudson <rob@cogit8.org> | |||
| 2009-04-02 | Bumping version number preparing for release. | Rob Hudson | |
| 2009-04-02 | Disable cache panel in default list of panels to load since it's slightly ↵ | Rob Hudson | |
| broken at the moment. | |||
| 2009-04-02 | Moving media so they are "namespaced" like templates. | Rob Hudson | |
| 2009-03-26 | New 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-26 | Minor cleanup of imports and long lines. | Rob Hudson | |
| 2009-03-22 | Add 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-22 | Close the panel if the toolbar is hiding. | Rob Hudson | |
| 2009-03-21 | Adding 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-21 | jQuery 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-21 | Reverting 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-21 | fixed bug when the string </body> matches more than once in the html | Loic Bistuer | |
| Signed-off-by: Rob Hudson <rob@cogit8.org> | |||
| 2009-03-21 | Making CSS classes 'odd' and 'even' more specific. | Rob Hudson | |
| 2009-03-21 | Restrict 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-21 | Tidied 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> | |||
| 2009-03-21 | Fixed "FROM" formatting in SQL panel layout. | Malcolm Tredinnick | |
| We always start a new line for "FROM" now. Previous code was assuming MySQL quoting of identifiers (MySQL is a bit non-standard in using backquotes) and was assuming the last thing before the FROM would be a quoted identifier, which wasn't always true, particularly when extra() is used on querysets. Signed-off-by: Rob Hudson <rob@cogit8.org> | |||
| 2009-03-21 | Make text alignment in panels not inherit from surrounding page. | Malcolm Tredinnick | |
| If the debug toolbar was used in a page with, e.g., YUI grids, it would inherit a "text-align:center" styling for all text. We now force the main structures to be left-aligned. Signed-off-by: Rob Hudson <rob@cogit8.org> | |||
