是否可以从 Trac 自动生成变更日志?
Trac 是否提供了一种从一组票证自动生成更改日志的方法? 我有兴趣向有权访问 Trac 的人提供已完成的票证列表,最好采用人类可读的格式,例如就像单词文档或纯文本一样。
如果 Trac 不直接提供此功能,是否有我可以使用的外部工具?
请注意,我知道问题 如何从 Trac 生成变更日志 及其对我没有帮助。
Does Trac provide a way to automate generation of change logs from a group of tickets? I'm interesting in giving a list of completed tickets to someone with access to Trac, preferably in a human readable format, something like a word doc or plaintext.
If Trac doesn't provide this functionality directly is there an external tool I can use?
Note that I am aware of the question How to generate changelog from Trac and it doesn't help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您现在一定已经注意到了,Trac 中没有专门用于创建变更日志的功能。
因此,您将需要使用报告/查询界面,它当然可以收集票证数据,并具有针对类似变更日志的报告的分组/汇总功能。根据您的具体需求,如果您花一些时间进行定制,这可能就足够了。 最终您需要提供有关您需求的更多详细信息,否则这个问题太不清楚,无法获得令人满意的答案。
另请注意,对于 Trac 本身,有一个专门的 wiki 页面,其中包含的内容超出了单凭票证数据所能提供的内容。
As you must have already noticed by now is, there's no dedicated function in Trac for changelog creation.
So you'll want to use the report/query interface, that certainly can harvest ticket data and has grouping/summarizing capability for a changelog-like report. Depending on your specific needs this could be enough, if you take some time to customize. Ultimately you need to provide more details on your needs, or this question is too unclear to hope for a satisfying answer.
Note too, that for Trac itself there's a dedicated wiki page with more than what ticket data alone can deliver.
在这份“已完成的门票清单”中您需要多少信息?我之前做过的一件事是创建一个显示所需信息的报告,然后使用众多可用的 PDF 创建实用程序之一将页面“打印”到 PDF 文件。您还可以使用
wget
等工具从脚本中获取 HTML 格式的结果。How much information do you need in this "list of completed tickets"? One thing I've done before is create a report that shows the desired information and then "print" the page to a PDF file using one of the many PDF-creation utilities available. You can also use a tool like
wget
to grab the results in HTML format from a script.