]> git.pld-linux.org Git - packages/eventum.git/blobdiff - eventum-paths.patch
Up to 3.10.12
[packages/eventum.git] / eventum-paths.patch
index 3b116b54a3bd4de351bc35033d3ed0d898a7552e..aad990328ce2451253009864419122d7d4163c49 100644 (file)
---- eventum-3.0.0/init.php~    2015-02-02 20:02:01.825332859 +0200
-+++ eventum-3.0.0/init.php     2015-02-02 20:03:12.610911011 +0200
-@@ -27,7 +27,7 @@
- // | Authors: Elan Ruusamäe <glen@delfi.ee>                               |
- // +----------------------------------------------------------------------+
--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(0);
- }
-@@ -47,7 +47,7 @@
- // define base path
- define('APP_PATH', realpath(dirname(__FILE__)));
- if (!defined('APP_CONFIG_PATH')) {
--    define('APP_CONFIG_PATH', APP_PATH . '/config');
-+    define('APP_CONFIG_PATH', '/etc/webapps/eventum');
- }
- // include local site config. may override any default
---- eventum-3.0.0/init.php~    2015-02-02 20:02:01.825332859 +0200
-+++ eventum-3.0.0/init.php     2015-02-02 20:03:12.610911011 +0200
-@@ -78,7 +78,7 @@
- }
- 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')) {
-@@ -81,7 +77,7 @@
+--- eventum-3.10.1/src/Config/Paths.php~       2020-12-02 23:16:35.000000000 +0200
++++ eventum-3.10.1/src/Config/Paths.php        2021-03-24 21:56:18.672527936 +0200
+@@ -22,18 +22,16 @@
+     public const APP_PUBLIC_PATH = APP_PATH . '/htdocs';
+     public const APP_INC_PATH = APP_PATH . '/lib/eventum';
+-    // "/var" path for writable data
+-    private const APP_VAR_PATH = APP_PATH . '/var';
+-    public const APP_SPOOL_PATH = self::APP_VAR_PATH . '/spool';
+-    public const APP_CACHE_PATH = self::APP_VAR_PATH . '/cache';
++    public const APP_SPOOL_PATH = '/var/spool/eventum';
++    public const APP_CACHE_PATH = '/var/cache/eventum';
+     // define other paths
+     public const APP_TPL_PATH = APP_PATH . '/templates';
+     public const APP_TPL_COMPILE_PATH = self::APP_CACHE_PATH . '/smarty';
+-    public const APP_LOG_PATH = self::APP_VAR_PATH . '/log';
+-    public const APP_LOCKS_PATH = self::APP_VAR_PATH . '/lock';
++    public const APP_LOG_PATH = '/var/log/eventum';
++    public const APP_LOCKS_PATH = '/var/run/eventum';
+     // fonts directory for phplot
+-    public const APP_FONTS_PATH = APP_PATH . '/vendor/fonts/liberation';
++    public const APP_FONTS_PATH = '/usr/share/fonts/TTF';
+     public const APP_HELP_PATH = APP_PATH . '/docs/help';
  }
