diff --git a/README.md b/README.md index 550ec21..92b87ce 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/README_fr.md b/README_fr.md index 50b6324..61bbc51 100644 --- a/README_fr.md +++ b/README_fr.md @@ -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 diff --git a/scripts/_common.sh b/scripts/_common.sh index fdf847f..5d01975 100755 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -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 }