Mercurial > prosody-hg
diff plugins/mod_console.lua @ 1489:4da0131a5ccb
Merged with trunk
| author | Waqas Hussain <waqas20@gmail.com> |
|---|---|
| date | Mon, 06 Jul 2009 01:40:43 +0500 |
| parents | efd19cdda6ca |
| children | 694a0a00e1a5 |
line wrap: on
line diff
--- a/plugins/mod_console.lua Mon Jul 06 01:37:57 2009 +0500 +++ b/plugins/mod_console.lua Mon Jul 06 01:40:43 2009 +0500 @@ -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
