
# URLS:
_ADMIN="dbadmin"
_CGI_BASE_URL="http://localhost/cgi-bin/new-sql"
_HTTP_BASE_URL="http://localhost/new"

# PATH's:
_HTTP_PATH="/usr/local/httpd/htdocs/new"
_CGI_PATH="/usr/local/httpd/cgi-bin/new-sql"

# Default Database Definitions:
_DB_NAME="faq"
_DB_TABLE_TOPIC="topic"
_DB_TABLE_ANSWER="answer"
_DB_TABLE_QUEST="question"

# User Name(s)
_DB_ADMIN_EMAIL="root@localhost"
_HTTPD_USER="wwwrun"
_HTTPD_GROUP="nogroup"

# binaries
_COMPILER="g++"
_INSTALL="/usr/bin/install"

# MySQL Locations
_MYSQL_INCLUDES="/usr/include/mysql"
_MYSQL_LIBS="/usr/local/mysql/lib" 

# Mode for full-index
# possible values: topic or large
_FULL_FORMAT="topic"

# Filenames of Header and Footer Template for Index
_HEADER="head.html"
_FOOTER="foot.html"
