1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/etherpad_mypads_ynh.git synced 2024-09-03 18:36:09 +02:00

Add skin option explanation

This commit is contained in:
ericgaspar 2020-09-05 21:38:36 +02:00
parent ef3531aae5
commit 566005b735
No known key found for this signature in database
GPG key ID: 574F281483054D44
3 changed files with 11 additions and 8 deletions

View file

@ -24,8 +24,10 @@ This package will install the same plugins than [Framapad](https://framapad.org/
## Configuration
You can access two different admin panels, for Etherpad by accessing `domain.tld/admin` and for MyPads by `domain.tld/mypads/?/admin`.
You can also find a config file for Etherpad at this path `/var/www/etherpad_mypads/settings.json`.
You can access two different admin panels, for Etherpad by accessing `domain.tld/admin` and for MyPads by `domain.tld/mypads/?/admin`.
You can also find a configuration file for Etherpad at this path `/var/www/etherpad_mypads/settings.json`.
*Skin Builder* (accessible at this address `domain.tld/pad/p/test#skinvariantsbuilder`) allows you to customize the skin of your pad. It will give you a parameter to copy into your configuration file `/var/www/etherpad_mypads/settings.json`.
## Documentation
@ -36,7 +38,7 @@ You can also find a config file for Etherpad at this path `/var/www/etherpad_myp
#### Multi-users support
* Are LDAP and HTTP auth supported? **Yes**
* Are LDAP auth supported? **Yes**
* Can the app be used by multiple users? **Yes**
#### Supported architectures

View file

@ -24,8 +24,9 @@ Ce paquet installera les mêmes plugins que [Framapad](https://framapad.org/).
## Configuration
Vous pouvez accéder à deux panneaux d'administration différents, pour Etherpad en accédant à `domain.tld/admin` et pour MyPads par `domain.tld/mypads/?/admin`.
Vous pouvez également trouver le fichier de configuration pour Etherpad à `/var/www/etherpad_mypads/settings.json`.
Vous pouvez accéder à deux panneaux d'administration différents, pour Etherpad en accédant à `domain.tld/admin` et pour MyPads par `domain.tld/mypads/?/admin`. Vous pouvez également trouver le fichier de configuration pour Etherpad à `/var/www/etherpad_mypads/settings.json`.
*Skin Builder* (accessible à cette adresse `domain.tld/pad/p/test#skinvariantsbuilder`) vous permet de personnaliser l'apparence de votre pad. Il vous donnera un paramètre à copier dans votre fichier de configuration `/var/www/etherpad_mypads/settings.json`.
## Documentation
@ -36,7 +37,7 @@ Vous pouvez également trouver le fichier de configuration pour Etherpad à `/va
#### Support multi-utilisateurs
* L'authentification LDAP et HTTP est-elle prise en charge ? **Oui**
* L'authentification LDAP est-elle prise en charge ? **Oui**
* L'application peut-elle être utilisée par plusieurs utilisateurs ? **Oui**
#### Architectures supportées

View file

@ -21,8 +21,8 @@ CHECK_SIZE () { # Vérifie avant chaque backup que l'espace est suffisant
if [ $free_space -le $backup_size ]
then
ynh_print_err "Espace insuffisant pour sauvegarder $file_to_analyse."
ynh_print_err "Espace disponible: $(HUMAN_SIZE $free_space)"
ynh_die "Espace nécessaire: $(HUMAN_SIZE $backup_size)"
ynh_print_err "Espace disponible : $(HUMAN_SIZE $free_space)"
ynh_die "Espace nécessaire : $(HUMAN_SIZE $backup_size)"
fi
}