[galette-commits] [GIT] galette/galette.git branch develop updated. 0.9.4.2-84-g2bd0e59 |
[ Thread Index |
Date Index
| More lists.galette.eu/commits Archives
]
- To: commits@xxxxxxxxxxxxxxxx
- Subject: [galette-commits] [GIT] galette/galette.git branch develop updated. 0.9.4.2-84-g2bd0e59
- From: <git@xxxxxxxxxxxxx>
- Date: Sun, 13 Dec 2020 11:12:33 +0100
- Auto-submitted: auto-generated
This is an automated email from git. It was generated because a ref
change was pushed to the "galette/galette.git" repository.
The branch, develop has been updated
via 2bd0e5931934d5ff842318b68dac1ee2433614fd (commit)
via 6c009e1c2d435f1929a99df8ba2951262fec4f9e (commit)
via c849d915320c58398d3e43a125dfe60770e8db46 (commit)
from f5bb4173942bf5712bde47af9b1dc53bc102fca6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 2bd0e5931934d5ff842318b68dac1ee2433614fd
Author: Johan Cwiklinski <johan@xxxxxxxx>
Date: Fri Dec 11 19:28:39 2020 +0100
Minor UI fixes
Dead template variable
Add phpdoc
Fix install buttons, cleanup dead styles and images
commit 6c009e1c2d435f1929a99df8ba2951262fec4f9e
Author: Johan Cwiklinski <johan@xxxxxxxx>
Date: Sat Dec 12 13:04:26 2020 +0100
Simplify getLastGeneratedValue
commit c849d915320c58398d3e43a125dfe60770e8db46
Author: Johan Cwiklinski <jcwiklinski@xxxxxxxxxx>
Date: Wed Dec 4 08:39:14 2019 +0100
Integrate php-di; closes #1372
Rework some routes; refs #1354
Rework routes; args are now passed on separate variables
Controller syntax is not supported by slim php-di bridge
Fix middleware tests
Fix wrong unknown symbols in checks
Fix installer instantiation
Setup DI on plugins, add controllers abstract classes
-----------------------------------------------------------------------
Summary of changes:
.composer-require-checker.config.json | 8 +-
galette/composer.json | 4 +-
galette/composer.lock | 435 ++++++++++++++++++++-
galette/includes/dependencies.php | 257 +++++++-----
galette/includes/galette.inc.php | 4 +
galette/includes/main.inc.php | 68 +---
galette/includes/routes/ajax.routes.php | 76 ++--
galette/includes/routes/authentication.routes.php | 23 +-
galette/includes/routes/contributions.routes.php | 40 +-
galette/includes/routes/groups.routes.php | 25 +-
galette/includes/routes/main.routes.php | 16 +-
galette/includes/routes/management.routes.php | 155 ++++----
galette/includes/routes/members.routes.php | 87 ++---
galette/includes/routes/plugins.routes.php | 25 +-
galette/includes/routes/public_pages.routes.php | 29 +-
galette/install/steps/admin.php | 2 +-
galette/install/steps/check.php | 4 +-
galette/install/steps/db.php | 2 +-
galette/install/steps/db_checks.php | 2 +-
galette/install/steps/db_install.php | 2 +-
galette/install/steps/db_select_version.php | 4 +-
galette/install/steps/end.php | 2 +-
galette/install/steps/galette.php | 4 +-
galette/install/steps/type.php | 2 +-
.../lib/Galette/Controllers/AbstractController.php | 29 +-
.../AbstractPluginController.php} | 35 +-
galette/lib/Galette/Controllers/AuthController.php | 44 +--
.../Crud/AbstractPluginController.php} | 36 +-
.../Controllers/Crud/ContributionsController.php | 106 ++---
.../Controllers/Crud/DynamicFieldsController.php | 124 +++---
.../Controllers/Crud/EntitledsController.php | 121 +++---
.../Galette/Controllers/Crud/GroupsController.php | 58 ++-
.../Controllers/Crud/MailingsController.php | 65 ++-
.../Galette/Controllers/Crud/MembersController.php | 224 ++++++-----
.../Controllers/Crud/PaymentTypeController.php | 46 +--
.../Controllers/Crud/SavedSearchesController.php | 44 +--
.../Galette/Controllers/Crud/TitlesController.php | 44 +--
.../Controllers/Crud/TransactionsController.php | 54 +--
galette/lib/Galette/Controllers/CrudController.php | 41 +-
galette/lib/Galette/Controllers/CsvController.php | 61 +--
.../Controllers/DynamicTranslationsController.php | 13 +-
.../lib/Galette/Controllers/GaletteController.php | 34 +-
.../lib/Galette/Controllers/HistoryController.php | 24 +-
.../lib/Galette/Controllers/ImagesController.php | 6 +-
galette/lib/Galette/Controllers/PdfController.php | 58 ++-
.../lib/Galette/Controllers/PluginsController.php | 26 +-
galette/lib/Galette/Controllers/TextController.php | 27 +-
galette/lib/Galette/Core/Db.php | 16 +
galette/lib/Galette/Core/LightSlimApp.php | 84 ++++
galette/lib/Galette/Core/Mailing.php | 17 +
galette/lib/Galette/Core/MailingHistory.php | 8 +-
galette/lib/Galette/Core/Pagination.php | 31 +-
galette/lib/Galette/Core/Picture.php | 19 +-
.../PluginControllerTrait.php} | 51 +--
galette/lib/Galette/Core/Plugins.php | 51 +--
galette/lib/Galette/Core/SlimApp.php | 84 ++++
galette/lib/Galette/DynamicFields/DynamicField.php | 8 +-
galette/lib/Galette/Entity/Adherent.php | 8 +-
galette/lib/Galette/Entity/Contribution.php | 8 +-
galette/lib/Galette/Entity/Entitled.php | 10 +-
galette/lib/Galette/Entity/FieldsConfig.php | 2 +-
galette/lib/Galette/Entity/Group.php | 8 +-
galette/lib/Galette/Entity/PaymentType.php | 4 +-
galette/lib/Galette/Entity/Title.php | 4 +-
galette/lib/Galette/Entity/Transaction.php | 14 +-
galette/lib/Galette/Middleware/Authenticate.php | 5 +-
galette/lib/Galette/Middleware/CheckAcls.php | 5 +-
galette/lib/Galette/Middleware/Language.php | 5 +-
galette/lib/Galette/Middleware/MembersNavigate.php | 5 +-
galette/lib/Galette/Middleware/Telemetry.php | 5 +-
.../templates/default/gestion_contributions.tpl | 8 +-
galette/templates/default/gestion_intitules.tpl | 2 +-
galette/templates/default/gestion_textes.tpl | 2 -
galette/templates/default/global_messages.tpl | 8 -
galette/templates/default/member.tpl | 4 +-
galette/templates/default/page.tpl | 3 -
galette/templates/default/public_page.tpl | 3 -
galette/webroot/installer.php | 8 +-
galette/webroot/themes/default/galette.css | 21 -
galette/webroot/themes/default/images/home.png | Bin 713 -> 0 bytes
galette/webroot/themes/default/images/next.png | Bin 790 -> 0 bytes
galette/webroot/themes/default/install.css | 11 -
tests/Galette/Core/tests/units/Plugins.php | 48 ++-
tests/Galette/IO/tests/units/CsvIn.php | 77 ++--
tests/Galette/Middleware/tests/unit/CheckAcls.php | 9 +-
tests/TestsBootstrap.php | 18 +-
86 files changed, 1921 insertions(+), 1349 deletions(-)
copy galette/lib/Galette/{IO/FileInterface.php => Controllers/AbstractPluginController.php} (66%)
copy galette/lib/Galette/{IO/FileInterface.php => Controllers/Crud/AbstractPluginController.php} (66%)
create mode 100644 galette/lib/Galette/Core/LightSlimApp.php
copy galette/lib/Galette/{Entity/TranslatableTrait.php => Core/PluginControllerTrait.php} (65%)
create mode 100644 galette/lib/Galette/Core/SlimApp.php
delete mode 100644 galette/webroot/themes/default/images/home.png
delete mode 100644 galette/webroot/themes/default/images/next.png
hooks/post-receive
--
galette/galette.git
--
Galette repositories commits - http://galette.eu
List documentation: https://listengine.tuxfamily.org/lists.galette.eu/commits/