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

« back to all changes in this revision

Viewing changes to www/apps/diff/__init__.py

  • Committer: matt.giuca
  • Date: 2009-01-12 00:33:53 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1072
Renamed scripts to services.
Updated all references (we hope). :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
# handle_with_trampoline controls the way in which fileservice_lib is invoked.
33
33
# If False, it will simply be called directly by this handler.
34
34
# If True, the request will get marshalled into a CGI environment and the
35
 
# trampoline will invoke scripts/fileservices within the user's jail (SetUID'd
 
35
# trampoline will invoke services/fileservices within the user's jail (SetUID'd
36
36
# to them). This script will then wrap the CGI environment in a replica of the
37
37
# original environment and handle it that way.
38
38
# This is a lot of overhead but it's the only way to properly ensure we are
41
41
# permissions issues unless all user's files are owned by the web server user.
42
42
HANDLE_WITH_TRAMPOLINE = True
43
43
 
44
 
diffservice_path = "/opt/ivle/scripts/diffservice"   # Within jail
 
44
diffservice_path = "/opt/ivle/services/diffservice"   # Within jail
45
45
 
46
46
def handle(req):
47
47
    """Handler for the File Services application."""