This is an automated email from the git hooks/post-receive script.
New change to branch bow-v2-go in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from bb93ff3 correction nom du service screenshot
new 2b7707a ajout des groupes et des invitations (todo: probleme de droit)
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 2b7707ae6dc009451d826868f2ec28eb001b9002
Author: Benjamin <poussin(a)codelutin.com>
Date: Sat Feb 13 01:01:49 2021 +0100
ajout des groupes et des invitations (todo: probleme de droit)
Summary of changes:
doc/implementation.md | 115 ++++++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 112 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 bow-v2-go in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from 0402164 correction syntaxe gitlab-ci.yml
new bb93ff3 correction nom du service screenshot
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 bb93ff3cd8cadc2d76a9d0eac411752171a161c7
Author: Benjamin <poussin(a)codelutin.com>
Date: Tue Jan 26 01:45:26 2021 +0100
correction nom du service screenshot
Summary of changes:
docker/docker-compose.yml | 2 +-
1 file changed, 1 insertion(+), 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-go in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from f33b9d8 correction si le nombre de visite est null, on incremente tout de meme
new 0402164 correction syntaxe gitlab-ci.yml
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 0402164f3ced2cc5a4ed55dc7ca13939a3f52a55
Author: Benjamin <poussin(a)codelutin.com>
Date: Tue Jan 26 01:29:44 2021 +0100
correction syntaxe gitlab-ci.yml
Summary of changes:
.gitlab-ci.yml | 2 +-
1 file changed, 1 insertion(+), 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-go in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from 79d1b6e ajout de la configuration de l'historisation des actions ajout de l'historisation des pages
new cdb36a9 ajout de la visulisation de l'historique
new f33b9d8 correction si le nombre de visite est null, on incremente tout de meme
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 f33b9d8e16898a371b01034796c5617ea9a488ac
Author: Benjamin <poussin(a)codelutin.com>
Date: Tue Jan 26 01:27:18 2021 +0100
correction si le nombre de visite est null, on incremente tout de meme
commit cdb36a9cbfa901ff7e6f3f5057107be420aeab6f
Author: Benjamin <poussin(a)codelutin.com>
Date: Tue Jan 26 01:20:22 2021 +0100
ajout de la visulisation de l'historique
Summary of changes:
migrate/001_init_schema.sql | 1 -
migrate/007_create_index_pageHistory.sql | 9 +++++
pkg/constant/const.go | 5 +++
pkg/http/pageHistoryResource.go | 41 ++++++++++++++++++++
pkg/http/router.go | 1 +
pkg/repository/bookmarkRepository.go | 8 +++-
pkg/repository/pageHistoryRepository.go | 28 ++++++++++++++
pkg/utils/html.go | 14 +++++--
run-dev | 1 +
web/src/components/Bookmark.vue | 2 +-
web/src/router/index.js | 13 +++++++
web/src/views/PageHistory.vue | 65 ++++++++++++++++++++++++++++++++
12 files changed, 180 insertions(+), 8 deletions(-)
create mode 100644 migrate/007_create_index_pageHistory.sql
create mode 100644 pkg/http/pageHistoryResource.go
create mode 100644 web/src/views/PageHistory.vue
--
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-go in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from 636fef8 remise en place de la recuperation du favicon et d'un screenshot
new 79d1b6e ajout de la configuration de l'historisation des actions ajout de l'historisation des pages
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 79d1b6e25e1109a2d03822493ed37fae3ce9df8b
Author: Benjamin <poussin(a)codelutin.com>
Date: Mon Jan 25 22:15:14 2021 +0100
ajout de la configuration de l'historisation des actions
ajout de l'historisation des pages
Summary of changes:
.gitlab-ci.yml | 10 +
cmd/bow/main.go | 4 +-
docker/docker-compose.yml | 31 +
migrate/006_add_config_collect_action_history.sql | 8 +
pkg/constant/const.go | 3 +
pkg/http/opensearchResource.go | 4 +-
pkg/http/router.go | 1 +
pkg/http/systemResource.go | 4 +-
pkg/http/userResource.go | 21 +
pkg/model/pageHistory.go | 16 +
pkg/model/user.go | 33 +-
pkg/repository/bookmarkRepository.go | 5 +
pkg/repository/pageHistoryRepository.go | 42 +
pkg/repository/pageInfoRepository.go | 4 -
pkg/repository/userRepository.go | 12 +-
pkg/utils/html.go | 35 +
readability-js/Readability-0.4.1.js | 2260 ++++++++++++++++++++
readability-js/extract.js | 5 +
readability-js/purify-2.2.6.min.js | 3 +
.../{MaxResultEditor.vue => BooleanEditor.vue} | 33 +-
web/src/views/Preferences.vue | 5 +-
21 files changed, 2498 insertions(+), 41 deletions(-)
create mode 100644 migrate/006_add_config_collect_action_history.sql
create mode 100644 pkg/model/pageHistory.go
create mode 100644 pkg/repository/pageHistoryRepository.go
create mode 100644 pkg/utils/html.go
create mode 100644 readability-js/Readability-0.4.1.js
create mode 100644 readability-js/extract.js
create mode 100644 readability-js/purify-2.2.6.min.js
copy web/src/components/preferences/{MaxResultEditor.vue => BooleanEditor.vue} (52%)
--
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-go in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from 159d692 ajout dans le TODO
new 636fef8 remise en place de la recuperation du favicon et d'un screenshot
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 636fef8a9c3adb450b50e929156c5a7a00996cdc
Author: Benjamin <poussin(a)codelutin.com>
Date: Wed Jan 20 01:34:57 2021 +0100
remise en place de la recuperation du favicon et d'un screenshot
Summary of changes:
README.md | 3 +
docker/docker-compose.yml | 44 ++++++
go.mod | 1 +
go.sum | 2 +
migrate/005_create_pageInfo_table.sql | 46 ++++++
pkg/constant/const.go | 9 +-
pkg/http/bookmarkResource.go | 9 +-
pkg/http/router.go | 8 +-
pkg/repository/bookmarkRepository.go | 39 +++--
pkg/repository/pageInfoRepository.go | 34 +++++
pkg/utils/ico.go | 265 ++++++++++++++++++++++++++++++++++
pkg/utils/image.go | 102 +++++++++++++
pkg/utils/log.go | 11 +-
run-dev | 5 +
web/src/components/Bookmark.vue | 10 +-
15 files changed, 560 insertions(+), 28 deletions(-)
create mode 100644 migrate/005_create_pageInfo_table.sql
create mode 100644 pkg/repository/pageInfoRepository.go
create mode 100644 pkg/utils/ico.go
create mode 100644 pkg/utils/image.go
--
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-go in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from da5e15f correction ajout d'un bookmark d'un url existante (rechargement de l'ancien)
new 159d692 ajout dans le TODO
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 159d692d59a0a870a1ea81bb8b2be46ae3cbf07f
Author: Benjamin <poussin(a)codelutin.com>
Date: Sat Jan 16 12:44:22 2021 +0100
ajout dans le TODO
Summary of changes:
README.md | 6 +++++-
1 file changed, 5 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-go in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from 201c3e4 ajout du type dans les labels prom (type=db)
new 3211d08 mise a jour des libs ajout de l'enregistrement des actions
new da5e15f correction ajout d'un bookmark d'un url existante (rechargement de l'ancien)
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 da5e15f1ea71cfef53d6369ca348c021b90908f0
Author: Benjamin <poussin(a)codelutin.com>
Date: Sat Jan 16 00:07:38 2021 +0100
correction ajout d'un bookmark d'un url existante (rechargement de l'ancien)
commit 3211d0858b43b0038cf0e518c24c9a103059d20b
Author: Benjamin <poussin(a)codelutin.com>
Date: Fri Jan 15 23:41:54 2021 +0100
mise a jour des libs
ajout de l'enregistrement des actions
Summary of changes:
doc/front-concept.md | 2 +-
doc/implementation.md | 2 +-
go.mod | 27 +++-
go.sum | 233 +++++++++++++++++++++++++++---
pkg/http/opensearchResource.go | 4 +
pkg/model/actionHistory.go | 17 +++
pkg/model/user.go | 2 +
pkg/repository/actionHistoryRepository.go | 38 +++++
pkg/repository/bookmarkRepository.go | 2 +-
pkg/utils/jwt_test.go | 21 ---
web/src/views/BookmarkEdit.vue | 4 +-
11 files changed, 294 insertions(+), 58 deletions(-)
create mode 100644 pkg/model/actionHistory.go
create mode 100644 pkg/repository/actionHistoryRepository.go
delete mode 100644 pkg/utils/jwt_test.go
--
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-go in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from 1919265 fix port postgres-exporter
new 201c3e4 ajout du type dans les labels prom (type=db)
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 201c3e49ebd64050503540239abed167be5d42df
Author: Benjamin <poussin(a)codelutin.com>
Date: Mon Dec 28 17:40:28 2020 +0100
ajout du type dans les labels prom (type=db)
Summary of changes:
docker/docker-compose.yml | 1 +
1 file changed, 1 insertion(+)
--
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-go in repository bow.
See https://gitlab.nuiton.org/chorem/bow.git
from f6beb6b ajout du port pour prometheus
new 1919265 fix port postgres-exporter
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 1919265838a5ed87f03ab2e23abd06e637f79165
Author: Benjamin <poussin(a)codelutin.com>
Date: Mon Dec 28 17:37:38 2020 +0100
fix port postgres-exporter
Summary of changes:
docker/docker-compose.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.