trac基于什么框架?

发布于 2024-09-02 04:49:17 字数 105 浏览 2 评论 0原文

我刚刚下载了这个跟踪系统,并且很好奇这个伟大的系统使用什么框架?

I just downloaded this tracking system and curious what framework this great system uses?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

早茶月光 2024-09-09 04:49:17

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 方面特别感兴趣,请查看trac.web 模块的源代码

Trac does not use any overarching external "framework". You can see its complete list of external dependencies (beyond a Python interpreter itself) in the setup.py file from the distribution:

    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'],
    },

If you're particularly interested in the HTTP side of things, take a look at the source to the trac.web module.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文