plugins/mod_console.lua

changeset 1483
efd19cdda6ca
parent 1433
e7bd00e70973
child 1491
694a0a00e1a5
--- a/plugins/mod_console.lua	Sun Jul 05 17:10:42 2009 +0100
+++ b/plugins/mod_console.lua	Sun Jul 05 17:36:27 2009 +0100
@@ -437,6 +437,8 @@
 -------------
 
 function printbanner(session)
+	local option = config.get("*", "core", "console_banner");
+if option == nil or option == "full" or option == "graphic" then
 session.print [[
                    ____                \   /     _       
                     |  _ \ _ __ ___  ___  _-_   __| |_   _ 
@@ -446,7 +448,18 @@
                     A study in simplicity            |___/ 
 
 ]]
+end
+if option == nil or option == "short" or option == "full" then
 session.print("Welcome to the Prosody administration console. For a list of commands, type: help");
 session.print("You may find more help on using this console in our online documentation at ");
 session.print("http://prosody.im/doc/console\n");
 end
+if option and option ~= "short" and option ~= "full" and option ~= "graphic" then
+	if type(option) == "string" then
+		session.print(option)
+	elseif type(option) == "function" then
+		setfenv(option, redirect_output(_G, session));
+		pcall(option, session);
+	end
+end
+end

mercurial