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

« back to all changes in this revision

Viewing changes to ivle/webapp/media.py

  • Committer: William Grant
  • Date: 2009-12-02 03:38:42 UTC
  • mto: This revision was merged to the branch mainline in revision 1353.
  • Revision ID: grantw@unimelb.edu.au-20091202033842-8o1sz0iou60tue4f
Restore SubjectMediaView.

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
           self.context.path.startswith('/'):
103
103
            raise Forbidden()
104
104
 
105
 
        filename = self.context.filename
 
105
        filename = self.get_filename(req)
106
106
        if filename is None:
107
107
            raise NotFound()
108
108
 
127
127
        req.content_type = type
128
128
        req.sendfile(filename)
129
129
 
 
130
    def get_filename(self, req):
 
131
        return self.context.filename
 
132
 
130
133
    def get_permissions(self, user):
131
134
        return set()
132
135