mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_admin_telnet: Sort hosts
Groups by domain in DNS hierarchy order or something. Why not split on '.' you ask? Well becasue that's not what I typed here. Also "[^.]" is longer than "%P".
This commit is contained in:
parent
c02ddf92ec
commit
3d63c139e6
1 changed files with 5 additions and 1 deletions
|
@ -964,11 +964,15 @@ function def_env.host:deactivate(hostname, reason)
|
|||
return hostmanager.deactivate(hostname, reason);
|
||||
end
|
||||
|
||||
local function compare_hosts(a, b)
|
||||
return a:gsub("%P", string.reverse):reverse() < b:gsub("%P", string.reverse):reverse();
|
||||
end
|
||||
|
||||
function def_env.host:list()
|
||||
local print = self.session.print;
|
||||
local i = 0;
|
||||
local type;
|
||||
for host, host_session in iterators.sorted_pairs(prosody.hosts) do
|
||||
for host, host_session in iterators.sorted_pairs(prosody.hosts, compare_hosts) do
|
||||
i = i + 1;
|
||||
type = host_session.type;
|
||||
if type == "local" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue