mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_admin_shell, mod_admin_telnet, util.prosodyctl.shell: Separate output from final result
Fixes the client pausing for input after output from commands.
This commit is contained in:
parent
a355440c01
commit
e703759258
3 changed files with 25 additions and 17 deletions
|
@ -65,7 +65,7 @@ function console:new_session(conn)
|
|||
local w = function(s) conn:write(s:gsub("\n", "\r\n")); end;
|
||||
local session = { conn = conn;
|
||||
send = function (t)
|
||||
if st.is_stanza(t) and t.name == "repl-result" then
|
||||
if st.is_stanza(t) and (t.name == "repl-result" or t.name == "repl-output") then
|
||||
t = "| "..t:get_text().."\n";
|
||||
end
|
||||
w(tostring(t));
|
||||
|
@ -106,7 +106,7 @@ function console:process_line(session, line)
|
|||
session:disconnect();
|
||||
return;
|
||||
end
|
||||
return module:fire_event("admin/repl-line", { origin = session, stanza = st.stanza("repl"):text(line) });
|
||||
return module:fire_event("admin/repl-input", { origin = session, stanza = st.stanza("repl-input"):text(line) });
|
||||
end
|
||||
|
||||
local sessions = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue