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

« back to all changes in this revision

Viewing changes to services/diffservice

  • Committer: chadnickbok
  • Date: 2009-01-13 05:33:58 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1108
Updated the settings page to require the old password
when updating the password. Note that this field
is not shown when using ldap authentication

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
# A CGI script for generating a diff report page in HTML. It is intended to be 
25
25
# run from the trampoline by the Diff application.
26
26
 
 
27
from common import cgirequest
 
28
import common.svn
27
29
import cgi
28
30
import os.path
29
31
import pysvn
30
32
import re
31
33
 
32
 
from ivle import cgirequest
33
 
import ivle.svn
34
 
 
35
34
def htmlfy_diff(difftext):
36
35
    """Adds HTML markup to a udiff string"""
37
36
    output = cgi.escape(difftext)
71
70
fields = req.get_fieldstorage()
72
71
field_r = fields.getlist("r")
73
72
for ri in range(len(field_r)):
74
 
    r = ivle.svn.revision_from_string(field_r[ri])
 
73
    r = common.svn.revision_from_string(field_r[ri])
75
74
    if r is not None:
76
75
        revs[ri] = r
77
76