]> git.pld-linux.org Git - packages/eventum.git/blob - eventum-paths.patch
- update to r3615
[packages/eventum.git] / eventum-paths.patch
1 --- eventum/misc/cli/config.inc.php     2007-01-30 20:32:58.965186306 +0200
2 +++ eventum/misc/cli/config.inc.php     2007-01-30 20:57:01.887651515 +0200
3 @@ -32,9 +32,8 @@
4  set_time_limit(0);
5  
6  // definitions of path related variables
7 -define('APP_PATH', dirname(__FILE__) . '/');
8 -define('APP_INC_PATH', APP_PATH . 'include/');
9 -define('APP_PEAR_PATH', APP_INC_PATH . 'pear/');
10 +define('APP_INC_PATH', '/usr/share/eventum/cli/');
11 +define('APP_PEAR_PATH', '/usr/share/pear/');
12  define('APP_BENCHMARK', false);
13  
14  set_include_path(get_include_path() . PATH_SEPARATOR . APP_PEAR_PATH);
15 --- eventum/include/class.template.php~ 2007-01-30 18:52:59.020179406 +0200
16 +++ eventum/include/class.template.php  2007-01-30 18:53:24.620759076 +0200
17 @@ -61,6 +61,7 @@
18          $this->smarty = new Smarty;
19          $this->smarty->template_dir = APP_TPL_PATH;
20          $this->smarty->compile_dir = APP_TPL_COMPILE_PATH;
21 +        $this->smarty->plugins_dir  = array('/usr/share/eventum/include/smarty', 'plugins');
22          $this->smarty->config_dir = '';
23          $this->smarty->register_modifier("activateLinks", array('Link_Filter', 'activateLinks'));
24          $this->smarty->register_modifier("formatCustomValue", array('Custom_Field', 'formatValue'));
25 --- ./include/class.monitor.php~        2005-02-22 21:50:49.000000000 +0200
26 +++ ./include/class.monitor.php 2005-02-22 23:04:50.000000000 +0200
27 @@ -157,6 +165,7 @@
28                  'permission'       => 100,
29              ),
30          );
31 +        $required_directories = array();
32          foreach ($required_directories as $dir_path => $options) {
33              // check if directory exists
34              if (!file_exists($dir_path)) {
35 --- ./include/class.misc.php    2005-10-26 17:17:17.000000000 +0300
36 +++ /tmp/class.misc.php 2005-10-26 17:30:12.000000000 +0300
37 @@ -607,7 +607,7 @@
38       */
39      function highlightQuotedReply($text)
40      {
41 -        require_once(APP_SMARTY_PATH . "plugins/modifier.highlight_quoted.php");
42 +        require_once(APP_INC_PATH. "smarty/modifier.highlight_quoted.php");
43          return smarty_modifier_highlight_quoted($text);
44      }
45  
46 --- eventum-r3615/init.php~     2008-06-05 00:02:42.833798000 +0300
47 +++ eventum-r3615/init.php      2008-06-05 00:02:58.229406819 +0300
48 @@ -26,7 +26,7 @@
49  // | Authors: Elan Ruusamäe <glen@delfi.ee>                               |
50  // +----------------------------------------------------------------------+
51  
52 -if (!file_exists(dirname(__FILE__) . '/config/config.php')) {
53 +if (!file_exists('/etc/webapps/eventum/config.php')) {
54      Header('Location: setup/');
55      exit;
56  }
57 @@ -44,31 +44,31 @@
58  define('APP_VERSION', '2.1.2');
59  
60  // define base path
61 -define('APP_PATH', realpath(dirname(__FILE__)) . '/');
62 -define('APP_CONFIG_PATH', APP_PATH . 'config/');
63 +define('APP_PATH', '/usr/share/eventum/htdocs/');
64 +define('APP_CONFIG_PATH', '/etc/webapps/eventum/');
65  
66  // include local site config
67  require_once APP_CONFIG_PATH . 'config.php';
68  
69  // define other paths
70  if (!defined('APP_INC_PATH')) {
71 -    define('APP_INC_PATH', APP_PATH . 'include/');
72 +    define('APP_INC_PATH', '/usr/share/eventum/include/');
73  }
74  
75  if (!defined('APP_PEAR_PATH')) {
76 -    define('APP_PEAR_PATH', APP_INC_PATH . 'pear/');
77 +    define('APP_PEAR_PATH', '/usr/share/pear/');
78  }
79  
80  if (!defined('APP_TPL_PATH')) {
81 -    define('APP_TPL_PATH', APP_PATH . 'templates/');
82 +    define('APP_TPL_PATH', '/usr/share/eventum/templates/');
83  }
84  
85  if (!defined('APP_TPL_COMPILE_PATH')) {
86 -    define('APP_TPL_COMPILE_PATH', APP_PATH . 'templates_c');
87 +    define('APP_TPL_COMPILE_PATH', '/var/cache/eventum/');
88  }
89  
90  if (!defined('APP_SMARTY_PATH')) {
91 -    define('APP_SMARTY_PATH', APP_INC_PATH . 'Smarty/');
92 +    define('APP_SMARTY_PATH', '/usr/share/php/Smarty/');
93  }
94  
95  if (!defined('APP_JPGRAPH_PATH')) {
96 @@ -76,7 +76,7 @@
97  }
98  
99  if (!defined('APP_LOCKS_PATH')) {
100 -    define('APP_LOCKS_PATH', APP_PATH . 'locks/');
101 +    define('APP_LOCKS_PATH', '/var/run/eventum/');
102  }
103  
104  if (!defined('APP_SETUP_FILE')) {
105 @@ -84,11 +84,11 @@
106  }
107  
108  if (!defined('APP_SQL_PATCHES_PATH')) {
109 -    define('APP_SQL_PATCHES_PATH', APP_PATH . 'misc/upgrade/patches');
110 +    define('APP_SQL_PATCHES_PATH', '/usr/share/eventum/upgrade/patches');
111  }
112  
113  if (!defined('APP_LOG_PATH')) {
114 -    define('APP_LOG_PATH', APP_PATH . 'logs/');
115 +    define('APP_LOG_PATH', '/var/log/eventum/');
116  }
117  
118  if (!defined('APP_ROUTED_MAILS_SAVEDIR')) {
119 --- eventum/setup/index.php~    2007-01-30 20:04:32.306824546 +0200
120 +++ eventum/setup/index.php     2007-01-30 20:14:43.880555938 +0200
121 @@ -38,17 +38,17 @@
122  set_time_limit(0);
123  define('APP_CHARSET', 'UTF-8');
124  define('APP_DEFAULT_LOCALE', 'en_US');
125 -define('APP_PATH', realpath(dirname(__FILE__) . '/..') . '/');
126 +define('APP_PATH', realpath(dirname(__FILE__) . '/../..') . '/');
127  define('APP_INC_PATH', APP_PATH . 'include/');
128  define('APP_PEAR_PATH', APP_INC_PATH . 'pear/');
129 -define('APP_SMARTY_PATH', APP_INC_PATH . 'Smarty/');
130 -define('APP_CONFIG_PATH', APP_PATH . 'config/');
131 +define('APP_SMARTY_PATH', '/usr/share/php/Smarty/');
132 +define('APP_CONFIG_PATH', '/etc/webapps/eventum/');
133  define('APP_SETUP_FILE', APP_CONFIG_PATH . 'setup.php');
134  define('APP_TPL_PATH', APP_PATH . 'templates/');
135 -define('APP_TPL_COMPILE_PATH', APP_PATH . 'templates_c');
136 -define('APP_LOG_PATH', APP_PATH . 'logs/');
137 +define('APP_TPL_COMPILE_PATH', '/var/cache/eventum');
138 +define('APP_LOG_PATH', '/var/log/eventum/');
139  define('APP_ERROR_LOG', APP_LOG_PATH . 'errors.log');
140 -define('APP_LOCKS_PATH', APP_PATH . 'locks/');
141 +define('APP_LOCKS_PATH', '/var/run/eventum/');
142  
143  define('APP_BENCHMARK', false);
144  
145 @@ -192,10 +192,6 @@
146      if (ini_get('file_uploads') != "1") {
147          $errors[] = "The 'file_uploads' directive needs to be enabled in your PHP.INI file in order for Eventum to work properly.";
148      }
149 -    $error = checkPermissions(APP_CONFIG_PATH, "Directory '" . APP_CONFIG_PATH . "'", TRUE);
150 -    if (!empty($error)) {
151 -        $errors[] = $error;
152 -    }
153      $error = checkPermissions(APP_LOCKS_PATH, "Directory '" . APP_LOCKS_PATH . "'", TRUE);
154      if (!empty($error)) {
155          $errors[] = $error;
156 @@ -329,10 +325,6 @@
157      $setup_file_path = APP_SETUP_FILE;
158  
159      clearstatcache();
160 -    // check if config directory is writable
161 -    if (!is_writable(APP_CONFIG_PATH)) {
162 -        return "The file '" . APP_CONFIG_PATH . "' directory needs to be writable by the web server user. Please correct this problem and try again.";
163 -    }
164      // need to create a random private key variable
165      $private_key = '<?php
166  $private_key = "' . md5(microtime()) . '";
167 --- eventum/misc/cli/eventum~   2007-01-30 20:33:31.435916994 +0200
168 +++ eventum/misc/cli/eventum    2007-01-30 20:34:58.717881130 +0200
169 @@ -13,3 +13,3 @@
170  //
171 -require_once(dirname(__FILE__) . '/config.inc.php');
172 +require_once('/etc/eventum/cli.php');
173  require_once(APP_INC_PATH . 'class.command_line.php');
174 --- eventum/misc/process_mail_queue.php~        2007-02-15 00:31:11.000000000 +0200
175 +++ eventum/misc/process_mail_queue.php 2007-02-15 01:02:15.704386785 +0200
176 @@ -30,7 +30,7 @@
177  
178  ini_set("memory_limit", "1024M");
179  
180 -require_once(dirname(__FILE__) . "/../init.php");
181 +require_once(dirname(__FILE__) . "/htdocs/init.php");
182  require_once(APP_INC_PATH . "db_access.php");
183  require_once(APP_INC_PATH . "class.mail_queue.php");
184  
185 --- eventum/misc/download_emails.php~   2007-02-15 00:31:11.000000000 +0200
186 +++ eventum/misc/download_emails.php    2007-02-15 01:02:56.183553358 +0200
187 @@ -30,7 +30,7 @@
188  
189  ini_set("memory_limit", "1024M");
190  
191 -require_once(dirname(__FILE__) . "/../init.php");
192 +require_once(dirname(__FILE__) . "/htdocs/init.php");
193  require_once(APP_INC_PATH . "class.support.php");
194  require_once(APP_INC_PATH . "class.lock.php");
195  require_once(APP_INC_PATH . "class.project.php");
196 --- eventum/misc/check_reminders.php~   2007-02-15 01:04:27.107937884 +0200
197 +++ eventum/misc/check_reminders.php    2007-02-15 01:10:20.645910516 +0200
198 @@ -29,7 +29,7 @@
199  // @(#) $Id$
200  //
201  
202 -require_once(dirname(__FILE__) . "/../init.php");
203 +require_once(dirname(__FILE__) . "/htdocs/init.php");
204  require_once(APP_INC_PATH . "db_access.php");
205  require_once(APP_INC_PATH . "class.lock.php");
206  require_once(APP_INC_PATH . "class.reminder.php");
207 --- eventum/misc/monitor.php~   2007-02-15 01:27:45.089473611 +0200
208 +++ eventum/misc/monitor.php    2007-02-15 01:28:05.849942411 +0200
209 @@ -27,7 +27,7 @@
210  //
211  // @(#) $Id$
212  
213 -require_once(dirname(__FILE__) . "/../init.php");
214 +require_once(dirname(__FILE__) . "/htdocs/init.php");
215  require_once(APP_INC_PATH . "class.monitor.php");
216  
217  // the disk partition in which eventum is stored in
218 --- eventum/misc/route_drafts.php~      2007-02-15 01:36:00.780666107 +0200
219 +++ eventum/misc/route_drafts.php       2007-02-15 01:36:28.141283847 +0200
220 @@ -27,7 +27,7 @@
221  //
222  // @(#) $Id$
223  
224 -include_once(dirname(__FILE__) . "/../init.php");
225 +require_once(dirname(__FILE__) . "/htdocs/init.php");
226  require_once(APP_INC_PATH . "db_access.php");
227  require_once(APP_INC_PATH . "class.routing.php");
228  
229 --- eventum/misc/route_emails.php~      2007-02-15 01:37:09.932227380 +0200
230 +++ eventum/misc/route_emails.php       2007-02-15 01:37:25.452577786 +0200
231 @@ -27,7 +27,7 @@
232  //
233  // @(#) $Id$
234  
235 -include_once(dirname(__FILE__) . "/../init.php");
236 +require_once(dirname(__FILE__) . "/htdocs/init.php");
237  require_once(APP_INC_PATH . "db_access.php");
238  require_once(APP_INC_PATH . "class.routing.php");
239  
240 --- eventum/misc/route_notes.php~       2007-02-15 01:38:04.393456957 +0200
241 +++ eventum/misc/route_notes.php        2007-02-15 01:38:18.973786135 +0200
242 @@ -27,7 +27,7 @@
243  //
244  // @(#) $Id$
245  
246 -include_once(dirname(__FILE__) . "/../init.php");
247 +require_once(dirname(__FILE__) . "/htdocs/init.php");
248  require_once(APP_INC_PATH . "db_access.php");
249  require_once(APP_INC_PATH . "class.routing.php");
250  
This page took 0.079381 seconds and 4 git commands to generate.