set('application', 'ViewSVN'); $viewsvn->set('apppath', getcwd()); $viewsvn->set('appversion', '[#]version[#]'); $viewsvn->set('debug', $debug); $viewsvn->set('sourcepath', $issopath); $viewsvn->load('functions', 'funct', true); // ################################################################### // localization stystem $viewsvn->load('localize', 'lang', true); // ################################################################### // handle template system $viewsvn->load('template_fs', 'template', true); $template->set('templatedir', './templates/' . $templatedir); $template->set('extension', 'tpl'); // ################################################################### // imaginary reporter require_once('./includes/imaginary.php'); $viewsvn->trigger =& new Imaginary(); // ################################################################### // load shell subsystem require_once('./includes/shellcmd.php'); $viewsvn->shell =& new Shell(); // ################################################################### // setup repository require_once('./includes/repository.php'); $viewsvn->repos =& new Repository($repository, $iscontainer); // ################################################################### // path manager require_once('./includes/paths.php'); $viewsvn->path = $webpath; $viewsvn->paths =& new Paths($pathtype); $viewsvn->paths->enscript = $enscript; // ################################################################### // initialize SVN require_once('./includes/svnlib.php'); $viewsvn->svn =& new SVNLib($svnpath); /*=====================================================================*\ || ################################################################### || # $HeadURL$ || # $Id$ || ################################################################### \*=====================================================================*/ ?>