2013-11-17 13:36:38 +01:00
|
|
|
#Apps
|
|
|
|
---
|
|
|
|
|
2013-12-08 14:06:16 +01:00
|
|
|
### Disponibles
|
|
|
|
|
2013-11-17 13:36:38 +01:00
|
|
|
<div class="panel-group" id="app-accordion"></div>
|
|
|
|
|
|
|
|
<script type="text/template" id="app-template">
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<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">
|
|
|
|
<p><strong>Description</strong>: {app_description}</p>
|
|
|
|
<p><strong>Dernière mise à jour (UTC)</strong>: {app_update}</p>
|
|
|
|
<p><strong>Mainteneur</strong>: {app_maintainer} <small class="text-muted">({app_mail})</small></p>
|
|
|
|
<p><strong>Git</strong>: {app_git} <small class="text-muted">({app_branch})</small></p>
|
2013-12-01 14:52:27 +01:00
|
|
|
<a href="#/app_{app_id}_fr" target="_blank" class="btn btn-default">Documentation</a>
|
2013-11-17 13:36:38 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function timeConverter(UNIX_timestamp) {
|
|
|
|
var a = new Date(UNIX_timestamp*1000);
|
|
|
|
var months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];
|
|
|
|
var year = a.getFullYear();
|
|
|
|
var month = months[a.getMonth()];
|
|
|
|
var date = a.getDate();
|
|
|
|
var hour = a.getHours();
|
|
|
|
var min = a.getMinutes();
|
2013-12-09 15:14:36 +01:00
|
|
|
if (hour < 10) { hour = '0' + hour; }
|
|
|
|
if (min < 10) { min = '0' + min; }
|
2013-11-17 13:36:38 +01:00
|
|
|
var time = date+' '+month+' '+year+' at '+hour+':'+min;
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
|
|
|
|
$(document).ready(function () {
|
2013-11-26 15:27:27 +01:00
|
|
|
$.getJSON('/list.json', function(app_list) {
|
2013-11-17 13:36:38 +01:00
|
|
|
console.log(app_list);
|
|
|
|
$.each(app_list, function(app_id, infos) {
|
2013-11-17 13:40:01 +01:00
|
|
|
if (typeof infos.manifest.description.fr === undefined) {
|
|
|
|
infos.manifest.description.fr = infos.manifest.description.en;
|
|
|
|
}
|
2013-11-17 13:36:38 +01:00
|
|
|
html = $('#app-template').html()
|
|
|
|
.replace(/{app_id}/g, app_id)
|
|
|
|
.replace(/{app_name}/g, infos.manifest.name)
|
|
|
|
.replace('{app_description}', infos.manifest.description.fr)
|
|
|
|
.replace('{app_maintainer}', infos.manifest.developer.name)
|
|
|
|
.replace('{app_mail}', infos.manifest.developer.email)
|
|
|
|
.replace('{app_git}', infos.git.url)
|
|
|
|
.replace('{app_branch}', infos.git.branch)
|
|
|
|
.replace('{app_update}', timeConverter(infos.lastUpdate));
|
|
|
|
$('#app-accordion').append(html);
|
|
|
|
$('.app_'+ app_id).attr('id', 'app_'+ app_id);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2013-12-08 14:02:00 +01:00
|
|
|
</script>
|
|
|
|
|
2013-12-08 14:06:16 +01:00
|
|
|
<br>
|
|
|
|
|
|
|
|
### En cours d'intégration
|
2013-12-08 14:02:00 +01:00
|
|
|
|
2013-12-08 14:03:32 +01:00
|
|
|
| Nom | Packageur | État d'avancement | URL du git |
|
2013-12-08 14:02:00 +01:00
|
|
|
| --- | --- | --- | --- |
|
2013-12-16 15:17:13 +01:00
|
|
|
| Firefox Sync | beudbeud | En cours | https://github.com/abeudin/ffsync_ynh |
|
2014-01-05 02:08:57 +01:00
|
|
|
| OpenID | julien | En cours | https://github.com/julienmalik/openid-simplesamlphp_ynh |
|
|
|
|
| Shaarli | julien | En cours | https://github.com/julienmalik/shaarli_ynh |
|
2013-12-25 15:40:08 +01:00
|
|
|
| OpenVPN | Kload | En test | https://github.com/Kloadut/openvpn_ynh |
|
2013-12-26 21:02:42 +01:00
|
|
|
| ZeroBin | julien | En test | https://github.com/julienmalik/zerobin_ynh |
|
2014-01-07 23:28:41 +01:00
|
|
|
| CalDAVZap | julien | Abandonné | https://github.com/julienmalik/caldavzap_ynh |
|
2014-01-07 23:00:20 +01:00
|
|
|
| AgenDAV | julien | En test | https://github.com/julienmalik/agendav_ynh |
|
2014-01-10 17:57:53 +01:00
|
|
|
| Etherpad-Lite | beudbeud | En dev | https://github.com/abeudin/etherpadlite_ynh |
|
2014-01-13 13:55:06 +01:00
|
|
|
| Jirafeau | julien | En test | https://github.com/julienmalik/jirafeau_ynh |
|
2014-01-14 23:21:14 +01:00
|
|
|
| phpMyAdmin | julien | En cours | https://github.com/julienmalik/phpmyadmin_ynh |
|
2014-01-18 12:37:01 +01:00
|
|
|
| proFTPd | beudbeud | En dev | https://github.com/abeudin/proftpd_ynh.git |
|
2013-12-08 14:02:00 +01:00
|
|
|
|
2013-12-12 18:11:03 +01:00
|
|
|
### À intégrer
|
|
|
|
|
2014-01-06 21:54:19 +01:00
|
|
|
* [Ethercalc](http://ethercalc.net/) / [Ethersheet](https://ethersheet.org/)
|
2013-12-12 18:11:03 +01:00
|
|
|
* [Sympa](http://www.sympa.org/)
|
|
|
|
* [OpenSondage](https://github.com/framasoft/OpenSondage) (framadate)
|
|
|
|
* [Poche](http://www.inthepoche.com/)
|
|
|
|
* [Mumble](http://mumble.sourceforge.net/)
|
|
|
|
* [Ghost](http://ghost.org)
|
|
|
|
* [PluXML](http://www.pluxml.org/)
|
2014-01-10 13:53:25 +01:00
|
|
|
* [Piwigo](http://piwigo.org) / [openphoto](http://theopenphotoproject.org/)
|
2014-01-05 00:51:26 +01:00
|
|
|
* [Leed](http://projet.idleman.fr/leed/)
|
|
|
|
* [Autoblog](https://github.com/mitsukarenai/Projet-Autoblog)
|
|
|
|
* [LimeSurvey](http://www.limesurvey.com/)
|
|
|
|
* [Movim](http://www.movim.eu/)
|
2014-01-06 09:05:10 +01:00
|
|
|
* [KiwiIRC](http://kiwiirc.com/)
|
2014-01-10 09:58:10 +01:00
|
|
|
* [Piwik](http://piwik.org/)
|
2014-01-10 13:53:25 +01:00
|
|
|
* [Gitlab](http://gitlab.org/)
|
|
|
|
* [FileTea](https://filetea.me)
|
|
|
|
* [10er10](https://github.com/dready92/10er10)
|
|
|
|
* [Subsonic](http://www.subsonic.org)
|
|
|
|
* [DokuWiki](https://www.dokuwiki.org/dokuwiki)
|
|
|
|
* [MediaWiki](http://www.mediawiki.org)
|
2014-01-10 17:54:01 +01:00
|
|
|
* [Sick Beard](http://sickbeard.com)
|
|
|
|
* [Yourls](http://yourls.org)
|
2014-01-16 09:52:36 +01:00
|
|
|
* [MyCryptoChat](http://mycryptochatphp.codeplex.com/)
|
2014-01-23 12:45:39 +01:00
|
|
|
* [Lychee](http://lychee.electerious.com/)
|