如何在 Windows 上安装多个 TRAC 版本

发布于 2024-10-15 19:55:56 字数 567 浏览 3 评论 0原文

我们使用 TRAC 0.11.1 已经有一段时间了,并且有很多项目正在使用它运行。现在我们面临迁移到新服务器的情况,并希望开始使用 TRAC 0.12.2。

当然,将所有 0.11.1 项目迁移到 0.12.2 是可能的,但也需要大量工作,而且其中很多仅供参考。对于新项目,我们希望受益于 0.12.2 中的新功能。

因此,我们希望结合 0.11 安装来维护现有项目,并开始对新项目使用 0.12。我们在 Windows 上使用 Apache 中的 mod_wsgi 运行 Python 2.6.6。我们在TRAC网站上研究了一个解决方案,但它是针对Linux的。另外,mod_wsgi wiki (http://code.google.com/p/modwsgi/wiki/IntegrationWithTrac) 上的信息似乎仅适用于 Linux,因为它使用 Windows 上不可用的守护进程模式。

有人建议如何在 Windows 上的同一 Python 安装上使用 TRAC 0.11 和 0.12 吗?

We have been using TRAC 0.11.1 for quite some time now and have a lot of projects running with it. Now we are facing a migration to a new server and would like to start using TRAC 0.12.2.

Of course migrating all 0.11.1 projects to 0.12.2 would be possible, but would also be a lot of work while a lot of them only remain for reference. For new projects, we would like to benefit from the new functionality in 0.12.2.

So, we would like to combine a 0.11 installation to maintain the existing projects and start using 0.12 for the new projects. We run Python 2.6.6 on Windows with mod_wsgi in Apache. We have studied a solution on the TRAC website, but it is for Linux. Also information on the mod_wsgi wiki (http://code.google.com/p/modwsgi/wiki/IntegrationWithTrac) seems to work only on Linux, as it uses a daemon mode which is not available on Windows.

Anybody has suggestions how to use both TRAC 0.11 and 0.12 on the same Python installation on Windows?

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

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

发布评论

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

评论(1

叹梦 2024-10-22 19:55:56
  • 在 Python 环境之外安装两个版本的 Trac(例如 c:\trac\11c:\trac\12
  • 每组项目定义单独的虚拟主机
  • 为 每个 .wsgi 开头的每个虚拟主机都会更改路径,例如:

import os
import sys
sys.path.insert(0, 'c:/trac/11')
# sys.path.insert(0, 'c:/trac/12')

我目前正在 Django 使用此方法(在 Apache + mod_wsgi 上)

  • install both versions of Trac outside of the Python environment (like c:\trac\11 and c:\trac\12)
  • define separate virtual hosts for each group of projects
  • in each virtual host at the beginning of each .wsgi alter the path like:

.

import os
import sys
sys.path.insert(0, 'c:/trac/11')
# sys.path.insert(0, 'c:/trac/12')

I'm currently using this method for Django (on Apache + mod_wsgi)

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