File

core/rostermanager.lua @ 5556:7407b1160b46 tls

Close 'tls' branch
author Matthew Wild <mwild1@gmail.com>
date Wed, 01 May 2013 13:54:44 +0100
parent 6:7ad47ce20394
child 80:523ac742cc19
line wrap: on
line source


local mainlog = log;
local function log(type, message)
	mainlog(type, "rostermanager", message);
end

local setmetatable = setmetatable;
local format = string.format;
local loadfile, setfenv, pcall = loadfile, setfenv, pcall;

require "util.datamanager"

local datamanager = datamanager;

module "rostermanager"

function getroster(username, host)
	return { 
			["mattj@localhost"] = true,
			["tobias@getjabber.ath.cx"] = true,
			["waqas@getjabber.ath.cx"] = true,
			["thorns@getjabber.ath.cx"] = true, 
			["idw@getjabber.ath.cx"] = true, 
		}
--	return datamanager.load(username, host, "roster") or {};
end