Trac 维基页面列表
我在 Trac wiki 中创建了一些文档。 我将这些页面设置为全部以相同的模式开头(例如“MyDoc...”)。 我想从 Trac 检索以此模式开头的页面的所有 wiki 页面链接。
有办法这样做吗?
I create some documentation in the Trac wiki. I set these pages to all start with the same pattern (like "MyDoc...").
I want to retrieve from Trac all the wiki page links for the pages starting with this pattern.
Is there a way to do so ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用
[[TitleIndex]]
宏即可。 请参阅文档。 在你的例子中它应该是:Just use the
[[TitleIndex]]
macro. See documentation. In your example it should be:我是如何做到的:获取 wiki/TitleIndex 页面,查找每个
,分析 href 属性的内容,如果与我的模式匹配,则添加链接到列表。
How I did it : GET the wiki/TitleIndex page, look for each
<a href="..."/>
, analyze the content of href attribute and if matching my pattern, add the link to the list.