~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-14 01:40:49 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:220
browser: Removed 3 buttons which didn't do anything.
    Split editor handler into editor.js.

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
 
196
177
        self.styles = []
197
178
        self.scripts = []
198
179
        self.write_html_head_foot = False
199
 
        self.got_common_vars = False
200
180
 
201
181
    def __writeheaders(self):
202
182
        """Writes out the HTTP and HTML headers before any real data is
240
220
        """Reads at most len bytes directly from the client. (See mod_python
241
221
        Request.read)."""
242
222
        if len is None:
243
 
            return self.apache_req.read()
 
223
            self.apache_req.read()
244
224
        else:
245
 
            return self.apache_req.read(len)
 
225
            self.apache_req.read(len)
246
226
 
247
227
    def throw_error(self, httpcode):
248
228
        """Writes out an HTTP error of the specified code. Raises an exception
281
261
        if not hasattr(self, 'fields'):
282
262
            self.fields = util.FieldStorage(self.apache_req)
283
263
        return self.fields
284
 
 
285
 
    def get_cgi_environ(self):
286
 
        """Returns the CGI environment emulation for this request. (Calls
287
 
        add_common_vars). The environment is returned as a mapping
288
 
        compatible with os.environ."""
289
 
        if not self.got_common_vars:
290
 
            self.apache_req.add_common_vars()
291
 
            self.got_common_vars = True
292
 
        return self.apache_req.subprocess_env