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

« back to all changes in this revision

Viewing changes to ivle/cgirequest.py

Drop the 4xx-series exception handling ability from
ivle.dispatch.handle_unknown_exception(). Nothing raises anything but a 5xx
IVLEError now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
# This allows CGI scripts to create request objects and then pass them to
26
26
# normal IVLE handlers.
27
27
 
 
28
# NOTE: This object does not support write_html_head_foot (simply because we
 
29
# do not need it in its intended application: fileservice).
 
30
 
28
31
import sys
29
32
import os
30
 
import os.path
31
33
import cgi
32
34
import urllib
33
35
import traceback
138
140
        self.uri = os.environ['SCRIPT_NAME'] + os.environ['PATH_INFO']
139
141
        # Split the given path into the app (top-level dir) and sub-path
140
142
        # (after first stripping away the root directory)
 
143
        path = ivle.util.unmake_path(self.uri)
141
144
        if self.publicmode:
142
145
            self.app = None
143
 
            (_, self.path) = (ivle.util.split_path(self.uri))
 
146
            (_, self.path) = (ivle.util.split_path(path))
144
147
        else:
145
 
            (self.app, self.path) = (ivle.util.split_path(self.uri))
 
148
            (self.app, self.path) = (ivle.util.split_path(path))
146
149
        self.user = None
147
150
        self.hostname = os.environ['SERVER_NAME']
148
151
        self.headers_in = _http_headers_in_from_cgi()
152
155
        self.status = CGIRequest.HTTP_OK
153
156
        self.content_type = None        # Use Apache's default
154
157
        self.location = None
 
158
        self.title = None     # Will be set by dispatch before passing to app
155
159
        self.styles = []
156
160
        self.scripts = []
 
161
        self.write_html_head_foot = False
157
162
        self.got_common_vars = False
158
163
 
159
164
 
192
197
            if k != 'Content-Type' and k != 'Location':
193
198
                print "%s: %s" % (k, v)
194
199
 
 
200
        # XXX write_html_head_foot not supported
 
201
        #if self.write_html_head_foot:
 
202
        #    # Write the HTML header, pass "self" (request object)
 
203
        #    self.func_write_html_head(self)
195
204
        # Print a blank line to signal the start of output
196
205
        print
197
206