This is an automated email from the ASF dual-hosted git repository.
linkinstar pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-answer-plugins.git
from 9413b7d chore: Sync Plugin Info (#226)
add f6677e1 refactor(highlight): Improve useHighlightCode function
add 581938b refactor(render-markdown-codehighlight): Update version to
0.0.4
add aeec516 chore: Sync Plugin Info (#226)
add 52b6549 feat(embed): update version
add 471173e chore: Optimize error log content
add f10caf7 feat: Support Tencent COS Storage
add 2886ad5 feat: Support Ding talk Notification
add ae31793 fix: module name missing link
add 4f6733f feat: Support Baidu Content Audit Platform
add 8e42d3d fix: replace TextCensorResult with textCensorResult
add 2b50e8e Create user center slack and integrate with importer
add b1e4437 Fix readme and integrate notification
add 81a8ba0 Fix i18n
add 67bb89a Importer logic change
add 90d3920 With slash command /ask
add 262cf43 Fix slack_user_center
add d296971 Update info.yaml
add 86579a0 chore(plugins): go fmt code add ASF header
new 2d97fc5 Merge remote-tracking branch 'origin/main' into dev
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
README.md | 5 +-
captcha-google-v2/i18n/translation.go | 14 +-
captcha-google-v2/recaptcha.go | 4 +-
embed-basic/go.mod | 4 +-
embed-basic/go.sum | 4 +-
embed-basic/info.yaml | 2 +-
notification-dingtalk/README.md | 20 ++
.../config.go | 4 +-
.../dingtalk_notification.go | 36 +--
notification-dingtalk/docs/dingtalk-config.png | Bin 0 -> 252802 bytes
.../go.mod | 15 +-
.../go.sum | 24 +-
.../i18n/en_US.yaml | 58 +++-
notification-dingtalk/i18n/translation.go | 63 +++++
.../i18n/zh_CN.yaml | 58 +++-
.../info.yaml | 8 +-
.../cron.go => notification-dingtalk/schema.go | 36 +--
.../user_config.go | 4 +-
notification-slack/README.md | 26 +-
notification-slack/config.go | 2 +-
notification-slack/go.mod | 96 +++----
notification-slack/go.sum | 309 ++++++++++-----------
notification-slack/i18n/en_US.yaml | 192 +++++++------
notification-slack/i18n/translation.go | 22 +-
notification-slack/i18n/zh_CN.yaml | 190 +++++++------
notification-slack/info.yaml | 44 +--
notification-slack/schema.go | 2 +-
notification-slack/slack_notification.go | 32 ++-
notification-slack/user_config.go | 30 +-
render-markdown-codehighlight/i18n/translation.go | 13 +-
.../renderMarkdownCodehighlight.go | 119 ++++----
render-markdown-codehighlight/theme_list.go | 115 ++++----
reviewer-baidu/README.md | 12 +
{reviewer-akismet => reviewer-baidu}/basic.go | 63 +++--
{reviewer-basic => reviewer-baidu}/go.mod | 7 +-
.../go.sum | 16 +-
.../i18n/en_US.yaml | 19 +-
reviewer-baidu/i18n/translation.go | 36 +++
.../i18n/zh_CN.yaml | 25 +-
{reviewer-basic => reviewer-baidu}/info.yaml | 8 +-
storage-aliyunoss/README.md | 2 +-
storage-aliyunoss/aliyunoss.go | 6 +-
storage-s3/s3.go | 4 +-
{storage-s3 => storage-tencentyuncos}/README.md | 18 +-
{connector-google => storage-tencentyuncos}/go.mod | 15 +-
.../go.sum | 22 +-
.../i18n/en_US.yaml | 28 +-
storage-tencentyuncos/i18n/translation.go | 46 +++
.../i18n/zh_CN.yaml | 30 +-
.../info.yaml | 8 +-
.../tencentyuncos.go | 72 ++---
user-center-slack/README.md | 38 +++
user-center-slack/client.go | 195 +++++++++++++
{user-center-wecom => user-center-slack}/config.go | 52 ++--
{user-center-wecom => user-center-slack}/cron.go | 8 +-
{notification-lark => user-center-slack}/go.mod | 44 +--
.../go.sum | 105 +++----
user-center-slack/handler.go | 149 ++++++++++
.../i18n/en_US.yaml | 237 ++++++++--------
user-center-slack/i18n/translation.go | 87 ++++++
.../i18n/zh_CN.yaml | 235 ++++++++--------
user-center-slack/importer.go | 197 +++++++++++++
{user-center-wecom => user-center-slack}/info.yaml | 44 +--
.../notification.go | 76 +++--
user-center-slack/schema.go | 110 ++++++++
user-center-slack/slack_user_center.go | 251 +++++++++++++++++
.../user_config.go | 44 ++-
67 files changed, 2664 insertions(+), 1196 deletions(-)
create mode 100644 notification-dingtalk/README.md
copy {notification-slack => notification-dingtalk}/config.go (94%)
copy notification-slack/slack_notification.go =>
notification-dingtalk/dingtalk_notification.go (68%)
create mode 100644 notification-dingtalk/docs/dingtalk-config.png
copy {connector-dingtalk => notification-dingtalk}/go.mod (84%)
copy {render-markdown-codehighlight => notification-dingtalk}/go.sum (92%)
copy {notification-slack => notification-dingtalk}/i18n/en_US.yaml (51%)
create mode 100644 notification-dingtalk/i18n/translation.go
copy {notification-slack => notification-dingtalk}/i18n/zh_CN.yaml (52%)
copy {notification-slack => notification-dingtalk}/info.yaml (90%)
copy user-center-wecom/cron.go => notification-dingtalk/schema.go (66%)
copy {notification-slack => notification-dingtalk}/user_config.go (97%)
create mode 100644 reviewer-baidu/README.md
copy {reviewer-akismet => reviewer-baidu}/basic.go (68%)
copy {reviewer-basic => reviewer-baidu}/go.mod (91%)
copy {render-markdown-codehighlight => reviewer-baidu}/go.sum (94%)
copy {reviewer-akismet => reviewer-baidu}/i18n/en_US.yaml (62%)
create mode 100644 reviewer-baidu/i18n/translation.go
copy {reviewer-akismet => reviewer-baidu}/i18n/zh_CN.yaml (53%)
copy {reviewer-basic => reviewer-baidu}/info.yaml (91%)
copy {storage-s3 => storage-tencentyuncos}/README.md (50%)
copy {connector-google => storage-tencentyuncos}/go.mod (83%)
copy {render-markdown-codehighlight => storage-tencentyuncos}/go.sum (87%)
copy {storage-aliyunoss => storage-tencentyuncos}/i18n/en_US.yaml (78%)
create mode 100644 storage-tencentyuncos/i18n/translation.go
copy {storage-aliyunoss => storage-tencentyuncos}/i18n/zh_CN.yaml (75%)
copy {storage-aliyunoss => storage-tencentyuncos}/info.yaml (90%)
copy storage-aliyunoss/aliyunoss.go => storage-tencentyuncos/tencentyuncos.go
(80%)
create mode 100644 user-center-slack/README.md
create mode 100644 user-center-slack/client.go
copy {user-center-wecom => user-center-slack}/config.go (73%)
copy {user-center-wecom => user-center-slack}/cron.go (88%)
copy {notification-lark => user-center-slack}/go.mod (55%)
copy {render-markdown-codehighlight => user-center-slack}/go.sum (67%)
create mode 100644 user-center-slack/handler.go
copy {user-center-wecom => user-center-slack}/i18n/en_US.yaml (88%)
create mode 100644 user-center-slack/i18n/translation.go
copy {user-center-wecom => user-center-slack}/i18n/zh_CN.yaml (82%)
create mode 100644 user-center-slack/importer.go
copy {user-center-wecom => user-center-slack}/info.yaml (89%)
copy notification-slack/slack_notification.go =>
user-center-slack/notification.go (72%)
create mode 100644 user-center-slack/schema.go
create mode 100644 user-center-slack/slack_user_center.go
copy {notification-slack => user-center-slack}/user_config.go (72%)