Mercurial > prosody-modules
view mod_candy/mod_candy.lua @ 1207:c6b8ae5a8369
mod_mam_sql: Reconnect if the connection should be dropped
author | Rob Hoelz <rob@hoelz.ro> |
---|---|
date | Mon, 02 Sep 2013 20:10:10 +0200 |
parents | 6b34cc81e15d |
children | f67eacb1ac9f |
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; module:depends"bosh"; 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"); } });