Adding language settings to config.php so that people can control the language output...
[viewsvn.git] / blame.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 'blame_line',
24 'blame'
25 );
26
27 define('SVN', '$Id$');
28
29 require_once('./global.php');
30
31 $navbar = ConstructNavbar();
32
33 // ###################################################################
34
35 $revision = new Revision($input->in['repos'], $input->in['rev'], $input->in['path']);
36
37 $blame = BSXml::Parse($lib->run('blame --xml -r' . $revision->revision . ' ' . $lib->arg($repos->fetchPath($input->in['repos']) . $input->in['path']) . '@' . $revision->revision, true));
38 $blame = $blame['blame']['target']['entry'];
39 BSXml::UnifyNode($blame);
40
41 $catdata = $lib->run('cat -r' . $revision->revision . ' ' . $lib->arg($repos->fetchPath($input->in['repos']) . $input->in['path']) . '@' . $revision->revision);
42
43 foreach ($catdata AS $num => $line)
44 {
45 $revision = $blame[$num]['commit']['revision'];
46 $author = $blame[$num]['commit']['author']['value'];
47 $view = ConstructLink('view', $input->in['repos'], $input->in['path'], $revision);
48 $line = FormatCode($line);
49 eval('$lines .= "' . $template->fetch('blame_line') . '";');
50 }
51
52 // ###################################################################
53
54 eval('$template->flush("' . $template->fetch('blame') . '");');
55
56 /*=====================================================================*\
57 || ###################################################################
58 || # $HeadURL$
59 || # $Id$
60 || ###################################################################
61 \*=====================================================================*/
62 ?>