- if (!defined('APP_LOCKS_PATH')) {
--    define('APP_LOCKS_PATH', APP_PATH . '/locks');
-+    define('APP_LOCKS_PATH', '/var/run/eventum/');
- }
- 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');
- }
- if (!defined('APP_ROUTED_MAILS_SAVEDIR')) {
---- eventum-3.0.0/htdocs/setup/index.php~      2015-02-02 20:03:49.507010317 +0200
-+++ eventum-3.0.0/htdocs/setup/index.php       2015-02-02 20:05:00.139257552 +0200
-@@ -44,10 +44,10 @@
- define('APP_CONFIG_PATH', APP_PATH . '/config');
- 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_LOCAL_PATH', APP_CONFIG_PATH);
- header('Content-Type: text/html; charset=' . APP_CHARSET);
-@@ -254,10 +254,6 @@
-         $errors[] = "The 'file_uploads' directive needs to be enabled in your PHP.INI file in order for Eventum to work properly.";
-     }
--    $error = checkPermissions(APP_CONFIG_PATH, "Directory '" . APP_CONFIG_PATH . "'", true);
--    if (!empty($error)) {
--        $errors[] = $error;
--    }
-     $error = checkPermissions(APP_SETUP_FILE, "File '" . APP_SETUP_FILE. "'");
-     if (!empty($error)) {
-         $errors[] = $error;
---- eventum-2.2/irc/eventum-irc-bot.php~       2009-07-23 14:03:41.422211655 +0300
-+++ eventum-2.2/irc/eventum-irc-bot.php        2009-07-23 13:54:22.000000000 +0300
-@@ -32,7 +32,7 @@
- ini_set('memory_limit', '1024M');
--require_once dirname(__FILE__) . '/../init.php';
+--- eventum-3.9.11.org/src/Setup/Requirements.php      2020-08-01 20:21:08.000000000 +0200
++++ eventum-3.9.11/src/Setup/Requirements.php  2021-03-10 15:18:12.361997906 +0100
+@@ -69,10 +69,6 @@ class Requirements
+         $privateKeyPath = Setup::getPrivateKeyPath();
+         $setupFile = Setup::getSetupFile();
+-        $error = $this->checkPermissions($configPath, "Directory '" . $configPath . "'", true);
+-        if (!empty($error)) {
+-            $errors[] = $error;
+-        }
+         $error = $this->checkPermissions($setupFile, "File '" . $setupFile . "'");
+         if (!empty($error)) {
+             $errors[] = $error;
+--- eventum-3.9.0/src/Console/Command/MonitorCommand.php~      2019-10-21 22:17:43.000000000 +0300
++++ eventum-3.9.0/src/Console/Command/MonitorCommand.php       2020-07-02 00:40:16.042698823 +0300
+@@ -68,9 +68,9 @@
+         $required_files = [
+             $configPath . '/setup.php' => [
+                 'check_owner' => true,
+-                'owner' => 'apache',
++                'owner' => 'http',
+                 'check_group' => true,
+-                'group' => 'apache',
++                'group' => 'http',
+                 'check_permission' => true,
+                 'permission' => 660,
+                 'check_filesize' => true,
+--- eventum-3.9.11.org/config/sphinx.conf.php  2020-05-05 08:20:33.000000000 +0200
++++ eventum-3.9.11/config/sphinx.conf.php      2021-03-10 15:18:12.361997906 +0100
+@@ -4,7 +4,7 @@
+ use Eventum\Config\SphinxConfig;
+ use Eventum\ServiceContainer;
+-require_once __DIR__ . '/../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/bin/monitor.php    2010-11-24 17:24:23.000000000 +0200
-+++ eventum/bin/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,
---- eventum-2.3.3/config/sphinx.conf.php~      2012-06-27 14:59:39.000000000 +0300
-+++ eventum-2.3.3/config/sphinx.conf.php       2012-06-27 15:04:52.928810689 +0300
-@@ -26,7 +26,7 @@
- // | Authors: Bryan Alsdorf <bryan@mysql.com>                             |
- // | Authors: Elan Ruusamäe <glen@delfi.ee>                               |
- // +----------------------------------------------------------------------+
--require_once dirname(__FILE__) . "/../init.php";
-+require_once '/usr/share/eventum/init.php';
- if (!defined('SPHINX_LOG_PATH')) {
-     define('SPHINX_LOG_PATH', '/var/log/sphinx/');
---- eventum-3.0.0/vendor/autoload-dist.php     2014-11-12 18:47:36.000000000 +0200
-+++ eventum-3.0.0/vendor/autoload-dist.php     2015-03-28 20:29:06.247165544 +0200
-@@ -50,11 +50,11 @@
- define('APP_USE_COMPONENTS', false);
- if (!defined('APP_PEAR_PATH')) {
--    define('APP_PEAR_PATH', APP_PATH . '/lib/pear');
-+    define('APP_PEAR_PATH', '/usr/share/pear');
- }
- if (!defined('APP_SPHINXAPI_PATH')) {
--    define('APP_SPHINXAPI_PATH', APP_PATH . '/lib/sphinxapi');
-+    define('APP_SPHINXAPI_PATH', '/usr/share/php');
- }
- if (!defined('APP_PHP_GETTEXT_PATH')) {
-@@ -62,7 +62,7 @@
- }
- if (!defined('APP_SMARTY_PATH')) {
--    define('APP_SMARTY_PATH', APP_PATH . '/lib/Smarty');
-+    define('APP_SMARTY_PATH', '/usr/share/php/Smarty3');
- }
- if (!defined('APP_JPGRAPH_PATH')) {
+ /** @var SphinxConfig $config */
+ $config = ServiceContainer::get(SphinxConfig::class);
+--- eventum-3.7.4-440-gcc5ad3db5/src/Attachment/StorageManager.php~    2019-08-11 22:49:07.000000000 +0300
++++ eventum-3.7.4-440-gcc5ad3db5/src/Attachment/StorageManager.php     2019-08-21 23:33:19.325911295 +0300
+@@ -33,7 +33,7 @@
+      *
+      * @var string
+      */
+-    private const STORAGE_PATH = Paths::APP_PATH . '/var/storage/';
++    private const STORAGE_PATH = '/var/lib/eventum/storage/';
+     /**
+      * @var MountManager
This page took 0.082431 seconds and 4 git commands to generate.