3
# IVLE - Informatics Virtual Learning Environment
4
# Copyright (C) 2008-2009 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: William Grant
23
A script for viewing a Subversion log. It is intended to be run via trampoline
24
by ivle.webapp.filesystem.svnlog.SubversionLogView.
34
import simplejson as json
42
locale.setlocale(locale.LC_CTYPE, "en_US.UTF-8")
45
client = ivle.svn.create_auth_svn_client(username=ivle.conf.login,
46
password=ivle.conf.svn_pass)
47
client.exception_style = 1
48
logs = client.log(os.path.join('/home', sys.argv[1].decode('utf-8')),
49
discover_changed_paths=True)
50
print json.dumps({'logs': [{'revno': log.revision.number,
51
'author': log.author.decode('utf-8'),
52
'message': log.message.decode('utf-8'),
54
'paths': [(p.path.decode('utf-8'), p.action)
55
for p in log.changed_paths]}
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
# 160006: FS_NO_SUCH_REVISION
66
# 160013: FS_NOT_FOUND
67
# 200005: UNVERSIONED_RESOURCE
68
if code in (150000, 155007, 160006, 160013, 200005):
71
error = '%s (code %d)' % (error, code)
75
print json.dumps({'error': error})