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

« back to all changes in this revision

Viewing changes to scripts/diffservice

  • Committer: dcoles
  • Date: 2008-02-25 21:59:41 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:586
diffservice: Fixed oops in cleaned up code, also changed the date and author 
fields from the dummy app defaults

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 
20
20
# Script: diffservice
21
 
# Author: Matt Giuca
22
 
# Date:   25/2/2008
 
21
# Author: David Coles
 
22
# Date:   26/2/2008
23
23
 
24
 
# A CGI script for handling file requests. This is a wrapper around the
25
 
# FileService library module. It is intended to be run from the trampoline by
26
 
# the FileService application.
27
 
# (The purpose of all of this is to let FileService read and write the user's
28
 
# file system as them).
 
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.
29
26
 
30
27
from common import cgirequest
31
28
from cgi import parse_qs
65
62
    else:
66
63
        try:
67
64
            r = int(r_str)
68
 
            return pysvn.Revision( pysvn.opt_revision_kind.number, r))
 
65
            return pysvn.Revision( pysvn.opt_revision_kind.number, r)
69
66
        except:
70
67
            return None
71
68