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

« back to all changes in this revision

Viewing changes to ivle/dispatch/__init__.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:
48
48
from ivle.webapp.base.plugins import ViewPlugin
49
49
import apps
50
50
import html
51
 
import plugins.console # XXX: Relies on www/ being in the Python path.
52
51
 
53
52
# XXX List of plugins, which will eventually be read in from conf
54
53
plugins_HACK = [
225
224
 
226
225
    # When done, write out the HTML footer if the app has requested it
227
226
    if req.write_html_head_foot:
228
 
        # Show the console if required
229
 
        if logged_in and app.useconsole:
230
 
            plugins.console.present(req, windowpane=True)
231
227
        html.write_html_foot(req)
232
228
 
233
229
    # Note: Apache will not write custom HTML error messages here.