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

« back to all changes in this revision

Viewing changes to ivle/dispatch/request.py

  • Committer: William Grant
  • Date: 2009-02-25 23:04:11 UTC
  • Revision ID: grantw@unimelb.edu.au-20090225230411-lbdyl32ir0m3d59b
Make all of the services executable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
295
295
    def get_session(self):
296
296
        """Returns a mod_python Session object for this request.
297
297
        Note that this is dependent on mod_python and may need to change
298
 
        interface if porting away from mod_python.
299
 
 
300
 
        IMPORTANT: Call unlock() on the session as soon as you are done with
301
 
                   it! If you don't, all other requests will block!
302
 
        """
 
298
        interface if porting away from mod_python."""
303
299
        # Cache the session object and set the timeout to 24 hours.
304
300
        if not hasattr(self, 'session'):
305
301
            self.session = mod_python.Session.FileSession(self.apache_req,