Changeset 7
- Timestamp:
- 20/04/06 00:46:12 (3 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 modified
-
ChangeLog (modified) (1 diff)
-
sm/Makefile.am (modified) (2 diffs)
-
sm/mod_status.c (added)
-
tools/db-setup.pgsql (modified) (1 diff)
-
tools/db-setup-status.mysql (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r4 r7 1 2006-04-20 Tomasz Sterna <tomek@xiaoka.com> 2 * ported mod_status to current version 3 1 4 2006-04-19 Tomasz Sterna <tomek@xiaoka.com> 2 5 * integrated more robust support for vCards -
trunk/sm/Makefile.am
r2 r7 19 19 libmod_roster.la \ 20 20 libmod_session.la \ 21 libmod_status.la \ 21 22 libmod_template-roster.la \ 22 23 libmod_vacation.la \ … … 101 102 libmod_session_la_LDFLAGS = -shared -E 102 103 104 libmod_status_la_SOURCES = mod_status.c 105 libmod_status_la_LDFLAGS = -shared -E 106 103 107 libmod_template_roster_la_SOURCES = mod_template_roster.c 104 108 libmod_template_roster_la_LDFLAGS = -shared -E -
trunk/tools/db-setup.pgsql
r4 r7 219 219 "end" int, 220 220 "message" text ); 221 222 -- 223 -- User status information 224 -- Used by: mod_status 225 -- 226 CREATE TABLE "status" ( 227 "collection-owner" text PRIMARY KEY, 228 "object-sequence" bigint, 229 "status" text, 230 "show" text, 231 "last-login" int DEFAULT '0', 232 "last-logout" int DEFAULT '0' );
