xlate
[kewensis.git] / config.php
1 <?php // $Id$
2
3         $admin_mail="project-kewensis@jankratochvil.net";
4         $cvs_mailhost="vellum.cz";
5         $viewcvs=ereg_replace("^/","http://cvs.jankratochvil.net/viewcvs/kewensis/",$HTTP_SERVER_VARS["SCRIPT_NAME"]);
6         $title_prefix="Kewensis";
7         $force_charset="utf-8"; // library texts will be corrupted but who cares
8
9         $limit_max_default=10;
10         $footer_LOCAL=1; // disable remote footer images
11
12         $db_host="";
13         $db_user="short";
14         $db_pwd_a=@file("/home/short/priv/mysql.${db_user}.pwd");
15         $db_pwd=trim($db_pwd_a[0]);
16         if (!$db_pwd) // defaults to $db_pwd=$db_user if no password file found
17                 $db_pwd=$db_user;
18         $db_name="short";
19         $tb_tree="kewensis_tree";
20
21 ?>