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

« back to all changes in this revision

Viewing changes to services/diffservice

  • Committer: mattgiuca
  • Date: 2008-02-15 05:43:52 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:475
Commited some earlier changes to users.sql (not committed earlier due to
misunderstanding :|) Previous changes today actually depended on the database
being updated with this schema.

users.sql: Added "pending" option to login.state, and added a bunch of new
fields to login: expiry timers, time of last login.

login.py: Checks if account has expired. Sets last login.
    (Currently buggy with some XXXs, because we don't have a way to convert
    Python time values into SQL).

db.py: Added last_login to list of allowable fields for login.

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) 2007-2008 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: David Coles, Will Grant
21
 
 
22
 
'''
23
 
A script for generating a Subversion diff. It is intended to be run via
24
 
trampoline by ivle.webapp.filesystem.diff.DiffView.
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
 
# Default revisions
41
 
revs = [pysvn.Revision(x) for x in [pysvn.opt_revision_kind.base,
42
 
                                    pysvn.opt_revision_kind.working]]
43
 
 
44
 
# Override revisions from argv.
45
 
for ri in range(len(sys.argv[2:4])):
46
 
    r = ivle.svn.revision_from_string(sys.argv[2 + ri])
47
 
    if r is not None:
48
 
        revs[ri] = r
49
 
 
50
 
# Attempt to get the diff for these revisons
51
 
try:
52
 
    svnclient = ivle.svn.create_auth_svn_client(username=ivle.conf.login,
53
 
                                                password=ivle.conf.svn_pass)
54
 
    svnclient.exception_style = 1
55
 
    diff = svnclient.diff
56
 
 
57
 
    # pysvn's diff tempfile behaviour changes with Subversion 1.6.x.
58
 
    # < 1.6 wants a filename, >= 1.6 wants a directory.
59
 
    if pysvn.svn_version > (1, 6):
60
 
        tmp_path = '/tmp'
61
 
    else:
62
 
        tmp_path = '/tmp/svndiff'
63
 
 
64
 
    diff_text = diff(tmp_path,
65
 
        os.path.join('/home', sys.argv[1]),
66
 
        revision1=revs[0],
67
 
        revision2=revs[1]
68
 
    )
69
 
    print cjson.encode({'diff': diff_text.decode('utf-8')})
70
 
except pysvn.ClientError, e:
71
 
    error = e[0]
72
 
 
73
 
    try:
74
 
        code = e[1][0][1]
75
 
        # See subversion/include/svn_error_codes.h.
76
 
        # 150000: ERR_ENTRY_NOT_FOUND
77
 
        # 155007: WC_NOT_DIRECTORY.
78
 
        # 160013: FS_NOT_FOUND
79
 
        # 200005: UNVERSIONED_RESOURCE
80
 
        if code in (150000, 155007, 160013, 200005):
81
 
            error = 'notfound'
82
 
        else:
83
 
            error = '%s (code %d)' % (error, code) 
84
 
    except IndexError:
85
 
        pass
86
 
 
87
 
    print cjson.encode({'error': error})