]>
src.bluestatic.org Git - viewsvn.git/blob - browse.php
2 /*=====================================================================*\
3 || ###################################################################
4 || # ViewSVN [#]version[#]
5 || # Copyright ©2002-[#]year[#] Blue Static
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(
28 define('SVN', '$Id$');
30 require_once('./global.php
');
32 $navbar = ConstructNavbar();
34 // ###################################################################
36 $revision = $headRev = new Revision($input->in['repos
'], $input->in['rev
'], $input->in['path
']);
37 if ($input->in['rev
'])
39 $headRev = new Revision($input->in['repos
'], 0, $input->in['path
']);
40 if ($headRev->revision != $revision->revision)
43 $link['gohead
'] = ConstructLink('browse
', $input->in['repos
'], $input->in['path
'], 0);
47 if ($revision->revision - 1 > 0)
50 $link['diff
'] = ConstructLink('diff
', $input->in['repos
'], $input->in['path
'], $revision->revision);
53 // ###################################################################
55 $props = $revision->getPropsForPath($input->in['path
']);
56 $show['props
'] = (sizeof($props) > 0);
57 $proplist = FormatPropList($props);
59 // ###################################################################
61 $revision->getRevisionInfo();
63 $listing = BSXml::Parse($lib->run('ls
--xml
-r
' . $revision->revision . ' ' . $lib->arg($repos->fetchPath($input->in['repos
']) . $input->in['path
']), true));
65 BSXml::UnifyNode($listing['lists
']['list']['entry
']);
67 foreach ($listing['lists
']['list']['entry
'] AS $item)
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') . '";');
75 // ###################################################################
77 $link['log
'] = ConstructLink('log
', $input->in['repos
'], $input->in['path
'], $input->in['rev
']);
79 eval('$template->flush("' . $template->fetch('browse') . '");');
81 /*=====================================================================*\
82 || ###################################################################
85 || ###################################################################
86 \*=====================================================================*/