| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-07-12 | Merge pull request #175 from thinred/master | David Cramer | |
| This adds a feature asked in issue #163 | |||
| 2011-06-16 | Fixing UnicodeEncodeError in sql panel | Miguel Araujo Perez | |
| 2011-06-10 | Issue #163: SQL expand does show query fields now. So does clicking on bullets. | Tomasz Buchert | |
| 2011-06-09 | Timeline width in SQL panel properly scaled. | Tomasz Buchert | |
| 2011-05-16 | Remove trailing quotation in SQL stacktrace display | David Cramer | |
| 2011-04-13 | Fix a bug with marking the last query in a transaction as the end of chain | David Cramer | |
| 2011-04-06 | Only mark starting a new transaction if new trans_id is set | David Cramer | |
| 2011-04-06 | unset transaction id if we're not in a transaction | David Cramer | |
| 2011-04-06 | Mark the correct query as ending the transaction | David Cramer | |
| 2011-04-06 | Transaction id tracing is not specific to psycopg2 | David Cramer | |
| 2011-04-06 | Generate fake transaction ids so we can match up transaction end state correctly | David Cramer | |
| 2011-04-06 | SQL panel now guesses at Psycopg2 transactions (when autocommit swaps to in ↵ | David Cramer | |
| trans and vice versa) | |||
| 2011-04-05 | Add support for engine-per-query as well as pulling out psycopg2's isolation ↵ | David Cramer | |
| level and transaction status | |||
| 2011-03-31 | Add utilities to inject and monitor functions. Change DB tracking to use new ↵ | David Cramer | |
| injection method on BaseDatabaseWrapper.cursor | |||
| 2011-03-30 | Some initial tests and fix for execution model | David Cramer | |
| 2011-03-30 | Inject our SQL tracker on BaseDatabaseWrapper.cursor rather than discovering ↵ | David Cramer | |
| different CursorWrapper's | |||
| 2011-03-30 | Ensure we wrap all cursors | David Cramer | |
| 2011-03-28 | Store actual function as __wrapped__ instead of __wraps for Python 3.2 ↵ | David Cramer | |
| compatibility | |||
| 2011-03-28 | Fail gracefully when theres no queries on a page | David Cramer | |
| 2011-03-28 | SQL injection now happens without interfering with the underlying db.queries ↵ | David Cramer | |
| objects (and no longer requires DEBUG to be set) | |||
| 2011-03-24 | Remove debug print | David Cramer | |
| 2011-03-24 | Fix for infinite math fail :) | David Cramer | |
| 2011-03-24 | Much better coloring scale | David Cramer | |
| 2011-03-24 | basic color code grouping of db aliases | David Cramer | |
| 2011-03-24 | Only show connections which executed queries. Show number of used ↵ | David Cramer | |
| connections in title | |||
| 2011-03-24 | Add multi db support and summaries to SQL panel | David Cramer | |
| 2011-03-23 | Overhaul SQL panel to include better timeline, more compact queries, and ↵ | David Cramer | |
| better view of stacktrace | |||
| 2010-01-22 | Escape invalid html in SQL queries. | Gabriel | |
| For example, a query containing a stray ampersand needs to be escaped. Signed-off-by: Rob Hudson <rob@cogit8.org> | |||
| 2010-01-14 | Template panel context cleanup. | Chris Adams | |
| All panels get a copy of the template context when created and use an updated copy when rendering so they can have full access to context vars and avoid making changes to the shared context. Signed-off-by: Rob Hudson <rob@cogit8.org> | |||
| 2010-01-09 | Fix issue #33: ensure force_unicode doesn't convert non-strings. | Daniel Roseman | |
| 2009-11-18 | Marked more strings for translation and updated 'fr' locale. | David Jean Louis | |
| Signed-off-by: Rob Hudson <rob@cogit8.org> | |||
| 2009-11-06 | Fixed incompatability with Python 2.4. | Rob Hudson | |
| 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-09-22 | Added sqlparse, replacing my simple string replace SQL keywords and updating | Rob Hudson | |
| management command and SQL panel. | |||
| 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-12 | added in-panel title | Idan Gazit | |
| 2009-08-12 | renamed title/subtitle -> nav_title/nav_subtitle | Idan Gazit | |
| 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-06-16 | provide an option to see stuff indjango in the sql stack trace | 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 | Merge commit 'rob/master' | Alex Gaynor | |
| 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 | resoled merge conflicts | Alex Gaynor | |
| 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> | |||
