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

« back to all changes in this revision

Viewing changes to services/fileservice

  • Committer: William Grant
  • Date: 2009-05-27 06:36:58 UTC
  • Revision ID: grantw@unimelb.edu.au-20090527063658-46rcvgh23qlxno87
No more ivle.conf in ivle.auth.

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 common import cgirequest
31
 
import fileservice_lib
 
30
from ivle import cgirequest
 
31
import ivle.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
 
fileservice_lib.handle(req)
 
39
ivle.fileservice_lib.handle(req)