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

« back to all changes in this revision

Viewing changes to www/dispatch/request.py

  • Committer: mattgiuca
  • Date: 2008-02-19 06:37:34 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:504
Warning: Broken build, but rather unavoidable or this commit will spiral out
of control.

dispatch.login: Removed all the misc user values from session. Replaced with
"user" which is a User object. All the code which looks up values in session
can just look up user and read fields from it; but they don't at the moment so
they break.

dispatch: All the rest of dispatch system updated to read from user instead,
and have no dependency on the other fields in session. So the top level works
(the apps don't).

user.py: Added __iter__ method, allowing dict() to be called on a user object.

debuginfo: Added a special print table for the user fields.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
            String. The path specified in the URL *not including* the
44
44
            application or the IVLE location prefix. eg. a URL of
45
45
            "/ivle/files/joe/myfiles" has a path of "joe/myfiles".
46
 
        username (read)
 
46
        user (read)
 
47
            User object. Details of the user who is currently logged in, or
 
48
            None.
 
49
        username (read, deprecated)
47
50
            String. Login name of the user who is currently logged in, or
48
51
            None.
 
52
            Deprecated in favour of user.login.
49
53
        hostname (read)
50
54
            String. Hostname the server is running on.
51
55
        headers_in (read)
183
187
            self.path = path
184
188
        else:
185
189
            (self.app, self.path) = (common.util.split_path(path))
 
190
        self.user = None
186
191
        self.username = None
187
192
        self.hostname = req.hostname
188
193
        self.headers_in = req.headers_in