Source code for tvb.interfaces.web.controllers.help.help_controller
# -*- coding: utf-8 -*-
#
#
# TheVirtualBrain-Framework Package. This package holds all Data Management, and
# Web-UI helpful to run brain-simulations. To use it, you also need to download
# TheVirtualBrain-Scientific Package (for simulators). See content of the
# documentation-folder for more details. See also http://www.thevirtualbrain.org
#
# (c) 2012-2023, Baycrest Centre for Geriatric Care ("Baycrest") and others
#
# This program is free software: you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
# You should have received a copy of the GNU General Public License along with this
# program. If not, see <http://www.gnu.org/licenses/>.
#
#
# CITATION:
# When using The Virtual Brain for scientific publications, please cite it as explained here:
# https://www.thevirtualbrain.org/tvb/zwei/neuroscience-publications
#
#
"""
Basic Help functionality.
.. moduleauthor:: Calin Pavel
"""
import cherrypy
from tvb.interfaces.web.controllers.autologging import traced
from tvb.interfaces.web.controllers.base_controller import BaseController
from tvb.interfaces.web.controllers.decorators import handle_error, using_template
from tvb.interfaces.web.controllers.help.help_config import HelpConfig
[docs]@traced
class HelpController(BaseController):
"""
This class takes care of all requester related to HELP system.
"""
def __init__(self):
BaseController.__init__(self)
self.config = HelpConfig()
[docs] @cherrypy.expose
@handle_error(redirect=False)
@using_template('overlay')
def showOnlineHelp(self, section=None, subsection=None, **data):
"""
This method generates the content of the overlay presenting Online-Help.
In case both section and subsection are missing, we'll open main OnlineHelp page.
:param section: section for which to open help
:param subsection: subsection for which to open help
"""
template_specification = self.fill_overlay_attributes(None, "TVB", "Online-Help", "help/online_help", "help")
# Add URL of the help page
template_specification["helpURL"] = self.build_path(self.config.get_help_url(section, subsection))
return self.fill_default_attributes(template_specification)