-
Ignore this report, it was an apparent error caused by some customization. Skipping the first match is correct in the original design.
2010-01-06 01:50:14 UTC by joram3
-
In the Matches loop for redirects in FillFromAllPages you initialize i = 1, but matches is 0-based so the first match is never reported:
for (int i = 0 /* not 1 */; i < matches.Count; i++)
pages.Add(new Page(site, HttpUtility.HtmlDecode(matches[i].Groups[1].Value)));.
2010-01-02 04:27:26 UTC by nobody
-
Fails with NullReferenceException instead of WebException when retries exhausted.
The for-Loop doesn't need to check if retrys exhausted. Becaus he does, the loop ist exited and the following Statement (line 747, "Stream respStream = webResp.GetResponseStream();") produces a NullReferenceException. Btw.: The conditions to check if retries exhausted allow one retry to much.
Cactus26.
2009-12-16 08:00:44 UTC by cactus26
-
Unsure if this is the right place, but please find i18n file including Portuguese (Portugal), for MediaWiki language code "pt", based on i18n file for DotNetWikiBot 2.62.
Please take a look at www.translatewiki.net. If you contact Siebrand at this site, it may be possible to get full i18n support for DotNetWikiBot, in many languages and in an on-ongoing basis, for present and future releases...
2009-11-24 23:43:48 UTC by hamilton-abreu
-
swNDav bdrxfbkkjkzy, [url=http://ybjvpjwpaxfc.com/]ybjvpjwpaxfc[/url], [link=http://jtpgbkgzmneh.com/]jtpgbkgzmneh[/link], http://lirhxbzwalwc.com/.
2009-10-28 10:20:13 UTC by nobody
-
Whenever I call FillFromPageHistory for a PageList, I get a 503 error.
2009-10-15 20:08:12 UTC by nobody
-
I'll think about it. I hope that's not a common situation.
2009-09-19 05:37:03 UTC by code_driller
-
I see. It seems Mono developers have fixed that bug and now messages from InnerExceptions are properly available in "outer" exceptions. I'll update that.
2009-09-19 05:29:58 UTC by code_driller
-
I'll fix it. Thanks for reporting that.
2009-09-19 05:23:31 UTC by code_driller
-
The UseDefaultCredentials method is not implemented in mono and for the wiki I'm using it against, and most public wikis I believe, credentials are not even needed.
If the bot is running in mono I'd say to just skip setting wc.UseDefaultCredentials = true; to prevent the NotImplemented exception from being thrown. I've just commented it out and recompiled the code and it works fine in mono.
2009-09-17 18:40:56 UTC by jgleicher