Changeset 7

Show
Ignore:
Timestamp:
20/04/06 00:46:12 (3 years ago)
Author:
smoku
Message:

ported and integrated mod_status

Location:
trunk
Files:
2 added
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r4 r7  
     12006-04-20 Tomasz Sterna <tomek@xiaoka.com> 
     2        * ported mod_status to current version 
     3 
    142006-04-19 Tomasz Sterna <tomek@xiaoka.com> 
    25        * integrated more robust support for vCards 
  • trunk/sm/Makefile.am

    r2 r7  
    1919                  libmod_roster.la \ 
    2020                  libmod_session.la \ 
     21                  libmod_status.la \ 
    2122                  libmod_template-roster.la \ 
    2223                  libmod_vacation.la \ 
     
    101102libmod_session_la_LDFLAGS = -shared -E 
    102103 
     104libmod_status_la_SOURCES = mod_status.c 
     105libmod_status_la_LDFLAGS = -shared -E 
     106 
    103107libmod_template_roster_la_SOURCES = mod_template_roster.c 
    104108libmod_template_roster_la_LDFLAGS = -shared -E 
  • trunk/tools/db-setup.pgsql

    r4 r7  
    219219    "end" int, 
    220220    "message" text ); 
     221 
     222-- 
     223-- User status information 
     224-- Used by: mod_status 
     225-- 
     226CREATE 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' );