]> git.joonet.de Git - adminer.git/commitdiff
Link processlist documentation
authorJakub Vrana <jakub@vrana.cz>
Thu, 18 Apr 2013 00:57:14 +0000 (17:57 -0700)
committerJakub Vrana <jakub@vrana.cz>
Thu, 18 Apr 2013 00:57:14 +0000 (17:57 -0700)
adminer/processlist.inc.php
changes.txt

index 39832da07485e471ccf486a67b0340bbb8ec9a7e..e977b15989b0f90dbebb4cb147744f3e3a3e0b1a 100644 (file)
@@ -19,7 +19,14 @@ page_header(lang('Process list'), $error);
 $i = -1;
 foreach (process_list() as $i => $row) {
        if (!$i) {
-               echo "<thead><tr lang='en'>" . (support("kill") ? "<th>&nbsp;" : "") . "<th>" . implode("<th>", array_keys($row)) . "</thead>\n";
+               echo "<thead><tr lang='en'>" . (support("kill") ? "<th>&nbsp;" : "");
+               foreach ($row as $key => $val) {
+                       echo "<th>" . ($jush == "sql" 
+                               ? "<a href='http://dev.mysql.com/doc/refman/" . substr($connection->server_info, 0, 3) . "/en/show-processlist.html#processlist_" . strtolower($key) . "' target='_blank' rel='noreferrer' class='help'>$key</a>"
+                               : $key
+                       );
+               }
+               echo "</thead>\n";
        }
        echo "<tr" . odd() . ">" . (support("kill") ? "<td>" . checkbox("kill[]", $row["Id"], 0) : "");
        foreach ($row as $key => $val) {
index 1c2e580657ccb52495fbd6dfc7636222f6776e4c..2fc32224f6fbedd04601ae69b9749bbeda906dfd 100644 (file)
@@ -5,17 +5,18 @@ Display SQL edit form on Ctrl+click on the select query
 Display SQL history from oldest
 Recover original view, trigger, routine if creating fails
 Selectable ON UPDATE CURRENT_TIMESTAMP field in create table
+Open database to a new window after selecting it with Ctrl
 Clear column name after resetting search (bug #3601200)
 Explain partitions in SQL query (bug #3600150)
 Allow loading more data with inline edit (bug #3605531)
 Stay on the same page after deleting rows (bug #3605845)
 Respect checked tables in export filename (bug #3245464)
 Respect PHP configuration max_input_vars
-Open database to a new window after selecting it with Ctrl
 Disable autocapitalize in identifiers on mobile browsers
 MySQL: Compatibility with MySQL 5.6
 MySQL: Move ALTER export to plugin
 MySQL: Use numeric time zone in export
+MySQL: Link processlist documentation
 SQLite: Export indexes
 
 Adminer 3.6.3 (released 2013-01-23):