Loading CHANGELOG.md +21 −0 Original line number Diff line number Diff line Loading @@ -3,6 +3,27 @@ title: "Changements intervenus sur OSE" author: Laurent Lécluse - DSI - Unicaen --- # OSE 10-zf2 et 10-zf3 (à venir) ## Nouveautés * Possibilité d'utiliser un service Unoconv présent sur un serveur dédié autre que celui de OSE ## Notes de mise à jour Ajout de nouveaux paramètres de configuration pour pouvoir externaliser l'usage du service Unoconv. A ajouter dans votre fichier config.local.php et à personnaliser le cas échéant : ```php /* Génération d'états de sortie avec Unoconv */ 'etats-sortie' => [ /* Serveur où se situe le service Unoconv */ 'host' => '127.0.0.1', // par défaut sur la même machine que OSE /* Répertoire de travail utilisé à la fois par OSE et par le service Unoconv */ 'tmp-dir' => getcwd() . '/cache/', // par défaut dans le répertoire cache de OSE ], ``` # OSE 9.0.2-zf2 et 9.0.2-zf3 ## Correction de bugs Loading composer.json +1 −1 Original line number Diff line number Diff line Loading @@ -17,7 +17,7 @@ "unicaen/code" : "3.0.0", "unicaen/import" : "3.0.0", "unicaen/tbl" : "3.0.0", "unicaen/open-document" : "3.0.0", "unicaen/open-document" : "3.0.1", "ocramius/proxy-manager" : "2.2.3" }, "require-dev": { Loading composer.lock +9 −9 Original line number Diff line number Diff line Loading @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], "content-hash": "279df16cd80bc7b8d01eb45acfdb65df", "content-hash": "dd4bf4ce69b90c955d91577cda10494c", "packages": [ { "name": "beberlei/assert", Loading Loading @@ -2451,11 +2451,11 @@ }, { "name": "unicaen/open-document", "version": "3.0.0", "version": "3.0.1", "source": { "type": "git", "url": "https://git.unicaen.fr/lib/unicaen/open-document.git", "reference": "1341df76ea141070215e925964a55365451f496c" "reference": "a70d209db23b72c19addd20ece30e91d4ef00af9" }, "type": "library", "autoload": { Loading @@ -2467,7 +2467,7 @@ ] }, "description": "Module Unicaen de traitement des fichiers au format OpenDocument", "time": "2019-02-08T08:37:33+00:00" "time": "2019-11-15T08:08:47+00:00" }, { "name": "unicaen/oracle", Loading Loading @@ -5913,16 +5913,16 @@ }, { "name": "phpcompatibility/php-compatibility", "version": "9.3.3", "version": "9.3.4", "source": { "type": "git", "url": "https://github.com/PHPCompatibility/PHPCompatibility.git", "reference": "1af08ca3861048a8bfb39d0405d0ac3e50ba2696" "reference": "1f37659196e4f3113ea506a7efba201c52303bf1" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/1af08ca3861048a8bfb39d0405d0ac3e50ba2696", "reference": "1af08ca3861048a8bfb39d0405d0ac3e50ba2696", "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/1f37659196e4f3113ea506a7efba201c52303bf1", "reference": "1f37659196e4f3113ea506a7efba201c52303bf1", "shasum": "" }, "require": { Loading Loading @@ -5967,7 +5967,7 @@ "phpcs", "standards" ], "time": "2019-11-11T03:25:23+00:00" "time": "2019-11-15T04:12:02+00:00" }, { "name": "phpdocumentor/reflection-common", Loading config.local.php.default +10 −0 Original line number Diff line number Diff line Loading @@ -238,4 +238,14 @@ return [ 'debug' => false, ], /* Génération d'états de sortie avec Unoconv */ 'etats-sortie' => [ /* Serveur où se situe le service Unoconv */ 'host' => '127.0.0.1', // par défaut sur la même machine que OSE /* Répertoire de travail utilisé à la fois par OSE et par le service Unoconv */ 'tmp-dir' => getcwd() . '/cache/', // par défaut dans le répertoire cache de OSE ], ]; No newline at end of file config/autoload/application.global.php +6 −0 Original line number Diff line number Diff line Loading @@ -58,4 +58,10 @@ return [ 'session_storage' => [ 'type' => Zend\Session\Storage\SessionArrayStorage::class ], 'application' => [ 'etats-sortie' => [ 'host' => AppConfig::get('etats-sortie', 'host', '127.0.0.1'), 'tmp-dir' => AppConfig::get('etats-sortie', 'tmp-dir', getcwd() . '/cache/'), ], ], ]; No newline at end of file Loading
CHANGELOG.md +21 −0 Original line number Diff line number Diff line Loading @@ -3,6 +3,27 @@ title: "Changements intervenus sur OSE" author: Laurent Lécluse - DSI - Unicaen --- # OSE 10-zf2 et 10-zf3 (à venir) ## Nouveautés * Possibilité d'utiliser un service Unoconv présent sur un serveur dédié autre que celui de OSE ## Notes de mise à jour Ajout de nouveaux paramètres de configuration pour pouvoir externaliser l'usage du service Unoconv. A ajouter dans votre fichier config.local.php et à personnaliser le cas échéant : ```php /* Génération d'états de sortie avec Unoconv */ 'etats-sortie' => [ /* Serveur où se situe le service Unoconv */ 'host' => '127.0.0.1', // par défaut sur la même machine que OSE /* Répertoire de travail utilisé à la fois par OSE et par le service Unoconv */ 'tmp-dir' => getcwd() . '/cache/', // par défaut dans le répertoire cache de OSE ], ``` # OSE 9.0.2-zf2 et 9.0.2-zf3 ## Correction de bugs Loading
composer.json +1 −1 Original line number Diff line number Diff line Loading @@ -17,7 +17,7 @@ "unicaen/code" : "3.0.0", "unicaen/import" : "3.0.0", "unicaen/tbl" : "3.0.0", "unicaen/open-document" : "3.0.0", "unicaen/open-document" : "3.0.1", "ocramius/proxy-manager" : "2.2.3" }, "require-dev": { Loading
composer.lock +9 −9 Original line number Diff line number Diff line Loading @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], "content-hash": "279df16cd80bc7b8d01eb45acfdb65df", "content-hash": "dd4bf4ce69b90c955d91577cda10494c", "packages": [ { "name": "beberlei/assert", Loading Loading @@ -2451,11 +2451,11 @@ }, { "name": "unicaen/open-document", "version": "3.0.0", "version": "3.0.1", "source": { "type": "git", "url": "https://git.unicaen.fr/lib/unicaen/open-document.git", "reference": "1341df76ea141070215e925964a55365451f496c" "reference": "a70d209db23b72c19addd20ece30e91d4ef00af9" }, "type": "library", "autoload": { Loading @@ -2467,7 +2467,7 @@ ] }, "description": "Module Unicaen de traitement des fichiers au format OpenDocument", "time": "2019-02-08T08:37:33+00:00" "time": "2019-11-15T08:08:47+00:00" }, { "name": "unicaen/oracle", Loading Loading @@ -5913,16 +5913,16 @@ }, { "name": "phpcompatibility/php-compatibility", "version": "9.3.3", "version": "9.3.4", "source": { "type": "git", "url": "https://github.com/PHPCompatibility/PHPCompatibility.git", "reference": "1af08ca3861048a8bfb39d0405d0ac3e50ba2696" "reference": "1f37659196e4f3113ea506a7efba201c52303bf1" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/1af08ca3861048a8bfb39d0405d0ac3e50ba2696", "reference": "1af08ca3861048a8bfb39d0405d0ac3e50ba2696", "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/1f37659196e4f3113ea506a7efba201c52303bf1", "reference": "1f37659196e4f3113ea506a7efba201c52303bf1", "shasum": "" }, "require": { Loading Loading @@ -5967,7 +5967,7 @@ "phpcs", "standards" ], "time": "2019-11-11T03:25:23+00:00" "time": "2019-11-15T04:12:02+00:00" }, { "name": "phpdocumentor/reflection-common", Loading
config.local.php.default +10 −0 Original line number Diff line number Diff line Loading @@ -238,4 +238,14 @@ return [ 'debug' => false, ], /* Génération d'états de sortie avec Unoconv */ 'etats-sortie' => [ /* Serveur où se situe le service Unoconv */ 'host' => '127.0.0.1', // par défaut sur la même machine que OSE /* Répertoire de travail utilisé à la fois par OSE et par le service Unoconv */ 'tmp-dir' => getcwd() . '/cache/', // par défaut dans le répertoire cache de OSE ], ]; No newline at end of file
config/autoload/application.global.php +6 −0 Original line number Diff line number Diff line Loading @@ -58,4 +58,10 @@ return [ 'session_storage' => [ 'type' => Zend\Session\Storage\SessionArrayStorage::class ], 'application' => [ 'etats-sortie' => [ 'host' => AppConfig::get('etats-sortie', 'host', '127.0.0.1'), 'tmp-dir' => AppConfig::get('etats-sortie', 'tmp-dir', getcwd() . '/cache/'), ], ], ]; No newline at end of file