benoit@0: {# benoit@0: # Description: benoit@0: # Web Template used in Farol Design benoit@0: # benoit@0: # Authors: benoit@0: # BenoƮt Allard benoit@0: # benoit@0: # Copyright: benoit@0: # Copyright (C) 2014 Greenbone Networks GmbH benoit@0: # benoit@0: # This program is free software; you can redistribute it and/or benoit@0: # modify it under the terms of the GNU General Public License benoit@0: # as published by the Free Software Foundation; either version 2 benoit@0: # of the License, or (at your option) any later version. benoit@0: # benoit@0: # This program is distributed in the hope that it will be useful, benoit@0: # but WITHOUT ANY WARRANTY; without even the implied warranty of benoit@0: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the benoit@0: # GNU General Public License for more details. benoit@0: # benoit@0: # You should have received a copy of the GNU General Public License benoit@0: # along with this program; if not, write to the Free Software benoit@0: # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. benoit@0: -#} benoit@0: benoit@0: {% extends "base.j2" %} benoit@0: {% from "macros.j2" import textinput, textarea %} benoit@0: benoit@147: {% set active = "about" %} benoit@147: benoit@0: {% block title %}About{% endblock %} benoit@0: benoit@0: {% block content %} benoit@0: benoit@0: benoit@0:
benoit@125:

This web platform offers to review, create, edit and transform security advisories supporting various input and output formats.

benoit@125:

During your session the advisory is stored in a cache from which you should save your changes to your local file system.

benoit@1: {% if config.DEBUG and not config.DEBUG_SURE %} benoit@12:
benoit@12:

Debug Mode

benoit@12:

Your application is Running in Debug mode. While this might be a choice you made, this is not suitable for Production deployment. The console is an example of unsafe debug facilities.

benoit@12:

You can turn the Debug mode off by setting DEBUG=False in the configuration file located at the following path: {{ instance_dir }}/farol.cfg.

benoit@12:

If you want to remove this message and the DEBUG Footer alert, but still want to keep the Debug mode on, just set DEBUG_SURE=True in your configuration file.

benoit@12: {% endif %} benoit@1:
benoit@12:

Document cache

benoit@12: {% if not caching %} benoit@12:

Document cache is disabled by configuration.

benoit@12: {% elif caching == 'global' %} benoit@12:

All user share a global cache.

benoit@12: {% else %} benoit@12:

Each session have a private cache, sessions are bound to a browser session. They are usually reset when the browser is restarted.

benoit@1: {% endif %} benoit@0:
benoit@175:

Farol is Free Software (Open Source) published under GNU GPL v>=2, and is Copyright © Greenbone Networks GmbH.

benoit@176:

Development is happening on the Wald platform.

benoit@149: {% if session.id %}SessionID: {{ session.id }}{% endif %} benoit@19:

Now running: benoit@15: {% for product, version in versions %} benoit@19: {{ product }}: {{ version }}{{ ' / ' if not loop.last }} benoit@15: {% endfor %} benoit@19:

benoit@0:
benoit@0: {% endblock %}