]> git.pld-linux.org Git - packages/eventum.git/blobdiff - eventum-config-setup.php
- update to 20070130.3228
[packages/eventum.git] / eventum-config-setup.php
diff --git a/eventum-config-setup.php b/eventum-config-setup.php
deleted file mode 100644 (file)
index d5f5686..0000000
+++ /dev/null
@@ -1,79 +0,0 @@
-<?php
-/* vim: set expandtab tabstop=4 shiftwidth=4: */
-// +----------------------------------------------------------------------+
-// | Eventum - Issue Tracking System                                      |
-// +----------------------------------------------------------------------+
-// | Copyright (c) 2003, 2004, 2005 MySQL AB                              |
-// |                                                                      |
-// | This program is free software; you can redistribute it and/or modify |
-// | it under the terms of the GNU General Public License as published by |
-// | the Free Software Foundation; either version 2 of the License, or    |
-// | (at your option) any later version.                                  |
-// |                                                                      |
-// | This program is distributed in the hope that it will be useful,      |
-// | but WITHOUT ANY WARRANTY; without even the implied warranty of       |
-// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        |
-// | GNU General Public License for more details.                         |
-// |                                                                      |
-// | You should have received a copy of the GNU General Public License    |
-// | along with this program; if not, write to:                           |
-// |                                                                      |
-// | Free Software Foundation, Inc.                                       |
-// | 59 Temple Place - Suite 330                                          |
-// | Boston, MA 02111-1307, USA.                                          |
-// +----------------------------------------------------------------------+
-// | Authors: João Prado Maia <jpm@mysql.com>                             |
-// +----------------------------------------------------------------------+
-//
-// @(#) $Id$
-//
-
-// definitions of SQL variables
-define('APP_SQL_DBTYPE', 'mysql');
-define('APP_SQL_DBHOST', '%{APP_SQL_DBHOST}%');
-define('APP_SQL_DBPORT', 3306);
-define('APP_SQL_DBNAME', '%{APP_SQL_DBNAME}%');
-define('APP_SQL_DBUSER', '%{APP_SQL_DBUSER}%');
-define('APP_SQL_DBPASS', '%{APP_SQL_DBPASS}%');
-
-define('APP_DEFAULT_DB', APP_SQL_DBNAME);
-define('APP_TABLE_PREFIX', '%{APP_TABLE_PREFIX}%');
-
-define('APP_NAME', 'Eventum');
-define('APP_SHORT_NAME', APP_NAME); // used in the subject of notification emails
-define('APP_URL', 'http://www.mysql.com/products/eventum/');
-define('APP_HOSTNAME', '%{APP_HOSTNAME}%');
-define('APP_SITE_NAME', APP_NAME);
-define('APP_RELATIVE_URL', '%{APP_RELATIVE_URL}%');
-define('APP_BASE_URL', '%{PROTOCOL_TYPE}%' . APP_HOSTNAME . APP_RELATIVE_URL);
-define('APP_COOKIE_URL', APP_RELATIVE_URL);
-define('APP_COOKIE_DOMAIN', APP_HOSTNAME);
-define('APP_COOKIE', 'eventum');
-define('APP_COOKIE_EXPIRE', time() + (60 * 60 * 8));
-define('APP_PROJECT_COOKIE', 'eventum_project');
-define('APP_PROJECT_COOKIE_EXPIRE', time() + (60 * 60 * 24));
-
-define('APP_DEFAULT_PAGER_SIZE', 5);
-define('APP_DEFAULT_REFRESH_RATE', 5); // in minutes
-
-// new users will use these for default preferences
-define('APP_DEFAULT_ASSIGNED_EMAILS', 1); // if the user will recieve an email when an issue is assigned to him
-define('APP_DEFAULT_NEW_EMAILS', 0); // if the user will recieve an email when ANY issue is created
-
-define('APP_CHARSET', 'UTF-8');
-define('APP_DEFAULT_LOCALE', 'en_US');
-
-// define colors used by eventum
-define('APP_CELL_COLOR', '#255282');
-define('APP_LIGHT_COLOR', '#DDDDDD');
-define('APP_MIDDLE_COLOR', '#CACACA');
-define('APP_DARK_COLOR', '#CACACA');
-define('APP_CYCLE_COLORS', '#DDDDDD,#CACACA');
-define('APP_INTERNAL_COLOR', '#9C494B');
-
-define('APP_BENCHMARK', false);
-// if full text searching is enabled
-define('APP_ENABLE_FULLTEXT', %{APP_ENABLE_FULLTEXT}%);
-
-// define the type of password hashing to use (MD5, MD5-64)
-define('APP_HASH_TYPE', 'MD5');
This page took 0.10346 seconds and 4 git commands to generate.