This is an automated email from the git hooks/post-receive script. New change to branch feature/7849-recherche-avancée-documents in repository coselmar. See http://git.codelutin.com/coselmar.git discards a7103d8 refs-30 #7849 Revue de la recherche avancée de documents et ajout du critere 'date de publication' adds 202056f fixes #7847 ajout d'un flag dans l'url pour les recherches avancées, permettant un refresh de la page quand on clique dans le menu adds 137f503 fixes #7851 Gestion du rechargement de la page d'accueil en cas de déconnexion adds 6521902 fixes #7850 suppression des colonnes clients/participants/documents non porteur d'information en mode anonyme adds f11feeb fixes #7774 revue de la gestion de l'export adds f39137f refs-30 #7853 Prepare service for user search export adds e91b089 fixes #7853 add users searched export on ui adds cda9e55 fix simple search <-> advanced search change in ui adds 7440c25 refs-40 #7858 Revue coté service de la recherche avancée de projet/questions adds 40d728b fixes #7858 add advanced search on project in ui adds 6748663 upgrade datepicker-popup to uib-datepicker-popup adds 06c6c34 upgrade modal component adds 242180a Fix du service JS d'admin adds 901212e refs-40 #7867 ajout d'une liste de liens dans les questions, parties service adds f4d6b41 refs-40 #7867 revue pour avoir des objets {url, name} pour les liens plutot que juste des urls en String adds 408c5cd fixes #7867 add links management in project page adds c1bb341 Merge branch 'feature/7867-list-links-in-project' into develop new 764eff5 refs-30 #7849 Revue de la recherche avancée de documents et ajout du critere 'date de publication' This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (a7103d8) \ N -- N -- N refs/heads/feature/7849-recherche-avancée-documents (764eff5) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever. The 1 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 764eff5b737affe307c9b57882dca92f253af2c5 Author: Yannick Martel <martel@©odelutin.com> Date: Mon Dec 21 11:51:31 2015 +0100 refs-30 #7849 Revue de la recherche avancée de documents et ajout du critere 'date de publication' Summary of changes: .../src/main/webapp/js/coselmar-constants.js | 2 +- coselmar-persistence/pom.xml | 5 + .../coselmar/beans/DocumentSearchExample.java | 24 +++ .../ifremer/coselmar/beans/QuestionSearchBean.java | 59 ------ .../coselmar/beans/QuestionSearchExample.java | 110 +++++++++++ .../fr/ifremer/coselmar/beans/SearchExample.java | 20 +- .../persistence/entity/QuestionTopiaDao.java | 83 ++++++-- .../V1_2_0_1__7867_add_list_links_in_projects.sql | 34 ++++ .../src/main/xmi/coselmar-model.zargo | Bin 10470 -> 10955 bytes .../java/fr/ifremer/coselmar/beans/LinkBean.java | 39 ++++ .../fr/ifremer/coselmar/beans/QuestionBean.java | 17 ++ ...UserSearchBean.java => QuestionSearchBean.java} | 47 ++++- .../java/fr/ifremer/coselmar/beans/UserBean.java | 9 + .../fr/ifremer/coselmar/beans/UserExportModel.java | 78 ++++++++ .../coselmar/converter/BeanEntityConverter.java | 84 ++++++++ .../services/CoselmarRestApplicationListener.java | 6 +- .../indexation/QuestionsIndexationService.java | 1 + .../indexation/TransverseIndexationService.java | 13 -- .../coselmar/services/v1/DocumentsWebService.java | 28 ++- .../coselmar/services/v1/HealthService.java | 1 + .../coselmar/services/v1/QuestionsWebService.java | 190 ++++++++++++++---- .../coselmar/services/v1/UsersWebService.java | 58 ++++++ .../i18n/coselmar-services_en_GB.properties | 16 ++ .../i18n/coselmar-services_fr_FR.properties | 16 ++ coselmar-rest/src/main/resources/mapping | 3 +- .../coselmar/services/QuestionsWebServiceTest.java | 2 +- coselmar-ui/src/main/webapp/i18n/en.js | 15 ++ coselmar-ui/src/main/webapp/i18n/fr.js | 15 ++ .../src/main/webapp/js/coselmar-admin-services.js | 2 +- .../src/main/webapp/js/coselmar-constants.js | 13 +- .../src/main/webapp/js/coselmar-controllers.js | 218 +++++++++++++++++---- .../main/webapp/js/coselmar-general-services.js | 2 +- .../main/webapp/js/coselmar-questions-services.js | 6 +- .../src/main/webapp/js/coselmar-services.js | 2 +- .../src/main/webapp/js/coselmar-user-services.js | 7 +- .../main/webapp/views/documents/editDocument.html | 4 +- .../webapp/views/documents/modalDocumentEdit.html | 7 +- .../main/webapp/views/documents/newdocument.html | 4 +- .../src/main/webapp/views/documents/toolsPart.html | 16 +- coselmar-ui/src/main/webapp/views/home.html | 35 ++-- .../src/main/webapp/views/links/modalLinkEdit.html | 78 ++++++++ .../main/webapp/views/questions/editquestion.html | 44 ++++- .../src/main/webapp/views/questions/questions.html | 25 +-- .../src/main/webapp/views/questions/toolsPart.html | 166 ++++++++++++++++ .../main/webapp/views/questions/viewquestion.html | 16 ++ .../src/main/webapp/views/users/searchPart.html | 6 +- coselmar-ui/src/main/webapp/views/users/users.html | 8 + pom.xml | 5 + 48 files changed, 1383 insertions(+), 256 deletions(-) delete mode 100644 coselmar-persistence/src/main/java/fr/ifremer/coselmar/beans/QuestionSearchBean.java create mode 100644 coselmar-persistence/src/main/java/fr/ifremer/coselmar/beans/QuestionSearchExample.java create mode 100644 coselmar-persistence/src/main/resources/db/migration/V1_2_0_1__7867_add_list_links_in_projects.sql create mode 100644 coselmar-rest/src/main/java/fr/ifremer/coselmar/beans/LinkBean.java copy coselmar-rest/src/main/java/fr/ifremer/coselmar/beans/{UserSearchBean.java => QuestionSearchBean.java} (58%) create mode 100644 coselmar-rest/src/main/java/fr/ifremer/coselmar/beans/UserExportModel.java create mode 100644 coselmar-ui/src/main/webapp/views/links/modalLinkEdit.html create mode 100644 coselmar-ui/src/main/webapp/views/questions/toolsPart.html -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.