mirror of
https://github.com/reactos/reactos.git
synced 2025-06-12 11:28:32 +00:00
Different output for !bug command on the other channels. (#winehackers, #samba-technical)
svn path=/trunk/; revision=20590
This commit is contained in:
parent
8218812468
commit
6de3d3ca11
7 changed files with 84 additions and 17 deletions
|
@ -17,7 +17,7 @@ namespace TechBot.Library
|
|||
private string hresultXml;
|
||||
private string wmXml;
|
||||
private string svnCommand;
|
||||
private string bugUrl;
|
||||
private string bugUrl, WineBugUrl, SambaBugUrl;
|
||||
private ArrayList commands = new ArrayList();
|
||||
|
||||
public TechBotService(IServiceOutput serviceOutput,
|
||||
|
@ -28,7 +28,9 @@ namespace TechBot.Library
|
|||
string hresultXml,
|
||||
string wmXml,
|
||||
string svnCommand,
|
||||
string bugUrl)
|
||||
string bugUrl,
|
||||
string WineBugUrl,
|
||||
string SambaBugUrl)
|
||||
{
|
||||
this.serviceOutput = serviceOutput;
|
||||
this.chmPath = chmPath;
|
||||
|
@ -39,6 +41,8 @@ namespace TechBot.Library
|
|||
this.wmXml = wmXml;
|
||||
this.svnCommand = svnCommand;
|
||||
this.bugUrl = bugUrl;
|
||||
this.WineBugUrl = WineBugUrl;
|
||||
this.SambaBugUrl = SambaBugUrl;
|
||||
}
|
||||
|
||||
public void Run()
|
||||
|
@ -63,7 +67,9 @@ namespace TechBot.Library
|
|||
commands.Add(new SvnCommand(serviceOutput,
|
||||
svnCommand));
|
||||
commands.Add(new BugCommand(serviceOutput,
|
||||
bugUrl));
|
||||
bugUrl,
|
||||
WineBugUrl,
|
||||
SambaBugUrl));
|
||||
}
|
||||
|
||||
public void InjectMessage(MessageContext context,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue