Well said Jan, I like ppm and even run my own ppm repository (mainly DBI
modules). One ppm advantage is that the html man pages are inserted into
the ActiveState document tree. I suppose when we get Visual it will migrate
to MSDN htmlhelp.
--
Simon
---
You are currently subscribed to perl-wi
From: "Paul Rogers [CE]" <[EMAIL PROTECTED]>
> Well, I think it was a reference to Visual Perl as it will be included in
> Visual Studio, which itself includes Visual C++.
Well, my VS includes Visual Basic instead. Blew the C++ away after
getting tired of 100 meg of fat I wasn't using. A Pe
On Mon, 29 May 2000 18:51:31 -0400, Bernie Parent <[EMAIL PROTECTED]> wrote:
>Same old story and Microsoft philosophy. Embrace, extend and extinguish.
>
>Perl was once the software for all computers and operating systems. Ports
>once supported
>Borland compilers. Microsoft provided dollars to
On Mon, 29 May 2000 10:22:16 -0400, "Paul Rogers [CE]"
<[EMAIL PROTECTED]> wrote:
>> And if you haven't got a C compiler, then Visual Perl won't help you with
>> this either.
>
>Well, I think it was a reference to Visual Perl as it will be included in Visual
>Studio, which itself includes Visual
On Sun, 28 May 2000 22:02:44 -0400, Matthew Persico <[EMAIL PROTECTED]>
wrote:
>> In any event, I'm still awe struck by the "Visual Perl" announcement. However,
>> the concept does sound intriguing. Having a hard time accepting that MS is so
>> closely embracing perl.
>
>
>MS isn't. Sounds to m
On Sun, 28 May 2000 20:59:53 -0400, Matthew Persico <[EMAIL PROTECTED]>
wrote:
>"Paul Rogers [CE]" wrote:
>>
>> Something I never dreamed would happen...
>>
>> http://www.activestate.com/Corporate/Media_Center/News/Press959117519.html
>>
>Does this mean we will FINALLY be able to drop all the
On Mon, 29 May 2000 17:21:19 +, "Brendan McKenna" <[EMAIL PROTECTED]>
wrote:
> I am trying to link a static version of Perl, but am running into
>problems with unresolved external symbols. The ones I am getting errors on
>are __imp__PL_op_mutex and __imp__PL_do_undump. I find it a b
> Behalf Of Bernie Parent
>
>
> Same old story and Microsoft philosophy. Embrace, extend and extinguish.
>
> Perl was once the software for all computers and operating systems. Ports
> once supported
> Borland compilers. Microsoft provided dollars to Activestate under the
> auspices of providing
At 09:36 PM 5/28/00 -0400, Paul Rogers [CE] wrote:
>> Does this mean we will FINALLY be able to drop all the PPM crap and just
>> invoke the Visual Studio C compile where necessary on ANY CPAN module?
>> Ah, the simplicity of
>>
>> perl Makefile.PL
>> make test
>> make install
>
>And what's so com
If you have ActiveState perl then you would use 'ppm' to download and
install a module.
If you want to install it yourself then you follow the normal perl install
procedure
download the module (you have done this)
uncompress it (you have done this)
change to the dir that
Well I have been doing exactly that for about 2(3?) years now except I use
the following steps
perl makefile.PL
make
make test
make install
Works for me. Doesn't it work for you?
> Behalf Of Matthew Persico
>
>
> "Paul Rogers [CE]" wrote:
> >
> > Something I nev
I was intrigued by this but it turns out to be something simple ;o))
When you submit the form.. the newlines and carriage returns the hex
representations. In my example I put :
I
wanted to do
this for
you
and in the return string I get:
I%0D%0Awanted+to+do%0D%0Athis+for+%0D%0Ayou
Normal parsi
Please, take a look at this code. It opens a txt file and email the =
users. But each user always gets two emails. Any clue?
open (DAT,"<$memberinfo/amdata.db");
if ($LOCK_EX){=20
flock(DAT, $LOCK_EX); #Locks the file
}
@database_array =3D ;
close (DAT);
foreach $line(@database_array) {
@user
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
- - Original Message -
From: "Stuart Moore" <[EMAIL PROTECTED]>
To: "Perl-Win32-Users Mailing List"
<[EMAIL PROTECTED]>
Sent: Monday, May 29, 2000 3:51 PM
Subject: Encrypting Emails
> I want to encrypt some emails, it's been suggested I sig
Hmm...
The capital C is out...
s/%([A-Fa-f0-9]{2})/pack("c",hex($1))/ge;
Conrad
- Original Message -
From: "Jan Harders Perl-Win32-Users Mailing List"
<[EMAIL PROTECTED]@lyris.ActiveState.com>
To: "Perl-Win32-Users Mailing List" <[EMAIL PROTECTED]>
Sent: Monday, May 29, 2000 8:23 PM
Su
I want to encrypt some emails, it's been suggested I sign them with a PGP key - can
anyone recommend a good module to do this with?
I will eventually need to port this to a Unix server, so I'd prefer to have Perl-only
solutions, although if that's not possible I
will use ones including C (or oth
On 05/27/00, "Greg Wardawy <[EMAIL PROTECTED]>" wrote:
> Douglas,
> Thank you very much for your quick reply. I can see I wasn't clear. I've
> got the same result but not in such a readable, professional way as yours.
> But that's still not what I need. I have to print all the lines for which
> th
I'm new to LWP::Parallel::UserAgent and haven't so far successfully been
able to perform a fairly simple task: Retrieve the HTML from a list of
simple URL's via GET. I've done this in a loop with regular LWP::UserAgent
and I'm just trying to make things a bit faster.
It seems like I should s
Borkur Gudjonsson wrote:
>
> If I make a script, prog.pl, whith this statement:
> print $0;
>
which is entirely correct, this will give the *script* name
> and create an executable with perl2exe, it prints out
> the name of the script, as it was when perl2exe
> created the executable and not
Garold L. Johnson wrote:
> [snip]
> From the Visual Perl page on ActiveState:
>
> "Visual Perl is a plug in for Microsoft's next-generation development
> environment, Visual Studio 7."
> ...
> "Visual Perl will be available at the same time as Visual Studio 7."
> I read this as saying that Visual
HI,
I wrote a script that is processing an form and then send an email. I used
Mail::Sender because it should send files too. it works allright, but I got
an textarea in the form for the body of the email. My problem is that the
newlines given from the form are not printed in the mail. I tried to
KC LO at MAXIS wrote, on Saturday, May 27, 2000 12:32
: Is there a way to re-convert characters like ' # ', @, $,%,^,& etc from
an HTML page to it's orginal : form instead of the '%21% ' ? I'm passing
data from HTML page to a MAccess database using ODBC by the : following
method:-
:
: read(STDIN,
Hi,
I am trying to link a static version of Perl, but am running into
problems with unresolved external symbols. The ones I am getting errors on
are __imp__PL_op_mutex and __imp__PL_do_undump. I find it a bit odd, since,
judging from the names of the symbols, these look like they're
Paul Rogers [CE] wrote:
> Philip Newton wrote:
> > So having Visual Perl is orthogonal to having Visual C++;
> > you can have one without the other. As I understand it, at
> > least.
>
> So Visual Perl will not require having Visual Studio? This
> doesn't seem right.
[snip]
>From the Visual Perl
Please don't omit attributions. You've snipped "Philip Newton wrote:" twice
already.
Paul Rogers [CE] wrote:
> Philip Newton wrote:
> > So having Visual Perl is orthogonal to having Visual C++;
> > you can have one without the other. As I understand it, at
> > least.
>
> So Visual Perl will not
> So having Visual Perl is orthogonal to having Visual C++; you can have one
> without the other. As I understand it, at least.
So Visual Perl will not require having Visual Studio? This doesn't seem right.
VP is a separate entity from VS?
P ---
---
You are currently subscribed to perl-win32
Paul Rogers [CE] wrote:
> Philip Newton wrote:
> > And if you haven't got a C compiler, then Visual Perl won't
> > help you with this either.
>
> Well, I think it was a reference to Visual Perl as it will be
> included in Visual Studio, which itself includes Visual C++.
As I understood it, Vis
> And if you haven't got a C compiler, then Visual Perl won't help you with
> this either.
Well, I think it was a reference to Visual Perl as it will be included in Visual
Studio, which itself includes Visual C++.
p ---
---
You are currently subscribed to perl-win32-users as: [archive@jab.org
Hi Bas,
when using Net::FTP, I do not open the local file before put-ting.
Try:
.
$ftp->put("myfile.local","remote.filename");
$ftp->quit;
HTH
Rüdiger
Rüdiger Strohmeier
Email: [EMAIL PROTECTED]
> -Ursprüngliche Nachricht-
> Von: Bas Janssen [SMTP:[EMAIL
HI,
I wrote a script that is processing an form and then send an email. I used
Mail::Sender because it should send files too. it works allright, but I got
an textarea in the form for the body of the email. My problem is that the
newlines given from the form are not printed in the mail. I tried to
Hello all,
I'm using Net::FTP and try to 'put' a file by a filehandle.
( http://search.cpan.org/doc/GBARR/libnet-1.0703/Net/FTP.pm :
" put ( LOCAL_FILE [, REMOTE_FILE ] )
Put a file on the remote server. LOCAL_FILE may be a name or a
filehandle. If LOCAL_FILE is a filehandle then REMOTE_F
Matthew Persico wrote:
> Does this mean we will FINALLY be able to drop all the PPM
> crap and just invoke the Visual Studio C compile where
> necessary on ANY CPAN module?
Hm? You could do that all along. The sources AS used to compile their
version of Perl are available, so you can build your
Gregory Bair wrote:
> Can a hash be the value of an array element?
No, but a reference to a hash can.
> What comes to mind is something like
> $array[1]{hashkey} = hashvalue, though this seems silly to
> me.
Let me guess: you didn't try it. That's how I'd do it, anyway.
${$array[1]}{hashk
> %{$array[1]}{'Item'} = $something;
Close...
try
${$array[1]}{'Item'} = $something;
The only way you can (safely) add a "hash" to an array (or inside another
hash) is to use a hash reference. Of course Perl gives you several ways to
do this :-)
You declare a hash REFERENCE like this:
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf
> Of Borkur Gudjonsson
> Sent: Saturday, May 27, 2000 11:14 PM
> To: Perl-Win32-Users Mailing List
> Subject: Get program name
>
>
> I create a exe file out of my script, with perl2exe,
> and I would l
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf
> Of Gregory Bair
> Sent: Monday, May 29, 2000 9:01 AM
> To: Perl-Win32-Users Mailing List
> Subject: Arrays and Hashes
>
>
> Can a hash be the value of an array element? specifically, what would be
> t
%{$array[1]}{'Item'} = $something;
You have to turn the item in $array[1] into the hash. Or reference
would be the correct terminology I think. I'm only answer because
its late and you probably won't get one of the gurus. But try it.
- Justin Rogers, CEO DigiTec Web Consultants
[COOP]
Can a hash be the value of an array element? specifically, what would be
the syntax for defining values and referencing them. What comes to mind is
something like $array[1]{hashkey} = hashvalue, though this seems silly to
me. I'm getting all confused just trying to work it out. I've got a
I am new to perl and would like some advice about setting up your remote
directories. Which way is best and secure, separate cgi-bin off root etc.
I am running a script that works ok in IE but not Netscape I get ths error
HTTP Error 405
405 Method Not Allowed
The method specified in the Request
39 matches
Mail list logo