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

« back to all changes in this revision

Viewing changes to services/fileservice

  • 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:
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)