blob: 74bcc141b28052482f315471323ef88f60874a58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
int orz = 0;
int dirlist = 0;
static char *title = "a wiki";
static char *id = "anonymous";
static char *home = "home";
static char *pages = "pages";
static char *loft = ".loft";
static char *realm = "wiki";
static char *links[][2] = {
{ "home", "home" },
{ "planer", "planer" },
{ 0 }
};
static char *(*authenticate)() = NULL;
static char *script;
static char *base;
|