trac 和 svn (乌龟) - “问题跟踪器插件” -(是的,另一个 svn 和 trac 问题)
我希望能够“从问题跟踪器获取信息”,如“从问题跟踪器获取信息”部分中所述:http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-bugtracker.html (当用户启动时向用户显示一个 dlg 框svn 中的提交操作,以便他们可以从分配给他们的问题列表中进行选择)
我尝试查找有关 tortoisesvn 的 COM 插件的信息,但实际上没有成功找到一个。 有许多页面链接等说明了可能的情况,但我不想写一个链接,并且希望存在一个链接。
任何人都可以阐明这一点或为我的客户指出一个插件吗?
谢谢
I would like to be able to "get information from the issue tracker" as described in the section "Getting Information from the Issue Tracker" at: http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-bugtracker.html (display a dlg box to the user when they start a commit action in svn so they can choose form a list of issues assigned to them)
I have tried finding information about a COM plugin for tortoisesvn, but have been unsuccessful in actually finding one. There are many links to pages, etc stating what is possible, but I do not want to write one and am hoping one exists.
Can anyone shed some light on this or point me to a plugin for my client?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TSVN 源代码的 contrib/ 目录中有 IBugTraqProvider 的示例实现。 一个在ATL; 它运行一个 EXE,传递(除其他外)一个临时文件名,供提供程序写入提交消息。 该 EXE 应该与您的问题跟踪器对话。
另一个是 C# 语言; 它显示一些模拟数据,但可以根据需要进行扩展。
还有其他一些:Gurtle 与 Google 代码对话; 这里有一个 Trac 的。
There are example implementations of IBugTraqProvider in the contrib/ directory of the TSVN source. One's in ATL; it runs an EXE, passing (among other things) a temporary filename for the provider to write a commit message to. That EXE should talk to your issue tracker.
The other's in C#; it displays some mocked up data, but could be extended as required.
There are a couple of others: Gurtle talks to Google Code; there's one for Trac here.