1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/paheko_ynh.git synced 2024-09-03 19:56:22 +02:00
* add permission auth_header api

* Auto-update READMEs

* upgrade v 1.3.9, syntax in ADMIN.md, try debug api with unprotected

* Auto-update READMEs

* try debug api

* try debug api

* try debug api

* comment yunohost_panel.conf.inc, no sso in this app

* last stable version 1.3.10

* Auto-update READMEs

* Auto-update READMEs

* change variable __DIR__ to __INSTALL_DIR__ to prevent undefined varible and failed upgrade

* Update config.local.user.php

a little change syntax

---------

Co-authored-by: yunohost-bot <yunohost@yunohost.org>
This commit is contained in:
Robles Rodolphe 2024-06-15 16:05:52 +02:00 committed by GitHub
parent f57e73a4c3
commit 1072dd60b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 56 additions and 18 deletions

View file

@ -1,7 +1,7 @@
# All available README files by language
- [Read the README in English](README.md)
- [Lee el README en español](README_es.md)
- [Lea el README en español](README_es.md)
- [Irakurri README euskaraz](README_eu.md)
- [Lire le README en français](README_fr.md)
- [Le o README en galego](README_gl.md)

View file

@ -19,7 +19,7 @@ It shall NOT be edited by hand.
Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) is software for associative management. It is the tool of choice for managing an association, a sports club, an NGO, etc. It is designed to meet the needs of a small to medium-sized structure: management of members, accounting, website, note-taking in meetings, archiving and sharing of the association's operating documents, discussion between members.
**Shipped version:** 1.3.9~ynh1
**Shipped version:** 1.3.10~ynh1
**Demo:** <https://paheko.cloud/essai/>

View file

@ -19,7 +19,7 @@ No se debe editar a mano.
Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) is software for associative management. It is the tool of choice for managing an association, a sports club, an NGO, etc. It is designed to meet the needs of a small to medium-sized structure: management of members, accounting, website, note-taking in meetings, archiving and sharing of the association's operating documents, discussion between members.
**Versión actual:** 1.3.9~ynh1
**Versión actual:** 1.3.10~ynh1
**Demo:** <https://paheko.cloud/essai/>

View file

@ -19,7 +19,7 @@ EZ editatu eskuz.
Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) is software for associative management. It is the tool of choice for managing an association, a sports club, an NGO, etc. It is designed to meet the needs of a small to medium-sized structure: management of members, accounting, website, note-taking in meetings, archiving and sharing of the association's operating documents, discussion between members.
**Paketatutako bertsioa:** 1.3.9~ynh1
**Paketatutako bertsioa:** 1.3.10~ynh1
**Demoa:** <https://paheko.cloud/essai/>

View file

@ -19,7 +19,7 @@ Il NE doit PAS être modifié à la main.
Paheko (mot de la langue Māori qui signifie « coopérer », illustrant le but du logiciel : améliorer ensemble le quotidien de la gestion d'une association) est un logiciel de gestion associative. Il est l'outil de prédilection pour gérer une association, un club sportif, une ONG, etc. Il est conçu pour répondre aux besoins d'une structure de petite à moyenne taille : gestion des adhérents, comptabilité, site web, prise de notes en réunion, archivage et partage des documents de fonctionnement de l'association, discussion entre adhérents.
**Version incluse:** 1.3.9~ynh1
**Version incluse:** 1.3.10~ynh1
**Démo:** <https://paheko.cloud/essai/>

View file

@ -19,7 +19,7 @@ NON debe editarse manualmente.
Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) is software for associative management. It is the tool of choice for managing an association, a sports club, an NGO, etc. It is designed to meet the needs of a small to medium-sized structure: management of members, accounting, website, note-taking in meetings, archiving and sharing of the association's operating documents, discussion between members.
**Versión proporcionada:** 1.3.9~ynh1
**Versión proporcionada:** 1.3.10~ynh1
**Demo:** <https://paheko.cloud/essai/>

View file

@ -19,7 +19,7 @@
Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) is software for associative management. It is the tool of choice for managing an association, a sports club, an NGO, etc. It is designed to meet the needs of a small to medium-sized structure: management of members, accounting, website, note-taking in meetings, archiving and sharing of the association's operating documents, discussion between members.
**分发版本:** 1.3.9~ynh1
**分发版本:** 1.3.10~ynh1
**演示:** <https://paheko.cloud/essai/>

