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

« back to all changes in this revision

Viewing changes to ivle/dispatch/request.py

  • Committer: David Coles
  • Date: 2010-07-28 10:45:53 UTC
  • mfrom: (1829 trunk)
  • mto: This revision was merged to the branch mainline in revision 1830.
  • Revision ID: coles.david@gmail.com-20100728104553-5z3nxt0l6kyfqfh5
MergeĀ fromĀ trunk

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.
68
70
        app (read)
69
71
            String. Name of the application specified in the URL, or None.
70
72
        path (read)
137
139
        # Inherit values for the input members
138
140
        self.method = req.method
139
141
        self.uri = req.uri
 
142
        self.unparsed_uri = req.unparsed_uri
140
143
        # Split the given path into the app (top-level dir) and sub-path
141
144
        # (after first stripping away the root directory)
142
145
        (self.app, self.path) = (ivle.util.split_path(req.uri))