I updated to the latest available HTML::Parser, hoping the new ignore_tags() method would alleviate some distressingly rare interruptions by rogue P tags in my...
7121
Alan Jiang
alan@...
Apr 2, 2001 3:42 pm
Hi, everybody I have a tough task on hand to tackle. I am trying to write a script to automate the process of extracting the news items from Dow Jones news ...
7122
Christoph Wernli
cw@...
Apr 2, 2001 3:47 pm
... Wouldn't consider it a defense, since js is executed client side. You'll just have to emulate the JavaScript-functions (i.e. figure out what exactly gets...
7123
Albert Spohn
spohn_44@...
Apr 2, 2001 6:50 pm
Howdy - I'm a newcoming to the LWP modules and I've gotten to the point of successfully isolating links on a given page. My ultimate goal is to visit each...
7124
Gisle Aas
gisle@...
Apr 2, 2001 7:36 pm
... If you also enable the 'unbroken_text' option you should get it in one piece. ... Do you really want the 'line', 'column' and 'offset' to be reported as if...
7125
Randal L. Schwartz
merlyn@...
Apr 3, 2001 3:26 am
... Albert> Howdy - I'm a newcoming to the LWP modules and I've gotten to the Albert> point of successfully isolating links on a given page. My ultimate ...
7126
isminiz
ethemevlice@...
Apr 3, 2001 9:52 am
Hi list, How we will use HTTP::Cookies in HTTP::Request? Some examples please!!! Some server setting up cookies to our computer like "mtnsms.com". How we will...
7127
Nathaniel Irons
ndi@...
Apr 3, 2001 8:08 pm
... Marvelous! ... Yes, you're right. I've only been using the module a little while and wasn't thinking about how this change would interact with the bigger ...
7128
John Klar
j.klar@...
Apr 4, 2001 8:36 pm
Hi, I've been playing around with LWP::Simple over the past week to snarf historical stock quotes from Yahoo for tax reporting. Pleased with my feeble effort I...
7129
Gisle Aas
gisle@...
Apr 5, 2001 2:07 pm
... Looks good, but to me it feels like the correct place for this hack is in the LWP::Protocol::http module. Not that I actually expect us start proxying...
7130
John Klar
j.klar@...
Apr 5, 2001 2:39 pm
... Ah, yes. I hadn't gotten far enough to grok the system architecture. The funny thing is that I wanted to poke around and see how this was handled for...
7131
Gisle Aas
gisle@...
Apr 5, 2001 3:11 pm
... Good catch. Seems like a good idea to just reuse the code from the authorization_basic() hack. The patch now looks like: Index: lib/LWP/Protocol/http.pm ...
7132
Gisle Aas
gisle@...
Apr 5, 2001 4:06 pm
HTML-Parser-3.20 has now been on CPAN a few days. This release is basically identical to 3.19_94. User visible changes since 3.19 are: * New methods/options -...
7133
Ben Goswami
ben.goswami@...
Apr 5, 2001 11:21 pm
Hi, anybody knows where can I find Dom.pm for XML::Dom, it is not in activestate or CPAN site thx ben ... From: jklar@... [mailto:jklar@...]On...
7134
Ben goswami
bengoswami@...
Apr 5, 2001 11:22 pm
Hi, I'm trying to build an associative array out of an xml document. I'm using DOM but having some problems using the the DOM methods(like getChildNodes etc.)...
7135
caroline.barretto@...
Apr 6, 2001 2:11 pm
Good morning, We are trying to install the Perl Library URI-1.11 but when we type "make test" we have this error : " t/heuristic ... failed " Do we need this...
7136
Gisle Aas
gisle@...
Apr 6, 2001 2:57 pm
... Not really. I would still be happy if you could investigate why it failed. What do you see if you run the test by itself: perl -Mblib t/heuristic.t If...
7137
Alan Jiang
alan@...
Apr 6, 2001 3:19 pm
Hi, everybody I am writting a script that will send both querystring and form input data. I know how to do them seperately, but how do I submit them ...
7138
Lillith Lesanges
lillith@...
Apr 6, 2001 3:22 pm
... I had this happen to me just yesterday, as a matter of fact. Then I went back and installed something else first, and then the heuristic test passed. I...
7139
Gisle Aas
gisle@...
Apr 6, 2001 4:04 pm
... You should be able to build your request object like this: use HTTP::Request::Common qw(POST); use URI; my $uri = URI->new("http://www.xxx.com/foo"); ...
7140
Hill, Ronald
Ronald.Hill@...
Apr 6, 2001 6:09 pm
Hi All, I am trying to download my account information from the online banking function of Wells Fargo and I can't seem to figure out how? I can't seem to get...
7141
John Stracke
francis@...
Apr 6, 2001 6:15 pm
... Please don't use this patch; I found serious problems with it, and went with the pool-of-parsers approach instead. -- ...
7142
John Stracke
francis@...
Apr 6, 2001 6:27 pm
... Very old servers ran what is now called HTTP/0.9, which neither sends headers nor understands the ones you send. -- ...
7143
John Stracke
francis@...
Apr 6, 2001 6:28 pm
... If you just want the header, you should use HEAD instead of GET--it's more polite to the server. Doing GET and then throwing away the body is wasteful. --...
7144
John Stracke
francis@...
Apr 6, 2001 6:30 pm
I just noticed that, when HTML::Parse encountes , it sends it to me as \240. Since I want to treat my files as UTF-8, this is a problem. Is there any...
7145
Hill, Ronald
Ronald.Hill@...
Apr 6, 2001 6:45 pm
... From: Erik Wheeler [mailto:erik@...] Sent: Friday, April 06, 2001 11:26 AM To: Hill, Ronald Subject: Re: connedting to online banking site...
7146
Gisle Aas
gisle@...
Apr 6, 2001 7:56 pm
... Do you mean HTML::Parse or HTML::Parser here? HTML::Parser decode entities with the 'dtext' argspec and leave them alone for 'text'. UTF8 should work...
7147
Steve Borruso
sborruso@...
Apr 6, 2001 8:20 pm
Greetings, I've reposting this request with my script included along with debug output. Any assistance is appreciated. Having difficulty submitting a form and...
7148
John Stracke
francis@...
Apr 6, 2001 8:55 pm
... HTML::Parser, sorry. ... I'm not specifying dtext, and is getting decoded. Uh...but I might be using an old form of the interface, with different ...
7149
Gisle Aas
gisle@...
Apr 6, 2001 9:28 pm
... For v2 undecoded text should still be the default. But entitites _will_ be decoded in attribute values. If you want UTF8 output then it should just be a...