This is an automated email from the git hooks/post-receive script. New change to branch feature/pollen-riot-js in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git from 57673fc debut formulaire de création de sondage (le squelette) + améliorations sur les écrans de connexion new 8ee9e61 ajout des choix de type text + quelques améliorations ailleurs new 99f2665 Use same configuration as default bundle application for dev new b0e0ac1 Amélioration i18n + utilisation base par défaut sinon certaines pages ne sont pas accessibles en direct new c9359ff Review security and use now cookies to store authentication informations The 4 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit c9359ffbd941d89d4e719953a9955a360be96c1d Author: Tony CHEMIT <dev@tchemit.fr> Date: Sun Jan 15 13:41:37 2017 +0100 Review security and use now cookies to store authentication informations commit b0e0ac1cca44ba5c2f8704e618d1b1ad425b1db9 Author: Tony CHEMIT <dev@tchemit.fr> Date: Sat Jan 14 14:41:39 2017 +0100 Amélioration i18n + utilisation base par défaut sinon certaines pages ne sont pas accessibles en direct commit 99f26655168eadd0894cd76bbfe4dcd40aeb621a Author: Tony CHEMIT <dev@tchemit.fr> Date: Sat Jan 14 08:39:27 2017 +0100 Use same configuration as default bundle application for dev commit 8ee9e61a60000dc64c20232849e7f531efa9ab96 Author: Tony CHEMIT <dev@tchemit.fr> Date: Sat Jan 14 08:04:41 2017 +0100 ajout des choix de type text + quelques améliorations ailleurs Summary of changes: pollen-rest-api/pom.xml | 25 +-- .../rest/api/PollenRestApiRequestFilter.java | 85 ++++++++- .../org/chorem/pollen/rest/api/v1/AuthApi.java | 52 +++++- pollen-rest-api/src/main/resources/mapping | 1 + pollen-rest-api/src/main/webapp/WEB-INF/web.xml | 35 +++- pollen-services/pom.xml | 5 + pollen-services/src/main/config/PollenServices.ini | 16 +- .../security/DefaultPollenSecurityContext.java | 1 + ...on.java => MissingAuthenticationException.java} | 2 +- .../security/PollenCypherTechnicalException.java | 16 ++ .../service/security/PollenSecurityContext.java | 2 + .../services/service/security/SecurityService.java | 202 ++++++++++++++++++--- .../i18n/pollen-services_en_GB.properties | 1 + .../i18n/pollen-services_fr_FR.properties | 1 + .../service/PollenUIUrlRenderServiceTest.java | 14 +- pollen-ui-riot-js/src/main/web/conf.json | 2 +- pollen-ui-riot-js/src/main/web/i18n.json | 186 ++++++++++--------- pollen-ui-riot-js/src/main/web/index.js | 8 +- pollen-ui-riot-js/src/main/web/js/AuthService.js | 59 ++---- pollen-ui-riot-js/src/main/web/js/ChoiceText.js | 9 + .../src/main/web/js/EmitterService.js | 16 +- pollen-ui-riot-js/src/main/web/js/FetchService.js | 3 - pollen-ui-riot-js/src/main/web/js/I18nHelper.js | 52 ++---- pollen-ui-riot-js/src/main/web/js/PollForm.js | 68 ++++--- pollen-ui-riot-js/src/main/web/js/Session.js | 36 +++- pollen-ui-riot-js/src/main/web/tag/CreatePoll.tag | 18 +- .../src/main/web/tag/CreatePollHeader.tag | 5 +- pollen-ui-riot-js/src/main/web/tag/Footer.tag | 10 +- pollen-ui-riot-js/src/main/web/tag/Header.tag | 25 +-- pollen-ui-riot-js/src/main/web/tag/HeaderI18n.tag | 2 +- pollen-ui-riot-js/src/main/web/tag/Home.tag | 6 +- .../src/main/web/tag/PollChoiceText.tag | 39 ++++ .../src/main/web/tag/PollChoiceTextGroup.tag | 14 ++ .../src/main/web/tag/PollChoicesText.tag | 75 ++++++-- .../src/main/web/tag/PollDescription.tag | 48 +++-- pollen-ui-riot-js/src/main/web/tag/Pollen.tag | 7 +- pollen-ui-riot-js/src/main/web/tag/SignCheck.tag | 82 ++++++++- pollen-ui-riot-js/src/main/web/tag/SignIn.tag | 18 +- pollen-ui-riot-js/src/main/web/tag/SignUp.tag | 18 +- .../src/main/web/tag/popup/AccountCreated.tag | 10 +- .../src/main/web/tag/popup/NewPassword.tag | 10 +- .../src/main/web/tag/popup/ResendValidation.tag | 10 +- pom.xml | 13 +- 43 files changed, 919 insertions(+), 388 deletions(-) copy pollen-services/src/main/java/org/chorem/pollen/services/service/security/{PollenInvalidPasswordException.java => MissingAuthenticationException.java} (93%) create mode 100644 pollen-services/src/main/java/org/chorem/pollen/services/service/security/PollenCypherTechnicalException.java create mode 100644 pollen-ui-riot-js/src/main/web/js/ChoiceText.js create mode 100644 pollen-ui-riot-js/src/main/web/tag/PollChoiceText.tag create mode 100644 pollen-ui-riot-js/src/main/web/tag/PollChoiceTextGroup.tag -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.