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 5337f63 Add resendValidation backend + use now cookies to manage auth cache new e518f4b Can authentice via the cookie new ea74725 Use a package for poll tags + continue ui new d653e81 Suppression EmitterService (tout est dans la session), enfin on peut créer un sondage The 3 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 d653e813bc1c076567bd023b818ab3b31704139d Author: Tony CHEMIT <dev@tchemit.fr> Date: Tue Jan 17 22:38:32 2017 +0100 Suppression EmitterService (tout est dans la session), enfin on peut créer un sondage commit ea74725be09823ead90c91e8c2afe215399d1a5d Author: Tony CHEMIT <dev@tchemit.fr> Date: Tue Jan 17 08:56:56 2017 +0100 Use a package for poll tags + continue ui commit e518f4b9bccf11a45e11ff3284e123ba299da0b2 Author: Tony CHEMIT <dev@tchemit.fr> Date: Tue Jan 17 08:56:35 2017 +0100 Can authentice via the cookie Summary of changes: pollen-persistence/src/main/xmi/pollen.zargo | Bin 20954 -> 21037 bytes .../rest/api/PollenRestApiRequestFilter.java | 47 +-- .../org/chorem/pollen/rest/api/v1/AuthApi.java | 54 ++- .../chorem/pollen/rest/api/v1/PollenUserApi.java | 10 +- pollen-rest-api/src/main/resources/mapping | 3 +- .../org/chorem/pollen/services/bean/PollBean.java | 17 + pollen-ui-riot-js/package.json | 4 +- pollen-ui-riot-js/src/main/web/conf.json | 3 +- pollen-ui-riot-js/src/main/web/css/main.css | 4 + pollen-ui-riot-js/src/main/web/i18n.json | 178 +++++++++- pollen-ui-riot-js/src/main/web/js/AuthService.js | 14 +- pollen-ui-riot-js/src/main/web/js/ChoiceText.js | 5 +- .../src/main/web/js/EmitterService.js | 49 --- pollen-ui-riot-js/src/main/web/js/FetchService.js | 12 +- pollen-ui-riot-js/src/main/web/js/I18nHelper.js | 18 +- pollen-ui-riot-js/src/main/web/js/PollForm.js | 75 ++-- pollen-ui-riot-js/src/main/web/js/PollService.js | 16 + pollen-ui-riot-js/src/main/web/js/Session.js | 77 +++- pollen-ui-riot-js/src/main/web/tag/CreatePoll.tag | 51 --- .../src/main/web/tag/CreatePollHeader.tag | 61 ---- pollen-ui-riot-js/src/main/web/tag/Footer.tag | 5 +- pollen-ui-riot-js/src/main/web/tag/Header.tag | 15 +- pollen-ui-riot-js/src/main/web/tag/HeaderI18n.tag | 13 +- pollen-ui-riot-js/src/main/web/tag/Home.tag | 29 +- .../src/main/web/tag/PollChoiceText.tag | 39 -- .../src/main/web/tag/PollChoiceTextGroup.tag | 14 - .../src/main/web/tag/PollDescription.tag | 53 --- .../src/main/web/tag/PollSettings.tag | 35 -- pollen-ui-riot-js/src/main/web/tag/PollVoters.tag | 46 --- pollen-ui-riot-js/src/main/web/tag/Pollen.tag | 20 +- pollen-ui-riot-js/src/main/web/tag/SignCheck.tag | 8 +- pollen-ui-riot-js/src/main/web/tag/SignIn.tag | 11 +- pollen-ui-riot-js/src/main/web/tag/SignUp.tag | 9 +- .../src/main/web/tag/poll/CreatePoll.tag | 180 ++++++++++ .../src/main/web/tag/poll/PollChoiceText.tag | 40 +++ .../src/main/web/tag/poll/PollChoiceTextGroup.tag | 13 + .../main/web/tag/{ => poll}/PollChoicesDate.tag | 12 +- .../main/web/tag/{ => poll}/PollChoicesImage.tag | 12 +- .../main/web/tag/{ => poll}/PollChoicesText.tag | 60 ++-- .../src/main/web/tag/poll/PollCreated.tag | 40 +++ .../src/main/web/tag/poll/PollDescription.tag | 59 +++ .../src/main/web/tag/poll/PollSettings.tag | 394 +++++++++++++++++++++ .../src/main/web/tag/poll/PollVoters.tag | 185 ++++++++++ .../src/main/web/tag/popup/AccountCreated.tag | 8 +- .../src/main/web/tag/popup/NewPassword.tag | 8 +- .../src/main/web/tag/popup/ResendValidation.tag | 9 +- pollen-ui-riot-js/webpack.config.js | 5 + 47 files changed, 1431 insertions(+), 589 deletions(-) delete mode 100644 pollen-ui-riot-js/src/main/web/js/EmitterService.js create mode 100644 pollen-ui-riot-js/src/main/web/js/PollService.js delete mode 100644 pollen-ui-riot-js/src/main/web/tag/CreatePoll.tag delete mode 100644 pollen-ui-riot-js/src/main/web/tag/CreatePollHeader.tag delete mode 100644 pollen-ui-riot-js/src/main/web/tag/PollChoiceText.tag delete mode 100644 pollen-ui-riot-js/src/main/web/tag/PollChoiceTextGroup.tag delete mode 100644 pollen-ui-riot-js/src/main/web/tag/PollDescription.tag delete mode 100644 pollen-ui-riot-js/src/main/web/tag/PollSettings.tag delete mode 100644 pollen-ui-riot-js/src/main/web/tag/PollVoters.tag create mode 100644 pollen-ui-riot-js/src/main/web/tag/poll/CreatePoll.tag create mode 100644 pollen-ui-riot-js/src/main/web/tag/poll/PollChoiceText.tag create mode 100644 pollen-ui-riot-js/src/main/web/tag/poll/PollChoiceTextGroup.tag rename pollen-ui-riot-js/src/main/web/tag/{ => poll}/PollChoicesDate.tag (71%) rename pollen-ui-riot-js/src/main/web/tag/{ => poll}/PollChoicesImage.tag (71%) rename pollen-ui-riot-js/src/main/web/tag/{ => poll}/PollChoicesText.tag (52%) create mode 100644 pollen-ui-riot-js/src/main/web/tag/poll/PollCreated.tag create mode 100644 pollen-ui-riot-js/src/main/web/tag/poll/PollDescription.tag create mode 100644 pollen-ui-riot-js/src/main/web/tag/poll/PollSettings.tag create mode 100644 pollen-ui-riot-js/src/main/web/tag/poll/PollVoters.tag -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.