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

« back to all changes in this revision

Viewing changes to ivle/dispatch/request.py

  • Committer: Matt Giuca
  • Date: 2010-03-05 07:20:43 UTC
  • Revision ID: matt.giuca@gmail.com-20100305072043-kbm4ysw08h610wod
Lecturer project page: Added link to External Subversion access to help lecturers figure out how to get their SVN password.

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))