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

« back to all changes in this revision

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

  • Committer: mattgiuca
  • Date: 2008-01-10 04:55:13 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:161
dispatch.login: Correctly stores the username string (not argument field)
    in the session. (This wasn't detected before because of the following
    issue).
debuginfo: Previously got the "value" from session variables (which worked
    because the only variable was being stored as a Field). Now just returns
    the variable as a string, as it is now stored correctly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
 
76
76
    print_table(req, "Field Storage",
77
77
        getfieldvalues(req.get_fieldstorage().items()))
78
 
    print_table(req, "Session Variables",
79
 
        getfieldvalues(req.get_session().items()))
 
78
    print_table(req, "Session Variables", req.get_session().items())
80
79
 
81
80
    print_table(req, "HTTP Request Headers",
82
81
        req.apache_req.headers_in.items())