]> git.pld-linux.org Git - packages/eventum.git/commitdiff
- updated to 1.5.3
authorElan Ruusamäe <glen@pld-linux.org>
Fri, 22 Apr 2005 08:53:57 +0000 (08:53 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    eventum-config.php -> 1.6
    eventum-paths.patch -> 1.21

eventum-config.php
eventum-paths.patch

index e61aca29b080b974724feb9411a8ef10966e6b1d..4a7fedfcb2695a19b49652cacbc28c56a62ce1bc 100755 (executable)
@@ -72,6 +72,7 @@ if (isset($_GET)) {
 // fix magic_quote_gpc'ed values (i wish i knew who is the person behind this)
 $HTTP_GET_VARS =& Misc::dispelMagicQuotes($HTTP_GET_VARS);
 $HTTP_POST_VARS =& Misc::dispelMagicQuotes($HTTP_POST_VARS);
+$_REQUEST =& Misc::dispelMagicQuotes($_REQUEST);
 
 // handle the language preferences now
 include_once(APP_INC_PATH . "class.language.php");
index 7a12123b95c795240da7208bdc3a569d3e68f49b..81c035c6b01e0e0f2a57b157eec4f355b78f4386 100644 (file)
          $this->smarty->config_dir = '';
          $this->smarty->register_modifier("activateLinks", array('Link_Filter', 'activateLinks'));
      }
---- eventum-1.5.1/setup/config.inc.php~        2005-03-14 15:21:18.000000000 +0200
-+++ eventum-1.5.1/setup/config.inc.php 2005-03-14 15:20:22.000000000 +0200
-@@ -27,49 +27,6 @@
- //
- // @(#) $Id$
- //
--ini_set('allow_url_fopen', 0);
--ini_set("display_errors", 0);
--error_reporting(0);
--@set_time_limit(0);
--// prevent session from messing up the browser cache
--ini_set('session.cache_limiter', 'nocache');
--
--// only needed for older PHP versions
--if (!function_exists('is_a')) {
--    function is_a($object, $class_name)
--    {
--        $class_name = strtolower($class_name);
--        if (get_class($object) == $class_name) {
--            return TRUE;
--        } else {
--            return is_subclass_of($object, $class_name);
--        }
--    }
--}
--
--// definitions of path related variables
--$app_path = '%{APP_PATH}%';
--if ((substr($app_path, -1) != '/') && (substr($app_path, -2) != '\\')) {
--    $app_path .= '/';
--}
--@define("APP_PATH", $app_path);
--@define("APP_INC_PATH", APP_PATH . "include/");
--@define("APP_PEAR_PATH", APP_INC_PATH . "pear/");
--@define("APP_TPL_PATH", APP_PATH . "templates/");
--@define("APP_SMARTY_PATH", APP_INC_PATH . "Smarty/");
--@define("APP_JPGRAPH_PATH", APP_INC_PATH . "jpgraph/");
--@define("APP_LOG_PATH", APP_PATH . "logs/");
--@define("APP_LOCKS_PATH", APP_PATH . "locks/");
--if (stristr(PHP_OS, 'darwin')) {
--    ini_set("include_path", ".:" . APP_PEAR_PATH);
--} elseif (stristr(PHP_OS, 'win')) {
--    ini_set("include_path", ".;" . APP_PEAR_PATH);
--} else {
--    ini_set("include_path", ".:" . APP_PEAR_PATH);
--}
--
--@define("APP_SETUP_PATH", APP_PATH);
--@define("APP_SETUP_FILE", APP_SETUP_PATH . "setup.conf.php");
- // definitions of SQL variables
- @define("APP_SQL_DBTYPE", "mysql");
-@@ -82,11 +39,6 @@
- @define("APP_DEFAULT_DB", APP_SQL_DBNAME);
- @define("APP_TABLE_PREFIX", "%{APP_TABLE_PREFIX}%");
--@define("APP_ERROR_LOG", APP_LOG_PATH . "errors.log");
--@define("APP_CLI_LOG", APP_LOG_PATH . "cli.log");
--@define("APP_IRC_LOG", APP_LOG_PATH . "irc_bot.log");
--@define("APP_LOGIN_LOG", APP_LOG_PATH . "login_attempts.log");
--
- @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/");
-@@ -99,8 +51,6 @@
- @define("APP_PROJECT_COOKIE", "eventum_project");
- @define("APP_PROJECT_COOKIE_EXPIRE", time() + (60 * 60 * 24));
--@define("APP_VERSION", "%{APP_VERSION}%");
--
- @define("APP_DEFAULT_PAGER_SIZE", 5);
- @define("APP_DEFAULT_REFRESH_RATE", 5); // in minutes
-@@ -114,39 +64,6 @@
- @define("APP_CYCLE_COLORS", "#DDDDDD,#CACACA");
- @define("APP_INTERNAL_COLOR", "#9C494B");
--// define the user_id of system user
--@define("APP_SYSTEM_USER_ID", 1);
--
- @define("APP_BENCHMARK", false);
--if (APP_BENCHMARK) {
--    // always benchmark the scripts
--    include_once("Benchmark/Timer.php");
--    $bench = new Benchmark_Timer;
--    $bench->start();
--}
--
--include_once(APP_INC_PATH . "class.misc.php");
--
--if (isset($_GET)) {
--    $HTTP_POST_VARS = $_POST;
--    $HTTP_GET_VARS = $_GET;
--    $HTTP_SERVER_VARS = $_SERVER;
--    $HTTP_ENV_VARS = $_ENV;
--    $HTTP_POST_FILES = $_FILES;
--    // seems like PHP 4.1.0 didn't implement the $_SESSION auto-global...
--    if (isset($_SESSION)) {
--        $HTTP_SESSION_VARS = $_SESSION;
--    }
--    $HTTP_COOKIE_VARS = $_COOKIE;
--}
--// fix magic_quote_gpc'ed values (i wish i knew who is the person behind this)
--$HTTP_GET_VARS =& Misc::dispelMagicQuotes($HTTP_GET_VARS);
--$HTTP_POST_VARS =& Misc::dispelMagicQuotes($HTTP_POST_VARS);
--
--// handle the language preferences now
--@include_once(APP_INC_PATH . "class.language.php");
--Language::setPreference();
--// set charset
--header("content-type: text/html;charset=" . APP_CHARSET);
- ?>
-\ No newline at end of file
 --- ./include/class.monitor.php~       2005-02-22 21:50:49.000000000 +0200
 +++ ./include/class.monitor.php        2005-02-22 23:04:50.000000000 +0200
 @@ -157,6 +165,7 @@
This page took 0.052487 seconds and 4 git commands to generate.