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

« back to all changes in this revision

Viewing changes to services/diffservice

  • Committer: matt.giuca
  • Date: 2009-01-14 10:10:12 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:branches%2Fstorm:1132
The new ivle.database.User class is now used in Request and usrmgt, which
    means it is now almost universally used in favour of ivle.user.User (now
    deprecated).

Noticeable change: The minor bug where the change to a user object in the
    database is not reflected in the user's session (eg. changing nick doesn't
    update title until log out).

ivle.dispatch:
    Session now contains 'login' (username string) rather than 'user' (full
        ivle.user.User object). This is a unicode string now.

    req.user is now a ivle.database.User object rather than an ivle.user.User
        object. This makes for a whole lot of really subtle differences, but
        largely conforms to the same interface. Note that strings must now all
        be unicode.

    login: Removed use of ivle.db. Now uses User object.

    html: Now handles unicode login and config options.

ivle.db: Removed update_user. Now replaced with Storm model.

ivle.database: Renamed has_cap back to hasCap (saved for later). Fixed small
    unicode bug.

ivle.makeuser.make_svn_auth now takes a store object.

usrmgt-server: Use new User class.

userservice: Now uses User class internally.
    get_user action now returns ISO 8601 date format, rather than a
        time tuple. (Wasn't being used).
    get_user action no longer transmits local_password (small security risk;
        note that it wasn't possible to see this for any user other than
        yourself unless admin).

ivle.util - added function object_to_dict.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
# along with this program; if not, write to the Free Software
18
18
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
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
 
20
# Script: diffservice
 
21
# Author: David Coles
 
22
# Date:   26/2/2008
 
23
 
 
24
# A CGI script for generating a diff report page in HTML. It is intended to be 
 
25
# run from the trampoline by the Diff application.
 
26
 
 
27
import cgi
 
28
import os.path
32
29
import pysvn
 
30
import re
33
31
 
 
32
from ivle import cgirequest
34
33
import ivle.svn
35
34
 
36
 
# Set locale to UTF-8
37
 
locale.setlocale(locale.LC_CTYPE, "en_US.UTF-8")
 
35
def htmlfy_diff(difftext):
 
36
    """Adds HTML markup to a udiff string"""
 
37
    output = cgi.escape(difftext)
 
38
    subs = {
 
39
     r'^([\+\-]{3})\s(\S+)\s\((.+)\)$':
 
40
         r'<span class="diff-files">\1 \2 <em>(\3)</em></span>',
 
41
     r'^\@\@ (.*) \@\@$':
 
42
         r'<span class="diff-range">@@ \1 @@</span>',
 
43
     r'^\+(.*)$':
 
44
         r'<span class="diff-add">+\1</span>',
 
45
     r'^\-(.*)$':
 
46
         r'<span class="diff-sub">-\1</span>',
 
47
     r'^\\(.*)$':
 
48
         r'<span class="diff-special">\\\1</span>'
 
49
    }
 
50
 
 
51
    for match in subs:
 
52
        output = re.compile(match, re.MULTILINE).sub(subs[match], output)
 
53
 
 
54
    return output
 
55
 
 
56
# Use a CGIRequest object to make the CGI environment look like the normal
 
57
# IVLE handler environment.
 
58
 
 
59
req = cgirequest.CGIRequest()
 
60
req.install_error_handler()
 
61
req.content_type = "text/html"
 
62
 
 
63
# Beginning of the page
 
64
req.write('<div id="ivle_padding">\n')
 
65
req.write('<h1>Diff</h1>\n')
38
66
 
39
67
# Default revisions
40
68
revs = [pysvn.Revision(x) for x in [pysvn.opt_revision_kind.base,
41
69
                                    pysvn.opt_revision_kind.working]]
42
 
 
43
 
# Override revisions from argv.
44
 
for ri in range(len(sys.argv[2:4])):
45
 
    r = ivle.svn.revision_from_string(sys.argv[2 + ri])
 
70
# Override revisions from query string
 
71
fields = req.get_fieldstorage()
 
72
field_r = fields.getlist("r")
 
73
for ri in range(len(field_r)):
 
74
    r = ivle.svn.revision_from_string(field_r[ri])
46
75
    if r is not None:
47
76
        revs[ri] = r
48
77
 
49
78
# Attempt to get the diff for these revisons
50
79
try:
51
80
    svnclient = pysvn.Client()
52
 
    svnclient.exception_style = 1
53
81
    diff = svnclient.diff
54
 
 
55
 
    # pysvn's diff tempfile behaviour changes with Subversion 1.6.x.
56
 
    # < 1.6 wants a filename, >= 1.6 wants a directory.
57
 
    if pysvn.svn_version > (1, 6):
58
 
        tmp_path = '/tmp'
59
 
    else:
60
 
        tmp_path = '/tmp/svndiff'
61
 
 
62
 
    diff_text = diff(tmp_path,
63
 
        os.path.join('/home', sys.argv[1]),
 
82
    diff_text = diff( '/tmp/svndiff',
 
83
        os.path.join('/home', req.path),
64
84
        revision1=revs[0],
65
85
        revision2=revs[1]
66
86
    )
67
 
    print cjson.encode({'diff': diff_text.decode('utf-8')})
68
 
except pysvn.ClientError, e:
69
 
    error = e[0]
70
 
 
71
 
    try:
72
 
        code = e[1][0][1]
73
 
        # See subversion/include/svn_error_codes.h.
74
 
        # 150000: ERR_ENTRY_NOT_FOUND
75
 
        # 155007: WC_NOT_DIRECTORY.
76
 
        # 160013: FS_NOT_FOUND
77
 
        # 200005: UNVERSIONED_RESOURCE
78
 
        if code in (150000, 155007, 160013, 200005):
79
 
            error = 'notfound'
80
 
        else:
81
 
            error = '%s (code %d)' % (error, code) 
82
 
    except IndexError:
83
 
        pass
84
 
 
85
 
    print cjson.encode({'error': error})
 
87
 
 
88
    # Split up the udiff into individual files
 
89
    diff_matcher = re.compile(
 
90
        r'^Index: (.*)\n\=+\n((?:[^I].*\n)*)',re.MULTILINE
 
91
    )
 
92
    split_diff = diff_matcher.findall(diff_text)
 
93
 
 
94
    # Prints output
 
95
    for filediff in split_diff:
 
96
        filename = filediff[0]
 
97
        diffbody = htmlfy_diff(filediff[1])
 
98
        req.write('<p><b>File:</b> %s</p>\n'
 
99
            % cgi.escape(filename))
 
100
        req.write('<pre class="diff">%s</pre>\n' % diffbody)
 
101
 
 
102
except pysvn._pysvn_2_5.ClientError, e:
 
103
    req.write('<p><b>Error:</b></p>\n')
 
104
    req.write('<pre class="diff">%s</pre>\n' % cgi.escape(str(e)))
 
105
 
 
106
req.write('</div>\n')