mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
merge
This commit is contained in:
commit
52fba753b7
3 changed files with 10 additions and 179 deletions
2
apps.md
2
apps.md
|
@ -150,6 +150,8 @@ The packagers will appreciate your remarks. If you test them and find issues, or
|
|||
| [Yourls](http://yourls.org/) | courgette | <div class="ready"/> | https://github.com/courgette/yourls_ynh | URL Shortening service |
|
||||
| [Zomburl](http://cadav.re/) | courgette | <div class="inprogress"/> | https://github.com/courgette/zomburl_ynh | URL Shortening service |
|
||||
| [Z-Push](https://z-push.org/) | beudbeud | <div class="ready"/> | https://github.com/abeudin/z-push_ynh | ActiveSync Server |
|
||||
| [Jenkins](http://jenkins-ci.org/) | julien | <div class="inprogress"/> | https://github.com/julienmalik/jenkins_ynh | Continuous Integration platform |
|
||||
| [Wordpress multisite](http://codex.wordpress.org/Create_A_Network) | Maniack Crudelis | <div class="ready"/> | https://github.com/maniackcrudelis/wordpress_ynh | Wordpress with network support |
|
||||
|
||||
|
||||
### Wishlist
|
||||
|
|
179
appsdev_fr.md
179
appsdev_fr.md
|
@ -1,179 +0,0 @@
|
|||
#Apps Work in progress
|
||||
|
||||
<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();
|
||||
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 () {
|
||||
$.getJSON('/list.json', function(app_list) {
|
||||
// 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;
|
||||
html = $('#app-template').html()
|
||||
.replace(/{app_id}/g, app_id)
|
||||
.replace(/{app_name}/g, infos.manifest.name)
|
||||
.replace('{app_description}', infos.manifest.description.en)
|
||||
.replace('{app_git}', infos.git.url)
|
||||
.replace('{app_branch}', infos.git.branch)
|
||||
.replace('{app_update}', timeConverter(infos.lastUpdate));
|
||||
|
||||
if (infos.manifest.developer) {
|
||||
html = html
|
||||
.replace('{app_maintainer}', infos.manifest.developer.name)
|
||||
.replace('{app_mail}', infos.manifest.developer.email);
|
||||
}
|
||||
else {
|
||||
html = html
|
||||
.replace('{app_maintainer}', 'unknown')
|
||||
.replace('{app_mail}', 'unknown');
|
||||
}
|
||||
|
||||
$('#app-accordion').append(html);
|
||||
$('.app_'+ app_id).attr('id', 'app_'+ app_id);
|
||||
});
|
||||
});
|
||||
|
||||
$(".inprogress").each(function() {
|
||||
$(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>' );
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
The following applications are being worked on by a growing number of packagers.
|
||||
|
||||
They are <strong>NOT</strong> validated by the packaging team, and as such, no official support is provided for them.
|
||||
|
||||
You can test them, **at your own risk**, by installing them either through the [administration web]("/admin") interface by choosing "Install custom app", or using the [moulinette]("/moulinette"):
|
||||
```bash
|
||||
yunohost app install https://github.com/<packager>/<app_repository>
|
||||
```
|
||||
|
||||
The packagers will appreciate your remarks. If you test them and find issues, or have ideas for improvement, do not hesitate to file issues directly on their repositories project page.
|
||||
|
||||
<br>
|
||||
|
||||
| Name | Packager | State | URL repositories | Description
|
||||
| --- | --- | --- | --- | --- |
|
||||
| [Ampache](http://ampache.org/) | beudbeud | <div class="ready"/> | https://github.com/abeudin/ampache_ynh | Web based audio/video streaming |
|
||||
| [BTSync](http://www.getsync.com/) | tifred | <div class="inprogress"/> | https://github.com/drfred1981/btsync_ynh | File synchronization tool |
|
||||
| [COPS](http://cops.com) | lunarok | <div class="ready"/> | https://github.com/lunarok/cops_ynh | Frontend for Calibre library |
|
||||
| [Couchpotato](https://couchpota.to/) | Chao-Man | <div class="ready"/> | https://github.com/Chao-Man/couchpotato_ynh | PVR for Usenet and torrents |
|
||||
| Custom Webapp (Multi instance) | Maniack Crudelis | <div class="ready"/> | https://github.com/maniackcrudelis/my_webapp_ynh |Custom Webapp |
|
||||
| [EmailPoubelle](http://forge.zici.fr/p/emailpoubelle-php/) | matlink | <div class="inprogress"/> | https://github.com/matlink/emailpoubelle_ynh | Disposable email |
|
||||
| [EtherCalc](https://ethercalc.org/) | zamentur | <div class="inprogress"/> | https://github.com/zamentur/ethercalc_ynh | Web spreadsheet |
|
||||
| [Etherpad-Lite](http://etherpad.org) | beudbeud | <div class="ready"/> | https://github.com/abeudin/etherpadlite_ynh | Real-time collaborative document editing |
|
||||
| [FileBin](http://sebsauvage.net/wiki/doku.php?id=php:zerobin) | IsserTerrus | <div class="ready"/> | https://github.com/isserterrus/filebin_ynh | Online filebin |
|
||||
| [Firefox Sync](https://www.mozilla.org/en-US/firefox/sync/) | beudbeud | <div class="inprogress"/> |https://github.com/abeudin/ffsync_ynh | Firefox synchronization server |
|
||||
| [FreshRSS](http://freshrss.org/) | plopoyop | <div class="ready"/> | https://github.com/plopoyop/freshrss_ynh | RSS reader |
|
||||
| FTP support for webapp | Maniack Crudelis | <div class="ready"/> | https://github.com/maniackcrudelis/ftp_support_webapp_ynh | FTP support for webapp |
|
||||
| [HTML Tools](http://lehollandaisvolant.net/tout/tools/)| IsserTerrus | <div class="ready"/> | https://github.com/isserterrus/htmltools_ynh | HTML Mini-tools |
|
||||
| [HTPC Manager](http://htpc.io) | lunarok | <div class="ready"/> | https://github.com/lunarok/htpc_ynh | Manage your HTPC |
|
||||
| [Ghost](http://ghost.org) | julien | <div class="ready"/> | https://github.com/julienmalik/ghost_ynh | Blogging platform |
|
||||
| [GLPI + FusionInventory](http://www.glpi-project.org/?lang=en) | beudbeud | <div class="ready"/> | https://github.com/abeudin/glpi_ynh | IT And Asset managent |
|
||||
| [Jeedom](http://jeedom.fr) | lunarok | <div class="ready"/> | https://github.com/lunarok/jeedom_ynh | Home automation |
|
||||
| [Kanboard](http://kanboard.net/) | tostaki | <div class=" ready"/> | https://github.com/mbugeia/kanboard_ynh | Visual task board |
|
||||
| [KiwiIRC](http://kiwiirc.com) | julien | <div class="ready"/> | https://github.com/julienmalik/kiwiirc_ynh | Web IRC client |
|
||||
| [Leed](http://projet.idleman.fr/leed/) | Maniack Crudelis | <div class="ready"/> | https://github.com/maniackcrudelis/leed_ynh | RSS reader |
|
||||
| [LimeSurvey](http://www.limesurvey.org/en/) | zamentur | <div class="inprogress"/> | https://github.com/zamentur/limesurvey_ynh | Web survey tool |
|
||||
| [Linux Dash](http://linuxdash.afaqtariq.com/) | opi | <div class="ready"/> | https://github.com/opi/linuxdash_ynh | Monitoring web dashboard |
|
||||
| [Lychee](http://lychee.electerious.com/) | titoko | <div class="inprogress"/> | https://github.com/titoko/lychee_ynh.git | Web photo-management |
|
||||
| [Lutim](https://lut.im/) | Maniack Crudelis | <div class="inprogress"/> | https://github.com/maniackcrudelis/lutim_ynh | Anonymous image hosting service |
|
||||
| [MediaWiki](https://mediawiki.org) | ElieSauveterre | <div class="ready"/> | https://github.com/mikangali-labs/mediawiki_ynh | Wiki platform |
|
||||
| [Mumble Server](http://wiki.mumble.info/wiki/Main_Page) | matlink | <div class="inprogress"/> | https://github.com/matlink/mumbleserver_ynh | Voice chat for gaming and meeting |
|
||||
| [MyCryptoChat](https://github.com/HowTommy/mycryptochat) | mrtino | <div class="ready"/> | https://github.com/mrtino/mycryptochat_ynh | Encrypted chat rooms manager |
|
||||
| [OFBiz](https://ofbiz.apache.org/) | julien | <div class="inprogress"/> | https://github.com/nomakaFr/ofbiz_ynh | ERP |
|
||||
| [OpenID](http://openid.net/) | julien | <div class="inprogress"/> | https://github.com/julienmalik/openid-simplesamlphp_ynh | OpenID Identity server |
|
||||
| [OpenWRT](http://openwrt.org) | lunarok | <div class="ready"/> | https://github.com/lunarok/openwrt_ynh | Reverse proxy for OpenWRT installation |
|
||||
| [PHPSysinfo](https://phpsysinfo.github.io/phpsysinfo/) | lunarok | <div class="ready"/> | https://github.com/lunarok/phpsysinfo_ynh | Informations about your system |
|
||||
| [Piwigo](http://piwigo.org) | monsieur-a | <div class="ready"/> | https://github.com/monsieur-a/piwigo_ynh | Web photo gallery |
|
||||
| [Piwik](http://piwik.org) | Maniack Crudelis | <div class="ready"/> | https://github.com/maniackcrudelis/piwik_ynh | Web analytics platform |
|
||||
| [Plexmediaserver](https://plex.tv/) | Chao-Man | <div class="ready"/> | https://github.com/Chao-Man/plexmediaserver_ynh | PlexMediaServer |
|
||||
| [PluXml](http://www.pluxml.org/) | matlink | <div class="inprogress"/> | https://github.com/matlink/pluxml_ynh | Blogging platform |
|
||||
| [proFTPd](http://www.proftpd.org/) | beudbeud | <div class="inprogress"/> | https://github.com/abeudin/proftpd_ynh.git | FTP server |
|
||||
| [Pydio](http://pyd.io) | julienmalik | <div class="inprogress"/> | https://github.com/julienmalik/pydio_ynh | File sharing and synchronization |
|
||||
| [Radicale](http://radicale.org/) | beudbeud | <div class="ready"/> | https://github.com/abeudin/radicale_ynh.git | Caldav & Carddav Server |
|
||||
| [Sabnzbd](http://http://sabnzbd.org/) | Chao-Man | <div class="ready"/> | https://github.com/Chao-Man/sabnzbd_ynh | Automated Usenet download |
|
||||
| [SCM-Manager](https://www.scm-manager.org/) | tifred | <div class="inprogress"/> | https://github.com/drfred1981/scm-manager_ynh | Share and manage repositories over HTTP |
|
||||
| [Shaarli](http://sebsauvage.net/wiki/doku.php?id=php:shaarli) | julien | <div class="inprogress"/> | https://github.com/julienmalik/shaarli_ynh | Delicious clone |
|
||||
| [Sickbeard](http://sickbeard.com) | Chao-Man | <div class="ready"/> | https://github.com/Chao-Man/sickbeard_ynh | PVR and episode guide that downloads and manages all your TV shows |
|
||||
| [Subsonic](http://subsonic.org) | tifred | <div class="inprogress"/> | https://github.com/drfred1981/subsonic_ynh | Web-based media server |
|
||||
| [Webmin](http://webmin.com) | tifred | <div class="inprogress"/> | https://github.com/drfred1981/webmin_ynh | Web-based system configuration tool |
|
||||
| [Yourls](http://yourls.org/) | courgette | <div class="ready"/> | https://github.com/courgette/yourls_ynh | URL Shortening service |
|
||||
| [Zomburl](http://cadav.re/) | courgette | <div class="inprogress"/> | https://github.com/courgette/zomburl_ynh | URL Shortening service |
|
||||
| [Jenkins](http://jenkins-ci.org/) | julien | <div class="inprogress"/> | https://github.com/julienmalik/jenkins_ynh | Continuous Integration platform |
|
||||
|
||||
|
||||
### Wishlist
|
||||
|
||||
The following list is a compiled wishlist of applications that would be nice-to-have.
|
||||
|
||||
[Edit this list](/write_documentation) to add your own favorite app, or learn to [package apps](/packaging_apps) yourself.
|
||||
|
||||
* [PPTP VPN](https://packages.debian.org/sv/squeeze/pptpd)
|
||||
* [Ethersheet](https://ethersheet.org/)
|
||||
* [Autoblog](https://github.com/mitsukarenai/Projet-Autoblog)
|
||||
* [Movim](http://www.movim.eu/)
|
||||
* [GitLab](http://gitlab.org/)
|
||||
* [FileTea](https://filetea.me)
|
||||
* [10er10](https://github.com/dready92/10er10)
|
||||
* [PHProxy](http://sourceforge.net/projects/poxy/)
|
||||
* [Jitsi Meet](https://github.com/jitsi/jitsi-meet)
|
||||
* [Sympa](http://www.sympa.org/)
|
||||
* [Mailman](https://www.gnu.org/software/mailman/)
|
||||
* [PHPList](http://www.phplist.com/)
|
||||
* [Shleuder](http://schleuder2.nadir.org/)
|
||||
* [Diaspora](https://diasporafoundation.org/)
|
||||
* [Twister](http://twister.net.co/)
|
||||
* [MediaGoblin](http://mediagoblin.org/)
|
||||
* [CumulusClips](http://cumulusclips.org/)
|
||||
* [RainLoop](http://rainloop.net/)
|
||||
* [Mailpile](https://www.mailpile.is)
|
||||
* [ZNC](http://wiki.znc.in/ZNC)
|
||||
* [Tor relay](https://www.torproject.org/docs/tor-doc-relay.html.en)
|
||||
* [uMap](https://umap.openstreetmap.fr/en/)
|
||||
* [Headphones](https://github.com/rembo10/headphones)
|
||||
* [MediaCrush](https://mediacru.sh/)
|
||||
* [jsFiddle](http://jsbin.com/help/2-second-setup)
|
||||
* [remotestorage-server](http://remotestorage.io/provide/)
|
||||
* [miniflux](https://github.com/fguillot/miniflux)
|
||||
* [Zotero](https://www.zotero.org)
|
||||
* [Browsepass](http://techualization.blogspot.de/2013/09/introducing-browsepass-keepass-on-web.html)
|
||||
* [Respawn 2.0](https://github.com/broncowdd/respawn)
|
||||
* [Total Respawn](https://github.com/broncowdd/TotalRespawn)
|
||||
* [Fail2web](https://github.com/Sean-Der/fail2web)
|
||||
* [Ajenti](http://ajenti.org/)
|
||||
* [img.bi](https://img.bi/)
|
||||
* [Laverna](https://laverna.cc/)
|
||||
* [Streisand](https://github.com/jlund/streisand)
|
||||
* [Scribbleton](https://scribbleton.com/)
|
||||
* [webSync](http://furier.github.io/websync/)
|
||||
* [adminer](http://www.adminer.org/)
|
||||
* [Inbox](https://www.inboxapp.com/)
|
||||
* [Pulse](https://ind.ie/pulse/)
|
||||
* [Kune](https://en.wikipedia.org/wiki/Kune_%28software%29)
|
||||
* [racktables](http://racktables.org/)
|
||||
* [Known](https://withknown.com/)
|
||||
* [Mopidy](https://www.mopidy.com/)
|
8
artworks.md
Normal file
8
artworks.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
#Art Works
|
||||
Black and white YunoHost png logo done by ToZz (400 × 400 px):
|
||||
|
||||
<a href="https://yunohost.org/images/Black_YunoHost_logo.png"><img src="https://yunohost.org/images/Black_YunoHost_logo.png" width=220></a><a href="https://yunohost.org/images/White_YunoHost_logo.png"><img src="https://yunohost.org/images/White_YunoHost_logo.png" width=220></a>
|
||||
|
||||
Clic to download.
|
||||
|
||||
TODO: add licence and .svg images.
|
Loading…
Add table
Reference in a new issue