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

« back to all changes in this revision

Viewing changes to ivle/dispatch/request.py

  • Committer: William Grant
  • Author(s): David Coles
  • Date: 2010-05-31 12:04:13 UTC
  • mto: This revision was merged to the branch mainline in revision 1825.
  • Revision ID: coles.david@gmail.com-20100531120413-4x8ufmzf9i25hybq
Editor: Migrate to CodeMirror. Syntax highlighting hardcoded to Python for the 
moment.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
            String. The request method (eg. 'GET', 'POST', etc)
66
66
        uri (read)
67
67
            String. The path portion of the URI.
68
 
        unparsed_uri (read)
69
 
            String. The path portion of the URI, unparsed with query string.
70
68
        app (read)
71
69
            String. Name of the application specified in the URL, or None.
72
70
        path (read)
137
135
        # Inherit values for the input members
138
136
        self.method = req.method
139
137
        self.uri = req.uri
140
 
        self.unparsed_uri = req.unparsed_uri
141
138
        # Split the given path into the app (top-level dir) and sub-path
142
139
        # (after first stripping away the root directory)
143
140
        (self.app, self.path) = (ivle.util.split_path(req.uri))