Adding language settings to config.php so that people can control the language output...
[viewsvn.git] / browse.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # ViewSVN [#]version[#]
5 || # Copyright ©2002-[#]year[#] Blue Static
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 = $headRev = new Revision($input->in['repos'], $input->in['rev'], $input->in['path']);
37 if ($input->in['rev'])
38 {
39 $headRev = new Revision($input->in['repos'], 0, $input->in['path']);
40 if ($headRev->revision != $revision->revision)
41 {
42 $show['head'] = true;
43 $link['gohead'] = ConstructLink('browse', $input->in['repos'], $input->in['path'], 0);
44 }
45 }
46
47 if ($revision->revision - 1 > 0)
48 {
49 $show['diff'] = true;
50 $link['diff'] = ConstructLink('diff', $input->in['repos'], $input->in['path'], $revision->revision);
51 }
52
53 // ###################################################################
54
55 $props = $revision->getPropsForPath($input->in['path']);
56 $show['props'] = (sizeof($props) > 0);
57 $proplist = FormatPropList($props);
58
59 // ###################################################################
60
61 $revision->getRevisionInfo();
62
63 $listing = BSXml::Parse($lib->run('ls --xml -r' . $revision->revision . ' ' . $lib->arg($repos->fetchPath($input->in['repos']) . $input->in['path']) . '@' . $revision->revision, true));
64
65 BSXml::UnifyNode($listing['lists']['list']['entry']);
66 $nodes = '';
67 foreach ($listing['lists']['list']['entry'] AS $item)
68 {
69 $isDir = ($item['kind'] == 'dir');
70 $item = $item['name']['value'];
71 $itemLink = ConstructLink(($isDir ? 'browse' : 'view'), $input->in['repos'], $input->in['path'] . '/' . $item, $input->in['rev']);
72 eval('$nodes .= "' . $template->fetch('browse_node') . '";');
73 }
74
75 // ###################################################################
76
77 $link['log'] = ConstructLink('log', $input->in['repos'], $input->in['path'], $input->in['rev']);
78
79 eval('$template->flush("' . $template->fetch('browse') . '");');
80
81 /*=====================================================================*\
82 || ###################################################################
83 || # $HeadURL$
84 || # $Id$
85 || ###################################################################
86 \*=====================================================================*/
87 ?>