First of all: as always your work is appreciated.
Then some remarks... I installed XML::Simple from CPAN and can't connect to perlmonks.org because I'm living behind a very strict firewall. Then you'll find that the error message should be rearranged:
from:
die "Error logging in: $result->code() $result->message()"
to
die "Error logging in:\nCode:", $result->code(), "Reason: ", $result-
+>message(), "\n"
Now I'll give it -say- 5 minutes to find out how to get through the FW using a proxy... hang on :)
Update1: Somehow the env_proxy() method (as described in man lwpcook doesn't work, so I use this (add after the cookie-jar line)
if (defined $ENV{'http_proxy'}) {
print "Using HTTP Proxy: $ENV{'http_proxy'}\n";
$agent->proxy(http => $ENV{'http_proxy'});
}
Now I'll take a short look what goes wrong with nodes having a negative reputation (yes, I got one of those, you should have one, too: just for testing purposes *grin*)
Update2 Just replace the %3u in the printf statements at the end of the script by %3d so we can display negative numbers...
Update3: Sorry, a '\' has sneak into the first fix: right before the 'R' of 'Reason'. Removed it...
Regards... |
Stefan
|
you begin bashing the string with a +42 regexp of confusion
|
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.