Files @ 8a963ee7dfe8
Branch filter:

Location: FVDE/ennstatus/ennstatus/templates/root/ennstatus.html

Dennis Fink
Merged dev
{# Ënnstatus
   Copyright (C) 2015  Dennis Fink

   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/>.
#}

{% extends "base.html" %}

{% set title = "About Ënnstatus" %}

{% block content %}
  <div class="col-md-offset-1 col-md-11">
    <h2>About Ënnstatus</h2>
    <div class="col-md-6">
      <h3>API</h3>
      <p>We provide a <a href="http://json.org/">JSON</a> API for exporting the current status of our servers</p>
      <h4>Exporting all servers</h4>
      <p>Under the endpoint <a href="{{ url_for('api.export') }}">/api/export</a>, you can find an export of all our servers</p>
    </div>
    <div class="col-md-6">
      <h3>Used libraries:</h3>
      <ul>
        <li><a href="http://flask.pocoo.org/">Flask</a></li>
        <li><a href="https://github.com/mbr/flask-bootstrap">Flask-Bootstrap</a></li>
        <li><a href="http://flask-httpauth.readthedocs.org/en/latest/">Flask-HTTPAuth</a></li>
        <li><a href="http://packages.python.org/Flask-Mail/">Flask-Mail</a></li>
        <li><a href="http://https://github.com/miguelgrinberg/flask-moment/">Flask-Moment</a></li>
        <li><a href="https://flask-wtf.readthedocs.org/en/latest/">Flask-WTF</a></li>
        <li><a href="https://pypi.python.org/pypi/pygeoip/">pygeoip</a></li>
        <li><a href="https://pypi.python.org/pypi/jsonschema/">jsonschema</a></li>
        <li><a href="https://pypi.python.org/pypi/strict-rfc3339">strict-rfc3339</a></li>
        <li><a href="http://docs.python-requests.org/en/latest/">requests</a></li>
        <li><a href="https://github.com/isislovecruft/python-gnupg">python-gnupg</a></li>
        <li><a href="http://click.pocoo.org/">click</a></li>
        <li><a href="http://videojs.com/">video.js</a></li>
      </ul>
      <p>Flag icons provided by: <a href="http://www.famfamfam.com/lab/icons/flags/">famfamfam</a></p>
      <p>Other icons provided by: <a href="http://glyphicons.com/">Glyphicons</a></p>
      <p>Fork us on <a href="https://bitbucket.org/fvde/ennstatus-relaunched">Bitbucket</a></p>
    </div>
  </div>
{% endblock %}