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

« back to all changes in this revision

Viewing changes to services/fileservice

  • Committer: matt.giuca
  • Date: 2009-01-12 00:34:59 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1073
usrmgt-server: When creating svn repo, now explicitly asks for the exception
    to be thrown up, rather than ignored.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
# (The purpose of all of this is to let FileService read and write the user's
28
28
# file system as them).
29
29
 
30
 
from ivle import cgirequest
31
 
import ivle.fileservice_lib
 
30
from common import cgirequest
 
31
import fileservice_lib
32
32
 
33
33
# Use a CGIRequest object to make the CGI environment look like the normal
34
34
# IVLE handler environment. This lets us call FileService as if it were an
36
36
 
37
37
req = cgirequest.CGIRequest()
38
38
req.install_error_handler()
39
 
ivle.fileservice_lib.handle(req)
 
39
fileservice_lib.handle(req)