Welcome to the libwww-perl@... mailing list ===================================================== Introduction ... This mailing list has been...
2
bcutter@...
Jul 8, 1994 5:42 pm
... Absolutely! That's what I suggested - provide some routine like: &set_header('User-Agent',"SomeBot/0.1"); ...I'm very sensitive to changing the internals...
3
bcutter@...
Jul 8, 1994 8:56 pm
I'd like to submit the following code/interface to the libwww-perl distribution. The following code is equivalent to &www'request, except that it checks the...
4
Roy T. Fielding
fielding@...
Jul 11, 1994 8:28 am
Version 0.12 of libwww-perl is now available. libwww-perl is a library of Perl4 packages which provides a simple and consistent programming interface to the...
5
bcutter@...
Jul 12, 1994 11:18 pm
I'd like to submit the following code/interface to the libwww-perl distribution, but I'm having some problems passing the pointers to header and content.. The...
6
bcutter@...
Jul 12, 1994 11:33 pm
I've recently started work on a WWW browser written in tkperl, and I am using libwww-perl to retrieve documents, etc.. Listed below are some enhancements that...
7
Roy T. Fielding
fielding@...
Jul 13, 1994 11:53 am
... Try this (I haven't tested it): sub www'lrequest { local($method, $url, *headers, *content, $timeout) = @_; local($hd, $response); for (;;) { $response =...
8
Roy T. Fielding
fielding@...
Jul 13, 1994 12:30 pm
... Wow, that'll be an adventure. Most of the tools built so far have been maintenance drones that don't care about interactive issues. It'll be interesting...
9
Roy T. Fielding
fielding@...
Jul 21, 1994 10:01 am
Hello all, I've generated a new version of libwww-perl and it is now available at the usual locations. The message below will be sent to www-talk next week,...
10
bcutter@...
Jul 21, 1994 9:16 pm
Was just looking through the code in the latest v0.20 and wanted to mention that the wwwbot.pl code that I submitted does not take full advatnage of the global...
11
Frank Majewski
fmajewsk@...
Jul 21, 1994 9:46 pm
Hi, I plan to create a CD-version of BIG oceanographical pictures (GIFs) using Mosaic (or something like that) for browsing on DIFFERENT operating systems ...
12
Brooks Cutter
bcutter@...
Jul 22, 1994 2:45 am
With the addition of the &set_def_header routine in libwww-perl v0.20 it is no longer necessary (or desirable) to pass the User Agent or From headers to...
13
Roy T. Fielding
fielding@...
Jul 22, 1994 10:13 am
*sigh* Here is another patch for wwwhtml.pl -- the problem was found when MOMspider fell into a black hole due to some ugly HTML like: You can read about <A...
14
Brooks Cutter
bcutter@...
Jul 25, 1994 3:28 am
... This worked great... later I realized the interface should be like the following.. local($method, *url, *headers, *content, $timeout) = @_; (passing url as...
15
Brooks Cutter
bcutter@...
Jul 25, 1994 8:26 pm
16
bcutter@...
Jul 27, 1994 8:29 pm
Included below is a mailcap library I've been working on... It's like Mosaic in that it doesn't support the full MIME mailcap spec, but unlike Mosaic it does...
17
bcutter@...
Jul 27, 1994 8:46 pm
I don't know if this is of interest, but I use it whenever I'm debugging perl CGI scripts, and thought I'd pass it on.. -Brooks bcutter@... ||...
18
Roy T. Fielding
fielding@...
Jul 28, 1994 12:01 pm
... Sorry for the late response, but I didn't understand your question when I first read it and was hoping someone else would chime in. From what I think you...
19
Roy T. Fielding
fielding@...
Jul 30, 1994 12:09 pm
Hello all, We now have a Hypermail archive of the mailing list at: <http://www.ics.uci.edu/WebSoft/libwww-perl/archive/> One problem I have noticed is that if...
20
Roy T. Fielding
fielding@...
Jul 31, 1994 7:28 am
Have you ever noticed that whenever I want to release some software, I get involved in a huge standards debate? Life in the WWW fast lane... I have added the...
21
Roy T. Fielding
fielding@...
Jul 31, 1994 8:18 am
... Yep, I have added it to www.pl with that interface. I also added an internal limit of 10 redirects so that an infinite loop won't occur within the library...
22
Roy T. Fielding
fielding@...
Aug 1, 1994 2:15 pm
Hello all, I've generated a new version of libwww-perl and it is now available at the usual locations. The message below will be sent to www-talk, etc., later...
23
James Casey
casey@...
Aug 1, 1994 3:26 pm
Here is a set of routines for splitting out anchors from a HTML document and processing them one by one. james. ... ;# ;# PACKAGE: ;# wwwhtml ;# ;# AUTHOR: ;#...
24
bcutter@...
Aug 3, 1994 11:09 am
... The onexit() interface would be fine - that would allow me to put in my hooks to shut down nicely.. I'd like the onexit() routine to have the option to...
25
bcutter@...
Aug 3, 1994 1:52 pm
... Adding it with the pointer interface is great... you need to change the entry in the lrequest documentation... it currently reads: # $respcode =...
26
Jim Davis
davis@...
Aug 3, 1994 3:37 pm
a simple HTML parser in perl is available at ftp://dri.cornell.edu/pub/davis/html-parser.tar.Z See http://dri.cornell.edu/pub/davis/html-parser.html for ...
27
Roy T. Fielding
fielding@...
Aug 3, 1994 6:03 pm
... The *url parameter is not a pointer -- it means (essentially) "pass by name", and all of $url, @url, and %url are mapped via the symbol table to the names...
28
k claffy
kc@...
Aug 3, 1994 8:08 pm
i am having trouble running 'get' ... does anyone have any insight into that error? i'm using perl 4.036 - tnx for any help k...
29
bcutter@...
Aug 4, 1994 1:03 am
... I've had similar problems on Solaris when converting the sys/socket.h to the perl include header.. Edit the file /usr/local/lib/perl/sys/socket.ph, and put...
30
bcutter@...
Aug 4, 1994 6:06 am
... Roy, is it possible to have the mailing list insert a "Reply-To: libwww-perl@..." header on outgoing mail? (Makes it easier to reply to..) ... ...