mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
20 lines
460 B
C
20 lines
460 B
C
|
// experimental: example of a blog type room
|
||
|
// which probably needs some work to get running
|
||
|
//
|
||
|
#include <net.h>
|
||
|
|
||
|
#define NAME "blog"
|
||
|
#define THREADS
|
||
|
#define HISTORY_GLIMPSE 12
|
||
|
|
||
|
#ifdef ADMINISTRATORS
|
||
|
// psyconf puts ADMINISTRATORS into psyconf.h
|
||
|
# define PLACE_OWNED ADMINISTRATORS
|
||
|
#else
|
||
|
// example set-up
|
||
|
# define PLACE_OWNED "fippo", "lynx", "bartman"
|
||
|
#endif
|
||
|
|
||
|
#define UNIFORM_STYLE "http://www.your-community.de/fippo/blog.css"
|
||
|
#include <place.gen>
|