Software /
code /
prosody-modules
File
mod_candy/mod_candy.lua @ 940:80ede103d7a3
mod_blocking: Fix handling of unblocking command. Send out un-/block pushes to all resources.
author | Tobias Markmann <tm@ayena.de> |
---|---|
date | Wed, 27 Mar 2013 13:29:38 +0100 |
parent | 933:5a975ba6a845 |
child | 1031:6b34cc81e15d |
line wrap: on
line source
-- mod_candy.lua -- Copyright (C) 2013 Kim Alvefur -- -- Run this in www_files -- curl -L http://github.com/candy-chat/candy/tarball/master | tar xzfv - --strip-components=1 local json_encode = require"util.json".encode; local serve = module:depends"http_files".serve; module:provides("http", { route = { ["GET /prosody.js"] = function(event) event.response.headers.content_type = "text/javascript"; return ("// Generated by Prosody\n" .."var Prosody = %s;\n") :format(json_encode({ bosh_path = module:http_url("bosh","/http-bind"); version = prosody.version; host = module:get_host(); anonymous = module:get_option_string("authentication") == "anonymous"; })); end; ["GET /*"] = serve(module:get_directory().."/www_files"); } });