Rev 37 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/*
* $Id: config.h.tmpl 38 2024-08-22 03:08:03Z nishi $
*
* This is the config.h template.
*/
#ifndef __CONFIG_H__
#define __CONFIG_H__
/* Your instance name. */
#define INSTANCE_NAME "Unnamed"
/* Admin name/email. */
#define INSTANCE_ADMIN "John Doe <john.doe@example.com>"
/* Instance Root. */
#define INSTANCE_ROOT "/cgi-bin"
/* Instance Logo. */
#define INSTANCE_LOGO "/logo.png"
/* Image to be put in the navbar, for the modern theme. 940x60 should be good. */
#define INSTANCE_NAVBAR "/paper.png"
/* Navbar repeat, for the modern theme. */
#define INSTANCE_REPEAT "resize-x"
/* Banners, for the modern theme. */
#define INSTANCE_BANNERS "<img src=\"http://netbsd.org/images/logos/pnetbsd.gif\" width=\"88px\" height=\"31px\">"
/* Repository/User delimeter. This character will be unusable in the username/repository name. */
#define REPO_USER_DELIM '-'
/* Theme. */
#define USE_MODERN
/* Use Enscript or not. */
#define USE_ENSCRIPT
/* Allow Signup or not. */
#define ALLOW_SIGNUP
/* Database type. */
#define USE_SQLITE
#undef USE_GDBM
#undef USE_NDBM
/* Authentication type. */
#define USE_COOKIE
/* Use GraphicsMagick or not. */
#define USE_GRAPHICSMAGICK
/* Use libpng or not. */
#define USE_LIBPNG
/* Use avatar or not. */
/* Required USE_LIBPNG to be defined. */
#define USE_AVATAR
/* My Page for the modern theme.*/
/* Requires USE_GRAPHICSMAGICK, USE_LIBPNG, USE_AVATAR to be defined. */
#define USE_MYPAGE
/* PATH, uses PATH from environment automatically if not defined. */
#undef USE_PATH
/* SVN filesystem root. */
#define SVN_ROOT "/www/svn"
/* Database root. */
#define DB_ROOT "/www/db"
/* Apache htpasswd file. */
#define APACHE_PASSWD "/www/passwd"
/* Apache authz file. */
#define APACHE_AUTHZ "/www/authz"
/* Avatar filesystem root. */
#define AVATAR_ROOT "/www/avatar"
/* Subversion root on the HTTP. */
#define WWW_SVN_ROOT "/svn/"
/* Avatar root on the HTTP. */
#define WWW_AVATAR_ROOT "/avatar/"
#endif
/*
vim: syntax=c
*/