~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: 2009-05-11 04:51:08 UTC
  • mto: (1165.3.65 submissions-admin)
  • mto: This revision was merged to the branch mainline in revision 1247.
  • Revision ID: grantw@unimelb.edu.au-20090511045108-z70ij6oti5cazyo4
Add an ivle-refreshfilesystem script, which currently just rewrites svn(-group).conf.

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
 
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):
 
31
 
 
32
class XHTMLView(BaseView):
56
33
    """
57
34
    A view which provides a base class for views which need to return XHTML
58
35
    It is expected that apps which use this view will be written using Genshi
60
37
    """
61
38
 
62
39
    template = 'template.html'
 
40
    plugin_scripts = {}
 
41
    plugin_styles = {}
63
42
    allow_overlays = True
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)
 
43
    overlay_blacklist = []
 
44
 
 
45
    def __init__(self, req, **kwargs):
 
46
        for key in kwargs:
 
47
            setattr(self, key, kwargs[key])
80
48
 
81
49
    def filter(self, stream, ctx):
82
50
        return stream
92
60
        # view.
93
61
        app_template = os.path.join(os.path.dirname(
94
62
                        inspect.getmodule(self).__file__), self.template) 
95
 
        tmpl = self._loader.load(app_template)
 
63
        loader = genshi.template.TemplateLoader(".", auto_reload=True)
 
64
        tmpl = loader.load(app_template)
96
65
        app = self.filter(tmpl.generate(viewctx), viewctx)
97
66
 
98
 
        view_scripts = []
99
67
        for plugin in self.plugin_scripts:
100
68
            for path in self.plugin_scripts[plugin]:
101
 
                view_scripts.append(media_url(req, plugin, path))
 
69
                req.scripts.append(media_url(req, plugin, path))
102
70
 
103
 
        view_styles = []
104
71
        for plugin in self.plugin_styles:
105
72
            for path in self.plugin_styles[plugin]:
106
 
                view_styles.append(media_url(req, plugin, path))
 
73
                req.styles.append(media_url(req, plugin, path))
107
74
 
108
75
        # Global template
109
76
        ctx = genshi.template.Context()
110
 
 
111
 
        overlay_bits = self.render_overlays(req) if req.user else [[]]*4
112
 
        ctx['overlays'] = overlay_bits[0]
 
77
        # XXX: Leave this here!! (Before req.styles is read)
 
78
        ctx['overlays'] = self.render_overlays(req) if req.user else []
113
79
 
114
80
        ctx['styles'] = [media_url(req, CorePlugin, 'ivle.css')]
115
 
        ctx['styles'] += view_styles
116
 
        ctx['styles'] += overlay_bits[1]
 
81
        ctx['styles'] += req.styles
117
82
 
118
83
        ctx['scripts'] = [media_url(req, CorePlugin, path) for path in
119
84
                           ('util.js', 'json2.js', 'md5.js')]
120
85
        ctx['scripts'].append(media_url(req, '+external/jquery', 'jquery.js'))
121
 
        ctx['scripts'] += view_scripts
122
 
        ctx['scripts'] += overlay_bits[2]
 
86
        ctx['scripts'] += req.scripts
123
87
 
124
 
        ctx['scripts_init'] = self.scripts_init + overlay_bits[3]
 
88
        ctx['scripts_init'] = req.scripts_init
125
89
        ctx['app_template'] = app
126
90
        ctx['title_img'] = media_url(req, CorePlugin,
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
 
 
 
91
                                     "images/chrome/title.png")
155
92
        self.populate_headings(req, ctx)
156
 
        tmpl = self._loader.load(os.path.join(os.path.dirname(__file__), 
 
93
        tmpl = loader.load(os.path.join(os.path.dirname(__file__), 
157
94
                                                        'ivle-headings.html'))
158
95
        req.write(tmpl.generate(ctx).render('xhtml', doctype='xhtml'))
159
96
        
183
120
                continue
184
121
 
185
122
            for tab in plugin.tabs:
186
 
                # tab is a tuple: name, title, desc, icon, path, weight, admin
187
 
                # (Admin is optional, defaults to false)
 
123
                # tab is a tuple: name, title, desc, icon, path
188
124
                new_app = {}
189
125
                new_app['this_app'] = hasattr(self, 'tab') \
190
126
                                      and tab[0] == self.tab
198
134
                        ctx['favicon'] = icon_url
199
135
                else:
200
136
                    new_app['has_icon'] = False
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
137
                new_app['path'] = req.make_path(tab[4])
208
138
                new_app['desc'] = tab[2]
209
139
                new_app['name'] = tab[1]
219
149
        scripts_init.
220
150
        """
221
151
        overlays = []
222
 
        styles = []
223
 
        scripts = []
224
 
        scripts_init = []
225
152
        if not self.allow_overlays:
226
 
            return (overlays, styles, scripts, scripts_init)
 
153
            return overlays
227
154
 
228
155
        for plugin in req.config.plugin_index[OverlayPlugin]:
229
156
            for overclass in plugin.overlays:
233
160
                #TODO: Re-factor this to look nicer
234
161
                for mplugin in overlay.plugin_scripts:
235
162
                    for path in overlay.plugin_scripts[mplugin]:
236
 
                        scripts.append(media_url(req, mplugin, path))
 
163
                        req.scripts.append(media_url(req, mplugin, path))
237
164
 
238
165
                for mplugin in overlay.plugin_styles:
239
166
                    for path in overlay.plugin_styles[mplugin]:
240
 
                        styles.append(media_url(req, mplugin, path))
 
167
                        req.styles.append(media_url(req, mplugin, path))
241
168
 
242
 
                scripts_init += overlay.plugin_scripts_init
 
169
                req.scripts_init += overlay.plugin_scripts_init
243
170
 
244
171
                overlays.append(overlay.render(req))
245
 
        return (overlays, styles, scripts, scripts_init)
 
172
        return overlays
246
173
 
247
174
    @classmethod
248
175
    def get_error_view(cls, e):
255
182
class XHTMLErrorView(XHTMLView):
256
183
    template = 'xhtmlerror.html'
257
184
 
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)
 
185
    def __init__(self, req, exception):
 
186
        self.context = exception
264
187
 
265
188
    def populate(self, req, ctx):
266
 
        ctx['req'] = req
267
189
        ctx['exception'] = self.context
268
 
        req.headers_out['X-IVLE-Error'] = self.context.message
269
190
 
270
191
class XHTMLUnauthorizedView(XHTMLErrorView):
271
192
    template = 'xhtmlunauthorized.html'
272
193
 
273
 
    def __init__(self, req, exception, lastobj):
274
 
        super(XHTMLUnauthorizedView, self).__init__(req, exception, lastobj)
 
194
    def __init__(self, req, exception):
 
195
        super(XHTMLUnauthorizedView, self).__init__(req, exception)
275
196
 
276
 
        if not req.publicmode and req.user is None:
 
197
        if req.user is None:
277
198
            # Not logged in. Redirect to login page.
278
199
            if req.uri == '/':
279
200
                query_string = ''
282
203
            req.throw_redirect('/+login' + query_string)
283
204
 
284
205
        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