construct_breadcrumb(); // ################################################################### //$node = preg_replace('#(^/|/$)#', '', ($viewsvn->paths->relpath == '' ? $viewsvn->paths->path : $viewsvn->paths->relpath)); $latest = $controller->cachev->fetch_node(); $link['log'] = $controller->href_compound('log.php'); $show['head'] = ($latest['revision'] != $controller->revctx); if ($show['head']) { $link['gohead'] = $controller->href_compound('browse.php', null, Paths::fetch_rev_str(false, 'HEAD')); $link['diffhead'] = $controller->href_compound('diff.php', null, Paths::fetch_rev_str(true, 'HEAD', $controller->revctx)); } $show['prev'] = ($controller->cachev->fetch_prev_revision($controller->revctx) != -1); if ($show['prev']) { $link['diffprev'] = $controller->href_compound('diff.php', null, Paths::fetch_rev_str(false, $controller->revctx)); } // ################################################################### $revinfo = $controller->cachev->fetch_revision($controller->revctx); $revinfo['message_clean'] = SVNCommon::format_log_message($revinfo['message']); $revinfo['date'] = SVNCommon::format_date_string($revinfo['dateline']); $listing = $controller->library->command('ls'); $nodes = ''; foreach ($listing AS $item) { if ($item{ strlen($item) - 1 } == '/') { $show['directory'] = true; $browse = $controller->href_compound('browse.php', $item); } else { $show['directory'] = false; $view = $controller->href_compound('view.php', $item); $blame = $controller->href_compound('blame.php', $item); } $log = $controller->href_compound('log.php', $item); eval('$nodes .= "' . $template->fetch('browse_node') . '";'); } // ################################################################### eval('$template->flush("' . $template->fetch('browse') . '");'); /*=====================================================================*\ || ################################################################### || # $HeadURL$ || # $Id$ || ################################################################### \*=====================================================================*/ ?>