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

« back to all changes in this revision

Viewing changes to www/dispatch_handler.py

  • Committer: drtomc
  • Date: 2008-01-02 22:21:12 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:128
A couple of bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 
42
42
    try:
43
43
        handlerpath = req.get_options()['ivle.handlerpath']
 
44
        if handlerpath not in sys.path:
 
45
            sys.path.append(handlerpath)
 
46
        import dispatch
 
47
        import conf
 
48
        return dispatch.handler(req)
44
49
    except KeyError:
45
50
        # Note: "Internal Server Error" if "ivle.handlerpath" is not set
46
51
        # (this is valid as it reflects an error in the Apache config
47
52
        # But give useful feedback in debug mode
48
53
        raise Exception("Missing configuration option 'ivle.handlerpath'")
49
 
 
50
 
    if handlerpath not in sys.path:
51
 
        sys.path.append(handlerpath)
52
 
    import dispatch
53
 
    import conf
54
 
    return dispatch.handler(req)