2

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?

Filipe Pinheiro
  • 1,082
  • 8
  • 32

2 Answers2

0

You can apply little modification is trac source code.

Svisstack
  • 16,203
  • 6
  • 66
  • 100
  • I'm using a windows system (WS2008) so can you give me some details on that? – Filipe Pinheiro Apr 23 '10 at 13:57
  • Sorry i can't because i'm not scripting in python. – Svisstack Apr 23 '10 at 18:51
  • I'm no interested in scripting, i just want to know where i have to do the changes so i can have that functionality. I just want the search of trac instance to be done in all the subfolders not only on the folder specified in apache. – Filipe Pinheiro Apr 23 '10 at 20:37
0

See recipes in 'http://code.google.com/p/modwsgi/wiki/IntegrationWithTrac' for ideas of how to do that.

Graham Dumpleton
  • 57,726
  • 6
  • 119
  • 134