1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
########################################################################
### This configuration file is included by some shell scripts
### during installation, and it is also parsed by the php code
### to define some constants. For this reason, there should not
### be empty spaces around the equal sign (=), and all the string
### values must be included in quotes.
########################################################################
### The shell user which owns the application and the data.
DATA_OWNER='dbwiki'
### Email of the superuser
# ADMIN_EMAIL='dashohoxha@users.sf.net'
ADMIN_EMAIL='dbwiki'
### The book that is displayed initially
DEFAULT_BOOK='docbookwiki_guide'
### If true, then a hierarchical menu of book categories and books will
### be displayed on the left side. Otherwise, just a listbox of books
### will be displayed. If the list contains just one book (besides
### the docbookwiki_guide), then it will not be displayed at all.
USE_MENU='false'
#################### WEBNOTES Constants #################################
### Enable webnotes. Webnotes are comments that can be added by the
### readers at the end of each section. They are stored separately
### from the book content, in a database.
WEBNOTES_ENABLE='true'
### The database connection parameters for the webnotes
WEBNOTES_DBHOST='localhost'
WEBNOTES_DBUSER='root'
WEBNOTES_DBPASS=''
WEBNOTES_DBNAME='webnotes'
### If true, webnotes need to be approved before being displayed,
### otherwise they are listed immediately after submission.
WEBNOTES_APPROVE='false'
### Send email notifications to admins, when new webnotes
### that need to be approved are submitted.
WEBNOTES_NOTIFY='true'
################### L10N (Translation) Constants ########################
### The constants LNG and CODESET set the language and codeset of
### the application. They are used for the localization (translation) of
### the messages. LNG can be something like 'en_US' or 'en' or UNDEFINED.
### CODESET can be UNDEFINED, 'iso-latin-1', etc.
LNG='en'
CODESET='iso-latin-1'
# If true, then use the php-gettext instead of GNU gettext.
USE_PHP_GETTEXT=true
################## Platform dependent paths #############################
# SWISH-E program path
SWISH_E='/usr/local/bin/swish-e'
|