用于 Sourceforge 功能/错误跟踪系统的 Mylyn 连接器

发布于 2025-01-01 04:35:21 字数 237 浏览 3 评论 0原文

我还没有找到任何关于这方面的明确信息。

是否可以将 sourceforge 的错误/功能跟踪系统与 Mylyn 集成?

我发现 this 页面看起来有点旧(实际上,用于下载通用连接器的链接不起作用)。

有人对此有任何线索吗?这样的连接有可能实现吗?

I haven't found any clear information about this around.

Is it possible to integrate the sourceforge tracking system for bugs/features with Mylyn?

I've found this page that seems a bit old (indeed the link for downloading the general connector does not work).

Anyone have a clue about this? It is possible to realise such a kind of connection?

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

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

发布评论

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

评论(3

心不设防 2025-01-08 04:35:21

是的,随着 SourceForge 转向使用 Allura,您突出显示的页面上的配置已过时。

我在 上发布了有关让 Web 模板连接器适用于 Allura 的详细信息http://officefloor.wordpress.com/2012/12/10/allura-sourceforge-mylyn-connector/

Yes with the move of SourceForge to use Allura the configuration on the page you highlighted is outdated.

I posted details on getting the Web Template Connector to work for Allura at http://officefloor.wordpress.com/2012/12/10/allura-sourceforge-mylyn-connector/

叫嚣ゝ 2025-01-08 04:35:21

通用连接器现在位于 Mylyn 培养箱中。使用此下载站点:
http://download.eclipse.org/mylyn/incubator/3.7(适用于 Eclipse 3.6 , 3.7, 3.8)

The generic connector is now in the Mylyn incubator. Use this download site:
http://download.eclipse.org/mylyn/incubator/3.7 (for Eclipse 3.6, 3.7, 3.8)

狼性发作 2025-01-08 04:35:21

由于我无法让它运行 – 也许是因为 Eclipse Luna 或其他原因 – 我稍微修改了 Daniel 的方法,部分使用 REST 接口:

基本配置

  1. 将以下参数和适当的值添加到附加项下的表中“任务存储库属性”对话框中的“设置”部分:
    • project – 您所谓的项目 UNIX 名称
    • 门票 – 票务应用程序,例如错误功能
    • bearer_token – 您需要按照 Allura 文档
  2. href="https://sourceforge.net/p/forge/documentation/Allura%20API/#oauth-with-bearer-tokens" rel="nofollow">高级配置下的 /em>,使用:
    • 任务 URL${serverUrl}/p/${project}/${tickets}/(与 Daniel 的方法相同)
    • 新任务 URL${serverUrl}/p/${project}/${tickets}/new(与 Daniel 的方法相同)
    • 查询请求 URL${serverUrl}/rest/p/${project}/${tickets}?access_token=${bearer_token}
    • 查询模式\{"summary":\s*"({Description}.+?)",\s*"ticket_num":\s*({Id} .+?)\}

里程碑查询

要按里程碑查询任务,请使用以下命令参数在您的编辑查询配置中:

  • 将参数里程碑(例如M1)添加到参数表中,
  • 使用以下查询URL${serverUrl}/rest/p/${project}/${tickets}/search?q=_milestone%3A${milestone}&access_token=${bearer_token}

Since I wasn't able to get it running – maybe it's because of Eclipse Luna or something else – I slightly modified Daniel's method which partially uses the REST interface:

Basic Configuration

  1. Add the following parameters and appropriate values to the table unter Additional Settings section in the Properties for Task Repository dialog:
    • project – your so-called UNIX name of the project
    • tickets – the ticketing application, e.g. bugs or features
    • bearer_token – you need to set-up a bearer token as described in the Allura documentation
  2. under Advanced Configuration, use:
    • Task URL: ${serverUrl}/p/${project}/${tickets}/ (the same as in Daniel's method)
    • New Task URL: ${serverUrl}/p/${project}/${tickets}/new (the same as in Daniel's method)
    • Query Request URL: ${serverUrl}/rest/p/${project}/${tickets}?access_token=${bearer_token}
    • Query Pattern: \{"summary":\s*"({Description}.+?)",\s*"ticket_num":\s*({Id}.+?)\}

Milestone query

To query tasks by milestones, use the following parameters in your Edit Query configuration:

  • add a parameter milestone with e.g. M1 to the parameter table
  • use the following Query URL: ${serverUrl}/rest/p/${project}/${tickets}/search?q=_milestone%3A${milestone}&access_token=${bearer_token}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文