This is an automated email from the git hooks/post-receive script.
New change to branch bow-v2 in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from 82dfa54 reecriture total en jooby/spgeed/rocker
new 9e4eb96 test unitaire pour BowUser: ok ajout interface web pour bowUser (list, edit, create)
new 8d2105b ajout du README.md
The 2 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 8d2105b5260365e6a8202391438a8b80a567e16a
Author: Benjamin <poussin(a)codelutin.com>
Date: Wed Jul 24 01:50:31 2019 +0200
ajout du README.md
commit 9e4eb96ee3679babb490fe7ec38bc324f6b7479d
Author: Benjamin <poussin(a)codelutin.com>
Date: Wed Jul 24 01:49:34 2019 +0200
test unitaire pour BowUser: ok
ajout interface web pour bowUser (list, edit, create)
Summary of changes:
README.md | 4 ++
TODO.md | 44 ++++++++++++
log/bookmarks.log | 0
src/main/java/com/chorem/bow/BowApp.java | 40 +++++++++++
.../com/chorem/bow/model/AuthenticationInfo.java | 6 +-
src/main/java/com/chorem/bow/model/BowUser.java | 2 +
.../bow/repositories/BookmarkRepository.java | 20 +++++-
.../chorem/bow/repositories/BowUserRepository.java | 51 +++++++------
.../java/com/chorem/bow/rest/BowUserResources.java | 23 +++++-
.../resources/db/migration/V1__init_schema.sql | 3 +
src/main/templates/views/editUser.rocker.html | 25 +++++++
src/main/templates/views/index.rocker.html | 2 +
src/main/templates/views/listUsers.rocker.html | 10 +++
src/main/templates/views/main.rocker.html | 12 ++++
src/test/java/com/chorem/bow/BowAppTest.java | 13 ++--
.../com/chorem/bow/rest/BowUserResourcesTest.java | 83 ++++++++++++++++------
16 files changed, 282 insertions(+), 56 deletions(-)
create mode 100644 README.md
delete mode 100644 log/bookmarks.log
create mode 100644 src/main/templates/views/editUser.rocker.html
create mode 100644 src/main/templates/views/listUsers.rocker.html
create mode 100644 src/main/templates/views/main.rocker.html
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch bow-v2 in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from 44fbb18 petit test pour ouvrir un terminal durant le ci
new e0386e7 ajout du tag docker pour le test
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 e0386e7486fd869a7202960367684c7accaf14c2
Author: Benjamin <poussin(a)codelutin.com>
Date: Fri Apr 5 11:38:50 2019 +0200
ajout du tag docker pour le test
Summary of changes:
.gitlab-ci.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch bow-v2 in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
at 44fbb18 petit test pour ouvrir un terminal durant le ci
This branch includes the following new commits:
new 44fbb18 petit test pour ouvrir un terminal durant le ci
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 44fbb18751b24c3bb1ba2446d9d97f49a17a39a4
Author: Benjamin <poussin(a)codelutin.com>
Date: Fri Apr 5 11:27:03 2019 +0200
petit test pour ouvrir un terminal durant le ci
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch develop in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from 374b042 [jgitflow-maven-plugin]Updating develop poms back to pre merge state
new 95aca98 tout debut pour aurore (rien ne marche)
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 95aca980e66951e488803d1c623af256742013a7
Author: Benjamin <poussin(a)codelutin.com>
Date: Fri Oct 26 16:57:50 2018 +0200
tout debut pour aurore (rien ne marche)
Summary of changes:
.../src/main/java/org/chorem/bow/BowContext.java | 29 ++++++++++++++++
.../main/java/org/chorem/bow/model/Bookmark.java | 31 +++++++++++++++++
.../java/org/chorem/bow/model/BowPreference.java | 26 +++++++++++++++
.../java/org/chorem/bow/model/BowSearchPrefix.java | 18 ++++++++++
.../chorem/bow/persistence/BookmarkRepository.java | 14 ++++++++
.../org/chorem/bow/persistence/BowRepository.java | 24 +++++++++++++
.../org/chorem/bow/rest/BookmarkResources.java | 25 ++++++++++++++
bow-ui/pom.xml | 39 +++++++++++++++++++++-
8 files changed, 205 insertions(+), 1 deletion(-)
create mode 100644 bow-api/src/main/java/org/chorem/bow/BowContext.java
create mode 100644 bow-api/src/main/java/org/chorem/bow/model/Bookmark.java
create mode 100644 bow-api/src/main/java/org/chorem/bow/model/BowPreference.java
create mode 100644 bow-api/src/main/java/org/chorem/bow/model/BowSearchPrefix.java
create mode 100644 bow-api/src/main/java/org/chorem/bow/persistence/BookmarkRepository.java
create mode 100644 bow-api/src/main/java/org/chorem/bow/persistence/BowRepository.java
create mode 100644 bow-api/src/main/java/org/chorem/bow/rest/BookmarkResources.java
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch release/1.6.2 in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
was c0e84db [jgitflow-maven-plugin]updating poms for branch'release/1.6.2' with non-snapshot versions
The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to annotated tag bow-1.6.2 in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
at f1567c5 (tag)
tagging e0090081fa824d1eef4db3168db39701de3194b8 (commit)
replaces bow-1.6.1
tagged by Éric
on Tue Jul 31 15:21:51 2018 +0200
- Log -----------------------------------------------------------------
[jgitflow-maven-plugin]tagging release 1.6.2
-----------------------------------------------------------------------
No new revisions were added by this update.
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch release/1.6.2 in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from ff3ed90 [jgitflow-maven-plugin]updating poms for 1.6.2 branch with snapshot versions
adds c0e84db [jgitflow-maven-plugin]updating poms for branch'release/1.6.2' with non-snapshot versions
No new revisions were added by this update.
Summary of changes:
bow-extension-chromium/pom.xml | 2 +-
bow-ui/pom.xml | 2 +-
pom.xml | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch develop in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from 12ee8e3 Update struts
new eb41976 [jgitflow-maven-plugin]updating develop poms to master versions to avoid merge conflicts
adds ff3ed90 [jgitflow-maven-plugin]updating poms for 1.6.2 branch with snapshot versions
new c0e84db [jgitflow-maven-plugin]updating poms for branch'release/1.6.2' with non-snapshot versions
new e009008 [jgitflow-maven-plugin]merging 'release/1.6.2' into 'master'
new 08e6077 [jgitflow-maven-plugin]merging 'master' into 'develop'
new 374b042 [jgitflow-maven-plugin]Updating develop poms back to pre merge state
The 5 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 374b042300f1b1063d6c5fecf78815d3e9b0b3e6
Author: Éric <chatellier(a)codelutin.com>
Date: Tue Jul 31 15:21:52 2018 +0200
[jgitflow-maven-plugin]Updating develop poms back to pre merge state
commit 08e60776df54a4d5939f4aec3ada538e1520b075
Merge: eb41976 e009008
Author: Éric <chatellier(a)codelutin.com>
Date: Tue Jul 31 15:21:52 2018 +0200
[jgitflow-maven-plugin]merging 'master' into 'develop'
commit eb41976a227592b4f15573cbf1579aa2f8e889e0
Author: Éric <chatellier(a)codelutin.com>
Date: Tue Jul 31 15:21:52 2018 +0200
[jgitflow-maven-plugin]updating develop poms to master versions to avoid merge conflicts
commit e0090081fa824d1eef4db3168db39701de3194b8
Merge: abd1d5d c0e84db
Author: Éric <chatellier(a)codelutin.com>
Date: Tue Jul 31 15:21:51 2018 +0200
[jgitflow-maven-plugin]merging 'release/1.6.2' into 'master'
commit c0e84db41ee9cae7b8de59d766cb18f7476d1f29
Author: Éric <chatellier(a)codelutin.com>
Date: Tue Jul 31 15:21:34 2018 +0200
[jgitflow-maven-plugin]updating poms for branch'release/1.6.2' with non-snapshot versions
Summary of changes:
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch master in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from abd1d5d [jgitflow-maven-plugin]merging 'release/1.6.1' into 'master'
adds cea90fd [jgitflow-maven-plugin]updating develop poms to master versions to avoid merge conflicts
adds 5db3900 [jgitflow-maven-plugin]merging 'master' into 'develop'
adds aae138f [jgitflow-maven-plugin]Updating develop poms back to pre merge state
adds 2396abf fixes #132: Add honey pot
adds 12ee8e3 Update struts
adds ff3ed90 [jgitflow-maven-plugin]updating poms for 1.6.2 branch with snapshot versions
adds c0e84db [jgitflow-maven-plugin]updating poms for branch'release/1.6.2' with non-snapshot versions
adds e009008 [jgitflow-maven-plugin]merging 'release/1.6.2' into 'master'
No new revisions were added by this update.
Summary of changes:
bow-extension-chromium/pom.xml | 2 +-
bow-ui/pom.xml | 2 +-
.../org/chorem/bow/action/login/RegisterAction.java | 20 +++++++++++++++++++-
bow-ui/src/main/webapp/WEB-INF/jsp/inc/footer.jsp | 2 +-
bow-ui/src/main/webapp/WEB-INF/jsp/register.jsp | 3 ++-
bow-ui/src/main/webapp/css/connexion.css | 6 +++++-
pom.xml | 4 ++--
7 files changed, 31 insertions(+), 8 deletions(-)
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.