<?php
/*=====================================================================*\
|| ################################################################### ||
|| # ViewSVN [#]version[#]
|| # --------------------------------------------------------------- # ||
|| # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
|| # This file may not be reproduced in any way without permission. # ||
|| # --------------------------------------------------------------- # ||
|| # User License Agreement at http://www.iris-studios.com/license/ # ||
|| ################################################################### ||
\*=====================================================================*/
define('PATH_OVERRIDE', 1);
$fetchtemplates = array(
'index_node',
'index'
);
require_once('./global.php');
// ###################################################################
$nodes = '';
foreach ($viewsvn->repos->fetch_list() AS $repos)
{
$link = $viewsvn->paths->out('browse.php', $repos . '/');
eval('$nodes .= "' . $template->fetch('index_node') . '";');
}
// ###################################################################
eval('$template->flush("' . $template->fetch('index') . '");');
/*=====================================================================*\
|| ###################################################################
|| # $HeadURL$
|| # $Id$
|| ###################################################################
\*=====================================================================*/
?>