2014-06-04 14:28:57 +02:00
|
|
|
#Apps <img src="https://yunohost.org/images/roundcube.png"><img src="https://yunohost.org/images/ttrss.png"><img src="https://yunohost.org/images/wordpress.png"><img src="https://yunohost.org/images/transmission.png"><img src="https://yunohost.org/images/jappix.png">
|
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>
|
2014-02-22 16:03:43 +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) {
|
2014-04-06 10:32:01 +02:00
|
|
|
if (typeof infos.manifest.description.fr === 'undefined') {
|
2013-11-17 13:40:01 +01:00
|
|
|
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 |
|
2014-01-10 17:57:53 +01:00
|
|
|
| Etherpad-Lite | beudbeud | En dev | https://github.com/abeudin/etherpadlite_ynh |
|
2014-01-18 12:37:01 +01:00
|
|
|
| proFTPd | beudbeud | En dev | https://github.com/abeudin/proftpd_ynh.git |
|
2014-01-30 19:42:50 +01:00
|
|
|
| Lychee | titoko | En dev | https://github.com/titoko/lychee_ynh.git |
|
2014-03-21 09:36:52 +01:00
|
|
|
| Baikal | aquaxp | En dev | https://github.com/aquaxp/baikal_ynh |
|
2014-05-13 10:57:16 +02:00
|
|
|
| WebApp + FTP | kload | En test | https://github.com/Kloadut/my_webapp_ynh |
|
2014-05-30 15:47:12 +02:00
|
|
|
| MyCryptoChat | mrtino | En test | https://github.com/mrtino/mycryptochat_ynh |
|
2014-05-28 10:11:01 +02:00
|
|
|
| DokuWiki | opi | En test | https://github.com/opi/dokuwiki_ynh |
|
2014-05-28 10:14:59 +02:00
|
|
|
| Wallabag | beudbeud | En test | https://github.com/abeudin/wallabag_ynh |
|
|
|
|
| Searx | beudbeud | En test | https://github.com/abeudin/searx_ynh |
|
2014-05-30 15:47:12 +02:00
|
|
|
| MediaWiki | kload | En test | https://github.com/kloadut/mediawiki_ynh |
|
2014-06-02 15:06:32 +02:00
|
|
|
| Linux Dash | opi | en test | https://github.com/opi/linuxdash_ynh |
|
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)
|
|
|
|
* [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)
|
2014-01-10 17:54:01 +01:00
|
|
|
* [Sick Beard](http://sickbeard.com)
|
|
|
|
* [Yourls](http://yourls.org)
|
2014-02-06 18:28:34 +01:00
|
|
|
* [Cops](http://blog.slucas.fr/fr/oss/calibre-opds-php-server)
|
|
|
|
* [PHProxy](http://sourceforge.net/projects/poxy/)
|
2014-03-04 09:16:17 +01:00
|
|
|
* [GPodder](https://gpodder.net)
|
2014-02-06 18:28:34 +01:00
|
|
|
|