Codebase list esniper / 4887fc2
Import Upstream version 2.16.1 Dmitry Smirnov 7 years ago
6 changed file(s) with 13 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 2007-04-02
1 * Added captcha error.
2 * 2.16.1 released.
3
04 2007-03-28
15 * 2.16.0 released.
26 * Add support for bid history without bidder name
394394 loginTime = time(NULL);
395395 else if (pp->pageName && !strcmp(pp->pageName, "PageSignIn"))
396396 ret = auctionError(aip, ae_login, NULL);
397 else if (pp->srcId && !strcmp(pp->srcId, "Captcha.xsl"))
398 ret = auctionError(aip, ae_captcha, NULL);
397399 else {
398400 ret = auctionError(aip, ae_login, NULL);
399401 bugReport("ebayLogin", __FILE__, __LINE__, aip, mp, "unknown pageinfo");
243243 "Auction %s: Must sign in\n",
244244 "Auction %s: Cannot bid on item (fixed price item?)\n",
245245 "Auction %s: Dutch auction bid must have higher price or quantity than prior bid\n",
246 "Auction %s: Login failed due to captcha. Please see\nhttp://esniper.sf.net/captcha.html for more details\n",
246247 /* ae_unknown must be last error */
247248 "Auction %s: Unknown error code %d\n",
248249 };
477478 --j; /* doesn't count as an attempt */
478479 printLog(stderr, "%s: Will retry, sleeping for an hour\n", timestamp());
479480 sleep(3600);
480 }
481 } else if (auctions[i]->auctionError == ae_login ||
482 auctions[i]->auctionError == ae_captcha)
483 return 0;
481484 }
482485 printLog(stdout, "\n");
483486 }
6060 ae_mustsignin,
6161 ae_cannotbid,
6262 ae_dutchsamebidquantity,
63 ae_captcha,
6364 /* ae_unknown must be last error */
6465 ae_unknown
6566 };
15641564
15651565 # Define the identity of the package.
15661566 PACKAGE=esniper
1567 VERSION=2.16.0
1567 VERSION=2.16.1
15681568
15691569
15701570 cat >>confdefs.h <<_ACEOF
00 AC_INIT(esniper.c)
1 AM_INIT_AUTOMAKE(esniper,2.16.0)
1 AM_INIT_AUTOMAKE(esniper,2.16.1)
22 AC_PROG_CC
33 AC_PROG_MAKE_SET
44