]>
src.bluestatic.org Git - viewsvn.git/blob - browse.php
2 /*=====================================================================*\
3 || ################################################################### ||
4 || # ViewSVN [#]version[#]
5 || # --------------------------------------------------------------- # ||
6 || # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
7 || # This file may not be reproduced in any way without permission. # ||
8 || # --------------------------------------------------------------- # ||
9 || # User License Agreement at http://www.iris-studios.com/license/ # ||
10 || ################################################################### ||
11 \*=====================================================================*/
13 $fetchtemplates = array(
18 require_once('./global.php');
20 $navbar = $viewsvn->paths
->construct_breadcrumb($path);
22 // ###################################################################
24 $link['log'] = $viewsvn->paths
->out('log.php' . $viewsvn->paths
->fetch_rev_str(), $path);
26 $show['head'] = ($viewsvn->svn
->common
->fetch_head_rev($path) != $viewsvn->paths
->fetch_rev_num() AND $viewsvn->paths
->fetch_rev_num() != 'HEAD');
29 $link['gohead'] = $viewsvn->paths
->out('browse.php' . $viewsvn->paths
->fetch_rev_str(false, 'HEAD'), $path);
30 $link['diffhead'] = $viewsvn->paths
->out('diff.php' . $viewsvn->paths
->fetch_rev_str(true, 'HEAD', $viewsvn->paths
->fetch_rev_num()), $path);
33 $show['prev'] = (($prev = $viewsvn->svn
->common
->fetch_prev_rev($path, $viewsvn->paths
->fetch_rev_num())) != -1 ? true : false);
36 $link['diffprev'] = $viewsvn->paths
->out('diff.php' . $viewsvn->paths
->fetch_rev_str(true, $viewsvn->paths
->fetch_rev_num(), $prev), $path);
39 // ###################################################################
41 // #*# finish extracting this tpl
42 $revinfo = $viewsvn->svn
->common
->fetch_log($path, $viewsvn->paths
->fetch_rev_num());
44 $listing = $viewsvn->svn
->ls($repos, $relpath, $viewsvn->paths
->fetch_rev_num());
48 foreach ($listing AS $item)
50 if ($item{ strlen($item
) - 1 } == '/')
52 $show['directory'] = true;
53 $browse = $viewsvn->paths
->out('browse.php' . $viewsvn->paths
->fetch_rev_str(), $path . $item);
57 $show['directory'] = false;
58 $view = $viewsvn->paths
->out('view.php' . $viewsvn->paths
->fetch_rev_str(), $path . $item);
59 $blame = $viewsvn->paths
->out('blame.php' . $viewsvn->paths
->fetch_rev_str(), $path . $item);
62 $log = $viewsvn->paths
->out('log.php' . $viewsvn->paths
->fetch_rev_str(), $path . $item);
64 eval('$nodes .= "' . $template->fetch('browse_node') . '";');
67 // ###################################################################
69 eval('$template->flush("' . $template->fetch('browse') . '");');
71 /*=====================================================================*\
72 || ###################################################################
75 || ###################################################################
76 \*=====================================================================*/