2016-03-22 15:45:04 +01:00
# Apps en cours
< img src = "/images/freshrss_logo.png" width = 40 >
< img src = "/images/Icons_mumble.svg" width = 40 >
< img src = "/images/Lutim_small.png" width = 30 >
< img src = "/images/PluXml-logo_transparent.png" width = 60 >
< img src = "/images/rainloop_logo.png" width = 40 >
< img src = "/images/Etherpad.svg" width = 40 >
< img src = "/images/gogs.png" width = 40 >
< img src = "/images/movim_logo.png" width = 40 >
2015-04-12 16:30:42 +02:00
< a class = "btn btn-lg btn-default" href = "/apps_fr" > Apps officielles< / a >
2015-10-04 01:21:52 +02:00
< a class = "btn btn-lg btn-default disabled" href = "/apps_in_progress_fr" > Apps en cours< / a >
< a class = "btn btn-lg btn-default" href = "/apps_wishlist_fr" > Apps souhaitées< / a >
2015-04-12 16:30:42 +02:00
2016-01-30 22:00:44 +01:00
De plus en plus d’ applications sont mises à disposition par les packagers.
2016-03-30 14:32:52 +02:00
< div class = "alert alert-danger" > Ces applications **n’ ont pas** été validées par l’ équipe YunoHost et **ne sont pas** officiellement prises en charge.< br > Vous pouvez les tester et les utiliser à **vos risques et périls** .
2015-05-26 16:05:41 +02:00
< / div >
2015-04-12 16:30:42 +02:00
2016-01-30 22:00:44 +01:00
Elles sont installables avec l’ [interface web d’ administration](/admin) ou avec la moulinette :
2015-04-12 16:30:42 +02:00
```bash
yunohost app install https://github.com/< packageur > /< dépôt_app >
```
2015-10-05 23:52:45 +02:00
N’ hésitez pas à vous créer un compte GitHub pour faire part de vos remarques aux packagers (sous forme d’ « issues ») ou à leur proposer des améliorations (sous forme de « pull requests »).
2015-04-12 16:30:42 +02:00
2015-10-05 12:39:53 +02:00
< div class = "clearfix" style = "margin-bottom: 1em;" >
2016-05-26 22:06:50 +02:00
< div class = "btn btn-default btn-xs pull-right" data-toggle = "collapse" data-target = "#app-accordion2-notworking .collapse" > Déplier cassées< / div >
< div class = "btn btn-default btn-xs pull-right" data-toggle = "collapse" data-target = "#app-accordion2-inprogress .collapse" > Déplier en cours< / div >
< div class = "btn btn-default btn-xs pull-right" data-toggle = "collapse" data-target = "#app-accordion2-working .collapse" > Déplier fonctionnelles< / div >
2015-10-05 12:39:53 +02:00
< / div >
2015-04-12 16:30:42 +02:00
2016-04-17 06:26:56 +02:00
< h2 > Applications dites fonctionnelles< / h2 >
2016-10-28 18:32:08 +02:00
< p > < b style = "color: red" > Remarque : c'est le mainteneur de l'application qui la décrit comme fonctionnelle, pas l'équipe de YunoHost. Installez la à vos risques et péril et soyez conscient que ne fournirons aucune assistance dessus.< / b > < / p >
2016-04-17 06:26:56 +02:00
< div class = "panel-group" id = "app-accordion2-working" > < / div >
< h2 > Applications en cours de développement< / h2 >
< p > Il s'agit d'application < b > pas encore fonctionnelles< / b > mais en cours de développement, nous vous < b > déconseillons fortement de les installer< / b > sauf si vous savez ce que vous faites.< / p >
< div class = "panel-group" id = "app-accordion2-inprogress" > < / div >
< h2 > Applications cassées< / h2 >
< p > Ne les installez < b > PAS< / b > , elles sont là pour référence le temps d'être réparées.< / p >
< div class = "panel-group" id = "app-accordion2-notworking" > < / div >
2015-10-04 01:21:52 +02:00
< script type = "text/template" id = "app-template2" >
2016-04-17 06:27:32 +02:00
< div class = "panel panel-default panel-{app_state_bootstrap}" >
2015-10-04 01:21:52 +02:00
< div class = "panel-heading" >
< div class = "panel-title" >
< a data-toggle = "collapse" data-parent = "#app-accordion" href = "#app_{app_id}" > {app_name} < em > < small > ({app_id})< / small > < / em > < / a >
< / div >
< / div >
< div class = "panel-collapse collapse app_{app_id}" >
< div class = "panel-body" >
2015-10-04 14:50:24 +02:00
< p > < strong > Description< / strong > : {app_description}< / p >
< p > < strong > Dernière mise à jour (UTC)< / strong > : {app_update}< / p >
2017-02-01 12:17:22 +01:00
< p > < strong > Niveau< / strong > : {app_level}< / p >
2015-10-04 14:50:24 +02:00
< p > < strong > Mainteneur< / strong > : {app_maintainer} < small class = "text-muted" > ({app_mail})< / small > < / p >
< p > < strong > Dépôt git< / strong > : < a href = "{app_git}" target = "_blank" > {app_git}< / a > < small class = "text-muted" > ({app_branch})< / small > < / p >
2015-10-05 13:00:37 +02:00
< p > < strong > Licence de l’ application< / strong > : {app_license}< / p >
2015-10-04 01:21:52 +02:00
< / div >
< / div >
< / script >
< script >
function timeConverter(UNIX_timestamp) {
var a = new Date(UNIX_timestamp*1000);
2015-10-05 23:52:45 +02:00
var months = ['janvier','février','mars','avril','mai','juin','juillet','août','septembre','octobre','novembre','décembre'];
2015-10-04 01:21:52 +02:00
var year = a.getFullYear();
var month = months[a.getMonth()];
var date = a.getDate();
var hour = a.getHours();
var min = a.getMinutes();
if (hour < 10 ) { hour = '0' + hour ; }
if (min < 10 ) { min = '0' + min ; }
var time = date+' '+month+' '+year+' at '+hour+':'+min;
return time;
}
$(document).ready(function () {
2016-03-23 08:46:09 +01:00
$.getJSON('https://app.yunohost.org/community.json', function(app_list) {
2015-10-04 01:21:52 +02:00
// Cast as array
var app_list = $.map(app_list, function(el) { return el; });
// Sort alpha
app_list.sort(function(a, b){
if (a.manifest.id > b.manifest.id) {return 1;}
else if (a.manifest.id < b.manifest.id ) { return -1 ; }
return 0;
});
$.each(app_list, function(k, infos) {
app_id = infos.manifest.id;
if (typeof infos.manifest.description.fr === 'undefined') {
infos.manifest.description.fr = infos.manifest.description.en;
}
2016-04-17 06:27:32 +02:00
if (infos.state === "working") {
2016-04-18 23:28:19 +02:00
app_state_bootstrap = "default";
2016-04-17 06:27:32 +02:00
} else if (infos.state === "inprogress") {
app_state_bootstrap = "warning";
} else if (infos.state === "notworking") {
app_state_bootstrap = "danger";
}
2015-10-04 01:21:52 +02:00
html = $('#app-template2').html()
.replace(/{app_id}/g, app_id)
.replace(/{app_name}/g, infos.manifest.name)
.replace('{app_description}', infos.manifest.description.fr)
.replace(/{app_git}/g, infos.git.url)
.replace('{app_branch}', infos.git.branch)
2017-02-01 13:28:18 +01:00
.replace('{app_level}', infos.level)
2015-10-04 01:21:52 +02:00
.replace('{app_update}', timeConverter(infos.lastUpdate))
2015-10-05 12:38:27 +02:00
.replace('{app_state}', infos.state)
2016-04-17 06:27:32 +02:00
.replace('{app_state_bootstrap}', app_state_bootstrap)
2015-10-05 12:38:27 +02:00
.replace('{app_license}', infos.manifest.license);
2015-10-04 01:21:52 +02:00
if (infos.manifest.developer) {
html = html
.replace('{app_maintainer}', infos.manifest.developer.name)
.replace('{app_mail}', infos.manifest.developer.email);
}
if (infos.manifest.maintainer) {
html = html
.replace('{app_maintainer}', infos.manifest.maintainer.name)
.replace('{app_mail}', infos.manifest.maintainer.email);
}
2016-04-17 06:26:56 +02:00
$('#app-accordion2-' + infos.state).append(html);
2015-10-04 01:21:52 +02:00
$('.app_'+ app_id).attr('id', 'app_'+ app_id);
});
});
});
< / script >