2012-08-03 54 views
1

我有一個運行了一段時間的Bugzilla系統,我最近開始使用TortoiseHG,我想使用Bugzilla擴展來更新評論。爲什麼TortoiseHG不會向Bugzilla發表評論

我已經按照Mercurial站點Here設置它,但它沒有發佈到該錯誤。

這裏是Mercurial.ini的副本我使用

# Generated by TortoiseHg settings dialog 
[tortoisehg] 
ui.language = en_GB 
[ui] 
merge = kdiff3 
[extensions] 
hgext.bugzilla = 
zeroconf = 

[hooks] 
# run bugzilla hook on every change pulled or pushed in here 
incoming.bugzilla = python:hgext.bugzilla.hook 

[bugzilla] 
# REQUIRED ITEMS: 
host = http://192.168.10.33/bugtracker/ # mysql server where bugzilla database lives 
password = xxxxx # user's password 
version = 2.22.2 # version of bugzilla installed 

# OPTIONAL ITEMS: 
bzuser = [email protected] # fallback bugzilla user name to record comments with 
# db = bugs  # database to connect to 
# notify = ... # command to run to get bugzilla to send mail 
regexp = [Bb]ug (\d+) # regexp to match bug ids (must contain one "()" group) 
# strip = 0  # number of slashes to strip for url paths 
# style = ...  # style file to use when formatting comments 
# template = ... # template to use when formatting comments 
# timeout = 5  # database connection timeout (seconds) 
# user = bugs  # user to connect to database as 
# [web] 
# baseurl = http://hgserver/... # root of hg web site for browsing commits 

有沒有其他人做到了這一點,並能提供指教?

回答

0

您不應該在您使用的存儲庫的hgrc文件中配置此擴展名,而不是在您的mercurial.ini中配置此擴展名?