2010-05-22 64 views

回答

9

Trac不使用任何總體的外部「框架」。您可以從分佈setup.py文件中看到其完整的外部依賴的列表(超出一個Python解釋器本身):

install_requires = [ 
     'setuptools>=0.6b1', 
     'Genshi>=0.6', 
    ], 
    extras_require = { 
     'Babel': ['Babel>=0.9.5'], 
     'Pygments': ['Pygments>=0.6'], 
     'reST': ['docutils>=0.3'], 
     'SilverCity': ['SilverCity>=0.9.4'], 
     'Textile': ['textile>=2.0'], 
    }, 

如果你是在事物的HTTP方特別感興趣,看看在source to the trac.web module