]> git.pld-linux.org Git - packages/eventum.git/blob - eventum-config-setup.php
- display email addresses to whom email was sent when issue was updated
[packages/eventum.git] / eventum-config-setup.php
1 <?php
2 /* vim: set expandtab tabstop=4 shiftwidth=4: */
3 // +----------------------------------------------------------------------+
4 // | Eventum - Issue Tracking System                                      |
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 2003, 2004, 2005 MySQL AB                              |
7 // |                                                                      |
8 // | This program is free software; you can redistribute it and/or modify |
9 // | it under the terms of the GNU General Public License as published by |
10 // | the Free Software Foundation; either version 2 of the License, or    |
11 // | (at your option) any later version.                                  |
12 // |                                                                      |
13 // | This program is distributed in the hope that it will be useful,      |
14 // | but WITHOUT ANY WARRANTY; without even the implied warranty of       |
15 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        |
16 // | GNU General Public License for more details.                         |
17 // |                                                                      |
18 // | You should have received a copy of the GNU General Public License    |
19 // | along with this program; if not, write to:                           |
20 // |                                                                      |
21 // | Free Software Foundation, Inc.                                       |
22 // | 59 Temple Place - Suite 330                                          |
23 // | Boston, MA 02111-1307, USA.                                          |
24 // +----------------------------------------------------------------------+
25 // | Authors: João Prado Maia <jpm@mysql.com>                             |
26 // +----------------------------------------------------------------------+
27 //
28 // @(#) $Id$
29 //
30
31 // definitions of SQL variables
32 define("APP_SQL_DBTYPE", "mysql");
33 define("APP_SQL_DBHOST", "%{APP_SQL_DBHOST}%");
34 define("APP_SQL_DBPORT", 3306);
35 define("APP_SQL_DBNAME", "%{APP_SQL_DBNAME}%");
36 define("APP_SQL_DBUSER", "%{APP_SQL_DBUSER}%");
37 define("APP_SQL_DBPASS", "%{APP_SQL_DBPASS}%");
38
39 define("APP_DEFAULT_DB", APP_SQL_DBNAME);
40 define("APP_TABLE_PREFIX", "%{APP_TABLE_PREFIX}%");
41
42 define("APP_NAME", "Eventum");
43 define("APP_SHORT_NAME", APP_NAME); // used in the subject of notification emails
44 define("APP_URL", "http://www.mysql.com/products/eventum/");
45 define("APP_HOSTNAME", "%{APP_HOSTNAME}%");
46 define("APP_SITE_NAME", APP_NAME);
47 define("APP_RELATIVE_URL", "%{APP_RELATIVE_URL}%");
48 define("APP_BASE_URL", "%{PROTOCOL_TYPE}%" . APP_HOSTNAME . APP_RELATIVE_URL);
49 define("APP_COOKIE_URL", APP_RELATIVE_URL);
50 define("APP_COOKIE_DOMAIN", APP_HOSTNAME);
51 define("APP_COOKIE", "eventum");
52 define("APP_COOKIE_EXPIRE", time() + (60 * 60 * 8));
53 define("APP_PROJECT_COOKIE", "eventum_project");
54 define("APP_PROJECT_COOKIE_EXPIRE", time() + (60 * 60 * 24));
55
56 define("APP_DEFAULT_PAGER_SIZE", 5);
57 define("APP_DEFAULT_REFRESH_RATE", 5); // in minutes
58
59 // new users will use these for default preferences
60 define("APP_DEFAULT_ASSIGNED_EMAILS", 1); // if the user will recieve an email when an issue is assigned to him
61 define("APP_DEFAULT_NEW_EMAILS", 0); // if the user will recieve an email when ANY issue is created
62
63 define("APP_CHARSET", "ISO-8859-1");
64 define("APP_DEFAULT_LOCALE", "en_US");
65
66 // define colors used by eventum
67 define("APP_CELL_COLOR", "#255282");
68 define("APP_LIGHT_COLOR", "#DDDDDD");
69 define("APP_MIDDLE_COLOR", "#CACACA");
70 define("APP_DARK_COLOR", "#CACACA");
71 define("APP_CYCLE_COLORS", "#DDDDDD,#CACACA");
72 define("APP_INTERNAL_COLOR", "#9C494B");
73
74 define("APP_BENCHMARK", false);
75 // if full text searching is enabled
76 define("APP_ENABLE_FULLTEXT", %{APP_ENABLE_FULLTEXT}%);
77
78 // define the type of password hashing to use (MD5, MD5-64)
79 define('APP_HASH_TYPE', 'MD5');
80
81 ?>
This page took 0.027718 seconds and 3 git commands to generate.