如何为 Trac TicketQuery 定义变量?

发布于 2024-09-02 10:02:26 字数 465 浏览 4 评论 0原文

使用 TRAC Sprint 的 TicketQuery 模板来显示正在发生的情况。当模板在多个位置需要当前冲刺的名称时,如何仅输入一次?例如,“Sprint1”需要 6 个位置:

= 新项目 = [[TicketQuery(milestone=Sprint1,status=new,format=table,order=priority,col=id|summary|priority|component|owner|type)]]

= 正在进行的项目 = [[TicketQuery(milestone=Sprint1,status=in_progress,format=table,order=priority,col=id|summary|priority|component|owner|type)] ]

Using TRAC TicketQuery template for sprint to show what's going on. How would I type name of current sprint only ONCE, when template needs it in multiple location? For example "Sprint1" is needed is 6 places:

= New items = [[TicketQuery(milestone=Sprint1,status=new,format=table,order=priority,col=id|summary|priority|component|owner|type)]]

= Items in progress = [[TicketQuery(milestone=Sprint1,status=in_progress,format=table,order=priority,col=id|summary|priority|component|owner|type)]]

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

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

发布评论

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

评论(1

白芷 2024-09-09 10:02:26

也许这会做一些接近你想要的事情? (它将按状态值分组,因此您应该只需要 1 个查询而不是 6 个。)

[[TicketQuery(milestone=Sprint1,format=table,order=priority,col=id|summary|priority|component|owner|type,group=status)]]

至于定义这样的变量,不,没有办法做到这一点。

Perhaps this will do something close to what you want? (It will group by status value, so you should only need 1 query instead of 6.)

[[TicketQuery(milestone=Sprint1,format=table,order=priority,col=id|summary|priority|component|owner|type,group=status)]]

As for defining variables like that, no, there isn't a way to do that.

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