Subversion Repositories RepoView

Rev

Rev 13 | Rev 17 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 13 Rev 15
Line 6... Line 6...
6
 
6
 
7
#ifndef __CONFIG_H__
7
#ifndef __CONFIG_H__
8
#define __CONFIG_H__
8
#define __CONFIG_H__
9
 
9
 
10
/* Your instance name. */
10
/* Your instance name. */
11
#define INSTANCE_NAME	"Unnamed"
11
#define INSTANCE_NAME		"Unnamed"
12
 
12
 
13
/* Admin name/email. */
13
/* Admin name/email. */
14
#define INSTANCE_ADMIN	"John Doe <john.doe@example.com>"
14
#define INSTANCE_ADMIN		"John Doe <john.doe@example.com>"
15
 
15
 
16
/* Instance Root. */
16
/* Instance Root. */
17
#define INSTANCE_ROOT	"/cgi-bin"
17
#define INSTANCE_ROOT		"/cgi-bin"
18
 
18
 
19
/* Instance Logo. */
19
/* Instance Logo. */
20
#define INSTANCE_LOGO	"/logo.png"
20
#define INSTANCE_LOGO		"/logo.png"
21
 
21
 
22
/* Image to be put in the navbar, for the modern theme. 940x60 should be good. */
22
/* Image to be put in the navbar, for the modern theme. 940x60 should be good. */
23
#define INSTANCE_NAVBAR	"/paper.png"
23
#define INSTANCE_NAVBAR		"/paper.png"
24
 
24
 
25
/* Navbar repeat, for the modern theme. */
25
/* Navbar repeat, for the modern theme. */
26
#define INSTANCE_REPEAT	"resize-x"
26
#define INSTANCE_REPEAT		"resize-x"
-
 
27
 
-
 
28
/* Banners, for the modern theme.. */
-
 
29
#define INSTANCE_BANNERS	"<img src=\"http://netbsd.org/images/logos/pnetbsd.gif\" width=\"88px\" height=\"31px\">"
27
 
30
 
28
/* Repository/User delimeter. This character will be unusable in the username/repository name. */
31
/* Repository/User delimeter. This character will be unusable in the username/repository name. */
29
#define REPO_USER_DELIM '$'
32
#define REPO_USER_DELIM		'-'
30
 
33
 
31
/* Theme. */
34
/* Theme. */
32
#define USE_MODERN
35
#define USE_MODERN
33
 
36
 
34
/* Use Enscript or not. */
37
/* Use Enscript or not. */
Line 47... Line 50...
47
 
50
 
48
/* PATH, uses PATH from environment automatically if not defined. */
51
/* PATH, uses PATH from environment automatically if not defined. */
49
#undef USE_PATH
52
#undef USE_PATH
50
 
53
 
51
/* SVN filesystem root. */
54
/* SVN filesystem root. */
52
#define SVN_ROOT "/www/svn"
55
#define SVN_ROOT 		"/www/svn"
53
 
56
 
54
/* Database root. */
57
/* Database root. */
55
#define DB_ROOT "/www/db"
58
#define DB_ROOT			"/www/db"
56
 
59
 
57
/* Apache htpasswd file. */
60
/* Apache htpasswd file. */
58
#define APACHE_PASSWD "/www/passwd"
61
#define APACHE_PASSWD		"/www/passwd"
59
 
62
 
60
/* Apache authz file. */
63
/* Apache authz file. */
61
#define APACHE_AUTHZ "/www/authz"
64
#define APACHE_AUTHZ 		"/www/authz"
-
 
65
 
-
 
66
/* Subversion root on the HTTP. */
-
 
67
#define WWW_SVN_ROOT		"/svn/"
62
 
68
 
63
#endif
69
#endif
64
 
70
 
65
/*
71
/*
66
vim: syntax=c
72
vim: syntax=c