Не получается: (
Что я сделал до сих пор:
установлено:
-tortoisehg-2.1.3-hg-1.9.2-x86.msi
-python-2.7.2.msi
-mercurial-1.9.2-x86.msi
Моя переменная PATH содержит: D: \ Program Files\ TortoiseHg \; D: \ Python27;
Создал D: \ MercurialWeb \ и настроил его в IIS для запуска тестового сценария Python CGI.
В скопировал каталог шаблонов из tortoiseHg тудаweb dir и распаковал zip библиотеки тоже.
Мой hgweb.cgi выглядит так:
#!/usr/bin/env python
#
# An example hgweb CGI script, edit as necessary
# See also http://mercurial.selenic.com/wiki/PublishingRepositories
# Path to repo or hgweb config to serve (see 'hg help hgweb')
config = "/path/to/repo/or/config"
# Uncomment and adjust if Mercurial is not installed system-wide:
#import sys; sys.path.insert(0, "/path/to/python/lib")
# Uncomment to send python tracebacks to the browser if an error occurs:
import cgitb; cgitb.enable()
from mercurial import demandimport; demandimport.enable()
from mercurial.hgweb import hgweb, wsgicgi
application = hgweb(config)
wsgicgi.launch(application)
hgweb.config
[paths]
MySourceCode = D:\MercurialRepos\**
[web]
style = monoblue
Но если я откроюНа сайте я получаю это:
<type 'exceptions.ImportError'>: No module named mercurial
args = ('No module named mercurial',)
message = 'No module named mercurial'