It looks like I am not able to call tkwait without a real widget object available. The following scripts illustrates the problem: #!/usr/local/bin/perl use...
466
Brent Halliburton
brent@...
Sep 2, 1995 2:38 pm
I am having some problems setting up Momspider, and I thought you all might have some insight into the situation. I have successfully set up Momspider on...
467
Roy Fielding
fielding@...
Sep 3, 1995 3:38 am
Rumor has it that MOMspider and libwww-perl-0.40 will run under the very latest developer beta release (5.001m?). MOMspider does a lot of things that Perl4...
468
ts
decoux@...
Sep 3, 1995 8:59 am
... You have 2 problems with this approch : 1) you have a library dependent of Tk, if one day Tk change or if another graphic interface exist, you must change...
469
Gisle Aas
aas@...
Sep 3, 1995 9:57 am
... Yes thats true, but only one module LWP::Socket will depend on Tk. We could separate til low-level reading to another library which just provide the glue ...
470
ts
decoux@...
Sep 3, 1995 10:26 am
... Impossible to define a `sub' that the user can override ? I don't know Sx, but perhaps it don't have `fileevent' ? ... yes, this is why I've modified...
471
Nick.Ing-Simmons@...
Sep 4, 1995 7:59 am
In <199509021313.PAA01589@...> On Sat, 2 Sep 1995 15:13:34 +0200 ... That is because we can now have multiple main windows, and you might be...
472
Nick.Ing-Simmons@...
Sep 4, 1995 8:30 am
In <199509031019.MAA07636@...> On Sun, 3 Sep 1995 12:19:45 +0200 ... The library should be 'passed' a sub {} which does the timeout read. This could...
473
Gisle Aas
aas@...
Sep 4, 1995 9:33 pm
... I have now implemented #1. All IO is done through the routines LWP::IO::read() and LWP::IO::write(). The application can provide their own or require...
474
Gisle Aas
aas@...
Sep 6, 1995 12:33 am
Release 0.04 of the libwww-perl5 modules is available from: http://www.oslonett.no/home/aas/perl/www/ Changes since 0.03 are: o Implemented module to parse...
475
Gisle Aas
aas@...
Sep 6, 1995 5:25 pm
... If you apply the following patch to lwp-0.04 you should be able to both GET and PUT documents using ftp. The directory listing is not yet converted to ...
476
ts
decoux@...
Sep 7, 1995 5:37 am
... In the W3C Reference Library, module HTFTP.c, you have : /* HTFTP_login ** ** This...
477
Martijn Koster
mak@...
Sep 7, 1995 7:50 am
... You'll find a number of them in Lee McLoughlin's mirror script. It doesn't cover them all though, and is not as clear as a simple set of regexps. --...
478
Gisle Aas
aas@...
Sep 7, 1995 9:43 am
I want to change package name and version number scheme for the next release. The next release of lwp will be called 'libwww-perl-5b1'. Subsequent releases ...
479
Paul Schinder
schinder@...
Sep 7, 1995 12:27 pm
} } o LWP::Protocol::file now sets Content-Encoding headers } Speaking of which, MacPerl 5 for Motorola 680x0 Macs has been out for a couple of weeks now, so...
480
Nick.Ing-Simmons@...
Sep 7, 1995 1:31 pm
In <199509070921.LAA13150@...> On Thu, 07 Sep 1995 11:21:53 +0200 ... Looks promising - what args would be passed to callback? Seems it needs to...
481
Achim Bohnet
ach@...
Sep 7, 1995 2:10 pm
Hello, I try to write a 'progess indicator' tk composite widget for www downloads. I use the callback version of $ua->request. So far so good but I would like...
482
Gisle Aas
aas@...
Sep 7, 1995 4:16 pm
... The current interface is: sub callback { my($data, $response, $protocol) = @_; .... } which should provide all information you need. Don't know if anybody...
483
Nick.Ing-Simmons@...
Sep 7, 1995 4:36 pm
In <199509071612.SAA14050@...> On Thu, 07 Sep 1995 18:12:57 +0200 ... Good point. ... If you gave callback the socket the callback could do the...
484
Gisle Aas
aas@...
Sep 7, 1995 5:05 pm
... There are two possibilities: 1) We pass the $ua object with the request and the protocol modules will call $ua->message("This is what I do") as things...
485
Gisle Aas
aas@...
Sep 7, 1995 5:05 pm
... Thoughts yes. Code no. ... I think we will need a new method for file-URLs that returns the path as a perl array ($url->path_components??). Each path...
486
Lincoln D. Stein
lstein@...
Sep 7, 1995 5:32 pm
The fully HTMLized version of the WWW Security FAQ is now on line. Thanks to everybody who made additions and suggestions. There are still a few suggested...
487
Gisle Aas
aas@...
Sep 7, 1995 5:49 pm
... Nothing, it just get passed to the callback. The whole thing works like this (http request): $ua->request(..., \&callback) o connect to the server host o...
488
Achim Bohnet
ach@...
Sep 7, 1995 6:57 pm
... [...] ... sh ... I prefer multiple user agents. Would (in the future) allow tkweb to download a file while one could still browse. And/or like netscape...
489
Xiaodong Zhang
xiaodong@...
Sep 7, 1995 10:55 pm
Hi, everyone: I am having trouble installing libwww. This is what I did 1.get the libwww-perl package and decompress it. 2.run make 3.run make config 4.set...
490
Nick.Ing-Simmons@...
Sep 8, 1995 7:31 am
In <199509071741.TAA14213@...> On Thu, 07 Sep 1995 19:41:33 +0200 ... Agreed. The LWP library is right place to handle headers etc. Keep up the...
491
Andreas Koenig
k@...
Sep 8, 1995 2:14 pm
... This is my favorite. Trying to clean up my own HTML code, I find two major problems. Before I try to fix the first I want to let you know. (1) asHTML()'s...
492
Gisle Aas
aas@...
Sep 9, 1995 1:32 pm
... Sometimes. Consider this: <ul> <li> Para1 <p> Para2 <p> Para3 <li> Item2 </ul> This text is currently parsed (perl -e 'use HTML::Parse; ...
493
Gisle Aas
aas@...
Sep 9, 1995 1:53 pm
... Can you track down what fails for you? This test tries to copy the /etc/passwd file to /usr/tmp using the getprint() and getstore() functions. Is...
494
Andreas Koenig
k@...
Sep 9, 1995 4:25 pm
... This is the <P> I dislike. ... Not as an implicit tag. There should be a <P> allowed, but not enforced, imhhho. ... This hasn't changed in the 05 draft...