view templates/sat_website/downloads.html @ 60:0d20fb28c32e

many small changes: - set opacity 0.85 to libervia screenshot on the main page - remove videos from the repository (stored on external ftp) - more details in the README concerning the i18n - settings can be overriden by an external file (for the stats) - add in basic features.html a button to experimental features - add a link to the SàT MUC in downloads section - add link to bugzilla + improve other links in dev/community - add + symbol for projects using standard blogging system - add ~ symbol for projects being no communication tool - save subscription form results to a text file - update press.py and links.py
author souliane <souliane@mailoo.org>
date Fri, 15 May 2015 17:15:40 +0200
parents 3b4ba14d1e26
children
line wrap: on
line source

{% extends "sat_website/category.html" %}

{% comment %}
SàT website: Salut à Toi's presentation website
Copyright (C) 2012  Jérôme Poisson (goffi@goffi.org)

This file is part of SàT website.

SàT website is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Foobar 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 Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with Foobar.  If not, see <http://www.gnu.org/licenses/>.
{% endcomment %}

{% load i18n %}
{% load staticfiles %}
{% load utils %}

{% block headline %}{% trans "Downloads" %}{% endblock %}
{% block subtext %}{% trans "The archives containing the source code" %}{% endblock %}
{% block main_container %}

<div class="row">
    <h5 class="alert alert-info">
        {% trans "Information" %}
    </h5>
    <div class="info">
        <p>{% trans "This page allows you to download SàT and its related projects source code. There is not (yet) an  installer to double click to make it work out of the box." %}</p>
        <p>{% trans "We are thinking about a way to allow everybody to easily install SàT at home, but for now it will seem difficult to the persons who are not familiar with GNU/Linux operating systems. For the Windows and MacOS users, the best way to test SàT for now is to visit our demonstration website running Libervia." %}</p>
        <p><a class="btn btn-default" target="#" href="{{ libervia_demo_url }}" role="button">{% trans "Libervia demo" %}</a></p>
    </div>
</div>
<div class="row">
	<h5 class="alert alert-success">
	    {% trans "Latest development versions" %}
	</h5>
    <div class="info row">
		{% for project, infos in projects_infos.items %}
	        <div class='col-md-6'>
	            <a href="{{ infos.0 }}">{% blocktrans with project=project version=infos.1 %}Download {{ project }} {{ version }}{% endblocktrans %}</a>
	        </div>
	        <div class='col-md-6'>
	            {{ infos.2 }}
	        </div>
		{% endfor %}
    </div>
    <div class="info">
        <p>{% trans "When not trivial (e.g. sat_media just needs to be extracted somewhere), the installation procedure is described in the INSTALL file that you will find in the package." %}</p>
        <p>{% blocktrans with sat_muc="<a target=\"#\" href=\"xmpp:sat@chat.jabberfr.org?join\">sat@chat.jabberfr.org</a>" %}You are also welcome in our multi-user chat room: {{ sat_muc }}.{% endblocktrans %}</p>
</div>
<div class="row">
    <h5 class="alert alert-success">
        {% trans "Other sources of installation" %}
    </h5>
    <div class="info">
        <p>{% trans "To ease the procedure, you can also install the last SàT packages from PyPI, the Python Package Index." %}</p>
        <p><a class="btn btn-default" target="#" href="https://pypi.python.org/pypi/sat" role="button">{% trans "Visit PyPI" %}</a></p>
        <p>{% trans "Thanks to the maintainers of SàT packages, you might even find some really-easy-to-install packages in your distribution repositories!" %}</p>
        <p><a class="btn btn-default" target="#" href="https://packages.debian.org/source/sid/salutatoi" role="button">{% trans "Packages in Debian sid" %}</a></p>
        <p>{% trans "But after all... the easiest is probably to run the Docker images :-)" %}</p>
        <p><a class="btn btn-default" target="#" href="http://wiki.goffi.org/wiki/Docker/en" role="button">{% trans "Docker installation" %}</a></p>
        <p>{% trans "Some complementary information are given on the wiki." %}</p>
		<p><a class="btn btn-default" target="#" href="http://wiki.goffi.org/wiki/Salut_%C3%A0_Toi/en#Latest_release" role="button">{% trans "Visit the wiki" %}</a></p>
        </p>
    </div>
</div>
{% endblock %}