# HG changeset patch # User matthew # Date 1219584541 0 # Node ID f674eb704134e572ff3e9e33a235060aa511c02e # Parent 9bb397205f264ef40c768bdadbe64ee10b22a120 "Shared roster" - well, kind of :) + TODO diff -r 9bb397205f26 -r f674eb704134 TODO --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TODO Sun Aug 24 13:29:01 2008 +0000 @@ -0,0 +1,6 @@ +- SASL login support +- Roster manipulation support +- S2S \o/ + +Further down the line: +- Clustering diff -r 9bb397205f26 -r f674eb704134 core/rostermanager.lua --- a/core/rostermanager.lua Sun Aug 24 04:34:01 2008 +0000 +++ b/core/rostermanager.lua Sun Aug 24 13:29:01 2008 +0000 @@ -15,5 +15,12 @@ module "rostermanager" function getroster(username, host) - return datamanager.load(username, host, "roster") or {}; + 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