Link processlist documentation

This commit is contained in:
Jakub Vrana 2013-04-17 17:57:14 -07:00
parent 46a7e7eea0
commit ba5e7a1b53
2 changed files with 10 additions and 2 deletions

View file

@ -19,7 +19,14 @@ page_header(lang('Process list'), $error);
$i = -1; $i = -1;
foreach (process_list() as $i => $row) { foreach (process_list() as $i => $row) {
if (!$i) { 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) : ""); echo "<tr" . odd() . ">" . (support("kill") ? "<td>" . checkbox("kill[]", $row["Id"], 0) : "");
foreach ($row as $key => $val) { foreach ($row as $key => $val) {

View file

@ -5,17 +5,18 @@ Display SQL edit form on Ctrl+click on the select query
Display SQL history from oldest Display SQL history from oldest
Recover original view, trigger, routine if creating fails Recover original view, trigger, routine if creating fails
Selectable ON UPDATE CURRENT_TIMESTAMP field in create table 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) Clear column name after resetting search (bug #3601200)
Explain partitions in SQL query (bug #3600150) Explain partitions in SQL query (bug #3600150)
Allow loading more data with inline edit (bug #3605531) Allow loading more data with inline edit (bug #3605531)
Stay on the same page after deleting rows (bug #3605845) Stay on the same page after deleting rows (bug #3605845)
Respect checked tables in export filename (bug #3245464) Respect checked tables in export filename (bug #3245464)
Respect PHP configuration max_input_vars Respect PHP configuration max_input_vars
Open database to a new window after selecting it with Ctrl
Disable autocapitalize in identifiers on mobile browsers Disable autocapitalize in identifiers on mobile browsers
MySQL: Compatibility with MySQL 5.6 MySQL: Compatibility with MySQL 5.6
MySQL: Move ALTER export to plugin MySQL: Move ALTER export to plugin
MySQL: Use numeric time zone in export MySQL: Use numeric time zone in export
MySQL: Link processlist documentation
SQLite: Export indexes SQLite: Export indexes
Adminer 3.6.3 (released 2013-01-23): Adminer 3.6.3 (released 2013-01-23):