mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
Update apps_in_progress.md
This commit is contained in:
parent
199bad1cbb
commit
61ef4b8737
1 changed files with 6 additions and 3 deletions
|
@ -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 |
|
||||
| [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 |
|
||||
| [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 |
|
||||
| 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 |
|
||||
|
@ -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() {
|
||||
$(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() {
|
||||
$(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>' );
|
||||
});
|
||||
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue