Clean up ConstructNavbar() so we don't have to make repeated calls to BSRegister...
[viewsvn.git] / browse.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # ViewSVN [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
6 || #
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.
10 || #
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
14 || # more details.
15 || #
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 \*=====================================================================*/
21
22 $fetchtemplates = array(
23 'browse_node',
24 'browse',
25 'property'
26 );
27
28 define('SVN', '$Id$');
29
30 require_once('./global.php');
31
32 $navbar = ConstructNavbar();
33
34 // ###################################################################
35
36 $revision = new Revision($input->in['repos'], $input->in['rev'], $input->in['path']);
37
38 // ###################################################################
39
40 $props = $revision->getPropsForPath($input->in['path']);
41 $show['props'] = (sizeof($props) > 0);
42 $proplist = FormatPropList($props);
43
44 // ###################################################################
45
46 $revision->getRevisionInfo();
47
48 $listing = BSXml::Parse($lib->run('ls --xml -r' . $revision->revision . ' ' . $lib->arg($repos->fetchPath($input->in['repos']) . $input->in['path']), true));
49
50 BSXml::UnifyNode($listing['lists']['list']['entry']);
51 $nodes = '';
52 foreach ($listing['lists']['list']['entry'] AS $item)
53 {
54 $isDir = ($item['kind'] == 'dir');
55 $item = $item['name']['value'];
56 eval('$nodes .= "' . $template->fetch('browse_node') . '";');
57 }
58
59 // ###################################################################
60
61 eval('$template->flush("' . $template->fetch('browse') . '");');
62
63 /*=====================================================================*\
64 || ###################################################################
65 || # $HeadURL$
66 || # $Id$
67 || ###################################################################
68 \*=====================================================================*/
69 ?>