#!/bin/sh # This is a shell archive (produced by GNU sharutils 4.2). # To extract the files from this archive, save it to some FILE, remove # everything before...
1035
Tom Christiansen
tchrist@...
Jun 2, 1996 5:09 pm
What I meant was that I get this: mox(tchrist)% perl -w /tmp/ph www.perl.com Looking up URL:<http://www.perl.com> ..Can't locate object method "small_start"...
1036
Mark-Jason Dominus
mjd@...
Jun 3, 1996 12:25 am
I've sometimes had performance problems with CGI scripts written in Perl. The scripts would run fairly quickly once they got started, but the startup costs...
1037
Tom Christiansen
tchrist@...
Jun 3, 1996 1:28 am
Two quick answers: 1) Add this to /etc/rc: perl -e 'sleep -1' & 2) Check what Apache has done with embedded perl and FastCGI. --tom...
1038
Martin RJ Cleaver (HK...
martin.cleaver@...
Jun 3, 1996 3:48 am
... Enclosed is my script for making runnable the LWP non-beta for Win32 (ie. Win95, NT) platforms. If possible, I would very much like to see it distributed...
1039
Marc Unangst
mju@...
Jun 3, 1996 4:24 pm
If you create a URI::URL object for a URL with a fragment, and then delete the fragment by calling frag(""), the stringified version of the URL still contains...
1040
Pierre-Yves Foucou
foucou@...
Jun 3, 1996 7:21 pm
Hi all, I used to use a mix of HTML::* and CGI modules which leads to code like : body( hr(), $Q->startform('POST', $Q->script_name()) , '<h1> ... </h1>' ) so...
1041
David A. Lee
dave@...
Jun 4, 1996 1:30 am
Running into this same basic problem where all text is encoded has unfortunately made me decide not to use the HTML::AsSubs module for creating HTML documents....
1042
Nick Ing-Simmons
nik@...
Jun 4, 1996 7:34 am
... That is "correct" IMHO. Calling $url->frag(undef); Reads better (says what you are doing) and works: perl -x...
1043
Gisle Aas
aas@...
Jun 4, 1996 9:44 am
... t" via package "HTML::FormatText" at /usr/local/lib/perl5/site_perl/HTML/Format ter.pm line 56. ... The formatter bails out if it encounters an...
1044
Pierre-Yves Foucou
foucou@...
Jun 4, 1996 9:44 am
... Sure, internal hacking will corrupt HTML tree. I think that HTML:AsSubs was a easy (dirty??) way to write HTML mostly because functionnal notation is...
1045
Gisle Aas
aas@...
Jun 4, 1996 10:11 am
In message <6829431103061996/A00841/RATD3/11A61AEB1A00*@MHS>, "Martin RJ Cleave ... Thanks. I would like to wait until we get a real perl5.002 port for Windows...
1046
Gisle Aas
aas@...
Jun 4, 1996 10:34 am
... IMHO too. You will find the same behaviour for zero length query and params too. ... This behaviour also makes it possible to "playback" URLs like these: ...
1047
Gisle Aas
aas@...
Jun 4, 1996 10:39 am
... The newest CGI.pm module (2.20 or better) have it's own internal HTML::AsHTML lookalike. It should solve your problem I think. Lincoln Stein...
1048
Tom Christiansen
tchrist@...
Jun 4, 1996 1:20 pm
Thanks; that did the trick. BTW, there seem to be a lot of lines with just spaces in them in the output. I find that running this filter: perl -pe 's/^ +$//' ...
1049
Hans de Graaff
J.J.deGraaff@...
Jun 4, 1996 7:06 pm
Some LWP-Net::FTP related questions. LWP-5.0, Net::FTP 1.18. My Checkbot program has a bit of trouble with a number of FTP links. Checkbot will simply receive...
1050
Pierre-Yves Foucou
foucou@...
Jun 4, 1996 8:35 pm
... hum. ... I disagree this ever incorporating strategy! CGI.pm is now about 70K, and produces too many side effects to be useful (see << Received: from dougm...
1051
David A. Lee
dave@...
Jun 4, 1996 11:35 pm
I reported and fixed this bug with the following: Line 839 in FTP.pm #DAL Was ... #my $lf = substr(${*$fd},-1,1) eq "\r" ? chop(${*$fd}) # : ""; my...
1052
Gildas Perrot
perrot@...
Jun 5, 1996 10:00 am
Hi, I installed libwww-perl-5b13 after perl 5.002_1 on BSD/OS 2.1. make and make test (without net tests) worked but when using lwp-request, I have this...
1053
Graham Barr
bodg@...
Jun 5, 1996 10:41 am
I have just uploaded to CPAN a Net-FTP-1.18_2.tar.gz which contains fixes for the following problems ... I have added this code. ... Whoops ! What you did is...
1054
Gisle Aas
aas@...
Jun 5, 1996 1:07 pm
... Your perl is not installed properly. Did you install it with "make install"? Try to reinstall and make sure that this works before you proceed: perl...
1055
David A. Lee
dave@...
Jun 5, 1996 2:47 pm
I had this problem too, I eventually solved it by linking Socket statically instead of dynamically. However, after playing with some more dynamic load modules ...
1056
Hans de Graaff
J.J.deGraaff@...
Jun 6, 1996 7:53 am
... Thanks to David's patch, the substr output is fixed in Net-FTP-1.18_2. Thanks! However, the other problem I reported remains. In this case I'm getting odd...
1057
Gisle Aas
aas@...
Jun 6, 1996 9:36 am
... I have no problem with this one: bergen:aas$ HEAD ftp://ftp.lspace.org/pub/pratchett/ 200 OK Server: cygnus FTP server/wu-2.4(1) Fri Apr 15 16:06:24 MET...
1058
Hans de Graaff
J.J.deGraaff@...
Jun 6, 1996 9:50 am
... Ok, I think I found out why this happens. The 401 code is actually correct, because it indicates that authorization failed (but some textual message would...
1059
Graham Barr
bodg@...
Jun 6, 1996 2:10 pm
... I notice that URI::URL::ftp uses Sys::Hostname to get the hostname of the current system. This does not gaurantee a fqdn. May I suggest that you use...
1060
Gisle Aas
aas@...
Jun 6, 1996 2:25 pm
... I agree. This patch puts the message from the ftp server in the status line. Index: ftp.pm ...
1061
Martin RJ Cleaver (HK...
martin.cleaver@...
Jun 7, 1996 3:15 am
... Oh right, thanks. Sorry. I didn't realise that you were saying it didn't work at all, I thought you were saying that there were warnings. According to my...
1062
Gisle Aas
aas@...
Jun 7, 1996 7:45 am
... Sounds like a good idea. Regards, Gisle....
1063
Martijn Koster
m.koster@...
Jun 7, 1996 11:30 pm
Hi all, Anyone know if a proper C implementation of URL's has been done? (Yes, I know about libwww :() A port of the Perl URI::* stuff would be great :-) --...