In our "go to head" link in view.php, we want to use view and not browse as the action
[viewsvn.git] / diff.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 'diff_line',
24 'diff_hunk',
25 'diff_file',
26 'diff',
27 'file_change',
28 'property'
29 );
30
31 define('SVN', '$Id$');
32
33 require_once('./global.php');
34 require_once('./includes/class_diff.php');
35
36 $navbar = ConstructNavbar();
37
38 // ###################################################################
39
40 $link['log'] = ConstructLink('log', $input->in['repos'], $input->in['path'], $input->in['rev']);
41
42 // ###################################################################
43
44 $show['fullchangeset'] = ($input->in['path'] == '' OR $input->in['path'] == '/');
45 if ($show['fullchangeset'])
46 {
47 $link['changeset'] = ConstructLink('diff', $input->in['repos'], null, $input->in['rev']);
48 }
49
50 $revision = new Revision($input->in['repos'], $input->in['rev'], $input->in['path']);
51 $revision->getRevisionInfo();
52
53 $files = ConstructFileChanges($revision->files, $input->in['repos'], $revision->revision);
54
55 // ###################################################################
56
57 $diff = new Diff($lib->run('diff -c' . $revision->revision . ' ' . $lib->arg($repos->fetchPath($input->in['repos']) . '/' . $input->in['path'])));
58
59 $changes = '';
60 foreach ($diff->fetch() AS $filename => $file)
61 {
62 $hunktpl = '';
63 $proplist = '';
64
65 if (!$filename)
66 {
67 continue;
68 }
69
70 $props = $file['props'];
71 $show['props'] = (bool)$props;
72 unset($file['props']);
73
74 foreach ($file AS $hunk)
75 {
76 $lines = '';
77 foreach ($hunk AS $key => $line)
78 {
79 $show['hunk'] = false;
80 if ($key == 'hunk' AND isset($line['old']))
81 {
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);
86 $show['hunk'] = true;
87 }
88 else
89 {
90 if ($line['act'] == '+')
91 {
92 $class = 'diff_add';
93 }
94 else if ($line['act'] == '-')
95 {
96 $class = 'diff_del';
97 }
98 else
99 {
100 $class = 'diff_norm';
101 }
102
103 $line['line_clean'] = FormatCode($line['line']);
104 }
105
106 eval('$lines .= "' . $template->fetch('diff_line') . '";');
107 }
108 eval('$hunktpl .= "' . $template->fetch('diff_hunk') . '";');
109 }
110
111 if (is_array($props))
112 {
113 foreach ($props AS $name => $values)
114 {
115 // modified
116 if (isset($values['add']) AND isset($values['del']))
117 {
118 $data = sprintf(_('Property <strong>%1$s</strong> changed from <em>%2$s</em> to <em>%3$s</em>'), $name, $values['del'], $values['add']);
119 }
120 // added
121 else if (isset($values['add']))
122 {
123 $data = sprintf(_('Property <strong>%1$s</strong> set to <em>%2$s</em>'), $name, $values['add']);
124 }
125 // removed
126 else if (isset($values['del']))
127 {
128 $data = sprintf(_('Property <strong>%1$s</strong> deleted'), $name);
129 }
130 eval('$proplist .= "' . $template->fetch('property') . '";');
131 }
132 }
133
134 eval('$changes .= "' . $template->fetch('diff_file') . '";');
135 }
136
137 // ###################################################################
138
139 eval('$template->flush("' . $template->fetch('diff') . '");');
140
141 /*=====================================================================*\
142 || ###################################################################
143 || # $HeadURL$
144 || # $Id$
145 || ###################################################################
146 \*=====================================================================*/
147 ?>