| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-11-02 | Merge branch 'master' of github.com:robhudson/django-debug-toolbar | Rob Hudson | |
| 2009-11-02 | Merge branch 'master' into tx-master | Rob Hudson | |
| Conflicts: debug_toolbar/locale/he/LC_MESSAGES/django.po debug_toolbar/templates/debug_toolbar/panels/versions.html | |||
| 2009-11-02 | Show context where SQL query originated from template | Chris Lamb | |
| Signed-off-by: Chris Lamb <lamby@debian.org> Signed-off-by: Rob Hudson <rob@cogit8.org> | |||
| 2009-11-02 | kill whitespace | Alex Gaynor | |
| 2009-11-02 | detect versions for other installed applications | Alex Gaynor | |
| 2009-11-02 | Made the versions panel more powerful | Alex Gaynor | |
| 2009-11-03 | Small i18n change in template panel | Jannis Leidel | |
| 2009-11-02 | Show context where SQL query originated from template | Chris Lamb | |
| Signed-off-by: Chris Lamb <lamby@debian.org> Signed-off-by: Rob Hudson <rob@cogit8.org> | |||
| 2009-10-16 | Added detection and display of versions of apps. | Alex Gaynor | |
| Signed-off-by: Rob Hudson <rob@cogit8.org> | |||
| 2009-09-30 | Template panel: Replace the sql_queries element from the template context ↵ | Chris Beaven | |
| rather than removing it. Signed-off-by: Rob Hudson <rob@cogit8.org> | |||
| 2009-09-30 | Template panel: One letter variable names are bad practice, changed to use ↵ | Chris Beaven | |
| some more informative variable names. Signed-off-by: Rob Hudson <rob@cogit8.org> | |||
| 2009-09-30 | Template panel: Remove unnecessary large elements from each template context ↵ | Chris Beaven | |
| (request and sql_queries) Signed-off-by: Rob Hudson <rob@cogit8.org> | |||
| 2009-09-25 | kill whitespace | Alex Gaynor | |
| 2009-09-25 | detect versions for other installed applications | Alex Gaynor | |
| 2009-09-25 | Merge commit 'rob/master' | Alex Gaynor | |
| 2009-09-25 | Fixed template panel bug that caused the context to not display correctly. | Rob Hudson | |
| 2009-09-24 | Fixed a bug, recently introduced, that turned the sessions list into a tuple of | Rob Hudson | |
| that list which broke rendering of sessions in the Request Vars panel. | |||
| 2009-09-23 | Merge commit 'rob/master' | Alex Gaynor | |
| 2009-09-22 | Added sqlparse, replacing my simple string replace SQL keywords and updating | Rob Hudson | |
| management command and SQL panel. | |||
| 2009-09-18 | Made the versions panel more powerful | Alex Gaynor | |
| 2009-09-15 | Allow request vars to work even with disabled session middleware. | Augie Fackler | |
| 2009-09-12 | Merge remote branch 'alex/master' | Rob Hudson | |
| 2009-09-12 | Fixed to only show the link for requesting the SELECT data if the query is a | Rob Hudson | |
| SELECT query. | |||
| 2009-09-11 | Added more SQL keywords. | Rob Hudson | |
| 2009-09-10 | handle merge conflicts | Alex Gaynor | |
| 2009-09-08 | Fixed an issue where the panel navigation might have a different number of | Rob Hudson | |
| queries than the panel pane if SQL queries happened in between calls. This caches the queries off in an array to be used in both places. If the possibility of queries happening elsewhere occurs, the SQL panel should probably be moved lower in the execution stack. | |||
| 2009-08-28 | Refactored `reformat_sql` to produce a more compact output for a tighter ↵ | Rob Hudson | |
| view of the SQL. | |||
| 2009-08-28 | Refactored SQL panel to use datetime objects and added a visual display of ↵ | Rob Hudson | |
| both duration and sequence to the SQL template. | |||
| 2009-08-25 | added spanish translation of the panels nav title | Percy Perez-Pinedo | |
| 2009-08-12 | oops, retitled templates panel | Idan Gazit | |
| 2009-08-12 | Proper handling of template panel title | 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-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 'origin/master' | Alex Gaynor | |
| 2009-08-10 | Show the number of rendered templates in the toolbar. | Alex Gaynor | |
| 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-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 | 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-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-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 | 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-01-23 | Add preliminary support for stacktraces to see where SQL queries are coming ↵ | Rob Hudson | |
| from. I'm wanting to test this a bit more before I merge it in fully. Feedback welcome. | |||
| 2009-01-23 | Fix triggering an extra SQL query via the auth context processor. | Rob Hudson | |
| Fixed by moving the template panel's context_processor introspection to the content method so this happens at the process_response time instead of at process_request time. Since context processors _were_ happening at the process_response end, it was triggering the query `user.get_and_delete_messages()` which was also getting triggered separately if used in templates (i.e. the admin templates) resulting in duplicate queries showing up in the toolbar. | |||
| 2008-12-11 | Win32 systems don't have the resource module. This patch codes around it so ↵ | Rob Hudson | |
| only the basic timings are shown for those that don't have the resource module, and finer grained timings are shown for those that do. | |||