View file

@ -306,6 +306,18 @@ const WWW_URL = 'https://__DOMAIN____PATH__/';
//const ENABLE_TECH_DETAILS = true;
/**
* Activation du profilage (option de développement)
*
* Si cette option est activée, une barre sera affichée en bas des pages
* indiquant les performances du code, des requêtes SQL, et la liste
* des requêtes exécutées.
*
* Défaut : false
* @var bool
*/
//const ENABLE_PROFILER = true;
/**
* Activation du log SQL (option de développement)
*
@ -327,7 +339,6 @@ const WWW_URL = 'https://__DOMAIN____PATH__/';
*/
// const SQL_DEBUG = '__INSTALL_DIR__/debug_sql.sqlite';
/**
/**
* Mode de journalisation de SQLite
*
@ -361,15 +372,39 @@ const SQLITE_JOURNAL_MODE = 'WAL';
* Si cette constante est renseignée par un fichier texte, *TOUTES* les requêtes HTTP
* ainsi que leur contenu y sera enregistré.
*
* C'est surtout utile pour débuguer les problèmes de WebDAV par exemple.
*
* ATTENTION : cela signifie que des informations personnelles (mot de passe etc.)
* peuvent se retrouver dans le log. Ne pas utiliser à moins de tester en développement.
*
* Default : null (= désactivé)
* @var string|null
*/
// const HTTP_LOG_FILE = '__INSTALL_DIR__/http.log';
// const HTTP_LOG_FILE = __INSTALL_DIR__ . '/http.log';
/**
* Activation du log WOPI
*
* Si cette constante est renseignée par un fichier texte, les requêtes HTTP reçues par
* le serveur WOPI seront enregistrées dans ce fichier.
*
* C'est surtout utile pour débuguer les problèmes de WebDAV par exemple.
*
* Default : null (= désactivé)
* @var string|null
*/
// const WOPI_LOG_FILE = __INSTALL_DIR__ . '/wopi.log';
/**
* Activation du log WebDAV
*
* Si cette constante est renseignée par un fichier texte, les requêtes HTTP reçues par
* le serveur WebDAV seront enregistrées dans ce fichier.
*
* C'est surtout utile pour débuguer les problèmes de WebDAV par exemple.
*
* Default : null (= désactivé)
* @var string|null
*/
// const WEBDAV_LOG_FILE = __INSTALL_DIR__ . '/webdav.log';
/**
* Activer la possibilité de faire une mise à jour semi-automatisée
@ -467,10 +502,10 @@ const USE_CRON = true;
/**
* Hôte du serveur SMTP, mettre à false (défaut) pour utiliser la fonction
* Hôte du serveur SMTP, mettre à null (défaut) pour utiliser la fonction
* mail() de PHP
*
* Défaut : false
* Défaut : null
*/
//const SMTP_HOST = '__DOMAIN__';
@ -530,7 +565,7 @@ const USE_CRON = true;
* @var null|string
*/
//const SMTP_HELO_HOSTNAME = '__DOMAIN__';
//const SMTP_HELO_HOSTNAME = 'mail.domain.tld';
/**
* Adresse e-mail destinée à recevoir les erreurs de mail

View file

@ -15,7 +15,7 @@ namespace Paheko;
* Hôte du serveur SMTP, mettre à false (défaut) pour utiliser la fonction
* mail() de PHP
*
* Défaut : false
* Défaut : null
*/
const SMTP_HOST = '__DOMAIN__';

View file

@ -5,7 +5,9 @@ name = "Paheko"
description.en = "Association management software"
description.fr = "Logiciel de gestion d'association"
version = "1.3.9~ynh1"
version = "1.3.10~ynh1"
maintainers = ["rodinux"]
@ -36,8 +38,9 @@ ram.runtime = "50M"
[resources]
[resources.sources.main]
url = "https://fossil.kd2.org/paheko/uv/paheko-1.3.9.tar.gz"
sha256 = "8629361370098febb8b942f5e6a9a149614c5676cad6cc858b90af92a8fc8682"
url = "https://fossil.kd2.org/paheko/uv/paheko-1.3.10.tar.gz"
sha256 = "8065158e2841dcd7d64dac637da314106a40ee0e1d0121c2e42edeb21ea9007a"
[resources.system_user]
allow_email = true