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

« back to all changes in this revision

Viewing changes to ivle/webapp/base/xhtml.py

  • Committer: William Grant
  • Date: 2010-05-07 07:16:52 UTC
  • Revision ID: grantw@unimelb.edu.au-20100507071652-4z2zidt9le05ueix
Add unique indices on assessed(loginid, projectid) and assessed(groupid, projectid), where they should have been from the start.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
from ivle.webapp.base.views import BaseView
29
29
from ivle.webapp.base.plugins import ViewPlugin, OverlayPlugin
30
30
from ivle.webapp.errors import HTTPError, Unauthorized
31
 
import ivle.conf
32
 
import ivle.util
33
 
 
34
 
class XHTMLView(BaseView):
 
31
from ivle.webapp.publisher import NoPath
 
32
from ivle.webapp.breadcrumbs import Breadcrumber
 
33
 
 
34
 
 
35
class GenshiLoaderMixin(object):
 
36
    """Mixin for classes which need to render Genshi templates.
 
37
 
 
38
    A TemplateLoader is shared between all instances, so templates are
 
39
    cached across multiple instances and therefore also requests.
 
40
    """
 
41
    _loader = None
 
42
 
 
43
    def __init__(self, *args, **kwargs):
 
44
        super(GenshiLoaderMixin, self).__init__(*args, **kwargs)
 
45
 
 
46
        # We use a single loader for all views, so we can cache the
 
47
        # parsed templates. auto_reload is convenient and has a minimal
 
48
        # performance penalty, so we'll leave it on.
 
49
        if GenshiLoaderMixin._loader is None:
 
50
            GenshiLoaderMixin._loader = genshi.template.TemplateLoader(
 
51
                ".", auto_reload=True,
 
52
                max_cache_size=100)
 
53
 
 
54
 
 
55
class XHTMLView(GenshiLoaderMixin, BaseView):
35
56
    """
36
57
    A view which provides a base class for views which need to return XHTML
37
58
    It is expected that apps which use this view will be written using Genshi
39
60
    """
40
61
 
41
62
    template = 'template.html'
42
 
    plugin_scripts = {}
43
 
    plugin_styles = {}
44
63
    allow_overlays = True
45
 
    overlay_blacklist = []
46
 
 
47
 
    def __init__(self, req, **kwargs):
48
 
        for key in kwargs:
49
 
            setattr(self, key, kwargs[key])
 
64
    breadcrumb_text = None
 
65
 
 
66
    def __init__(self, *args, **kwargs):
 
67
        super(XHTMLView, self).__init__(*args, **kwargs)
 
68
 
 
69
        self.overlay_blacklist = []
 
70
 
 
71
        self.plugin_scripts = {}
 
72
        self.plugin_styles = {}
 
73
        self.scripts_init = []
 
74
 
 
75
        self.extra_breadcrumbs = []
 
76
        self.overlay_blacklist = []
 
77
 
 
78
    def get_context_ancestry(self, req):
 
79
        return req.publisher.get_ancestors(self.context)
50
80
 
51
81
    def filter(self, stream, ctx):
52
82
        return stream
62
92
        # view.
63
93
        app_template = os.path.join(os.path.dirname(
64
94
                        inspect.getmodule(self).__file__), self.template) 
65
 
        loader = genshi.template.TemplateLoader(".", auto_reload=True)
66
 
        tmpl = loader.load(app_template)
 
95
        tmpl = self._loader.load(app_template)
67
96
        app = self.filter(tmpl.generate(viewctx), viewctx)
68
97
 
 
98
        view_scripts = []
69
99
        for plugin in self.plugin_scripts:
70
100
            for path in self.plugin_scripts[plugin]:
71
 
                req.scripts.append(media_url(req, plugin, path))
 
101
                view_scripts.append(media_url(req, plugin, path))
72
102
 
 
103
        view_styles = []
73
104
        for plugin in self.plugin_styles:
74
105
            for path in self.plugin_styles[plugin]:
75
 
                req.styles.append(media_url(req, plugin, path))
 
106
                view_styles.append(media_url(req, plugin, path))
76
107
 
