Subversion Repositories RepoView

Rev

Rev 1 | Rev 8 | Go to most recent revision | Details | Compare with Previous | 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
 
6 nishi 22
/* Image to be put in the navbar, for the modern theme. 940x60 should be good. */
23
#define INSTANCE_NAVBAR	"/paper.png"
24
 
25
/* Navbar repeat, for the modern theme. */
26
#define INSTANCE_REPEAT	"resize-x"
27
 
1 nishi 28
/* Theme. */
29
#define USE_MODERN
30
 
31
/* Database type. */
32
#define USE_SQLITE
33
#undef USE_GDBM
34
#undef USE_NDBM
35
 
36
/* Authentication type. */
37
#define USE_COOKIE
38
 
39
/* PATH, uses PATH from environment automatically if not defined. */
40
#undef USE_PATH
41
 
42
/* SVN filesystem root. */
43
#define SVN_ROOT "/www/svn"
44
 
45
/* Database root. */
46
#define DB_ROOT "/www/db"
47
 
48
/* Apache htpasswd file. */
49
#define APACHE_PASSWD "/www/passwd"
50
 
51
#endif
52
 
53
/*
54
vim: syntax=c
55
*/