]>
src.bluestatic.org Git - viewsvn.git/blob - blame.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(
27 define('SVN', '$Id$');
29 require_once('./global.php
');
31 $navbar = ConstructNavbar();
33 // ###################################################################
35 $revision = new Revision($input->in['repos
'], $input->in['rev
'], $input->in['path
']);
37 $blame = BSXml::Parse($lib->run('blame
--xml
-r
' . $revision->revision . ' ' . $lib->arg($repos->fetchPath($input->in['repos
']) . $input->in['path
']), true));
38 $blame = $blame['blame
']['target
']['entry
'];
39 BSXml::UnifyNode($blame);
41 $catdata = $lib->run('cat
-r
' . $revision->revision . ' ' . $lib->arg($repos->fetchPath($input->in['repos
']) . $input->in['path
']));
43 foreach ($catdata AS $num => $line)
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') . '";');
52 // ###################################################################
54 eval('$template->flush("' . $template->fetch('blame') . '");');
56 /*=====================================================================*\
57 || ###################################################################
60 || ###################################################################
61 \*=====================================================================*/