[16144] in Perl-Users-Digest
Perl-Users Digest, Issue: 3556 Volume: 9
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon Jul 10 15:47:38 2000
Date: Mon, 10 Jul 2000 12:47:28 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Message-Id: <963258447-v9-i3556@ruby.oce.orst.edu>
Content-Type: text
Perl-Users Digest Mon, 10 Jul 2000 Volume: 9 Number: 3556
Today's topics:
convert flat text databse for MySQL HELP!!! PLEASE!! <james@kcnet.com>
Re: convert flat text databse for MySQL HELP!!! PLEASE! <care227@attglobal.net>
Convert integers to strings (lenght) <lardinois@ose.nl>
Re: Convert integers to strings (lenght) <Joachim.Pimiskern@de.bosch.com>
Re: Convert integers to strings (lenght) (Bernard El-Hagin)
Convert integers to strings <lardinois@ose.nl>
Re: Convert integers to strings <Joachim.Pimiskern@de.bosch.com>
Re: Convert integers to strings <mike.solomon@eps.ltd.uk>
Re: Convert integers to strings nobull@mail.com
Converting decimal numbers to hex <oogm_spamy_@bigfoot.com>
Re: Converting decimal numbers to hex <pap@NOTHEREsotonians.org.uk>
Re: Converting decimal numbers to hex <debjit@oyeindia.com>
Re: Converting decimal numbers to hex <pap@sotonians.org.uk>
Converting HTML to text, harder than the FAQ implies <jboes@eoexchange.com>
Re: Converting HTML to text, harder than the FAQ implie <gellyfish@gellyfish.com>
Re: Converting HTML to text, harder than the FAQ implie (Malcolm Dew-Jones)
Re: Converting HTML to text, harder than the FAQ implie <jboes@eoexchange.com>
Re: Converting HTML to text, harder than the FAQ implie (Bernard El-Hagin)
Re: Converting HTML to text, harder than the FAQ implie <gellyfish@gellyfish.com>
Re: Converting HTML to text, harder than the FAQ implie <jbroz@transarc.com>
cookie problem using CGI.pm <plazm@yahoo.com>
Cookies in Netscape: Redirect problem??? <jvddrift@aaa.nl>
Re: Cookies in Netscape: Redirect problem??? <care227@attglobal.net>
CORBA and MICO pgweiss@arity.com
Digest Administrivia (Last modified: 16 Sep 99) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Wed, 5 Jul 2000 15:16:32 -0500
From: "James Nelson" <james@kcnet.com>
Subject: convert flat text databse for MySQL HELP!!! PLEASE!!
Message-Id: <8k0512$h3f$1@news3.kcnet.com>
I am having a problem converting a flat text database into a flat text
database that can be read for import by MySQL.
The first database contains 11 fields of varying type and length. Strings
contain " indicating they are strings, and fields are deliminated by the ^
symbol.
The second database, the one created, should have 12 fields in the same
format as the first database, except the date time feild has been converted
to a format MySQL will understand.
Here is the code:
#
#----Cut from script ----
#
while (<STDIN>) {
($case_no,$userid,$start_date,$support_rep,$problem,$solution,$date,
$resolved,$escalated,$phone,$old_case_no) = split(/\^/,$_);
($d1, $d2, $d3) = split(/\//, $start_date);
($d3b, $t1) = split (/ /,$d3);
$start_date = $d3b . "-" . $d1 . + "-" . $d2 . " " . $t1;
($d1, $d2, $d3) = split(/\//, $date);
($d3b, $t2) = split (/ /,$d3);
$date = $d3b . "-" . $d1 . + "-" . $d2 . " " . $t2;
$problem_type = "N\/A";
print "$case_no\^\"$userid\"\^\"$start_date\"\^\"$support_rep\"\^
\"$problem\"\^\"$solution\"\^\"$date\"\^$resolved\^\"$escalated\"
\^$phone\^\"$old_case_no\"\^\"$problem_type\"";
}
called from command line via: cat test2.txt |perl access_to_text2.pl
>test3.txt
The problem is <STDIN> is splitting on the ^ but it is starting over at each
new line. Giving the variables the wrong data and creating a garbage file.
GIGO
So my question is how do I tell split to read x feilds splitting at the ^
and ignore the end of lines which need to be included in that feilds data?
Please help....
Thanks
------------------------------
Date: Wed, 05 Jul 2000 17:46:15 -0400
From: Drew Simonis <care227@attglobal.net>
Subject: Re: convert flat text databse for MySQL HELP!!! PLEASE!!
Message-Id: <3963ACA7.4B64BA28@attglobal.net>
James Nelson wrote:
>
> So my question is how do I tell split to read x feilds splitting at the ^
> and ignore the end of lines which need to be included in that feilds data?
>
You have two seperators here. The first you have identified as ^,
which is your field seperator. You also have a record seperator.
By default, perl thinks it is a newline (\n) but you can change
that. The variable that contains the record seperator is $\
(Check out the perlvar documentation)
You should look at what your flat file has as a record seperator
and set $\ to that value.
------------------------------
Date: Mon, 10 Jul 2000 11:16:07 +0200
From: "Mark Lardinois" <lardinois@ose.nl>
Subject: Convert integers to strings (lenght)
Message-Id: <3969941e$0$1755@heracles>
Hello,
Because I want to use Length()
I have to convert an integer to
a string. How can I do that?
Thanks,
Mark Lardinois.
------------------------------
Date: Mon, 10 Jul 2000 11:27:19 +0200
From: Joachim Pimiskern <Joachim.Pimiskern@de.bosch.com>
Subject: Re: Convert integers to strings (lenght)
Message-Id: <8kc4tn$m8q$1@proxy2.fe.internet.bosch.de>
Hi Mark,
Mark Lardinois schrieb in Nachricht <3969941e$0$1755@heracles>...
>Because I want to use Length()
>I have to convert an integer to
>a string. How can I do that?
I don't understand you question. What about
my $a = 12345;
print length($a);
Greetings,
Joachim
------------------------------
Date: Mon, 10 Jul 2000 09:37:47 GMT
From: bernard.el-hagin@lido-tech.net (Bernard El-Hagin)
Subject: Re: Convert integers to strings (lenght)
Message-Id: <slrn8mj62q.9rf.bernard.el-hagin@gdndev25.lido-tech>
On Mon, 10 Jul 2000 11:16:07 +0200, Mark Lardinois <lardinois@ose.nl> wrote:
>Hello,
>
>Because I want to use Length()
>I have to convert an integer to
>a string. How can I do that?
#!/usr/bin/perl -w
use strict;
my $integer = 11111;
my $string = "11111";
my $length1 = length ($integer);
my $length2 = length ($string);
print "$length1\t$length2\n";
This ouputs:
5 5
Now why don't you listen to the nice folks who keep telling you that
there's no need to convert those integers into strings?
Bernard
--
perl -e'@x=(3,2,4,1,3,2,1,3,1,3,2,3,3,2,3,0,0,1,2,1,1,1,4,1,2,1,1,2,2,1,
2,1,2,1,2,1,2,1,1,1,2,1,0,0,3,2,3,2,3,2,1,1,1,1,1,2,4,2,3,2,1,2,1,0,0,1,
2,1,1,1,4,1,2,1,1,1,2,2,1,1,4,1,1,1,2,1,1,1,2,1,0,0,3,2,4,1,1,2,1,1,1,3,
1,1,1,4,1,1,1,2,1,1,3,0,0);sub x{print q x$xx$_;print q x x x shift@x};#
while(defined($_=shift @x)){s o0o\no;$_!=0?x:print}' #Symmetry yrtemmyS#
------------------------------
Date: Mon, 10 Jul 2000 10:47:51 +0200
From: "Mark Lardinois" <lardinois@ose.nl>
Subject: Convert integers to strings
Message-Id: <39698d81$0$1748@heracles>
Hi,
Can someone tell me how to convert
integers to strings. Is there something
like IntToStr() or Str()?
Please help me,
Mark Lardinois
------------------------------
Date: Mon, 10 Jul 2000 11:03:42 +0200
From: Joachim Pimiskern <Joachim.Pimiskern@de.bosch.com>
Subject: Re: Convert integers to strings
Message-Id: <8kc3hd$kpt$1@proxy2.fe.internet.bosch.de>
Hi Mark,
Mark Lardinois schrieb in Nachricht <39698d81$0$1748@heracles>...
>Can someone tell me how to convert
>integers to strings. Is there something
>like IntToStr() or Str()?
in Perl, all scalars are implicitly strings. That means,
you can concatenate 1 and 2 by a dot:
$a = 1;
$b = 2;
print $a . $b;
Greetings,
Joachim
------------------------------
Date: Mon, 10 Jul 2000 10:09:32 +0100
From: "mike solomon" <mike.solomon@eps.ltd.uk>
Subject: Re: Convert integers to strings
Message-Id: <8kc3to$27tnv$1@ID-36965.news.cis.dfn.de>
why do you need to ?
a scalar variable can hold either a string or a number
so if $foo = 6;
that can be treated either as a string or as a number
sorry if I am missing the point
Regards
Mike Solomon
Mark Lardinois <lardinois@ose.nl> wrote in message
news:39698d81$0$1748@heracles...
> Hi,
>
> Can someone tell me how to convert
> integers to strings. Is there something
> like IntToStr() or Str()?
>
> Please help me,
>
> Mark Lardinois
>
>
------------------------------
Date: 10 Jul 2000 18:03:28 +0100
From: nobull@mail.com
Subject: Re: Convert integers to strings
Message-Id: <u9g0phsysf.fsf@wcl-l.bham.ac.uk>
"Mark Lardinois" <lardinois@ose.nl> writes:
> Can someone tell me how to convert
> integers to strings. Is there something
> like IntToStr() or Str()?
$foo="$bar";
$bar=$foo+0;
(Unually you simply don't need to bother).
--
\\ ( )
. _\\__[oo
.__/ \\ /\@
. l___\\
# ll l\\
###LL LL\\
------------------------------
Date: Sun, 09 Jul 2000 16:00:26 +0100
From: Eddie <oogm_spamy_@bigfoot.com>
Subject: Converting decimal numbers to hex
Message-Id: <4s4hms4vkma30q014l2mtka5ei4fqdd2a6@4ax.com>
I now that in perl you can convert from hex to decimal, but is it
possible to convert from decimal to hex?
Or is it possilbe to actualy work with the hex numbering system
instead of decimal?
Thanks
Eddie
------------------------------
Date: Sun, 09 Jul 2000 16:40:57 +0000
From: "Paul Taylor" <pap@NOTHEREsotonians.org.uk>
Subject: Re: Converting decimal numbers to hex
Message-Id: <g71a5.1186$CH.205327@nnrp3.clara.net>
In article <4s4hms4vkma30q014l2mtka5ei4fqdd2a6@4ax.com>, Eddie
<oogm_spamy_@bigfoot.com> wrote:
> I now that in perl you can convert from hex to decimal, but is it
> possible to convert from decimal to hex?
You can 'convert' from decimal to hex. More on why I used quotes a bit
later...
For output, I tend to use sprintf, which will allow you to reformat
a piece of information into a format of your choice.
perldoc -f sprintf
will give you the complete list of format codes, although for your
specific example, you can use %x to specify hex ( with lowercase
a thru f ) or %X to specify uppercase.
$upperhexvalue = sprintf("%X", $value ) ;
$lowerhexvalue = sprintf("%x", $value ) ;
print "Upper : $upperhexvalue\nLower : $lowerhexvalue\n" ;
> Or is it possilbe to actualy
> work with the hex numbering system instead of decimal?
Which brings me onto the reason I used quotes. Perl will let you
work directly in hexadecimal. You can achieve this by prefixing
your hex values with 0x ( that's zero ).
$hexvalue = 0xFF ;
print "Hex value : $hexvalue\n" ;
The above will *still* print out your result in decimal, so you'll
have to explicitly set the output format if you want to see FF
instead of 255.
Pap.
------------------------------
Date: Mon, 10 Jul 2000 10:59:47 +0530
From: "Debjit" <debjit@oyeindia.com>
Subject: Re: Converting decimal numbers to hex
Message-Id: <8kcrsr$535$1@news.vsnl.net.in>
#!/usr/bin/perl -w
use integer;
print "Type a decimal no\n";
$number = <STDIN>;
chomp $number;
my $hex = '';
while($number){
my $this_digit = (0 .. 9,'a'..'f')[$number & 15];
$number = $number/16;
$hex = $this_digit . $hex;
}
print qq~ The hexdecimal eqivalent is: $hex~;
Eddie wrote in message <4s4hms4vkma30q014l2mtka5ei4fqdd2a6@4ax.com>...
>I now that in perl you can convert from hex to decimal, but is it
>possible to convert from decimal to hex?
>Or is it possilbe to actualy work with the hex numbering system
>instead of decimal?
>
>Thanks
>Eddie
------------------------------
Date: Mon, 10 Jul 2000 11:39:13 +0000
From: "Paul Taylor" <pap@sotonians.org.uk>
Subject: Re: Converting decimal numbers to hex
Message-Id: <8Mha5.1$6o1.218@nnrp3.clara.net>
In article <8kcrsr$535$1@news.vsnl.net.in>, "Debjit" <debjit@oyeindia.com>
wrote:
> #!/usr/bin/perl -w
> use integer; print "Type a decimal no\n";
> $number = <STDIN>;
> chomp $number; my $hex = ''; while($number){
> my $this_digit = (0 .. 9,'a'..'f')[$number & 15];
> $number = $number/16;
> $hex = $this_digit . $hex;
> }
> print qq~ The hexdecimal eqivalent is: $hex~;
>
This code, whilst working - is probably not what you want to insert
into your programs.
I'd stick to sprintf if I were you.
Pap.
------------------------------
Date: Wed, 05 Jul 2000 10:59:59 -0400
From: Jeff Boes <jboes@eoexchange.com>
Subject: Converting HTML to text, harder than the FAQ implies
Message-Id: <39634fcb$0$1503$44a10c7e@news.net-link.net>
I'll state right up front that I've read FAQ 9.7, "How do I fetch an
HTML file?" and its description of how to fetch (and parse) HTML. The
oft-quoted example (listed here for those looking for that level of
answer, which is unfortunately not me) is:
use LWP::Simple;
use HTML::Parse;
use HTML::FormatText;
my ($html, $ascii);
$html = get("<some-URL>");
defined $html
or die "Can't fetch HTML from <some-URL>";
$ascii = HTML::FormatText->new->format(parse_html($html));
print $ascii;
works fine for simple HTML documents. Or does it? Compare the output of
the approach above with
print `lynx -dump <some-URL>`;
if the URL contains this document:
<html>
<body>
<form>
Hi there! You won't see me!
</form>
</body>
Lynx will render this, but the HTML::FormatText approach just gives you
[FORM NOT SHOWN]
A similar shortcoming is displayed if you include a table in the
document. These are documented shortcomings of HTML::FormatText. This is
disappointing, to put it mildly.
Therefore, I'm looking for an approach that will let me render HTML as
plain text, in a predictable format. It needs to handle both <form> and
<table> It doesn't HAVE to match lynx's output, although that would be a
sizeable bonus. I could use lynx for this task (and in fact I am), but
the start-up costs associated with running lynx get prohibitive when you
are talking about doing thousands of URLs.
I'm thinking that if I'm forced to do this myself, my approach would be
to attack the parse tree, replacing forms and tables with another
representation.
--
Jeff Boes |Computer science is no more about
|jboes@eoexchange.com
Sr. S/W Engineer |computers than astronomy is about |616-381-9889 ext
18
Change Technology|telescopes. --E. W. Dijkstra |616-381-4823 fax
EoExchange, Inc. |
|www.eoexchange.com
------------------------------
Date: Wed, 05 Jul 2000 16:25:34 GMT
From: Jonathan Stowe <gellyfish@gellyfish.com>
Subject: Re: Converting HTML to text, harder than the FAQ implies
Message-Id: <2kJ85.1402$iP2.130886@news.dircon.co.uk>
On Wed, 05 Jul 2000 10:59:59 -0400, Jeff Boes Wrote:
> I'll state right up front that I've read FAQ 9.7, "How do I fetch an
> HTML file?" and its description of how to fetch (and parse) HTML. The
> oft-quoted example (listed here for those looking for that level of
> answer, which is unfortunately not me) is:
>
> use LWP::Simple;
> use HTML::Parse;
> use HTML::FormatText;
> my ($html, $ascii);
> $html = get("<some-URL>");
> defined $html
> or die "Can't fetch HTML from <some-URL>";
> $ascii = HTML::FormatText->new->format(parse_html($html));
> print $ascii;
>
> works fine for simple HTML documents. Or does it? Compare the output of
> the approach above with
>
> print `lynx -dump <some-URL>`;
>
> if the URL contains this document:
>
> <html>
> <body>
> <form>
> Hi there! You won't see me!
> </form>
> </body>
>
>
> Lynx will render this, but the HTML::FormatText approach just gives you
>
> [FORM NOT SHOWN]
>
> A similar shortcoming is displayed if you include a table in the
> document. These are documented shortcomings of HTML::FormatText. This is
> disappointing, to put it mildly.
>
> Therefore, I'm looking for an approach that will let me render HTML as
> plain text, in a predictable format. It needs to handle both <form> and
> <table> It doesn't HAVE to match lynx's output, although that would be a
> sizeable bonus. I could use lynx for this task (and in fact I am), but
> the start-up costs associated with running lynx get prohibitive when you
> are talking about doing thousands of URLs.
>
Dont worry about HTML::FormatText, Use HTML::Parser directly and work out
how you are going to output things yourself - seee some of the examples
at <http://www.gellyfish.com/htexample/> for starters - then you can work
the rest out for yourself.
/J\
------------------------------
Date: 5 Jul 2000 10:33:53 -0800
From: yf110@vtn1.victoria.tc.ca (Malcolm Dew-Jones)
Subject: Re: Converting HTML to text, harder than the FAQ implies
Message-Id: <39637181@news.victoria.tc.ca>
Jeff Boes (jboes@eoexchange.com) wrote:
: I'll state right up front that I've read FAQ 9.7, "How do I fetch an
: HTML file?" and its description of how to fetch (and parse) HTML. The
: Lynx will render this, but the HTML::FormatText approach just gives you
: sizeable bonus. I could use lynx for this task (and in fact I am), but
: the start-up costs associated with running lynx get prohibitive when you
: are talking about doing thousands of URLs.
I believe there are ways to make lynx do a bunch of files all at once. It
will even walk a document tree dumping each document. This would avoid
the startup overhead. I suspect that --traversal would help. Place all
the links in a single file and then do a lynx --traversal to get them all
in one go (each html page is stored in a seperate file).
If you do go the perl route, then add your handlers onto the FormatText
(? I forgot the name already) methods, and add them as some kind of
contribution to CPAN, cause they would be useful.
(Or build a complete fancy formatter, that would be great too.)
------------------------------
Date: Wed, 05 Jul 2000 13:36:38 -0400
From: Jeff Boes <jboes@eoexchange.com>
Subject: Re: Converting HTML to text, harder than the FAQ implies
Message-Id: <396372f2$0$1498$44a10c7e@news.net-link.net>
Jeff Boes wrote:
>
> Therefore, I'm looking for an approach that will let me render HTML as
> plain text, in a predictable format. It needs to handle both <form> and
> <table> It doesn't HAVE to match lynx's output, although that would be a
> sizeable bonus. I could use lynx for this task (and in fact I am), but
> the start-up costs associated with running lynx get prohibitive when you
> are talking about doing thousands of URLs.
>
FYI, following up my own post here:
The eg/ directory included with HTML::Parser has a simple script that I
modified to let me get all the text from an HTML document, but it still
doesn't do anything remotely close to what lynx does in terms of
rendering.
--
Jeff Boes |Computer science is no more about
|jboes@eoexchange.com
Sr. S/W Engineer |computers than astronomy is about |616-381-9889 ext
18
Change Technology|telescopes. --E. W. Dijkstra |616-381-4823 fax
EoExchange, Inc. |
|www.eoexchange.com
------------------------------
Date: Thu, 06 Jul 2000 06:17:01 GMT
From: bernard.el-hagin@lido-tech.net (Bernard El-Hagin)
Subject: Re: Converting HTML to text, harder than the FAQ implies
Message-Id: <slrn8m88qg.iha.bernard.el-hagin@gdndev25.lido-tech>
Jonathan Stowe <gellyfish@gellyfish.com> wrote:
>Dont worry about HTML::FormatText, Use HTML::Parser directly and work out
>how you are going to output things yourself - seee some of the examples
>at <http://www.gellyfish.com/htexample/> for starters - then you can work
>the rest out for yourself.
That URL should read <http://www.gellyfish.com/htexamples/>.
^
Bernard
--
perl -e '${qq=\x22=}=qq=\053=;$_="BeJUST_ANOTHERnaPERL_HACKERd\n";
${qq=\x2c=}=qq=\x72=;print split /[AC-Z_]$"/;'
------------------------------
Date: 6 Jul 2000 00:00:01 +0100
From: Jonathan Stowe <gellyfish@gellyfish.com>
Subject: Re: Converting HTML to text, harder than the FAQ implies
Message-Id: <8k0elh$6pm$1@orpheus.gellyfish.com>
On Wed, 05 Jul 2000 16:25:34 GMT Jonathan Stowe wrote:
>
> <http://www.gellyfish.com/htexample/>
>
<http://www.gellyfish.com/htexamples/>
D'oh!
/J\
--
yapc::Europe in assocation with the Institute Of Contemporary Arts
<http://www.yapc.org/Europe/> <http://www.ica.org.uk>
------------------------------
Date: Thu, 06 Jul 2000 17:15:12 +0100
From: "Joe_Broz@transarc.com" <jbroz@transarc.com>
Subject: Re: Converting HTML to text, harder than the FAQ implies
Message-Id: <3964B090.659BFF31@transarc.com>
Jeff Boes wrote:
>
> Jeff Boes wrote:
> >
> > Therefore, I'm looking for an approach that will let me render HTML as
> > plain text, in a predictable format. It needs to handle both <form> and
> > <table> It doesn't HAVE to match lynx's output, although that would be a
> > sizeable bonus. I could use lynx for this task (and in fact I am), but
> > the start-up costs associated with running lynx get prohibitive when you
> > are talking about doing thousands of URLs.
> >
>
> FYI, following up my own post here:
>
> The eg/ directory included with HTML::Parser has a simple script that I
> modified to let me get all the text from an HTML document, but it still
> doesn't do anything remotely close to what lynx does in terms of
> rendering.
That's because, AFAIK, HTML::Parser isn't designed to 'render' anything.
It's a parser. What you do with the resulting data is, as you know, up to
you.
------------------------------
Date: Fri, 07 Jul 2000 14:05:33 GMT
From: Alex Sapronov <plazm@yahoo.com>
Subject: cookie problem using CGI.pm
Message-Id: <8k4o3b$mhh$1@nnrp1.deja.com>
Hi guys!
I am running CGI.pm under mod_perl. We do user menagement on our web
site using HTTP cookies and we have been running some logging to debug
our system. One of the things we have done is we dumped cookies using
CGI.pm raw_cookie() call. Some entries look very wierd. For example,
some dumps contain cookies with identical names(!).
Qsession=24.64.223.5.18068951860758711030e3f60af90e0801ddb17e4bf0c6c8d4a
7733ef; QULOGIN=030e3f60af90e0801ddb17e4bf0c6c8d4a7733ef;
Qsession=24.64.223.5.18068951860758711bfb23498351c337887ef9accd55263d713
fd7abd; QULOGIN=bfb23498351c337887ef9accd55263d713fd7abd
The above output comes from single raw_cookie() call. Ho can that
happen? It causes real problems :( The code runs under Apache.
thanks,
A.
Sent via Deja.com http://www.deja.com/
Before you buy.
------------------------------
Date: Mon, 10 Jul 2000 14:27:17 +0200
From: JWJ van der Drift <jvddrift@aaa.nl>
Subject: Cookies in Netscape: Redirect problem???
Message-Id: <3969C125.30D9FA0E@aaa.nl>
Hi,
I'm using a perl-script I've found on
http://www.bewley.net/perl/cookie-test.html. When I test the script
there, it works fine. When I implement it in my site, it only works in
IE4 not in Netscape 4.
I'm also using te 'redirect module'. I suspect this is the problem. I
have to work with this module, it's a restriction of the system I'm
working on.
Does anybody know if Netscape 4 causes problems concerning cookies and
redirects and is there a solution?
I rather new with Perl, so forgive me if I'm restarting an earlier
topic.
Thanx in advance
Joost
PS: a copy of this message is send to the author of the script, but it
was written in 1996, so I'm not sure if the emailadres I have still is
the right one. Therefor I directly turn to this newsgroup.
------------------------------
Date: Mon, 10 Jul 2000 09:41:45 -0400
From: Drew Simonis <care227@attglobal.net>
Subject: Re: Cookies in Netscape: Redirect problem???
Message-Id: <3969D299.A3F7EC2D@attglobal.net>
[removed dead newsgroups. Please don't post to comp.lang.perl]
JWJ van der Drift wrote:
>
> Hi,
>
> I'm using a perl-script I've found on
> http://www.bewley.net/perl/cookie-test.html. When I test the script
> there, it works fine. When I implement it in my site, it only works in
> IE4 not in Netscape 4.
Since this is obviously not a Perl problem, you'd be best aided by
posting in a NG dedicated to CGI behaviour. Perhaps you meant to
post to comp.infosystems.www.authoring.cgi
HTH
------------------------------
Date: Thu, 06 Jul 2000 04:35:59 GMT
From: pgweiss@arity.com
To: mico-devel@mico.org
Subject: CORBA and MICO
Message-Id: <8k12bf$ams$1@nnrp1.deja.com>
I've been trying for the past few weeks to get CORBA::MICO 0.50
and MICO 2.3.3 to work, w/o success. The simple Account demo that
is part of the CORBA::MICO distribution fails with a bad typecode
exception.
I'm using Perl 5.6.0 and Solaris 2.7.
Is there anyone on the planet who has CORBA::MICO working with a
fairly recent version of MICO? I've tried writing to the author but
he hasn't yet answered (perhaps he's on vacation or very busy). I
would appreciate hearing from anyone who has made this work.
Thanks,
Paul
Sent via Deja.com http://www.deja.com/
Before you buy.
------------------------------
Date: 16 Sep 99 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 16 Sep 99)
Message-Id: <null>
Administrivia:
The Perl-Users Digest is a retransmission of the USENET newsgroup
comp.lang.perl.misc. For subscription or unsubscription requests, send
the single line:
subscribe perl-users
or:
unsubscribe perl-users
to almanac@ruby.oce.orst.edu.
| NOTE: The mail to news gateway, and thus the ability to submit articles
| through this service to the newsgroup, has been removed. I do not have
| time to individually vet each article to make sure that someone isn't
| abusing the service, and I no longer have any desire to waste my time
| dealing with the campus admins when some fool complains to them about an
| article that has come through the gateway instead of complaining
| to the source.
To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.
To request back copies (available for a week or so), send your request
to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
where x is the volume number and y is the issue number.
For other requests pertaining to the digest, send mail to
perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
sending perl questions to the -request address, I don't have time to
answer them even if I did know the answer.
------------------------------
End of Perl-Users Digest V9 Issue 3556
**************************************