Trac,如何分层组织页面?

发布于 2024-11-05 07:20:35 字数 246 浏览 12 评论 0 原文

我使用 trac 来管理我的项目,我想以与 trac 项目相同的方式组织 wiki 页面,即通过类别、子类别等。 trac 网站上的 TitleIndex 页面很好地解释了我想要的结果获得。

我该如何实现这一目标?

I use trac to manage my projects and I'd like to organize wiki pages the same way trac project does, i.e. by category, subcategory, etc. TitleIndex page on trac site gives a good explanation of the result I want to obtain.

How do I achieve this?

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

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

发布评论

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

评论(2

用心笑 2024-11-12 07:20:35

首先,你可以创建分层的wiki页面,只需修改url,然后按回车键即可。也可以先创建一个维基链接,然后按红色链接。

例如,当您的 trac 主页为 http://trac.server.local/project/wiki 时,您可以在 URL 末尾键入 /customers,然后按回车键。因此,新的 URL 将为 http://trac.server.local/project/wiki/customers。您将看到一个几乎空白的页面,其中包含一个按钮创建此页面。按该按钮即可创建该页面。之后,您还可以在下一个级别创建页面,例如

  • http://trac.server.local/project/wiki/customers/microsoft
  • http://trac.server.local /project/wiki/customers/google
  • http://trac.server.local/project/wiki/customers/apple

要生成索引,我使用 HierWikiPlugin。在 /wiki/customers 页面上,我输入只是

[[SubWiki(customers/,1)]]

为了获取customers 下面的所有子页面的列表。要同时查看这些子页面的子页面,请增加级别,例如

[[SubWiki(customers/,2)]]

First of all, you can create hierarchically wiki pages, just by modifying the url, and press enter. It is also possible to create a wikilink first, and then press the red link.

For example, when your trac home page is http://trac.server.local/project/wiki, you can type /customers at the end of the url, and press enter. So the new url would be http://trac.server.local/project/wiki/customers. You will get an almost empty page with a button Create this page. Press that button to create that page. After that you can also create pages at the next level, for example

  • http://trac.server.local/project/wiki/customers/microsoft
  • http://trac.server.local/project/wiki/customers/google
  • http://trac.server.local/project/wiki/customers/apple

To generate an index, I use the HierWikiPlugin. On the /wiki/customers page, I enter just

[[SubWiki(customers/,1)]]

to get a list of all subpages below customers. To also see the subpages of those subpages, increase the level, for example

[[SubWiki(customers/,2)]]
遗忘曾经 2024-11-12 07:20:35

您可以使用以下方法添加子页面:

[[./SubPage]]

这会生成一个指向不存在页面的链接。当您单击该链接时,Trac 会向您显示一个页面,用于创建新的子页面或同一级别的页面...

You can add subpages using something like:

[[./SubPage]]

This generates a link to a non-existent page. When you click on the link, Trac shows you a page to create a new sub page or a page in the same level...

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