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

« back to all changes in this revision

Viewing changes to www/dispatch/request.py

  • Committer: mattgiuca
  • Date: 2008-01-20 21:44:25 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:252
setup.py: Added action "updatejails" which wipes all student jails, replacing
them with fresh hardlinks from jails template (preserving the students' home
directories).

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
import common.util
27
27
import mod_python
28
28
from mod_python import (util, Session)
29
 
import conf
30
29
 
31
30
class Request:
32
31
    """An IVLE request object. This is presented to the IVLE apps as a way of
46
45
        username (read)
47
46
            String. Login name of the user who is currently logged in, or
48
47
            None.
49
 
        hostname (read)
50
 
            String. Hostname the server is running on.
51
48
        headers_in (read)
52
49
            Table object representing headers sent by the client.
53
50
        headers_out (read, can be written to)
54
51
            Table object representing headers to be sent to the client.
55
 
        publicmode (read)
56
 
            Bool. True if the request came for the "public host" as
57
 
            configured in conf.py. Note that public mode requests do not
58
 
            have an app (app is set to None).
59
52
 
60
53
        status (write)
61
54
            Int. Response status number. Use one of the status codes defined
165
158
        self.func_write_html_head = write_html_head
166
159
        self.headers_written = False
167
160
 
168
 
        # Determine if the browser used the public host name to make the
169
 
        # request (in which case we are in "public mode")
170
 
        if req.hostname == conf.public_host:
171
 
            self.publicmode = True
172
 
        else:
173
 
            self.publicmode = False
174
 
 
175
161
        # Inherit values for the input members
176
162
        self.method = req.method
177
163
        self.uri = req.uri
178
164
        # Split the given path into the app (top-level dir) and sub-path
179
165
        # (after first stripping away the root directory)
180
 
        path = common.util.unmake_path(req.uri)
181
 
        if self.publicmode:
182
 
            self.app = None
183
 
            self.path = path
184
 
        else:
185
 
            (self.app, self.path) = (common.util.split_path(path))
 
166
        (self.app, self.path) = (
 
167
            common.util.split_path(common.util.unmake_path(req.uri)))
186
168
        self.username = None
187
 
        self.hostname = req.hostname
188
169
        self.headers_in = req.headers_in
189
170
        self.headers_out = req.headers_out
190
171
 
224
205
 
225
206
        if not self.headers_written:
226
207
            self.__writeheaders()
227
 
        if isinstance(string, unicode):
228
 
            # Encode unicode strings as UTF-8
229
 
            # (Otherwise cannot handle being written to a bytestream)
230
 
            self.apache_req.write(string.encode('utf8'), flush)
231
 
        else:
232
 
            # 8-bit clean strings just get written directly.
233
 
            # This includes binary strings.
234
 
            self.apache_req.write(string, flush)
 
208
        self.apache_req.write(string, flush)
235
209
 
236
210
    def flush(self):
237
211
        """Flushes the output buffer."""
277
251
        interface if porting away from mod_python."""
278
252
        # Cache the session object
279
253
        if not hasattr(self, 'session'):
280
 
            self.session = Session.FileSession(self.apache_req)
 
254
            self.session = Session.Session(self.apache_req)
281
255
        return self.session
282
256
 
283
257
    def get_fieldstorage(self):