]>
src.bluestatic.org Git - viewsvn.git/blob - diff.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(
31 define('SVN', '$Id$');
33 require_once('./global.php
');
34 require_once('./includes
/class_diff
.php
');
36 $navbar = ConstructNavbar();
38 // ###################################################################
40 $link['log
'] = ConstructLink('log
', $input->in['repos
'], $input->in['path
'], $input->in['rev
']);
42 // ###################################################################
44 $show['fullchangeset
'] = ($input->in['path
'] == '' OR $input->in['path
'] == '/');
45 if ($show['fullchangeset
'])
47 $link['changeset
'] = ConstructLink('diff
', $input->in['repos
'], null, $input->in['rev
']);
50 $revision = new Revision($input->in['repos
'], $input->in['rev
'], $input->in['path
']);
51 $revision->getRevisionInfo();
53 $files = ConstructFileChanges($revision->files, $input->in['repos
'], $revision->revision);
55 // ###################################################################
57 $diff = new Diff($lib->run('diff
-c
' . $revision->revision . ' ' . $lib->arg($repos->fetchPath($input->in['repos
']) . '/' . $input->in['path
'])));
60 foreach ($diff->fetch() AS $filename => $file)
70 $props = $file['props
'];
71 $show['props
'] = (bool)$props;
72 unset($file['props
']);
74 foreach ($file AS $hunk)
77 foreach ($hunk AS $key => $line)
79 $show['hunk
'] = false;
80 if ($key == 'hunk
' AND isset($line['old
']))
82 $filepath = ($isdir ? $controller->path . $filename : $controller->path);
83 // $rlow = ConstructLink('view
', $input->in['repos
'], $filename, $)
84 $high = $revision->revision;
85 $rhigh = ConstructLink('view
', $input->in['repos
'], $filename, $revision->revision);
90 if ($line['act
'] == '+
')
94 else if ($line['act
'] == '-')
100 $class = 'diff_norm
';
103 $line['line_clean
'] = FormatCode($line['line
']);
106 eval('$lines .= "' . $template->fetch('diff_line') . '";');
108 eval('$hunktpl .= "' . $template->fetch('diff_hunk') . '";');
111 if (is_array($props))
113 foreach ($props AS $name => $values)
116 if (isset($values['add
']) AND isset($values['del
']))
118 $data = sprintf(_('Property
<strong
>%
1$s</strong
> changed from
<em
>%
2$s</em
> to
<em
>%
3$s</em
>'), $name, $values['del
'], $values['add
']);
121 else if (isset($values['add
']))
123 $data = sprintf(_('Property
<strong
>%
1$s</strong
> set to
<em
>%
2$s</em
>'), $name, $values['add
']);
126 else if (isset($values['del
']))
128 $data = sprintf(_('Property
<strong
>%
1$s</strong
> deleted
'), $name);
130 eval('$proplist .= "' . $template->fetch('property') . '";');
134 eval('$changes .= "' . $template->fetch('diff_file') . '";');
137 // ###################################################################
139 eval('$template->flush("' . $template->fetch('diff') . '");');
141 /*=====================================================================*\
142 || ###################################################################
145 || ###################################################################
146 \*=====================================================================*/