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

« back to all changes in this revision

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

Merge setup-stuff.

phpBB is gone, configuration, setup and jail building are completely redone.

Please read doc/setup/install_proc.txt, or you'll not get far.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
    def populate(self, req, ctx):
42
42
        self.plugin_styles[Plugin] = ['help.css']
43
43
 
44
 
        helpfile = generate_toc(req.plugin_index[ViewPlugin], req)
 
44
        helpfile = generate_toc(req.config.plugin_index[ViewPlugin], req)
45
45
        try:
46
46
            for path in self.paths:
47
47
                if len(path) > 0:
63
63
    template = 'toc.html'
64
64
 
65
65
    def populate(self, req, ctx):
66
 
        ctx['toc'] = generate_toc(req.plugin_index[ViewPlugin], req)
 
66
        ctx['toc'] = generate_toc(req.config.plugin_index[ViewPlugin], req)
67
67
 
68
68
 
69
69
class Plugin(ViewPlugin, MediaPlugin):