mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
dd77d1676b
Added S_OK and S_FALSE modified Resources/ntstatus.xml Added all possible STATUS_WAIT_XX codes as STATUS_WAIT_0 + XX modified TechBot.Console/App.config Don't use hard-coded paths, please! modified TechBot.Library/ErrorCommand.cs New and improved !error command, now performs heuristics to catch all possible or likely uses modified TechBot.Library/HresultCommand.cs Removed useless field modified TechBot.Library/NumberParser.cs Made a couple of methods static modified TechBot.Library/TechBotService.cs Disable !api until it fails gracefully svn path=/trunk/; revision=23984
20 lines
980 B
XML
20 lines
980 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<configuration>
|
|
<appSettings>
|
|
<add key="IRCServerHostName" value="irc.eu.freenode.net" />
|
|
<add key="IRCServerHostPort" value="6667" />
|
|
<add key="IRCChannelNames" value="channel1;channel2" />
|
|
<add key="IRCBotName" value="MyBot" />
|
|
<add key="IRCBotPassword" value="MyPassword" />
|
|
<add key="ChmPath" value="C:\IRC\TechBot\CHM" />
|
|
<add key="MainChm" value="kmarch.chm" />
|
|
<add key="NtstatusXml" value="ntstatus.xml" />
|
|
<add key="WinerrorXml" value="winerror.xml" />
|
|
<add key="HresultXml" value="hresult.xml" />
|
|
<add key="WmXml" value="wm.xml" />
|
|
<add key="SvnCommand" value="svn co svn://svn.reactos.org/trunk/reactos" />
|
|
<add key="BugUrl" value="http://www.reactos.org/bugzilla/show_bug.cgi?id={0}" />
|
|
<add key="WineBugUrl" value="http://bugs.winehq.org/show_bug.cgi?id={0}" />
|
|
<add key="SambaBugUrl" value="https://bugzilla.samba.org/show_bug.cgi?id={0}" />
|
|
</appSettings>
|
|
</configuration>
|