Skip to search.
libwww-perl

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 7530 - 7559 of 7559   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7530 Bill Moseley
moseley@... Send Email
Jun 29, 2001
6:11 pm
Trying to update HTTP::Date on a system using CPAN shell does one of those famous dependency cycles that ends up trying to install perl. Really more than I...
7531 Gisle Aas
gisle@... Send Email
Jun 29, 2001
6:31 pm
... The only dependency HTTP::Date itself has is Time::Local, so you should basically be fine whatever perl version you use. You can for instance install that...
7532 fred whitridge
fred@... Send Email
Jun 29, 2001
6:33 pm
Hello: This newbie has struggled thru endless redirects and cookies with a password protected page. I've reached the holy grail of the page that I want to...
7533 Bill Moseley
moseley@... Send Email
Jun 29, 2001
6:36 pm
... I guess install HTTP::Date ends up grabbing libwww, and things go from there. (My scroll-back buffer was not set very big, sorry). ... That's basically...
7534 Simon Dang
simon_dang@... Send Email
Jun 29, 2001
8:44 pm
Hi, I am a newbie with LWP. Does LWP::RobotUA run recursively by default? If not, is there method that I can call within UA to set this to run recursively? I...
7535 Todd Gruhn's account
tgruhn2@... Send Email
Jul 2, 2001
7:48 am
I seem to have a bit of a quandry: I wish to write a subroutine using PERL to download RFCs when I click on the appropriate Tk widget. My problem is neither...
7536 Fred Leeflang
fredl@... Send Email
Jul 2, 2001
8:21 am
Try using Passive transfer mode (use Passive => 1 in new(), or set env var. FTP_PASSIVE)...
7537 fred whitridge
fred@... Send Email
Jul 2, 2001
12:51 pm
I have inelegantly solved my problem by loading the page with the javascript reference into Excel and then snagging the executed result. There has to be a...
7538 Bill Moseley
moseley@... Send Email
Jul 2, 2001
6:18 pm
Hello, I need to extract text out of html docs to do search word highlighting in context. (You know, like google's output.) So, is there a "fastest" method to...
7539 Simon Dang
simon_dang@... Send Email
Jul 2, 2001
8:53 pm
Nevermind, I took a look under the hood of lwp-rget and saw the recursive logic. Thanks, Simon ... I am a newbie with LWP. ... ...
7540 Michael Donn
miked@... Send Email
Jul 3, 2001
4:04 am
I am a relative newcomer to installation of software in Linux, and would be most grateful for any help that I get. I am using Red Hat Linux 7.0 on a pc. After...
7541 Neven
neven@... Send Email
Jul 4, 2001
10:28 am
Hello all How to make simple http proxy with Perl ? I just want to dump requests in 2 files - in_file and out_file. 10x neven...
7542 zafar@... Send Email Jul 4, 2001
10:29 am
How do I do to know the size of a file before doing download, to know if has the expected size? I am trying to use Lwp or Http -headers but I don't get. Zafar...
7543 zafar@... Send Email Jul 4, 2001
10:30 am
How do I do to know the size of a file before doing download, to know if has the expected size? I am trying to use Lwp or Http -headers but I don't get. Zafar...
7544 Reiner Buehl
reiner_buehl@... Send Email
Jul 4, 2001
11:02 am
... This is what I use. It is from a older issue of the german "Linux Magazin", http://www.linux-magazin.de/ausgabe/2000/04/Proxy/proxy.html I have used it on...
7545 Ilya Martynov
m_ilya@... Send Email
Jul 4, 2001
11:29 am
N> Hello all N> How to make simple http proxy with Perl ? N> I just want to dump requests in 2 files - in_file and out_file. N> 10x You can take mine. It is...
7546 Randal L. Schwartz
merlyn@... Send Email
Jul 4, 2001
4:55 pm
... Reiner> This is what I use. It is from a older issue of the german "Linux Reiner> Magazin", http://www.linux-magazin.de/ausgabe/2000/04/Proxy/proxy.html ...
7547 Joel Divekar
joel@... Send Email
Jul 6, 2001
6:14 am
Hi All Installed Indigo Perl on my system and when I tried the sample code which came along with the installation to test mod_perl it gave an error as "Page ...
7548 Daniel Yacob
yacob@... Send Email
Jul 6, 2001
9:32 am
Greetings, I've experienced a problem using HTML::Parser where I'm getting different results when a cgi script is used under a virtual host (apache 1.3.20,...
7549 Jason Whitlow
jwhitlow@... Send Email
Jul 8, 2001
10:54 pm
I am trying to get one of my apps to display only 5 records at a time. With Perl attaching to a mysql database. Does anyone have any good Ideas of how to do...
7550 Ian Ragsdale
ian@... Send Email
Jul 9, 2001
1:47 am
This probably belongs on a MySQL list, but either way, the answer is to look in the documentation - there is a 'LIMIT' clause that tells MySQL to only return a...
7551 Reinier Post
rp@... Send Email
Jul 9, 2001
6:53 am
... Yes, Perl can do this (check the DBI documentation), and the SQL SELECT statement can do this, too (check the mySQL documentation, www.mysql.com). Your...
7552 Reinier Post
rp@... Send Email
Jul 9, 2001
1:21 pm
... Try WWW::Robot, which is an inbterface on LWP::RobotUA to do just that. -- Reinier...
7553 Reinier Post
rp@... Send Email
Jul 9, 2001
1:24 pm
... LWP doesn't support Javascript, but you can + do an ad-hoc 'parse' of the Javascript code in question, if you know what they look like, using regexps +...
7554 Reinier Post
rp@... Send Email
Jul 9, 2001
1:29 pm
... If 'fastest' means 'most convenient', try perl -MLWP::Simple -MHTML::TreeBuilder -e \ 'print...
7555 Bob Fillmore
fillmore@... Send Email
Jul 9, 2001
3:40 pm
I have just spent a few hours wrestling with this bug, and came up with a workaround. After looking at the LWP source code I realized that it doesn't look at ...
7556 Gisle Aas
gisle@... Send Email
Jul 9, 2001
9:24 pm
... Basically just because the current approach of reading data until EOF has worked nicely so far. The new HTTP/1.1 code (in libwww-perl-5.53_94) will look...
7557 Jeff W. Sondeen
sondeen@... Send Email
Jul 9, 2001
11:06 pm
... however, i remember having trouble with some sites not reporting the #bytes correctly (giving EOF before the promised #bytes)....
7558 Gisle Aas
gisle@... Send Email
Jul 10, 2001
6:18 pm
... This stuff does not follow the marked_sections syntax so I'm not surprised. As a marked section it would have to be expressed something like: <![...
7559 Sean M. Burke
sburke@... Send Email
Jul 10, 2001
9:04 pm
... I've been trying to read /The SGML Handbook/ (containing the complete text of the standard) for a while now, and that's sort of like trying to sit down and...
Messages 7530 - 7559 of 7559   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help