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

Few fixes

This commit is contained in:
yalh76 2022-07-17 03:35:15 +02:00
parent 9c437f2bc4
commit 47db7b933f
7 changed files with 15 additions and 6 deletions

1
doc/DESCRIPTION.md Normal file
View file

@ -0,0 +1 @@
LimeSurvey is used to create advanced poll.

1
doc/DESCRIPTION_fr.md Normal file
View file

@ -0,0 +1 @@
Outil de création et diffusion de sondage

View file

@ -1,3 +1,5 @@
## YunoHost specific features ## YunoHost specific features
* The application is integrated with YunoHost accounts (LDAP database) * In private mode, only authorized YunoHost members can create poll, with the public mode, it's possible to create account to people with no YunoHost account.
* SSO and LDAP are configured.
* Login secured by fail2ban

5
doc/DISCLAIMER_fr.md Normal file
View file

@ -0,0 +1,5 @@
## Caractéristiques spécifiques de YunoHost
* En mode privé, seuls les membres autorisés de YunoHost peuvent créer des sondages, en mode public, il est possible de créer des comptes pour les personnes n'ayant pas de compte YunoHost.
* SSO et LDAP sont configurés.
* Login sécurisé par fail2ban

View file

@ -6,7 +6,7 @@
"en": "Create and distribute surveys", "en": "Create and distribute surveys",
"fr": "Outil de création et diffusion de sondage" "fr": "Outil de création et diffusion de sondage"
}, },
"version": "5.2.6~ynh3", "version": "5.2.6~ynh4",
"url": "https://www.limesurvey.org/", "url": "https://www.limesurvey.org/",
"upstream": { "upstream": {
"license": "GPL-2.0+", "license": "GPL-2.0+",
@ -175,7 +175,7 @@
{ {
"name": "is_admin_public", "name": "is_admin_public",
"type": "boolean", "type": "boolean",
"help": { "ask": {
"en": "In private mode, only authorized YunoHost members can create poll, with the public mode, it's possible to create account to people with no YunoHost account. ", "en": "In private mode, only authorized YunoHost members can create poll, with the public mode, it's possible to create account to people with no YunoHost account. ",
"fr": "En mode privé, seuls les utilisateurs YunoHost autorisés peuvent créer un sondage. En mode public, il est possible de créer un sondage avec un compte Limesurvey mais sans compte YunoHost." "fr": "En mode privé, seuls les utilisateurs YunoHost autorisés peuvent créer un sondage. En mode public, il est possible de créer un sondage avec un compte Limesurvey mais sans compte YunoHost."
}, },

View file

@ -12,11 +12,11 @@ YNH_PHP_VERSION="7.3"
pkg_dependencies="php${YNH_PHP_VERSION}-cli php${YNH_PHP_VERSION}-mysql php${YNH_PHP_VERSION}-imap python3-pip php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-ldap php${YNH_PHP_VERSION}-zip php${YNH_PHP_VERSION}-mbstring" pkg_dependencies="php${YNH_PHP_VERSION}-cli php${YNH_PHP_VERSION}-mysql php${YNH_PHP_VERSION}-imap python3-pip php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-ldap php${YNH_PHP_VERSION}-zip php${YNH_PHP_VERSION}-mbstring"
#================================================= #=================================================
# SPECIFIC HELPERS # PERSONAL HELPERS
#================================================= #=================================================
#================================================= #=================================================
# COMMON HELPERS # EXPERIMENTAL HELPERS
#================================================= #=================================================
# Send an email to inform the administrator # Send an email to inform the administrator

View file

@ -127,7 +127,7 @@ then
ynh_script_progression --message="Upgrading source files..." --weight=1 ynh_script_progression --message="Upgrading source files..." --weight=1
# Download, check integrity, uncompress and patch the source from app.src # Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path" --keep="$(echo $final_path/plugins/*) $final_path/application/config/config.php $final_path/upload" ynh_setup_source --dest_dir="$final_path" --keep="application/config/config.php $(echo $final_path/plugins/*) $final_path/application/config/config.php $final_path/upload"
fi fi
chmod 750 "$final_path" chmod 750 "$final_path"