Commit 79b22388 authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Merge branch 'release-1.1.6'

parents 6a5a99cb dad54a5f
Loading
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
Journal des modifications
=========================

1.1.6 (15/04/2019)
------------------

### Correction 

- Remplacement des caractère spéciaux d'apogée pour les guillement par le biais d'un TitreFormatter.

1.1.5 (09/04/2019)
------------------

@@ -12,6 +19,8 @@ Journal des modifications
1.1.4 (03/04/2019)
------------------

## 1.1.4 (03/04/2019)

### Nouveautés

- Ouverture à toutes personnes identifiées de la consultation de la liste des thèses, à la recherche de thèse et à la 
+3 −3
Original line number Diff line number Diff line
@@ -2014,11 +2014,11 @@
        },
        {
            "name": "unicaen/auth",
            "version": "1.3.6",
            "version": "1.3.7",
            "source": {
                "type": "git",
                "url": "https://git.unicaen.fr/lib/unicaen/auth.git",
                "reference": "f2e2e3d0e7ca1be1f6d1b409ade22020b47ec324"
                "reference": "56d786108f99affbb1a136b074b57155078902fe"
            },
            "require": {
                "bjyoungblood/bjy-authorize": ">=1.4",
@@ -2041,7 +2041,7 @@
                ]
            },
            "description": "Module d'authentification pour les applications Unicaen",
            "time": "2019-02-07T09:58:01+00:00"
            "time": "2019-04-10T09:54:42+00:00"
        },
        {
            "name": "unicaen/code",
+12 −0
Original line number Diff line number Diff line
@@ -64,6 +64,7 @@ return [

    'unicaen-auth' => [
        'shibboleth' => [
            /*
            'simulate' => [
                'HTTP_EPPN'        => $eppn = 'premierf@univ.fr',
                'HTTP_SUPANNEMPID' => '00012345',
@@ -73,6 +74,7 @@ return [
                'HTTP_SN'             => 'Premier',
                'HTTP_SUPANNCIVILITE' => 'M.'
            ],
            */
            'aliases' => [
                'eppn'                   => 'HTTP_EPPN',
                'mail'                   => 'HTTP_MAIL',
@@ -85,6 +87,16 @@ return [
                'surname'                => 'HTTP_SURNAME',
                'givenName'              => 'HTTP_GIVENNAME',
            ],
            'required_attributes' => [
                'eppn',
                'mail',
                'eduPersonPrincipalName',
                //'supannCivilite',
                'displayName',
                'sn|surname', // i.e. 'sn' ou 'surname'
                'givenName',
                'supannEtuId|supannEmpId',
            ],
        ],
        'usurpation_allowed_usernames' => [
            'premierf',         // auth LDAP/CAS
+13 −14
Original line number Diff line number Diff line
@@ -3,10 +3,10 @@ date.timezone = Europe/Paris
short_open_tag = Off
expose_php = Off

log_errors = On
display_startup_errors = On
display_errors = On
display_startup_errors = On
error_reporting = E_ALL & ~E_DEPRECATED & ~E_NOTICE
log_errors = On

max_execution_time = 120

@@ -18,18 +18,6 @@ upload_max_filesize = 501M
post_max_size       = 502M


xdebug.remote_enable = 1
xdebug.remote_connect_back = 1
xdebug.profiler_enable_trigger = 1

xdebug.var_display_max_children = 1024
xdebug.var_display_max_data = -1
xdebug.max_nesting_level = 256
# Attention: trop diminuer 'max_nesting_level' peut causer une erreur 'Maximum function nesting level of x reached'

#xdebug.collect_params = 4


;opcache.error_log=/var/log/php_opcache_error.log
opcache.enable = 0
opcache.memory_consumption = 256
@@ -48,3 +36,14 @@ opcache.save_comments = 1
opcache.enable_file_override = 1
opcache.validate_timestamps = 1
opcache.huge_code_pages = 0


xdebug.enable = 1
xdebug.remote_enable = 1
xdebug.remote_connect_back = 1
xdebug.profiler_enable_trigger = 1
xdebug.var_display_max_children = 1024
xdebug.var_display_max_data = -1
xdebug.max_nesting_level = 256
# Attention: trop diminuer 'max_nesting_level' peut causer une erreur 'Maximum function nesting level of x reached'
#xdebug.collect_params = 4
+4 −1
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@ use Application\Entity\Db\Variable;
use Application\Entity\Db\VersionFichier;
use Application\Entity\Db\WfEtape;
use Application\Filter\IdifyFilterAwareTrait;
use Application\Filter\TitreFormatter;
use Application\Form\AttestationTheseForm;
use Application\Form\ConformiteFichierForm;
use Application\Form\DiffusionTheseForm;
@@ -1378,7 +1379,9 @@ class TheseController extends AbstractController

        if ($description === null) {
            $description = new MetadonneeThese();
            $description->setTitre($these->getTitre());
            $titreFormatter = new TitreFormatter();
            $titre = $titreFormatter->doFormat($these);
            $description->setTitre($titre);
        }

        $form->bind($description);
Loading