Update apps_in_progress.md

This commit is contained in:
ma.azimi@laposte.net 2015-05-31 19:07:56 +02:00 committed by YunoHost
parent 199bad1cbb
commit 61ef4b8737

View file

@ -102,7 +102,7 @@ The packagers will appreciate your remarks. If you test them and find issues, or
| [Webapp Multi](https://github.com/polytan02/webapp_multi_ynh) | polytan02 | <div class="ready"/> | https://github.com/polytan02/webapp_multi_ynh | Multi instances & multi domains web app without FTP support | | [Webapp Multi](https://github.com/polytan02/webapp_multi_ynh) | polytan02 | <div class="ready"/> | https://github.com/polytan02/webapp_multi_ynh | Multi instances & multi domains web app without FTP support |
| [Webmin](http://webmin.com) | tifred | <div class="inprogress"/> | https://github.com/drfred1981/webmin_ynh | Web-based system configuration tool | | [Webmin](http://webmin.com) | tifred | <div class="inprogress"/> | https://github.com/drfred1981/webmin_ynh | Web-based system configuration tool |
| [Wordpress multisite](http://codex.wordpress.org/Create_A_Network) | Maniack Crudelis | <div class="ready"/> | https://github.com/maniackcrudelis/wordpress_ynh | Wordpress with network support | | [Wordpress multisite](http://codex.wordpress.org/Create_A_Network) | Maniack Crudelis | <div class="ready"/> | https://github.com/maniackcrudelis/wordpress_ynh | Wordpress with network support |
| [YaCy](http://yacy.net) | Moul | <div class="inprogress"/> | https://github.com/M5oul/yacy_ynh/ | Libre and decentralized search engine | | [YaCy](http://yacy.net) | Moul | <div class="notworking"/> | https://github.com/M5oul/yacy_ynh/ | Libre and decentralized search engine |
| [Yourls](http://yourls.org/) | courgette | <div class="ready"/> | https://github.com/courgette/yourls_ynh | URL Shortening service | | [Yourls](http://yourls.org/) | courgette | <div class="ready"/> | https://github.com/courgette/yourls_ynh | URL Shortening service |
| Yunofav | chtixof | <div class="ready"/> | https://github.com/chtixof/yunofav | Page of favorite links Yunohost-styled | | Yunofav | chtixof | <div class="ready"/> | https://github.com/chtixof/yunofav | Page of favorite links Yunohost-styled |
| [Zomburl](http://cadav.re/) | courgette | <div class="inprogress"/> | https://github.com/courgette/zomburl_ynh | URL Shortening service | | [Zomburl](http://cadav.re/) | courgette | <div class="inprogress"/> | https://github.com/courgette/zomburl_ynh | URL Shortening service |
@ -135,11 +135,14 @@ $(document).ready(function () {
}); });
}); });
$(".notworking").each(function() {
$(this).html( '<a class="btn btn-small btn-danger disabled" href="#">Not working</a>' );
});
$(".inprogress").each(function() { $(".inprogress").each(function() {
$(this).html( '<a class="btn btn-small btn-warning disabled" href="#">in progress</a>' ); $(this).html( '<a class="btn btn-small btn-warning disabled" href="#">In progress</a>' );
}); });
$(".ready").each(function() { $(".ready").each(function() {
$(this).html( '<a class="btn btn-small btn-success disabled" href="#">ready</a>' ); $(this).html( '<a class="btn btn-small btn-success disabled" href="#">Ready</a>' );
}); });
}); });