mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
prosodyctl about: Substitute better names for some Lua modules
E.g. 'lxp' isn't that easy to guess that it's LuaExpat
This commit is contained in:
parent
6e59b77502
commit
c80ef42112
1 changed files with 10 additions and 1 deletions
11
prosodyctl
11
prosodyctl
|
@ -441,10 +441,19 @@ function commands.about(arg)
|
|||
local library_versions = {};
|
||||
dependencies.softreq"ssl";
|
||||
dependencies.softreq"DBI";
|
||||
local friendly_names = {
|
||||
DBI = "LuaDBI";
|
||||
lfs = "LuaFileSystem";
|
||||
lunbound = "luaunbound";
|
||||
lxp = "LuaExpat";
|
||||
socket = "LuaSocket";
|
||||
ssl = "LuaSec";
|
||||
};
|
||||
local lunbound = dependencies.softreq"lunbound";
|
||||
for name, module in pairs(package.loaded) do
|
||||
if type(module) == "table" and rawget(module, "_VERSION")
|
||||
and name ~= "_G" and not name:match("%.") then
|
||||
and name ~= "_G" and not name:match("%.") then
|
||||
name = friendly_names[name] or name;
|
||||
if #name > longest_name then
|
||||
longest_name = #name;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue