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

« back to all changes in this revision

Viewing changes to src/dispatch/request.py

  • Committer: drtomc
  • Date: 2007-12-12 23:52:53 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:48
Add the beginnings of the app for serving students' pages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
170
170
    def flush(self):
171
171
        """Flushes the output buffer."""
172
172
        self.apache_req.flush()
 
173
 
 
174
    def sendfile(self, filename):
 
175
        """Sends the named file directly to the client."""
 
176
        self.apache_req.sendfile(filename)
 
177