~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-21 06:02:46 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:256
Changed the way IVLE's path is loaded into Python's sys.path. Now a file
"ivle.pth" is installed in Python's site packages which has the location of
the path. This replaces the method of using dispatch_handler.py.

* Removed dispatch_handler.py. No longer required.
* setup.py now automatically writes ivle.pth to Python's site packages.
* Updated README to indicate the new way to set up Apache. It's a lot simpler
  now, and you can run multiple IVLEs in the same server.

Hooray!

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
52
51
            Table object representing headers sent by the client.
53
52
        headers_out (read, can be written to)
54
53
            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
54
 
60
55
        status (write)
61
56
            Int. Response status number. Use one of the status codes defined
165
160
        self.func_write_html_head = write_html_head
166
161
        self.headers_written = False
167
162
 
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
163
        # Inherit values for the input members
176
164
        self.method = req.method
177
165
        self.uri = req.uri
178
166
        # Split the given path into the app (top-level dir) and sub-path
179
167
        # (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))
 
168
        (self.app, self.path) = (
 
169
            common.util.split_path(common.util.unmake_path(req.uri)))
186
170
        self.username = None
187
171
        self.hostname = req.hostname
188
172
        self.headers_in = req.headers_in
224
208
 
225
209
        if not self.headers_written:
226
210
            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)
 
211
        self.apache_req.write(string, flush)
235
212
 
236
213
    def flush(self):
237
214
        """Flushes the output buffer."""
277
254
        interface if porting away from mod_python."""
278
255
        # Cache the session object
279
256
        if not hasattr(self, 'session'):
280
 
            self.session = Session.FileSession(self.apache_req)
 
257
            self.session = Session.Session(self.apache_req)
281
258
        return self.session
282
259
 
283
260
    def get_fieldstorage(self):