]> git.pld-linux.org Git - packages/eventum.git/blobdiff - eventum-paths.patch
- uids/gids
[packages/eventum.git] / eventum-paths.patch
index cd67eab07603aaf7269524f3ba2608475a1c6275..58eb823c81f913bd68eb70f9fad3f5b391e0f9cb 100644 (file)
---- eventum/misc/cli/config.inc.php    2007-01-30 20:32:58.965186306 +0200
-+++ eventum/misc/cli/config.inc.php    2007-01-30 20:57:01.887651515 +0200
-@@ -32,9 +32,8 @@
- set_time_limit(0);
+--- ./cli/eventum      2009-06-27 19:46:44.401524716 +0300
++++ ./cli/eventum      2009-06-27 19:45:22.781438493 +0300
+@@ -12,9 +12,8 @@
+ // @(#) $Id$
  
  // definitions of path related variables
 -define('APP_PATH', dirname(__FILE__) . '/');
--define('APP_INC_PATH', APP_PATH . 'include/');
--define('APP_PEAR_PATH', APP_INC_PATH . 'pear/');
-+define('APP_INC_PATH', '/usr/share/eventum/cli/');
-+define('APP_PEAR_PATH', '/usr/share/pear/');
- define('APP_BENCHMARK', false);
- set_include_path(get_include_path() . PATH_SEPARATOR . APP_PEAR_PATH);
---- eventum/include/class.template.php~        2007-01-30 18:52:59.020179406 +0200
-+++ eventum/include/class.template.php 2007-01-30 18:53:24.620759076 +0200
-@@ -61,6 +61,7 @@
-         $this->smarty = new Smarty;
-         $this->smarty->template_dir = APP_TPL_PATH;
-         $this->smarty->compile_dir = APP_TPL_COMPILE_PATH;
-+        $this->smarty->plugins_dir  = array('/usr/share/eventum/include/smarty', 'plugins');
-         $this->smarty->config_dir = '';
-         $this->smarty->register_modifier("activateLinks", array('Link_Filter', 'activateLinks'));
-         $this->smarty->register_modifier("formatCustomValue", array('Custom_Field', 'formatValue'));
---- ./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 @@
-                 'permission'       => 100,
-             ),
-         );
-+        $required_directories = array();
-         foreach ($required_directories as $dir_path => $options) {
-             // check if directory exists
-             if (!file_exists($dir_path)) {
---- ./include/class.misc.php   2005-10-26 17:17:17.000000000 +0300
-+++ /tmp/class.misc.php        2005-10-26 17:30:12.000000000 +0300
-@@ -607,7 +607,7 @@
-      */
-     function highlightQuotedReply($text)
-     {
--        require_once(APP_SMARTY_PATH . "plugins/modifier.highlight_quoted.php");
-+        require_once(APP_INC_PATH. "smarty/modifier.highlight_quoted.php");
-         return smarty_modifier_highlight_quoted($text);
-     }
---- eventum/init.php   2007-01-30 19:05:56.897776515 +0200
-+++ eventum/init.php   2007-01-30 20:12:31.017572265 +0200
-@@ -27,5 +27,5 @@
+-define('APP_INC_PATH', APP_PATH . '/lib/eventum');
+-define('APP_PEAR_PATH', APP_PATH . '/lib/pear');
++define('APP_PATH', '/usr/share/eventum');
++define('APP_INC_PATH', APP_PATH . '/cli');
+ if (defined('APP_PEAR_PATH')) {
+     set_include_path(APP_PEAR_PATH . PATH_SEPARATOR . get_include_path());
+--- eventum-2.2/init.php~      2009-10-12 22:40:04.000000000 +0300
++++ eventum-2.2/init.php       2009-10-12 22:40:41.619219457 +0300
+@@ -27,7 +27,7 @@
+ // | Authors: Elan Ruusamäe <glen@delfi.ee>                               |
  // +----------------------------------------------------------------------+
  
--if (!file_exists(dirname(__FILE__) . '/config/config.php')) {
-+if (!file_exists('/etc/webapps/eventum/config.php')) {
+-if (!file_exists(dirname(__FILE__) . '/config/config.php') || !filesize(dirname(__FILE__) . '/config/config.php')) {
++if (!file_exists('/etc/webapps/eventum/config.php') || !filesize('/etc/webapps/eventum/config.php')) {
      Header('Location: setup/');
-     exit;
-@@ -43,31 +43,31 @@
- define('APP_VERSION', '2.0-alpha');
+     exit(0);
+ }
+@@ -46,7 +46,7 @@
  
  // define base path
--define('APP_PATH', realpath(dirname(__FILE__)) . '/');
--define('APP_CONFIG_PATH', APP_PATH . 'config/');
-+define('APP_PATH', '/usr/share/eventum/htdocs/');
-+define('APP_CONFIG_PATH', '/etc/webapps/eventum/');
+ define('APP_PATH', realpath(dirname(__FILE__)));
+-define('APP_CONFIG_PATH', APP_PATH . '/config');
++define('APP_CONFIG_PATH', '/etc/webapps/eventum');
  
- // include local site config
- require_once APP_CONFIG_PATH . 'config.php';
- // define other paths
- if (!defined('APP_INC_PATH')) {
--    define('APP_INC_PATH', APP_PATH . 'include/');
-+    define('APP_INC_PATH', '/usr/share/eventum/include/');
+ // include local site config. may override any default
+ require_once APP_CONFIG_PATH . '/config.php';
+@@ -61,19 +61,15 @@
  }
  
- if (!defined('APP_PEAR_PATH')) {
--    define('APP_PEAR_PATH', APP_INC_PATH . 'pear/');
-+    define('APP_PEAR_PATH', '/usr/share/pear/');
- }
- if (!defined('APP_TPL_PATH')) {
--    define('APP_TPL_PATH', APP_PATH . 'templates/');
-+    define('APP_TPL_PATH', '/usr/share/eventum/templates/');
+ if (!defined('APP_TPL_COMPILE_PATH')) {
+-    define('APP_TPL_COMPILE_PATH', APP_PATH . '/templates_c');
++    define('APP_TPL_COMPILE_PATH', '/var/cache/eventum');
  }
  
- if (!defined('APP_TPL_COMPILE_PATH')) {
--    define('APP_TPL_COMPILE_PATH', APP_PATH . 'templates_c');
-+    define('APP_TPL_COMPILE_PATH', '/var/cache/eventum/');
+ if (!defined('APP_INC_PATH')) {
+     define('APP_INC_PATH', APP_PATH . '/lib/eventum');
  }
  
+-if (!defined('APP_PEAR_PATH')) {
+-    define('APP_PEAR_PATH', APP_PATH . '/lib/pear');
+-}
+-
  if (!defined('APP_SMARTY_PATH')) {
--    define('APP_SMARTY_PATH', APP_INC_PATH . 'Smarty/');
-+    define('APP_SMARTY_PATH', '/usr/share/php/Smarty/');
+-    define('APP_SMARTY_PATH', APP_PATH . '/lib/Smarty');
++    define('APP_SMARTY_PATH', '/usr/share/php/Smarty');
  }
  
  if (!defined('APP_JPGRAPH_PATH')) {
-@@ -75,7 +75,7 @@
+@@ -81,7 +77,7 @@
  }
  
  if (!defined('APP_LOCKS_PATH')) {
--    define('APP_LOCKS_PATH', APP_PATH . 'locks/');
+-    define('APP_LOCKS_PATH', APP_PATH . '/locks');
 +    define('APP_LOCKS_PATH', '/var/run/eventum/');
  }
  
- if (!defined('APP_SETUP_FILE')) {
-@@ -83,7 +83,7 @@
+ if (!defined('APP_SQL_PATCHES_PATH')) {
+@@ -89,7 +85,7 @@
  }
  
  if (!defined('APP_LOG_PATH')) {
--    define('APP_LOG_PATH', APP_PATH . 'logs/');
-+    define('APP_LOG_PATH', '/var/log/eventum/');
+-    define('APP_LOG_PATH', APP_PATH . '/logs');
++    define('APP_LOG_PATH', '/var/log/eventum');
  }
  
- if (!defined('APP_ERROR_LOG')) {
---- eventum/setup/index.php~   2007-01-30 20:04:32.306824546 +0200
-+++ eventum/setup/index.php    2007-01-30 20:14:43.880555938 +0200
-@@ -38,17 +38,17 @@
- set_time_limit(0);
- define('APP_CHARSET', 'UTF-8');
- define('APP_DEFAULT_LOCALE', 'en_US');
--define('APP_PATH', realpath(dirname(__FILE__) . '/..') . '/');
-+define('APP_PATH', realpath(dirname(__FILE__) . '/../..') . '/');
- define('APP_INC_PATH', APP_PATH . 'include/');
- define('APP_PEAR_PATH', APP_INC_PATH . 'pear/');
--define('APP_SMARTY_PATH', APP_INC_PATH . 'Smarty/');
--define('APP_CONFIG_PATH', APP_PATH . 'config/');
-+define('APP_SMARTY_PATH', '/usr/share/php/Smarty/');
-+define('APP_CONFIG_PATH', '/etc/webapps/eventum/');
- define('APP_SETUP_FILE', APP_CONFIG_PATH . 'setup.php');
- define('APP_TPL_PATH', APP_PATH . 'templates/');
--define('APP_TPL_COMPILE_PATH', APP_PATH . 'templates_c');
--define('APP_LOG_PATH', APP_PATH . 'logs/');
+ if (!defined('APP_ROUTED_MAILS_SAVEDIR')) {
+--- eventum-2.2/htdocs/setup/index.php~        2010-07-28 12:09:26.000000000 +0300
++++ eventum-2.2/htdocs/setup/index.php 2010-07-28 12:09:48.715993083 +0300
+@@ -42,14 +42,14 @@
+ define('APP_PATH', realpath(dirname(__FILE__) . '/../..'));
+ define('APP_INC_PATH', APP_PATH . '/lib/eventum');
+ define('APP_PEAR_PATH', APP_PATH . '/lib/pear');
+-define('APP_SMARTY_PATH', APP_PATH . '/lib/Smarty');
+-define('APP_CONFIG_PATH', APP_PATH . '/config');
++define('APP_SMARTY_PATH', '/usr/share/php/Smarty');
++define('APP_CONFIG_PATH', '/etc/webapps/eventum');
+ define('APP_SETUP_FILE', APP_CONFIG_PATH . '/setup.php');
+ define('APP_TPL_PATH', APP_PATH . '/templates');
+-define('APP_TPL_COMPILE_PATH', APP_PATH . '/templates_c');
+-define('APP_LOG_PATH', APP_PATH . '/logs');
 +define('APP_TPL_COMPILE_PATH', '/var/cache/eventum');
-+define('APP_LOG_PATH', '/var/log/eventum/');
- define('APP_ERROR_LOG', APP_LOG_PATH . 'errors.log');
--define('APP_LOCKS_PATH', APP_PATH . 'locks/');
-+define('APP_LOCKS_PATH', '/var/run/eventum/');
++define('APP_LOG_PATH', '/var/log/eventum');
+ define('APP_ERROR_LOG', APP_LOG_PATH . '/errors.log');
+-define('APP_LOCKS_PATH', APP_PATH . '/locks');
++define('APP_LOCKS_PATH', '/var/run/eventum');
  
define('APP_BENCHMARK', false);
header('Content-Type: text/html; charset=' . APP_CHARSET);
  
-@@ -192,10 +192,6 @@
-     if (ini_get('file_uploads') != "1") {
-         $errors[] = "The 'file_uploads' directive needs to be enabled in your PHP.INI file in order for Eventum to work properly.";
+@@ -252,10 +252,6 @@
+             "You need to install this extension for optimal operation. If you do not install this extension some unicode data will be corrupted.";
      }
 -    $error = checkPermissions(APP_CONFIG_PATH, "Directory '" . APP_CONFIG_PATH . "'", TRUE);
 -    if (!empty($error)) {
 -        $errors[] = $error;
 -    }
-     $error = checkPermissions(APP_LOCKS_PATH, "Directory '" . APP_LOCKS_PATH . "'", TRUE);
+     $error = checkPermissions(APP_SETUP_FILE, "File '" . APP_SETUP_FILE. "'");
      if (!empty($error)) {
          $errors[] = $error;
 @@ -329,10 +325,6 @@
      // need to create a random private key variable
      $private_key = '<?php
  $private_key = "' . md5(microtime()) . '";
---- eventum/misc/cli/eventum~  2007-01-30 20:33:31.435916994 +0200
-+++ eventum/misc/cli/eventum   2007-01-30 20:34:58.717881130 +0200
-@@ -13,3 +13,3 @@
- //
--require_once(dirname(__FILE__) . '/config.inc.php');
-+require_once('/etc/eventum/cli.php');
- require_once(APP_INC_PATH . 'class.command_line.php');
---- eventum/misc/process_mail_queue.php~       2007-02-15 00:31:11.000000000 +0200
-+++ eventum/misc/process_mail_queue.php        2007-02-15 01:02:15.704386785 +0200
-@@ -30,7 +30,7 @@
- ini_set("memory_limit", "1024M");
--require_once(dirname(__FILE__) . "/../init.php");
-+require_once(dirname(__FILE__) . "/htdocs/init.php");
- require_once(APP_INC_PATH . "db_access.php");
- require_once(APP_INC_PATH . "class.mail_queue.php");
---- eventum/misc/download_emails.php~  2007-02-15 00:31:11.000000000 +0200
-+++ eventum/misc/download_emails.php   2007-02-15 01:02:56.183553358 +0200
-@@ -30,7 +30,7 @@
- ini_set("memory_limit", "1024M");
--require_once(dirname(__FILE__) . "/../init.php");
-+require_once(dirname(__FILE__) . "/htdocs/init.php");
- require_once(APP_INC_PATH . "class.support.php");
- require_once(APP_INC_PATH . "class.lock.php");
- require_once(APP_INC_PATH . "class.project.php");
+--- eventum-2.2/irc/eventum-irc-bot~   2009-07-23 14:03:41.422211655 +0300
++++ eventum-2.2/irc/eventum-irc-bot    2009-07-23 13:54:22.000000000 +0300
+@@ -32,7 +32,7 @@
+ ini_set('memory_limit', '1024M');
+-require_once dirname(__FILE__) . '/../init.php';
++require_once '/usr/share/eventum/init.php';
+ if (!file_exists(APP_CONFIG_PATH . '/irc_config.php')) {
+     fwrite(STDERR, "ERROR: No config specified. Please see setup/irc_config.php for config information.\n\n");
+--- eventum/crons/monitor.php  2010-11-24 17:24:23.000000000 +0200
++++ eventum/crons/monitor.php  2010-11-24 18:23:09.664934996 +0200
+@@ -37,17 +37,17 @@
+ $required_files = array(
+     APP_CONFIG_PATH . '/config.php' => array(
+         'check_owner'      => true,
+-        'owner'            => 'apache',
++        'owner'            => 'root',
+         'check_group'      => true,
+-        'group'            => 'apache',
++        'group'            => 'http',
+         'check_permission' => true,
+         'permission'       => 640,
+     ),
+     APP_CONFIG_PATH . '/setup.php' => array(
+         'check_owner'      => true,
+-        'owner'            => 'apache',
++        'owner'            => 'root',
+         'check_group'      => true,
+-        'group'            => 'apache',
++        'group'            => 'http',
+         'check_permission' => true,
+         'permission'       => 660,
+         'check_filesize'   => true,
This page took 0.074827 seconds and 4 git commands to generate.