]> git.pld-linux.org Git - packages/eventum.git/commitdiff
- add copy to CVS rather patching everytime with a release
authorElan Ruusamäe <glen@pld-linux.org>
Fri, 22 Apr 2005 08:51:32 +0000 (08:51 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    eventum-config-setup.php -> 1.1

eventum-config-setup.php [new file with mode: 0644]

diff --git a/eventum-config-setup.php b/eventum-config-setup.php
new file mode 100644 (file)
index 0000000..66d5530
--- /dev/null
@@ -0,0 +1,69 @@
+<?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", "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
+
+@define("APP_CHARSET", "ISO-8859-1");
+
+// 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);
+
+?>
\ No newline at end of file
This page took 1.293942 seconds and 4 git commands to generate.