Skip to search.
libwww-perl

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 22 - 51 of 7559   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
22 Roy T. Fielding
fielding@... Send Email
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@... Send Email
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@... Send Email 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@... Send Email 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@... Send Email
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@... Send Email
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@... Send Email
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@... Send Email 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@... Send Email 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..) ... ...
31 Roy T. Fielding
fielding@... Send Email
Aug 4, 1994
6:49 pm
... Good idea -- I'll ask our mail guru. ... Well, you are probably better off learning by example ;-) As the owl says, let's see: ...
32 bcutter@... Send Email Aug 4, 1994
9:07 pm
... Not sure as to the cause of the error... I've had a similar problem and I'm not sure if it's related ... I've been writing some programs with libwww-perl,...
33 Roy T. Fielding
fielding@... Send Email
Aug 10, 1994
11:31 am
Hello all, This is just going out to people who I know have been waiting for this release for much-too-long-a-time. I have done my best to make the software ...
34 Jack Shirazi - BIU
js@... Send Email
Aug 12, 1994
9:31 am
Hello, just joined this group - just what I've been looking for! Anyway, about the socket stuff, is it possible that some of you with problems on different...
35 Roy T. Fielding
fielding@... Send Email
Aug 13, 1994
12:50 am
... It isn't? I've seen it in all the perl clients I've looked at (though I'll readily admit that I have never looked at it carefully). Could you elaborate? ...
36 Jack Shirazi - BIU
js@... Send Email
Aug 15, 1994
10:08 am
... Yeah. Larry put it in his examples in the book. Everyone has used those examples and edited them (thats where I first learned sockets). The bind allocates...
37 Jack Shirazi - BIU
js@... Send Email
Aug 17, 1994
10:50 am
You guys know that ftplib.pl is available. This could be used to add ftp services to the libwww-perl....
38 Roy T. Fielding
fielding@... Send Email
Aug 18, 1994
7:39 pm
... Yes, but nobody has had the time to convert it yet. Volunteers are definitely welcome! The same needs to be done for gopher, wais, ... ....Roy Fielding...
39 Roy T. Fielding
fielding@... Send Email
Aug 19, 1994
7:23 pm
... Received: from Osiris.AC.HMC.Edu by paris.ics.uci.edu id aa05261; 17 Aug 94 7:03 PDT Received: (from jared@localhost) by osiris.ac.hmc.edu (8.6.8.1/8.6.7)...
40 Marc VanHeyningen
mvanheyn@... Send Email
Aug 25, 1994
2:58 pm
A couple of very minor suggestions to the URL parsing routine in wwwurl.pl for 0.30; Some people (idiots) use hostnames of the form foo.bar.edu: with nothing ...
41 Roy T. Fielding
fielding@... Send Email
Aug 25, 1994
11:09 pm
... Yes, now that the decision to ignore it has been made among the URI folk, I will definitely change it. All that is needed is a (\d+) changed to (\d*) ...
42 Marc VanHeyningen
mvanheyn@... Send Email
Aug 26, 1994
2:52 am
Thus wrote: "Roy T. Fielding" ... Actually, the latest draft of the spec (draft-ietf-uri-url-06) reads: # If neither <path> nor <searchpart> is present, the ...
43 Brooks Cutter
bcutter@... Send Email
Aug 26, 1994
6:25 am
... I'd like to suggest that in wwwhttp.pl'request, when you set the alarm timeout, reset it after each read from the socket.. This would change the meaning of...
44 Jack Shirazi - BIU
js@... Send Email
Aug 26, 1994
9:55 am
... Usually you don't return a filehandle. You pass it as an argument. sub foo { local($filehandle) = @_; local($package) = caller; if ($filehandle eq '') {die...
45 Marc VanHeyningen
mvanheyn@... Send Email
Aug 26, 1994
3:08 pm
... Well, this doesn't really count as minor, but it would be nice if www'url had some sort of routine for converting a URL to canonical form which allowed ...
46 Martijn Koster
m.koster@... Send Email
Aug 26, 1994
4:36 pm
... I did hack a script to read ISOLat1 and produce a table, from which you can parse some 'crude' renditions. See ...
47 Marc VanHeyningen
mvanheyn@... Send Email
Aug 26, 1994
5:59 pm
Thus wrote: Martijn Koster ... Thanks for the pointer! The resulting code is attached. Roy, feel free to include it in wwwhtml.pl if you think it...
48 bcutter@... Send Email Aug 27, 1994
6:39 am
... Included below is some code from some a HTML/SGML parsing and display library I'm working on... (I hope to post more info on this shortly) [ Btw - does...
49 Thomas Krichel
ecs1tk@... Send Email
Aug 27, 1994
2:17 pm
50 Roy T. Fielding
fielding@... Send Email
Sep 1, 1994
2:18 pm
I have encountered a very strange problem. On Monday, my MOMspider program tested (did a HEAD request) on the following URL ...
51 chakl
olafabbe@... Send Email
Sep 2, 1994
8:43 pm
Messages 22 - 51 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