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

« back to all changes in this revision

Viewing changes to www/dispatch/__init__.py

  • Committer: stevenbird
  • Date: 2008-02-04 04:22:44 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:400
first commit of homepage at ivle.sourceforge.net, including screenshots; just web-presence at this stage

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
from request import Request
39
39
import html
40
40
import login
41
 
from common import (util, forumutil)
 
41
from common import util
42
42
 
43
43
def handler(req):
44
44
    """Handles a request which may be to anywhere in the site except media.
83
83
 
84
84
    if logged_in:
85
85
        # Keep the user's session alive by writing to the session object.
86
 
        # req.get_session().save()
87
 
        # Well, it's a fine idea, but it creates considerable grief in the
88
 
        # concurrent update department, so instead, we'll just make the
89
 
        # sessions not time out.
90
 
        
 
86
        req.get_session().save()
91
87
        # If user did not specify an app, HTTP redirect to default app and
92
88
        # exit.
93
89
        if req.app is None:
124
120
    session = req.get_session()
125
121
    session.invalidate()
126
122
    session.delete()
127
 
    req.add_cookie(forumutil.invalidated_forum_cookie())
128
123
    req.throw_redirect(util.make_path(''))