如何在 teamcity 主页顶部添加选项卡

发布于 2024-10-20 05:58:58 字数 92 浏览 0 评论 0原文

我们正在尝试在 teamcity 主页顶部的“项目/我的更改/代理/构建队列”区域旁边添加一个新选项卡。

有什么办法可以用当前的 API 来做到这一点吗?

We're trying to add a new tab on the top of teamcity's main page next to the Projects/My Changes/Agents/Build Queue area.

Is there any way to do this with the current API?

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

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

发布评论

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

评论(1

£烟消云散 2024-10-27 05:58:58

这不是 OpenAPI 的一部分。但您可以尝试以下 Javascript 代码:

  topNavPane.addTab("customTab", {
    caption: "Tab title",
    url: "<c:url value="/your_controller.html"/>"
  });

显然,您必须编写 your_controller 的实现。
在 JSP 视图中,您可能需要使用 page.tag,它是 TeamCity 页面的通用基础。

This is not a part of OpenAPI. But you can try the following Javascript code:

  topNavPane.addTab("customTab", {
    caption: "Tab title",
    url: "<c:url value="/your_controller.html"/>"
  });

You'll have to wright implementation of your_controller, obviously.
In your JSP view, you'll probably want to use page.tag, which is common base for TeamCity pages.

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