2001-03-10 11:07:52 +00:00
|
|
|
<?php
|
2000-05-18 19:52:00 +00:00
|
|
|
|
|
|
|
#
|
2000-11-13 08:17:45 +00:00
|
|
|
# Database settings:
|
2000-05-18 19:52:00 +00:00
|
|
|
#
|
2000-12-16 08:39:01 +00:00
|
|
|
$db_host = "localhost";
|
2001-01-06 11:39:43 +00:00
|
|
|
$db_user = "username";
|
|
|
|
$db_pass = "password";
|
|
|
|
$db_name = "database";
|
2000-12-16 08:39:01 +00:00
|
|
|
|
2000-05-18 19:52:00 +00:00
|
|
|
#
|
2000-11-20 10:27:35 +00:00
|
|
|
# Comment votes:
|
2001-04-27 06:45:06 +00:00
|
|
|
# The keys of this associative array are displayed in each comment's
|
|
|
|
# selection box whereas the corresponding values represent the
|
|
|
|
# mathematical calculation to be performed to update a comment's
|
|
|
|
# value.
|
2000-05-18 19:52:00 +00:00
|
|
|
#
|
2001-01-26 13:38:46 +00:00
|
|
|
$comment_votes = array("none" => "none",
|
|
|
|
"-1" => "- 1",
|
2000-11-13 08:17:45 +00:00
|
|
|
"0" => "+ 0",
|
|
|
|
"+1" => "+ 1",
|
|
|
|
"+2" => "+ 2",
|
2001-01-26 13:38:46 +00:00
|
|
|
"+3" => "+ 3",
|
|
|
|
"+4" => "+ 4",
|
2000-11-13 08:17:45 +00:00
|
|
|
"+5" => "+ 5");
|
2000-05-18 19:52:00 +00:00
|
|
|
|
2000-06-03 18:50:29 +00:00
|
|
|
#
|
2000-09-26 07:34:33 +00:00
|
|
|
# Themes:
|
2001-04-27 06:45:06 +00:00
|
|
|
# The first theme listed in this associative array will automatically
|
|
|
|
# become the default theme.
|
2000-06-03 18:50:29 +00:00
|
|
|
#
|
2000-12-16 08:39:01 +00:00
|
|
|
$themes = array("UnConeD" => array(
|
2001-01-26 14:41:44 +00:00
|
|
|
"themes/unconed/unconed.theme",
|
2001-06-07 10:57:41 +00:00
|
|
|
"Internet explorer, Netscape, Opera"),
|
2000-12-16 08:39:01 +00:00
|
|
|
"Marvin" => array(
|
2001-01-26 14:41:44 +00:00
|
|
|
"themes/marvin/marvin.theme",
|
2001-06-07 10:57:41 +00:00
|
|
|
"Internet explorer, Netscape, Opera"),
|
|
|
|
"Jeroen" => array(
|
|
|
|
"themes/jeroen/jeroen.theme",
|
|
|
|
"Internet explorer, Netscape"),
|
|
|
|
"Stone Age" => array(
|
|
|
|
"themes/example/example.theme",
|
|
|
|
"Internet explorer, Netscape, Opera, Lynx"),
|
|
|
|
"Goofy" => array(
|
|
|
|
"themes/goofy/goofy.theme",
|
|
|
|
"Internet explorer, Netscape, Opera"),
|
|
|
|
"Yaroon" => array(
|
|
|
|
"themes/yaroon/yaroon.theme",
|
|
|
|
"Internet explorer, Netscape, Opera"));
|
2000-06-03 18:50:29 +00:00
|
|
|
|
2001-02-17 12:59:24 +00:00
|
|
|
#
|
|
|
|
# Languages / translation / internationalization:
|
2001-04-27 06:45:06 +00:00
|
|
|
# The first language listed in this associative array will
|
|
|
|
# automatically become the default language. You can add a language
|
|
|
|
# but make sure your SQL table, called locales is updated
|
|
|
|
# appropriately.
|
2001-03-26 20:22:09 +00:00
|
|
|
$languages = array("en" => "English");
|
2001-02-17 12:59:24 +00:00
|
|
|
|
2001-05-14 19:41:18 +00:00
|
|
|
?>
|