]>
src.bluestatic.org Git - viewsvn.git/blob - browse.php
2 /*=====================================================================*\
3 || ###################################################################
4 || # ViewSVN [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
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 $fetchtemplates = array(
27 require_once('./global.php');
29 $navbar = $viewsvn->paths
->construct_breadcrumb($viewsvn->paths
->path
);
31 // ###################################################################
33 $node = preg_replace('#(^/|/$)#', '', ($viewsvn->paths
->relpath
== '' ? $viewsvn->paths
->path
: $viewsvn->paths
->relpath
));
34 $latest = $cachev->fetch_node($node);
36 $link['log'] = $viewsvn->paths
->out('log.php' . $viewsvn->paths
->revstr
, $viewsvn->paths
->path
);
38 $show['head'] = ($latest['revision'] != $viewsvn->paths
->revnum
AND $viewsvn->paths
->revnum
!= 'HEAD');
41 $link['gohead'] = $viewsvn->paths
->out('browse.php' . $viewsvn->paths
->fetch_rev_str(false, 'HEAD'), $viewsvn->paths
->path
);
42 $link['diffhead'] = $viewsvn->paths
->out('diff.php' . $viewsvn->paths
->fetch_rev_str(true, 'HEAD', $viewsvn->paths
->revnum
), $viewsvn->paths
->path
);
45 $show['prev'] = ($prev = $cachev->fetch_prev_revision($viewsvn->paths
->relpath
, $viewsvn->paths
->revnum
));
48 $link['diffprev'] = $viewsvn->paths
->out('diff.php' . $viewsvn->paths
->fetch_rev_str(true, $viewsvn->paths
->revnum
, $prev), $viewsvn->paths
->path
);
51 // ###################################################################
53 $revinfo = $cachev->fetch_revision($latest['revision']);
54 $revinfo['message_clean'] = $viewsvn->svn
->format_log_message($revinfo['message']);
56 $revinfo['date'] = $viewsvn->svn
->format_date_string($revinfo['dateline']);
58 $listing = $viewsvn->svn
->ls($viewsvn->paths
->repos
, $viewsvn->paths
->relpath
, $viewsvn->paths
->revnum
);
62 foreach ($listing AS $item)
64 if ($item{ strlen($item
) - 1 } == '/')
66 $show['directory'] = true;
67 $browse = $viewsvn->paths
->out('browse.php' . $viewsvn->paths
->revstr
, $viewsvn->paths
->path
. $item);
71 $show['directory'] = false;
72 $view = $viewsvn->paths
->out('view.php' . $viewsvn->paths
->revstr
, $viewsvn->paths
->path
. $item);
73 $blame = $viewsvn->paths
->out('blame.php' . $viewsvn->paths
->revstr
, $viewsvn->paths
->path
. $item);
76 $log = $viewsvn->paths
->out('log.php' . $viewsvn->paths
->revstr
, $viewsvn->paths
->path
. $item);
78 eval('$nodes .= "' . $template->fetch('browse_node') . '";');
81 // ###################################################################
83 eval('$template->flush("' . $template->fetch('browse') . '");');
85 /*=====================================================================*\
86 || ###################################################################
89 || ###################################################################
90 \*=====================================================================*/