diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-11-10 19:46:53 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-11-10 19:46:53 +0000 |
commit | 385fd64606ba2c860ce5bcd534a7de5f8bce4bd1 (patch) | |
tree | 9fb2b9820d780d2807ac9b1241f802270e1e5e89 /prosody | |
parent | 0bcc5e0ac77e6bdc584aaaa042978f28ce1e5483 (diff) | |
download | prosody-385fd64606ba2c860ce5bcd534a7de5f8bce4bd1.tar.gz prosody-385fd64606ba2c860ce5bcd534a7de5f8bce4bd1.zip |
prosody, configmanager, certmanager: Relocate prosody.resolve_relative_path() to configmanager, and update certmanager (the only user of this function)
Diffstat (limited to 'prosody')
-rwxr-xr-x | prosody | 21 |
1 files changed, 0 insertions, 21 deletions
@@ -163,23 +163,6 @@ function init_global_state() prosody.paths = { source = CFG_SOURCEDIR, config = CFG_CONFIGDIR, plugins = CFG_PLUGINDIR, data = CFG_DATADIR }; - local path_sep = package.config:sub(1,1); - local rel_path_start = ".."..path_sep; - function prosody.resolve_relative_path(parent_path, path) - if path then - local is_relative; - if path_sep == "/" and path:sub(1,1) ~= "/" then - is_relative = true; - elseif path_sep == "\\" and (path:sub(1,1) ~= "/" and path:sub(2,3) ~= ":\\") then - is_relative = true; - end - if is_relative then - return parent_path..path_sep..path; - end - end - return path; - end - prosody.arg = _G.arg; prosody.platform = "unknown"; @@ -310,10 +293,6 @@ function load_secondary_libraries() require "core.usermanager" require "core.sessionmanager" require "core.stanza_router" - package.loaded['core.componentmanager'] = setmetatable({},{__index=function() - log("warn", "componentmanager is deprecated: %s", debug.traceback():match("\n[^\n]*\n[\s\t]*([^\n]*)")); - return function() end - end}); require "net.http" |