多个 Trac 项目
我正在构建一个集成系统,其中使用 Trac 来支持在 apache 网络服务器 2.2 上运行的 wiki 支持 mod_wsgi 。
我的想法是拥有一个不是 \Trac\Project 而是更复杂一些的文件夹结构。我希望我的文件系统结构如下:
-Trac
-SomeContext
-...
-Project1
-Project2
-SomeOtherContext
-...
-Project1
-Project2
我想使用与其文件系统位置匹配的 url 来访问它们
(即:site.com\trac\SomeContext...\Project1)
根据我对 trac 的了解,仅搜索 \Trac\ 中的文件夹,除了根目录之外没有任何深度。
我该如何解决这个问题?
I'm building an integrated system where I am using Trac for wiki support running on apache webserver 2.2 with mod_wsgi.
I had this idea to have a folder structure that is not \Trac\Project but something a little more complex. I want my filesystem structure to be like:
-Trac
-SomeContext
-...
-Project1
-Project2
-SomeOtherContext
-...
-Project1
-Project2
I would like to access them with the url matching their filesystem location
(ie: site.com\trac\SomeContext...\Project1)
From what i understand about trac only the folders in \Trac\ are searched with no depth other than the root.
How can i solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅 'http://code.google.com/p/modwsgi/wiki/ 中的食谱IntegrationWithTrac' 了解如何做到这一点的想法。
See recipes in 'http://code.google.com/p/modwsgi/wiki/IntegrationWithTrac' for ideas of how to do that.
您可以对 trac 源代码进行少量修改。
You can apply little modification is trac source code.