mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.pluginloader: Remove unused support for custom loaders, to simplify further refactoring.
This commit is contained in:
parent
fca75eb761
commit
2a37446dfa
1 changed files with 5 additions and 9 deletions
|
@ -32,28 +32,24 @@ local function load_file(name)
|
|||
return content, path;
|
||||
end
|
||||
|
||||
function load_resource(plugin, resource, loader)
|
||||
function load_resource(plugin, resource)
|
||||
local path, name = plugin:match("([^/]*)/?(.*)");
|
||||
if name == "" then
|
||||
if not resource then
|
||||
resource = "mod_"..plugin..".lua";
|
||||
end
|
||||
loader = loader or load_file;
|
||||
|
||||
local content, err = loader(plugin.."/"..resource);
|
||||
if not content then content, err = loader(resource); end
|
||||
-- TODO add support for packed plugins
|
||||
local content, err = load_file(plugin.."/"..resource);
|
||||
if not content then content, err = load_file(resource); end
|
||||
|
||||
return content, err;
|
||||
else
|
||||
if not resource then
|
||||
resource = "mod_"..name..".lua";
|
||||
end
|
||||
loader = loader or load_file;
|
||||
|
||||
local content, err = loader(plugin.."/"..resource);
|
||||
if not content then content, err = loader(path.."/"..resource); end
|
||||
-- TODO add support for packed plugins
|
||||
local content, err = load_file(plugin.."/"..resource);
|
||||
if not content then content, err = load_file(path.."/"..resource); end
|
||||
|
||||
return content, err;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue