2010-05-22 81 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