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

« back to all changes in this revision

Viewing changes to ivle/webapp/console/__init__.py

  • Committer: William Grant
  • Date: 2009-02-23 23:47:02 UTC
  • mfrom: (1099.1.211 new-dispatch)
  • Revision ID: grantw@unimelb.edu.au-20090223234702-db4b1llly46ignwo
Merge from lp:~ivle-dev/ivle/new-dispatch.

Pretty much everything changes. Reread the setup docs. Backup your databases.
Every file is now in a different installed location, the configuration system
is rewritten, the dispatch system is rewritten, URLs are different, the
database is different, worksheets and exercises are no longer on the
filesystem, we use a templating engine, jail service protocols are rewritten,
we don't repeat ourselves, we have authorization rewritten, phpBB is gone,
and probably lots of other things that I cannot remember.

This is certainly the biggest commit I have ever made, and hopefully
the largest I ever will.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from ivle.webapp.base.plugins import ViewPlugin, OverlayPlugin, MediaPlugin
 
2
from ivle.webapp.console.service import ConsoleServiceRESTView
 
3
from ivle.webapp.console.overlay import ConsoleOverlay
 
4
from ivle.webapp.base.xhtml import XHTMLView
 
5
 
 
6
 
 
7
class ConsoleView(XHTMLView):
 
8
    appname = 'console'
 
9
    help = 'Console'
 
10
 
 
11
    plugin_scripts = {'ivle.webapp.console': ['console.js']}
 
12
    plugin_styles  = {'ivle.webapp.console': ['console.css']}
 
13
    plugin_scripts_init = ['console_init']
 
14
 
 
15
    # Don't load the console overlay when we already have a console.
 
16
    overlay_blacklist = [ConsoleOverlay]
 
17
 
 
18
    def authorize(self, req):
 
19
        return req.user is not None
 
20
 
 
21
    def populate(self, req, ctx):
 
22
        ctx['windowpane'] = False
 
23
        ctx['start_body_attrs'] = {}
 
24
 
 
25
class Plugin(ViewPlugin, OverlayPlugin, MediaPlugin):
 
26
    urls = [
 
27
        ('console/service', ConsoleServiceRESTView),
 
28
        ('console', ConsoleView),
 
29
    ]
 
30
    tabs = [
 
31
        ('console', 'Console', 'A Python console where you can try out code '
 
32
         'without having to save and run it.', 'console.png', 'console', 3)
 
33
    ]
 
34
    overlays = [
 
35
        ConsoleOverlay,
 
36
    ]
 
37
    media = 'media'
 
38
    help = {'Console': 'help.html'}