From e2c91f2443abb323f7d06d922bc1b6ba95cfe7f8 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 28 Aug 2021 19:24:32 +0200 Subject: [PATCH 1/3] Fix --- doc/DESCRIPTION.md | 2 ++ doc/DISCLAIMER.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/DESCRIPTION.md b/doc/DESCRIPTION.md index 8afa31e..93368cd 100644 --- a/doc/DESCRIPTION.md +++ b/doc/DESCRIPTION.md @@ -1,3 +1,5 @@ +The IFM is a web-based filemanager, which comes as a single file solution using HTML5, CSS3, JavaScript and PHP. + ### features - create/edit files and directories diff --git a/doc/DISCLAIMER.md b/doc/DISCLAIMER.md index 3c26e29..8b81fd2 100644 --- a/doc/DISCLAIMER.md +++ b/doc/DISCLAIMER.md @@ -1 +1 @@ -The IFM is usually locked to it's own directory, so you are not able to go above. You can change that by setting the root_dir in the scripts [configuration](https://github.com/misterunknown/ifm/wiki/Configuration). \ No newline at end of file +The IFM is usually locked to it's own directory (`/home/yunohost.app.ifm`), so you are not able to go above. You can change that by setting `env[IFM_ROOT_DIR] = /home/yunohost.app.ifm` in the PHP config `/etc/php/7.3/fpm/pool.d/ifm.conf` L.434 with this [documentation](https://github.com/misterunknown/ifm/wiki/Configuration). \ No newline at end of file From be44876281370a4940fc44323ee3a3f26d588b3a Mon Sep 17 00:00:00 2001 From: Yunohost-Bot <> Date: Sat, 28 Aug 2021 17:24:45 +0000 Subject: [PATCH 2/3] Auto-update README --- README.md | 4 +++- README_fr.md | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 663cddc..95610df 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,8 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in ## Overview +The IFM is a web-based filemanager, which comes as a single file solution using HTML5, CSS3, JavaScript and PHP. + ### features - create/edit files and directories @@ -37,7 +39,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in ## Disclaimers / important information -The IFM is usually locked to it's own directory, so you are not able to go above. You can change that by setting the root_dir in the scripts [configuration](https://github.com/misterunknown/ifm/wiki/Configuration). +The IFM is usually locked to it's own directory (`/home/yunohost.app.ifm`), so you are not able to go above. You can change that by setting `env[IFM_ROOT_DIR] = /home/yunohost.app.ifm` in the PHP config `/etc/php/7.3/fpm/pool.d/ifm.conf` L.434 with this [documentation](https://github.com/misterunknown/ifm/wiki/Configuration). ## Documentation and resources * Official app website: https://github.com/misterunknown/ifm diff --git a/README_fr.md b/README_fr.md index ce6d62b..97ec1c6 100644 --- a/README_fr.md +++ b/README_fr.md @@ -11,6 +11,8 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour ## Vue d'ensemble +The IFM is a web-based filemanager, which comes as a single file solution using HTML5, CSS3, JavaScript and PHP. + ### features - create/edit files and directories @@ -33,7 +35,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour ## Avertissements / informations importantes -The IFM is usually locked to it's own directory, so you are not able to go above. You can change that by setting the root_dir in the scripts [configuration](https://github.com/misterunknown/ifm/wiki/Configuration). +The IFM is usually locked to it's own directory (`/home/yunohost.app.ifm`), so you are not able to go above. You can change that by setting `env[IFM_ROOT_DIR] = /home/yunohost.app.ifm` in the PHP config `/etc/php/7.3/fpm/pool.d/ifm.conf` L.434 with this [documentation](https://github.com/misterunknown/ifm/wiki/Configuration). ## Documentations et ressources * Site officiel de l'app : https://github.com/misterunknown/ifm From 1bfa5f9fdbfde70aec8162f39ec2ec4b31dbf310 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 28 Aug 2021 19:30:50 +0200 Subject: [PATCH 3/3] Fix descriptions --- doc/DESCRIPTION.md | 2 +- doc/DESCRIPTION_fr.md | 12 ++++++++++++ doc/DISCLAIMER.md | 2 +- doc/DISCLAIMER_fr.md | 1 + manifest.json | 2 +- 5 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 doc/DESCRIPTION_fr.md create mode 100644 doc/DISCLAIMER_fr.md diff --git a/doc/DESCRIPTION.md b/doc/DESCRIPTION.md index 93368cd..0c17ddd 100644 --- a/doc/DESCRIPTION.md +++ b/doc/DESCRIPTION.md @@ -9,4 +9,4 @@ The IFM is a web-based filemanager, which comes as a single file solution using - extract archives (tar, tgz, tar.gz, tar.bz2, zip) - change permissions - image preview -- simple authentication (LDAP via ldap_bind possible) +- simple authentication (LDAP via `ldap_bind` possible) diff --git a/doc/DESCRIPTION_fr.md b/doc/DESCRIPTION_fr.md new file mode 100644 index 0000000..5b6cb2a --- /dev/null +++ b/doc/DESCRIPTION_fr.md @@ -0,0 +1,12 @@ +L'IFM est un gestionnaire de fichiers basé sur le Web, qui se présente sous la forme d'un fichier unique utilisant HTML5, CSS3, JavaScript et PHP. + +### caractéristiques + +- créer/éditer des fichiers et des répertoires +- copier/déplacer des fichiers et des répertoires +- télécharger des fichiers et des répertoires +- télécharger des fichiers directement, à distance via URL ou par glisser-déposer +- extraire les archives (tar, tgz, tar.gz, tar.bz2, zip) +- modifier les autorisations +- aperçu de l'image +- authentification simple (LDAP via `ldap_bind` possible) \ No newline at end of file diff --git a/doc/DISCLAIMER.md b/doc/DISCLAIMER.md index 8b81fd2..eeef566 100644 --- a/doc/DISCLAIMER.md +++ b/doc/DISCLAIMER.md @@ -1 +1 @@ -The IFM is usually locked to it's own directory (`/home/yunohost.app.ifm`), so you are not able to go above. You can change that by setting `env[IFM_ROOT_DIR] = /home/yunohost.app.ifm` in the PHP config `/etc/php/7.3/fpm/pool.d/ifm.conf` L.434 with this [documentation](https://github.com/misterunknown/ifm/wiki/Configuration). \ No newline at end of file +The IFM is usually locked to it's own directory (`/home/yunohost.app.ifm`), so you are not able to go above. You can change that by setting `env[IFM_ROOT_DIR] = /home/yunohost.app.ifm` in the PHP config `/etc/php/7.3/fpm/pool.d/ifm.conf` L.434 with the help of this [documentation](https://github.com/misterunknown/ifm/wiki/Configuration). \ No newline at end of file diff --git a/doc/DISCLAIMER_fr.md b/doc/DISCLAIMER_fr.md new file mode 100644 index 0000000..88bf710 --- /dev/null +++ b/doc/DISCLAIMER_fr.md @@ -0,0 +1 @@ +L'IFM est généralement verrouillé dans son propre répertoire (`/home/yunohost.app.ifm`), vous ne pouvez donc pas aller sur d'autres répertoires. Vous pouvez changer cela en définissant `env[IFM_ROOT_DIR] = /home/yunohost.app.ifm` dans la configuration PHP `/etc/php/7.3/fpm/pool.d/ifm.conf` L.434 en vous aidant de cette [documentation](https://github.com/misterunknown/ifm/wiki/Configuration). \ No newline at end of file diff --git a/manifest.json b/manifest.json index 5b43a7a..b06be1d 100644 --- a/manifest.json +++ b/manifest.json @@ -16,7 +16,7 @@ }, "license": "MIT", "maintainer": { - "name": "", + "name": "eric_G", "email": "" }, "requirements": {