mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Merge 0.9->0.10
This commit is contained in:
commit
9ea9c5719a
2 changed files with 6 additions and 5 deletions
|
@ -14,6 +14,7 @@ local os_date = os.date;
|
||||||
local open = io.open;
|
local open = io.open;
|
||||||
local stat = lfs.attributes;
|
local stat = lfs.attributes;
|
||||||
local build_path = require"socket.url".build_path;
|
local build_path = require"socket.url".build_path;
|
||||||
|
local path_sep = package.config:sub(1,1);
|
||||||
|
|
||||||
local base_path = module:get_option_string("http_files_dir", module:get_option_string("http_path"));
|
local base_path = module:get_option_string("http_files_dir", module:get_option_string("http_path"));
|
||||||
local dir_indices = module:get_option("http_index_files", { "index.html", "index.htm" });
|
local dir_indices = module:get_option("http_index_files", { "index.html", "index.htm" });
|
||||||
|
@ -61,7 +62,7 @@ function serve(opts)
|
||||||
local request, response = event.request, event.response;
|
local request, response = event.request, event.response;
|
||||||
local orig_path = request.path;
|
local orig_path = request.path;
|
||||||
local full_path = base_path .. (path and "/"..path or "");
|
local full_path = base_path .. (path and "/"..path or "");
|
||||||
local attr = stat(full_path);
|
local attr = stat((full_path:gsub('%'..path_sep..'+$','')));
|
||||||
if not attr then
|
if not attr then
|
||||||
return 404;
|
return 404;
|
||||||
end
|
end
|
||||||
|
|
|
@ -39,10 +39,10 @@ function load_resource(plugin, resource)
|
||||||
resource = resource or "mod_"..plugin..".lua";
|
resource = resource or "mod_"..plugin..".lua";
|
||||||
|
|
||||||
local names = {
|
local names = {
|
||||||
"mod_"..plugin.."/"..plugin.."/"..resource; -- mod_hello/hello/mod_hello.lua
|
"mod_"..plugin..dir_sep..plugin..dir_sep..resource; -- mod_hello/hello/mod_hello.lua
|
||||||
"mod_"..plugin.."/"..resource; -- mod_hello/mod_hello.lua
|
"mod_"..plugin..dir_sep..resource; -- mod_hello/mod_hello.lua
|
||||||
plugin.."/"..resource; -- hello/mod_hello.lua
|
plugin..dir_sep..resource; -- hello/mod_hello.lua
|
||||||
resource; -- mod_hello.lua
|
resource; -- mod_hello.lua
|
||||||
};
|
};
|
||||||
|
|
||||||
return load_file(names);
|
return load_file(names);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue