==TraM 0.3==

TraM(Trac Multi) is a wrapper to enable multi-project browsing of a Trac installation.

==Requirements==
* TraM0.3 is only for Trac0.11
  (If you want a copy for trac 0.10, visit http://trac.rectang.com/projects/tram/) 
* Apache with mod_python or fcgi(experimental)

==Installation==
* (On Linux) See http://trac.edgewall.org/ticket/7823 and adopt t7823-genshi_modpython-r8333-011.diff
* (On Windows) See below. (On windows installation)
* Run: python setup.py install
* Edit trac.ini for activate components. (for every projects excluding project named "all")
[components]
tramplugin.* = enabled

* Edit trac.ini for activate components. (for project named "all")
[components]
trac.ticket.report.* = disabled

* Change your apache mod_python's configuration from "trac.web.modpython_fromtend" to "tram.modpython_frontend".
* Create a new Trac project named "all".
* Restart your apache daemon.

==On windows installation==
You should change trac/web_ui/__init__.py.

from pkg_resources import get_distribution
if not os.path.isdir(get_distribution('genshi').location):
    try:
+        from trac.web.api import *
        import mod_python.apache
        import sys

==License==
GPL

==Author==
For Trac 0.10 or lower 
* Andrew "HandyAndE" Williams <andy@handyande.co.uk>

For Trac 0.11
* Ryutaro "Ryuzee" YOSHIBA <ryuzee@users.sourceforge.jp>
  http://www.ryuzee.com
* Takashi OKAMOTO <okamototk@users.sourceforge.jp>
  http://tidus.ultimania.org/diary/
