产品.Poi 和 Subversion 集成

发布于 2024-10-24 01:50:33 字数 332 浏览 2 评论 0原文

是否有任何现成的解决方案可以将 Products.Poi 与 Subversion 变更日志集成?如果没有,编码的步骤是什么?

每当对 SVN 存储库的提交引用日志消息中的问题 ID 时,我希望在 Poi 问题跟踪器中添加一条注释。像MantisBT可以做什么。

Is there any ready-to-use solution for integrating Products.Poi with a Subversion changelog? If not, which would be the steps to code it?

I'd like to have a note added to the Poi issue tracker whenever a commit to the SVN repository references the issue id in the log message. Something like what is possible to be done with MantisBT, for instance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一直在等你来 2024-10-31 01:50:33

您可能可以为此在 subversion 中创建一个提交后挂钩。

  • 检查日志消息是否提及 #123(作为示例)。

  • 以某种方式找出需要将其发布到哪个问题跟踪器。假设您只有一个与此颠覆存储库相对应的跟踪器。

  • 在该钩子中,将所需信息发送到您在提交问题响应时将使用的 url。

编辑:解决方案的一部分可能是 poi.receivemail 包:让你的 subversion 挂钩发送发送到您已与 poi.receivemail 和 smtp2zope 连接的地址的电子邮件。

You could probably create an after-commit hook in subversion for this.

  • Check if the log messages mentions #123 (as example).

  • Somehow figure out which issue tracker this would need to be posted to. Let's just say you have only one tracker that corresponds to this subversion repository.

  • In that hook do a POST with the required info to the url that you would use when submitting a response to an issue.

EDIT: part of the solution may be the poi.receivemail package: let your subversion hook send an email to an address that you have hooked up with poi.receivemail and smtp2zope.

顾挽 2024-10-31 01:50:33

对此没有现有的解决方案或集成。

如果您只是弄清楚要使用哪些网址(检查表格),莫里茨的建议可能会奏效

There is no existing solution or integration for this.

Maurits' proposal might work if you just figure out which urls to use (check the forms)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文