Software /
code /
prosody
Changeset
1483:efd19cdda6ca
mod_console: Allow customisation/suppression of the banner
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sun, 05 Jul 2009 17:36:27 +0100 |
parents | 1482:9734231a569f |
children | 1487:66f18c18befa |
files | plugins/mod_console.lua |
diffstat | 1 files changed, 13 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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