3
# IVLE - Informatics Virtual Learning Environment
4
# Copyright (C) 2007-2008 The University of Melbourne
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
11
# This program is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
# GNU General Public License for more details.
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20
# Author: David Coles, Will Grant
23
A script for generating a Subversion diff. It is intended to be run via
24
trampoline by ivle.webapp.filesystem.diff.DiffView.
37
revs = [pysvn.Revision(x) for x in [pysvn.opt_revision_kind.base,
38
pysvn.opt_revision_kind.working]]
40
# Override revisions from argv.
41
for ri in range(len(sys.argv[2:4])):
42
r = ivle.svn.revision_from_string(sys.argv[2 + ri])
46
# Attempt to get the diff for these revisons
48
svnclient = pysvn.Client()
49
svnclient.exception_style = 1
51
diff_text = diff( '/tmp/svndiff',
52
os.path.join('/home', sys.argv[1]),
56
print cjson.encode({'diff': diff_text})
57
except pysvn.ClientError, e:
62
# See subversion/include/svn_error_codes.h.
63
# 150000: ERR_ENTRY_NOT_FOUND
64
# 155007: WC_NOT_DIRECTORY.
65
# 160013: FS_NOT_FOUND
66
# 200005: UNVERSIONED_RESOURCE
67
if code in (150000, 155007, 160013, 200005):
70
error = '%s (code %d)' % (error, code)
74
print cjson.encode({'error': error})