We now have a working index.php again:
[viewsvn.git] / includes / init.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # ViewSVN [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 error_reporting(E_ALL & ~E_NOTICE);
23 // error_reporting(E_ALL);
24
25 define('ISSO_MT_START', microtime());
26
27 // ###################################################################
28 // configuration file
29 if (!file_exists('./includes/config.php'))
30 {
31 echo 'includes/config.php needs to be present!';
32 exit;
33 }
34
35 require_once('./includes/config.php');
36
37 // ###################################################################
38 // init isso
39
40 ini_set('include_path', ini_get('include_path') . ':' . dirname(dirname(__FILE__)) . '/framework');
41
42 require_once('ISSO/Register.php');
43 require_once('ISSO/Functions.php');
44 require_once('ISSO/Xml.php');
45
46 BSRegister::Register('db', $db = BSRegister::LoadModule('DbMySql'));
47 $db->connect($conf['db']['server'], $conf['db']['user'], $conf['db']['pass'], $conf['db']['name'], 0);
48
49 BSRegister::Register('input', $input = BSRegister::LoadModule('Input'));
50
51 // ###################################################################
52 // handle template system
53
54 BSRegister::Register('template', $template = BSRegister::LoadModule('Template'));
55
56 $template->setTemplateDirectory('./templates/' . $conf['paths']['templateset']);
57 $template->setExtension('tpl');
58
59 // ###################################################################
60 // load options
61 BSRegister::Register('svnpath', $conf['paths']['svn']);
62
63 require_once('./includes/svncommon.php');
64
65 // ###################################################################
66 // imaginary reporter
67 require_once('./includes/imaginary.php');
68 $viewsvn->trigger =& new Imaginary();
69
70 // ###################################################################
71 // setup repository
72 require_once('./includes/repository.php');
73 BSRegister::Register('repos', $repos = new Repository($conf['repository']['path'], $conf['repository']['iscontainer']));
74
75 // ###################################################################
76 // path manager
77 require_once('./includes/paths.php');
78 BSRegister::Register('webpath', $conf['paths']['web']);
79
80 /*=====================================================================*\
81 || ###################################################################
82 || # $HeadURL$
83 || # $Id$
84 || ###################################################################
85 \*=====================================================================*/
86 ?>