~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to services/svnlogservice

  • Committer: mattgiuca
  • Date: 2008-01-25 06:20:32 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:313
test/test_framework: Updated examples, a bit of better descriptions, sample
    partial solutions, etc.

Added all sample subject material.
This has been copied from test/test_framework and modified slightly.
There is now a subject "sample" with 2 worksheets. The 1st worksheet has 3
exercises. These work in IVLE by default.

setup.py: Added code to install subjects into the designated directory. This
means that installing IVLE will result in the sample subjects being
immediately available.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
 
 
3
 
# IVLE - Informatics Virtual Learning Environment
4
 
# Copyright (C) 2008-2009 The University of Melbourne
5
 
#
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.
10
 
#
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.
15
 
#
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
19
 
 
20
 
# Author: William Grant
21
 
 
22
 
'''
23
 
A script for viewing a Subversion log. It is intended to be run via trampoline
24
 
by ivle.webapp.filesystem.svnlog.SubversionLogView.
25
 
'''
26
 
 
27
 
import os
28
 
import sys
29
 
import locale
30
 
 
31
 
import cjson
32
 
import pysvn
33
 
 
34
 
import ivle.conf
35
 
import ivle.svn
36
 
 
37
 
# Set locale to UTF-8
38
 
locale.setlocale(locale.LC_CTYPE, "en_US.UTF-8")
39
 
 
40
 
try:
41
 
    client = ivle.svn.create_auth_svn_client(username=ivle.conf.login,
42
 
                                             password=ivle.conf.svn_pass)
43
 
    client.exception_style = 1
44
 
    logs = client.log(os.path.join('/home', sys.argv[1].decode('utf-8')),
45
 
                      discover_changed_paths=True)
46
 
    print cjson.encode({'logs': [{'revno': log.revision.number,
47
 
                                  'author': log.author.decode('utf-8'),
48
 
                                  'message': log.message.decode('utf-8'),
49
 
                                  'date': log.date,
50
 
                                  'paths': [(p.path.decode('utf-8'), p.action)
51
 
                                            for p in log.changed_paths]}
52
 
                                 for log in logs]})
53
 
except pysvn.ClientError, e:
54
 
    error = e[0]
55
 
 
56
 
    try:
57
 
        code = e[1][0][1]
58
 
        # See subversion/include/svn_error_codes.h.
59
 
        # 150000: ERR_ENTRY_NOT_FOUND
60
 
        # 155007: WC_NOT_DIRECTORY.
61
 
        # 160006: FS_NO_SUCH_REVISION
62
 
        # 160013: FS_NOT_FOUND
63
 
        # 200005: UNVERSIONED_RESOURCE
64
 
        if code in (150000, 155007, 160006, 160013, 200005):
65
 
            error = 'notfound'
66
 
        else:
67
 
            error = '%s (code %d)' % (error, code)
68
 
    except IndexError:
69
 
        pass
70
 
 
71
 
    print cjson.encode({'error': error})