Subversion Repositories RepoView

Rev

Rev 10 | Rev 13 | 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
 
10 nishi 28
/* Repository/User delimeter. This character will be unusable in the username/repository name. */
11 nishi 29
#define REPO_USER_DELIM '$'
10 nishi 30
 
1 nishi 31
/* Theme. */
32
#define USE_MODERN
33
 
34
/* Database type. */
35
#define USE_SQLITE
36
#undef USE_GDBM
37
#undef USE_NDBM
38
 
39
/* Authentication type. */
40
#define USE_COOKIE
41
 
42
/* PATH, uses PATH from environment automatically if not defined. */
43
#undef USE_PATH
44
 
45
/* SVN filesystem root. */
46
#define SVN_ROOT "/www/svn"
47
 
48
/* Database root. */
49
#define DB_ROOT "/www/db"
50
 
51
/* Apache htpasswd file. */
52
#define APACHE_PASSWD "/www/passwd"
53
 
8 nishi 54
/* Apache authz file. */
55
#define APACHE_AUTHZ "/www/authz"
56
 
1 nishi 57
#endif
58
 
59
/*
60
vim: syntax=c
61
*/