~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-07-05 05:55:33 UTC
  • mto: (1294.4.2 ui-the-third)
  • mto: This revision was merged to the branch mainline in revision 1353.
  • Revision ID: grantw@unimelb.edu.au-20090705055533-9gs58527qs6u4zi0
Add a new root breadcrumb image, and a pathetic breadcrumb chevron.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    """
38
38
 
39
39
    template = 'template.html'
 
40
 
40
41
    plugin_scripts = {}
41
42
    plugin_styles = {}
 
43
    scripts_init = []
 
44
 
42
45
    allow_overlays = True
43
46
    overlay_blacklist = []
44
47
 
45
 
    def __init__(self, req, **kwargs):
46
 
        for key in kwargs:
47
 
            setattr(self, key, kwargs[key])
48
 
 
49
48
    def filter(self, stream, ctx):
50
49
        return stream
51
50
 
64
63
        tmpl = loader.load(app_template)
65
64
        app = self.filter(tmpl.generate(viewctx), viewctx)
66
65
 
 
66
        view_scripts = []
67
67
        for plugin in self.plugin_scripts:
68
68
            for path in self.plugin_scripts[plugin]:
69
 
                req.scripts.append(media_url(req, plugin, path))
 
69
                view_scripts.append(media_url(req, plugin, path))
70
70
 
 
71
        view_styles = []
71
72
        for plugin in self.plugin_styles:
72
73
            for path in self.plugin_styles[plugin]:
73
 
                req.styles.append(media_url(req, plugin, path))
 
74
                view_styles.append(media_url(req, plugin, path))
74
75
 
75
76
        # Global template
76
77
        ctx = genshi.template.Context()
77
 
        # XXX: Leave this here!! (Before req.styles is read)
78
 
        ctx['overlays'] = self.render_overlays(req) if req.user else []
 
78
 
 
79
        overlay_bits = self.render_overlays(req) if req.user else [[]]*4
 
80
        ctx['overlays'] = overlay_bits[0]
79
81
 
80
82
        ctx['styles'] = [media_url(req, CorePlugin, 'ivle.css')]
81
 
        ctx['styles'] += req.styles
 
83
        ctx['styles'] += view_styles
 
84
        ctx['styles'] += overlay_bits[1]
82
85
 
83
86
        ctx['scripts'] = [media_url(req, CorePlugin, path) for path in
84
87
                           ('util.js', 'json2.js', 'md5.js')]
85
88
        ctx['scripts'].append(media_url(req, '+external/jquery', 'jquery.js'))
86
 
        ctx['scripts'] += req.scripts
 
89
        ctx['scripts'] += view_scripts
 
90
        ctx['scripts'] += overlay_bits[2]
87
91
 
88
 
        ctx['scripts_init'] = req.scripts_init
 
92
        ctx['scripts_init'] = self.scripts_init + overlay_bits[3]
89
93
        ctx['app_template'] = app
90
94
        ctx['title_img'] = media_url(req, CorePlugin,
91
95
                                     "images/chrome/title.png")
149
153
        scripts_init.
150
154
        """
151
155
        overlays = []
 
156
        styles = []
 
157
        scripts = []
 
158
        scripts_init = []
152
159
        if not self.allow_overlays:
153
 
            return overlays
 
160
            return (overlays, styles, scripts, scripts_init)
154
161
 
155
162
        for plugin in req.config.plugin_index[OverlayPlugin]:
156
163
            for overclass in plugin.overlays:
160
167
                #TODO: Re-factor this to look nicer
161
168
                for mplugin in overlay.plugin_scripts:
162
169
                    for path in overlay.plugin_scripts[mplugin]:
163
 
                        req.scripts.append(media_url(req, mplugin, path))
 
170
                        scripts.append(media_url(req, mplugin, path))
164
171
 
165
172
                for mplugin in overlay.plugin_styles:
166
173
                    for path in overlay.plugin_styles[mplugin]:
167
 
                        req.styles.append(media_url(req, mplugin, path))
 
174
                        styles.append(media_url(req, mplugin, path))
168
175
 
169
 
                req.scripts_init += overlay.plugin_scripts_init
 
176
                scripts_init += overlay.plugin_scripts_init
170
177
 
171
178
                overlays.append(overlay.render(req))
172
 
        return overlays
 
179
        return (overlays, styles, scripts, scripts_init)
173
180
 
174
181
    @classmethod
175
182
    def get_error_view(cls, e):
182
189
class XHTMLErrorView(XHTMLView):
183
190
    template = 'xhtmlerror.html'
184
191
 
185
 
    def __init__(self, req, exception):
186
 
        self.context = exception
187
 
 
188
192
    def populate(self, req, ctx):
 
193
        ctx['req'] = req
189
194
        ctx['exception'] = self.context
190
195
 
191
196
class XHTMLUnauthorizedView(XHTMLErrorView):