Mercurial > sat_legacy_website
view templates/sat_website/developers.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 %} {% block headline %}{% trans "Salut à Toi: contributing" %}{% endblock %} {% block subtext %}{% trans "Some information for people willing to help the development" %}{% endblock %} {% block main_container %} <div class="row"> <h5 class="alert alert-success"> {% trans "Report a bug" %} </h5> <div class="info"> <p>{% blocktrans with bugzilla="<a target=\"#\" href=\"http://bugs.goffi.org/describecomponents.cgi?product=Salut%20%C3%A0%20Toi\">http://bugs.goffi.org</a>" %}If you found a bug, please report it to our Bugzilla: {{bugzilla}}{% endblocktrans %}</p> </div> </div> <div class="row"> <h5 class="alert alert-success"> {% trans "Get the source" %} </h5> <div class="info"> <p>{% blocktrans with repos_sat="<a target=\"#\" href=\"http://repos.goffi.org/sat\">http://repos.goffi.org/sat</a>" repos="<a target=\"#\" href=\"http://repos.goffi.org\">http://repos.goffi.org</a>" %}You'll find the mercurial repository of SàT on {{ repos_sat }}, satellite projects are also available on {{ repos }}{% endblocktrans %}</p> <p>{% blocktrans with mercurial="<a target=\"#\" href=\"http://mercurial.selenic.com/\">Mercurial</a>" %}To clone the repository, use {{ mercurial }}: <code>hg clone http://repos.goffi.org/sat</code>. Check the wiki (see below) for installation instructions{% endblocktrans %}</p> </div> </div> <div class="row"> <h5 class="alert alert-success"> {% trans "Documentation" %} </h5> <div class="info"> <p>{% blocktrans with wiki="<a target=\"#\" href=\"http://wiki.goffi.org/wiki/sat\">http://wiki.goffi.org/wiki/sat</a>" %}The documentation is available on the wiki (feel free to improve it): {{ wiki }}{% endblocktrans %}</p> <p>{% blocktrans with developers_page="<a target=\"#\" href=\"http://wiki.goffi.org/wiki/Cat%C3%A9gorie:Documentation_d%C3%A9veloppeur\">http://wiki.goffi.org/wiki/Catégorie:Documentation_développeur</a>" %}You'll also find a dedicated section for developers: {{ developers_page }}{% endblocktrans %}</p> </div> </div> <div class="row"> <h5 class="alert alert-success"> {% trans "Contact" %} </h5> <div class="info"> <p>{% blocktrans with sat_muc="<a target=\"#\" href=\"xmpp:sat@chat.jabberfr.org?join\">sat@chat.jabberfr.org</a>" %}The best way to join us is on SàT's Jabber room: {{ sat_muc }}{% endblocktrans %}</p> <p>{% blocktrans with mailing_list="<a target=\"#\" href=\"http://lists.goffi.org/listinfo/dev\">http://lists.goffi.org/listinfo/dev</a>" %}If you need help, you can also write to our dev mailing list: {{ mailing_list }}{% endblocktrans %}</p> </div> </div> {% endblock %}