77
108
        # Global template
78
109
        ctx = genshi.template.Context()
79
 
        # XXX: Leave this here!! (Before req.styles is read)
80
 
        ctx['overlays'] = self.render_overlays(req) if req.user else []
 
110
 
 
111
        overlay_bits = self.render_overlays(req) if req.user else [[]]*4
 
112
        ctx['overlays'] = overlay_bits[0]
81
113
 
82
114
        ctx['styles'] = [media_url(req, CorePlugin, 'ivle.css')]
83
 
        ctx['styles'] += req.styles
 
115
        ctx['styles'] += view_styles
 
116
        ctx['styles'] += overlay_bits[1]
84
117
 
85
118
        ctx['scripts'] = [media_url(req, CorePlugin, path) for path in
86
119
                           ('util.js', 'json2.js', 'md5.js')]
87
120
        ctx['scripts'].append(media_url(req, '+external/jquery', 'jquery.js'))
88
 
        ctx['scripts'] += req.scripts
 
121
        ctx['scripts'] += view_scripts
 
122
        ctx['scripts'] += overlay_bits[2]
89
123
 
90
 
        ctx['scripts_init'] = req.scripts_init
 
124
        ctx['scripts_init'] = self.scripts_init + overlay_bits[3]
91
125
        ctx['app_template'] = app
92
126
        ctx['title_img'] = media_url(req, CorePlugin,
93
 
                                     "images/chrome/title.png")
 
127
                                     "images/chrome/root-breadcrumb.png")
 
128
        try:
 
129
            ancestry = self.get_context_ancestry(req)
 
130
        except NoPath:
 
131
            ancestry = []
 
132
 
 
133
        crumber = Breadcrumber(req)
 
134
 
 
135
        ctx['breadcrumbs'] = []
 
136
        if not req.publicmode:
 
137
            for ancestor in ancestry:
 
138
                crumb = crumber.crumb(ancestor)
 
139
                if crumb is None:
 
140
                    continue
 
141
 
 
142
                if hasattr(crumb, 'extra_breadcrumbs_before'):
 
143
                    ctx['breadcrumbs'].extend(crumb.extra_breadcrumbs_before)
 
144
                ctx['breadcrumbs'].append(crumb)
 
145
                if hasattr(crumb, 'extra_breadcrumbs_after'):
 
146
                    ctx['breadcrumbs'].extend(crumb.extra_breadcrumbs_after)
 
147
 
 
148
            # If the view has specified text for a breadcrumb, add one.
 
149
            if self.breadcrumb_text:
 
150
                ctx['breadcrumbs'].append(ViewBreadcrumb(req, self))
 
151
 
 
152
            # Allow the view to add its own fake breadcrumbs.
 
153
            ctx['breadcrumbs'].extend(self.extra_breadcrumbs)
 
154
 
94
155
        self.populate_headings(req, ctx)
