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

« back to all changes in this revision

Viewing changes to lib/common/cgirequest.py

  • Committer: dcoles
  • Date: 2008-04-04 04:24:14 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:723
request: Ensure that the req.path is correct in public mode (should be 
identical to normal mode - ie. without ivle prefix and application)

Show diffs side-by-side

added added

removed removed

Lines of Context:
141
141
        path = common.util.unmake_path(self.uri)
142
142
        if self.publicmode:
143
143
            self.app = None
144
 
            self.path = path
 
144
            (_, self.path) = (common.util.split_path(path))
145
145
        else:
146
146
            (self.app, self.path) = (common.util.split_path(path))
147
147
        self.user = None