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

« back to all changes in this revision

Viewing changes to services/fileservice

  • Committer: William Grant
  • Date: 2009-01-13 01:36:15 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1123
Merge setup-refactor branch. This completely breaks existing installations;
every path (both filesystem and Python) has changed. Do not upgrade without
knowing what you are doing.

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)