95
 
        tmpl = loader.load(os.path.join(os.path.dirname(__file__), 
 
156
        tmpl = self._loader.load(os.path.join(os.path.dirname(__file__), 
96
157
                                                        'ivle-headings.html'))
97
158
        req.write(tmpl.generate(ctx).render('xhtml', doctype='xhtml'))
98
159
        
101
162
 
102
163
    def populate_headings(self, req, ctx):
103
164
        ctx['favicon'] = None
104
 
        ctx['root_dir'] = ivle.conf.root_dir
105
 
        ctx['public_host'] = ivle.conf.public_host
106
 
        ctx['svn_base'] = ivle.conf.svn_addr
 
165
        ctx['root_dir'] = req.config['urls']['root']
 
166
        ctx['public_host'] = req.config['urls']['public_host']
 
167
        ctx['svn_base'] = req.config['urls']['svn_addr']
107
168
        ctx['write_javascript_settings'] = req.write_javascript_settings
108
169
        if req.user:
109
170
            ctx['login'] = req.user.login
122
183
                continue
123
184
 
124
185
            for tab in plugin.tabs:
125
 
                # tab is a tuple: name, title, desc, icon, path
 
186
                # tab is a tuple: name, title, desc, icon, path, weight, admin
 
187
                # (Admin is optional, defaults to false)
126
188
                new_app = {}
127
189
                new_app['this_app'] = hasattr(self, 'tab') \
128
190
                                      and tab[0] == self.tab
136
198
                        ctx['favicon'] = icon_url
137
199
                else:
138
200
                    new_app['has_icon'] = False
139
 
                new_app['path'] = ivle.util.make_path(tab[4])
 
201
                # The following check is here, so it is AFTER setting the
 
202
                # icon, but BEFORE actually installing the tab in the menu
 
203
                if len(tab) > 6 and tab[6]:
 
204
                    # Admin-only tab
 
205
                    if not (req.user and req.user.admin):
 
206
                        break
 
207
                new_app['path'] = req.make_path(tab[4])
140
208
                new_app['desc'] = tab[2]
141
209
                new_app['name'] = tab[1]
142
210
                new_app['weight'] = tab[5]
151
219
        scripts_init.
152
220
        """
153
221
        overlays = []
 
222
        styles = []
 
223
        scripts = []
 
224
        scripts_init = []
154
225
        if not self.allow_overlays:
155
 
            return overlays
 
226
            return (overlays, styles, scripts, scripts_init)
156
227
 
157
228
        for plugin in req.config.plugin_index[OverlayPlugin]:
158
229
            for overclass in plugin.overlays:
162
233
                #TODO: Re-factor this to look nicer
163
234
                for mplugin in overlay.plugin_scripts:
164
235
                    for path in overlay.plugin_scripts[mplugin]:
165
 
                        req.scripts.append(media_url(req, mplugin, path))
 
236
                        scripts.append(media_url(req, mplugin, path))
166
237
 
167
238
                for mplugin in overlay.plugin_styles:
168
239
                    for path in overlay.plugin_styles[mplugin]:
169
 
                        req.styles.append(media_url(req, mplugin, path))
 
240
                        styles.append(media_url(req, mplugin, path))
170
241
 
171
 
                req.scripts_init += overlay.plugin_scripts_init
 
242
                scripts_init += overlay.plugin_scripts_init
172
243
 
173
244
                overlays.append(overlay.render(req))
174
 
        return overlays
 
245
        return (overlays, styles, scripts, scripts_init)
175
246
 
176
247
    @classmethod
177
248
    def get_error_view(cls, e):
184
255
class XHTMLErrorView(XHTMLView):
185
256
    template = 'xhtmlerror.html'
186
257
 
187
 
    def __init__(self, req, exception):
188
 
        self.context = exception
 
258
    def __init__(self, req, context, lastobj):
 
259
        super(XHTMLErrorView, self).__init__(req, context)
 
260
        self.lastobj = lastobj
 
261
 
 
262
    def get_context_ancestry(self, req):
 
263
        return req.publisher.get_ancestors(self.lastobj)
189
264
 
190
265
    def populate(self, req, ctx):
 
266
        ctx['req'] = req
191
267
        ctx['exception'] = self.context
 
268
        req.headers_out['X-IVLE-Error'] = self.context.message
192
269
 
193
270
class XHTMLUnauthorizedView(XHTMLErrorView):
194
271
    template = 'xhtmlunauthorized.html'
195
272
 
196
 
    def __init__(self, req, exception):
197
 
        super(XHTMLUnauthorizedView, self).__init__(req, exception)
 
273
    def __init__(self, req, exception, lastobj):
 
274
        super(XHTMLUnauthorizedView, self).__init__(req, exception, lastobj)
198
275
 
199
 
        if req.user is None:
 
276
        if not req.publicmode and req.user is None:
200
277
            # Not logged in. Redirect to login page.
201
278
            if req.uri == '/':
202
279
                query_string = ''
205
282
            req.throw_redirect('/+login' + query_string)
206
283
 
207
284
        req.status = 403
 
285
 
 
286
class ViewBreadcrumb(object):
 
287
    def __init__(self, req, context):
 
288
        self.req = req
 
289
        self.context = context
 
290
 
 
291
    @property
 
292
    def text(self):
 
293
        return self.context.breadcrumb_text