Subversion Repositories RepoView

Rev

Rev 6 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 nishi 1
/*
2
 * $Id$
3
 *
4
 * This is the config.h template.
5
 */
6
 
7
#ifndef __CONFIG_H__
8
#define __CONFIG_H__
9
 
10
/* Your instance name. */
11
#define INSTANCE_NAME	"Unnamed"
12
 
13
/* Admin name/email. */
14
#define INSTANCE_ADMIN	"John Doe <john.doe@example.com>"
15
 
16
/* Instance Root. */
17
#define INSTANCE_ROOT	"/cgi-bin"
18
 
19
/* Instance Logo. */
20
#define INSTANCE_LOGO	"/logo.png"
21
 
22
/* Theme. */
23
#undef USE_OPTIMIZED
24
#define USE_MODERN
25
 
26
/* Database type. */
27
#define USE_SQLITE
28
#undef USE_GDBM
29
#undef USE_NDBM
30
 
31
/* Authentication type. */
32
#define USE_COOKIE
33
 
34
/* PATH, uses PATH from environment automatically if not defined. */
35
#undef USE_PATH
36
 
37
/* SVN filesystem root. */
38
#define SVN_ROOT "/www/svn"
39
 
40
/* Database root. */
41
#define DB_ROOT "/www/db"
42
 
43
/* Apache htpasswd file. */
44
#define APACHE_PASSWD "/www/passwd"
45
 
46
#endif
47
 
48
/*
49
vim: syntax=c
50
*/