Comparison

plugins/mod_admin_shell.lua @ 13769:5cc4a3e0335c 13.0

mod_admin_shell: Remove outdated help text (fixes #1898) The ! commands have been broken for some time, and we're not going to implement them right now. If we want fancier editing, we can now do that on the client side (with readline and stuff). Also removes mention of telnet!
author Matthew Wild <mwild1@gmail.com>
date Thu, 13 Mar 2025 11:35:39 +0000
parent 13737:46e7cc4de5e6
child 13770:a28349b8a387
comparison
equal deleted inserted replaced
13768:4365f0f03c33 13769:5cc4a3e0335c
90 end 90 end
91 91
92 -- Seed with default sections and their description text 92 -- Seed with default sections and their description text
93 help_topic "console" "Help regarding the console itself" [[ 93 help_topic "console" "Help regarding the console itself" [[
94 Hey! Welcome to Prosody's admin console. 94 Hey! Welcome to Prosody's admin console.
95 First thing, if you're ever wondering how to get out, simply type 'quit'. 95 If you're ever wondering how to get out, simply type 'quit' (ctrl+d should also
96 Secondly, note that we don't support the full telnet protocol yet (it's coming) 96 work).
97 so you may have trouble using the arrow keys, etc. depending on your system.
98
99 For now we offer a couple of handy shortcuts:
100 !! - Repeat the last command
101 !old!new! - repeat the last command, but with 'old' replaced by 'new'
102 97
103 For those well-versed in Prosody's internals, or taking instruction from those who are, 98 For those well-versed in Prosody's internals, or taking instruction from those who are,
104 you can prefix a command with > to escape the console sandbox, and access everything in 99 you can prefix a command with > to escape the console sandbox, and access everything in
105 the running server. Great fun, but be careful not to break anything :) 100 the running server. Great fun, but be careful not to break anything :)
106 ]]; 101 ]];