]>
src.bluestatic.org Git - viewsvn.git/blob - includes/init.php
2 /*=====================================================================*\
3 || ###################################################################
4 || # ViewSVN [#]version[#]
5 || # Copyright ©2002-[#]year[#] Blue Static
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.
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
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 \*=====================================================================*/
22 error_reporting(E_ALL
& ~E_NOTICE
);
23 // error_reporting(E_ALL);
25 define('ISSO_MT_START', microtime());
27 // ###################################################################
29 if (!file_exists('./includes/config.php'))
31 echo 'includes/config.php needs to be present!';
35 require_once('./includes/config.php');
37 // ###################################################################
40 ini_set('include_path', ini_get('include_path') . ':' . dirname(dirname(__FILE__
)) . '/framework');
42 require_once('ISSO/Register.php');
43 require_once('ISSO/Functions.php');
44 require_once('ISSO/Xml.php');
46 BSRegister
::SetDebug($debug);
48 BSRegister
::Register('input', $input = BSRegister
::LoadModule('Input'));
50 // ###################################################################
51 // handle template system
53 BSRegister
::Register('template', $template = BSRegister
::LoadModule('Template'));
55 $template->setTemplateDirectory('./templates/');
56 $template->setExtension('tpl');
58 // ###################################################################
60 BSRegister
::Register('svnpath', $conf['paths']['svn']);
62 $language = $conf['lang'];
64 // ###################################################################
66 require_once('./includes/imaginary.php');
67 $viewsvn->trigger
=& new Imaginary();
69 // ###################################################################
71 require_once('./includes/repository.php');
72 BSRegister
::Register('repos', $repos = new Repository($conf['repository']['path'], $conf['repository']['iscontainer'], $conf['repository']['include']));
74 // ###################################################################
76 BSRegister
::Register('webpath', $conf['paths']['web']);
78 /*=====================================================================*\
79 || ###################################################################
82 || ###################################################################
83 \*=====================================================================*/