diff options
author | Waqas Hussain <waqas20@gmail.com> | 2011-02-20 20:11:52 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2011-02-20 20:11:52 +0500 |
commit | ef64f191850e03c0590e36eec6a4764d93e8163b (patch) | |
tree | 3a167180e857db9b80547be3ab6c5a9bd2b7e9fe | |
parent | ad07e282a80a2b2319ed4110baf53613029ad633 (diff) | |
download | prosody-ef64f191850e03c0590e36eec6a4764d93e8163b.tar.gz prosody-ef64f191850e03c0590e36eec6a4764d93e8163b.zip |
util.pluginloader: Remove unused support for custom loaders, to simplify further refactoring.
-rw-r--r-- | util/pluginloader.lua | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/util/pluginloader.lua b/util/pluginloader.lua index 9300b98a..3a4e8003 100644 --- a/util/pluginloader.lua +++ b/util/pluginloader.lua @@ -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 |