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

« back to all changes in this revision

Viewing changes to ivle/dispatch/request.py

Remove the legacy console app and plugin, and the legacy plugin infrastructure
from ivle.dispatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
import ivle.util
37
37
import ivle.conf
38
38
import ivle.database
39
 
import plugins.console # XXX: Relies on www/ being in the Python path.
40
39
 
41
40
class Request:
42
41
    """An IVLE request object. This is presented to the IVLE apps as a way of
236
235
        except KeyError:
237
236
            app = None
238
237
 
239
 
        # Write any final modifications to header content
240
 
        if app and app.useconsole and self.user:
241
 
            plugins.console.insert_scripts_styles(self.scripts, self.styles, \
242
 
                self.scripts_init)
243
 
 
244
238
        # Prepare the HTTP and HTML headers before the first write is made
245
239
        if self.content_type != None:
246
240
            self.apache_req.content_type = self.content_type