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

Merge pull request #20 from YunoHost-Apps/testing

Testing
This commit is contained in:
Éric Gaspar 2021-09-17 10:24:16 +02:00 committed by GitHub
commit b90167c1c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 23 additions and 21 deletions

View file

@ -15,9 +15,10 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
## Overview
Fast, light, user-friendly forum software
FluxBB is designed as a lighter, faster alternative to some of the traditional feature heavy forum applications. It is easy to use and has a proven track record of stability and security making it an ideal choice of forum for your website.
**Shipped version:** 1.5.11~ynh2
**Shipped version:** 1.5.11~ynh3
**Demo:** https://fluxbb.org/forums/index.php
@ -25,6 +26,11 @@ Fast, light, user-friendly forum software
![](./doc/screenshots/fluxbb_screenshot.png)
## Disclaimers / important information
### Limitations with YunoHost
HTTP and LDAP authentication are not supported.
## Documentation and resources
* Official app website: https://fluxbb.org/

View file

@ -11,9 +11,10 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
## Vue d'ensemble
Forum de discussions rapide et léger.
FluxBB is designed as a lighter, faster alternative to some of the traditional feature heavy forum applications. It is easy to use and has a proven track record of stability and security making it an ideal choice of forum for your website.
**Version incluse :** 1.5.11~ynh2
**Version incluse :** 1.5.11~ynh3
**Démo :** https://fluxbb.org/forums/index.php
@ -21,6 +22,11 @@ Forum de discussions rapide et léger.
![](./doc/screenshots/fluxbb_screenshot.png)
## Avertissements / informations importantes
### Limitations with YunoHost
HTTP and LDAP authentication are not supported.
## Documentations et ressources
* Site officiel de l'app : https://fluxbb.org/

View file

@ -3,7 +3,6 @@
domain="domain.tld"
path="/path"
admin="john"
language="en"
is_public=1
password="password_fluxbb"
port="666"
@ -25,4 +24,4 @@ Notification=none
;;; Upgrade options
; commit=6a8fea2965da32112d10a659637e3b1cd0b2c61c
name=1.5.11
manifest_arg=domain=DOMAIN&path=PATH&admin=USER&language=en&is_public=1&password=password_fluxbb&port=666&
manifest_arg=domain=DOMAIN&path=PATH&admin=USER&is_public=1&password=password_fluxbb&port=666&

1
doc/DESCRIPTION.md Normal file
View file

@ -0,0 +1 @@
FluxBB is designed as a lighter, faster alternative to some of the traditional feature heavy forum applications. It is easy to use and has a proven track record of stability and security making it an ideal choice of forum for your website.

View file

@ -0,0 +1,3 @@
### Limitations with YunoHost
HTTP and LDAP authentication are not supported.

View file

@ -4,9 +4,9 @@
"packaging_format": 1,
"description": {
"en": "Fast, light, user-friendly forum software",
"fr": "Forum de discussions rapide et léger."
"fr": "Forum de discussions rapide et léger"
},
"version": "1.5.11~ynh2",
"version": "1.5.11~ynh3",
"url": "https://fluxbb.org/",
"upstream": {
"license": "GPL-2.0-only",
@ -57,16 +57,6 @@
},
"default": true
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["en"],
"default": "en"
},
{
"name": "password",
"type": "password"

View file

@ -27,7 +27,6 @@ domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
admin=$YNH_APP_ARG_ADMIN
is_public=$YNH_APP_ARG_IS_PUBLIC
language=$YNH_APP_ARG_LANGUAGE
password=$YNH_APP_ARG_PASSWORD
app=$YNH_APP_INSTANCE_NAME
@ -51,7 +50,6 @@ ynh_script_progression --message="Storing installation settings..." --weight=1
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
ynh_app_setting_set --app=$app --key=admin --value=$admin
ynh_app_setting_set --app=$app --key=language --value=$language
#=================================================
# CREATE A MYSQL DATABASE

View file

@ -20,7 +20,6 @@ domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
admin=$(ynh_app_setting_get --app=$app --key=admin)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
language=$(ynh_app_setting_get --app=$app --key=language)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)