diff options
author | Kim Alvefur <zash@zash.se> | 2022-02-20 00:24:18 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-02-20 00:24:18 +0100 |
commit | 0e6391e7367f2cdbb7bdcfe87a105c761a35e456 (patch) | |
tree | bd4784a54337a935a5ca9e19b358f6fc1c341b86 /plugins | |
parent | 6207ed871c9683b56f8217dd5818f97fc0e43226 (diff) | |
download | prosody-0e6391e7367f2cdbb7bdcfe87a105c761a35e456.tar.gz prosody-0e6391e7367f2cdbb7bdcfe87a105c761a35e456.zip |
mod_admin_shell: Use a table to show help sections
Because tables make everything better and more readable!
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_admin_shell.lua | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/plugins/mod_admin_shell.lua b/plugins/mod_admin_shell.lua index d91de248..35124e79 100644 --- a/plugins/mod_admin_shell.lua +++ b/plugins/mod_admin_shell.lua @@ -212,23 +212,25 @@ function commands.help(session, data) print [[Commands are divided into multiple sections. For help on a particular section, ]] print [[type: help SECTION (for example, 'help c2s'). Sections are: ]] print [[]] - print [[c2s - Commands to manage local client-to-server sessions]] - print [[s2s - Commands to manage sessions between this server and others]] - print [[http - Commands to inspect HTTP services]] -- XXX plural but there is only one so far - print [[module - Commands to load/reload/unload modules/plugins]] - print [[host - Commands to activate, deactivate and list virtual hosts]] - print [[user - Commands to create and delete users, and change their passwords]] - print [[roles - Show information about user roles]] - print [[muc - Commands to create, list and manage chat rooms]] - print [[stats - Commands to show internal statistics]] - print [[server - Uptime, version, shutting down, etc.]] - print [[port - Commands to manage ports the server is listening on]] - print [[dns - Commands to manage and inspect the internal DNS resolver]] - print [[xmpp - Commands for sending XMPP stanzas]] - print [[debug - Commands for debugging the server]] - print [[config - Reloading the configuration, etc.]] - print [[columns - Information about customizing session listings]] - print [[console - Help regarding the console itself]] + local row = format_table({ { title = "Section"; width = 7 }; { title = "Description"; width = "100%" } }) + print(row()) + print(row { "c2s"; "Commands to manage local client-to-server sessions" }) + print(row { "s2s"; "Commands to manage sessions between this server and others" }) + print(row { "http"; "Commands to inspect HTTP services" }) -- XXX plural but there is only one so far + print(row { "module"; "Commands to load/reload/unload modules/plugins" }) + print(row { "host"; "Commands to activate, deactivate and list virtual hosts" }) + print(row { "user"; "Commands to create and delete users, and change their passwords" }) + print(row { "roles"; "Show information about user roles" }) + print(row { "muc"; "Commands to create, list and manage chat rooms" }) + print(row { "stats"; "Commands to show internal statistics" }) + print(row { "server"; "Uptime, version, shutting down, etc." }) + print(row { "port"; "Commands to manage ports the server is listening on" }) + print(row { "dns"; "Commands to manage and inspect the internal DNS resolver" }) + print(row { "xmpp"; "Commands for sending XMPP stanzas" }) + print(row { "debug"; "Commands for debugging the server" }) + print(row { "config"; "Reloading the configuration, etc." }) + print(row { "columns"; "Information about customizing session listings" }) + print(row { "console"; "Help regarding the console itself" }) elseif section == "c2s" then print [[c2s:show(jid, columns) - Show all client sessions with the specified JID (or all if no JID given)]] print [[c2s:show_tls(jid) - Show TLS cipher info for encrypted sessions]] |