mod_http_libjs/mod_http_libjs.lua
changeset 4980 75b6e5df65f9
parent 4608 f0efbb0b0b5b
equal deleted inserted replaced
4979:733e5513f691 4980:75b6e5df65f9
     2 	css = "text/css",
     2 	css = "text/css",
     3 	js = "application/javascript",
     3 	js = "application/javascript",
     4 };
     4 };
     5 
     5 
     6 local serve;
     6 local serve;
     7 if not pcall(function ()
     7 if prosody.process_type == "prosody" then
     8 	local http_files = require "net.http.files";
     8 	local http_files = require "net.http.files";
     9 	serve = http_files.serve;
     9 	serve = http_files.serve;
    10 end) then
    10 else
    11 	serve = module:depends"http_files".serve;
    11 	serve = module:depends"http_files".serve;
    12 end
    12 end
    13 
    13 
    14 local libjs_path = module:get_option_string("libjs_path", "/usr/share/javascript");
    14 local libjs_path = module:get_option_string("libjs_path", "/usr/share/javascript");
    15 
    15