Re: $ENV and print question

2001-07-19 Thread John
Correct me if I am wrong since I'm just a newbie.. > > $mypath = $ENV(PATH); > > $myeditor= $ENV{EDITOR}; > > $mytest = 123; > > $mytest2 = "Perl" ^ Doesn't this require a semicolon? > > add "my" at the beginning of the lines: > > my $mypath = $ENV(PATH);

It's your fault pt.2

2001-08-09 Thread John
why are you sending me copies of all email in and out of [EMAIL PROTECTED]? here you can have them back Better yet, get "Learning Perl on Win32 Systems" (O'Reilly) Dan Murphy [EMAIL PROTECTED] EMC Corp.508-435-1000 x14559 Hopkin

It's your fault pt.1

2001-08-09 Thread John
why are you sending me copies of all email in and out of [EMAIL PROTECTED]? here you can have them back   Just testing, please ignore this message. -BEGIN GEEK CODE BLOCK- Version: 3.1 GIT/U d-->(---) s: a->? C++(---) U*++>L+++ P+>+ L+(++)> E- W+++$ N++@ K w(---) !O? M-- V?

It's your fault pt.3

2001-08-09 Thread John
why are you sending me copies of all email in and out of [EMAIL PROTECTED]? here you can have them back   NAME beginners-faq - FAQ for the beginners mailing list 1 - Administriva 1.1 - I'm not subscribed - how do I subscribe? Send mail to <[EMAIL PROTECTED]> You can al

RE: It's your fault pt.2

2001-08-10 Thread John
thanks for the explanation. wish i could have received this information from beginners@perl though. if I can assist you with something perl/cgi/java/html/dhtml-wise at some given time, I would do so to repay the favor. again, thanks, John -Original Message- From: Dave Newton [mailto

help with multiple selections

2001-08-13 Thread John
Please to be helping me, dank u, dank u, but on a more serious note, I am struggling to accomplish one feature of my web currently. I am querying how to associate the qty11820 with another line in a table by the name 11820, as my information does not cross lines correctly, well, it prints all th

FW: FUCK YOU

2001-08-14 Thread John
it BOZO, I mean Mr. Lucifer/Sir Chees-a-lot, John -Original Message- From: Zen [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 2001 4:48 PM To: [EMAIL PROTECTED] Subject: FUCK YOU I DESPISE morons who wander onto lists and get pissed at all the mail... I get even more PISSED

Re: [ADMIN} Re: FW: F*** YOU

2001-08-14 Thread John
then do something about this BOZO. I have already emailed 1st.net. what more can I do? John - Original Message - From: "Kevin Meltzer" <[EMAIL PROTECTED]> To: "John" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tues

no need i'm gone

2001-08-14 Thread John
I have all of your addresses as well. see ya -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

POST_MAX use

2001-08-22 Thread John
ng for the state of "most goodliness". (My apologies to non-native English readers of this list for my having fun with the language, but its been a tough day...) Thanks, all. John-- [EMAIL PROTECTED] === #!/usr/bin/perl use str

RE: Adding quotes to a string variable

2002-01-07 Thread John
$a = "\"TEST TEST TEST\""; print "$a"; Prints: "TEST TEST TEST" The quotes are part of the string stored in the variable -Original Message- From: Hubert Ian M. Tabug [mailto:[EMAIL PROTECTED]] Sent: Monday, January 07, 2002 3:02 AM To: Perl Subject: Adding quotes to a string variable H

Re: mailing captured output with template text

2002-01-28 Thread John
I think output is lost with system - maybe my $results = `$cmd`; Also the print is not needed before the EOF. At Monday, 28 January 2002, "McCormick, Rob E" wrote: >Gang, > >Using 'df -k' in bash, I can get this to work acceptably: > ># mail the disk usage for a file system to a recipient 'ui

RE: Question on PERL coding style...

2002-01-29 Thread John
If you put them in a module are they parsed before they are called? Does it matter whether you use "use" or "require"? When is it better to specify subroutines when you use "use"? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

function prototyping

2002-01-29 Thread John
Does anyone have a cheetsheat for function prototyping - how to say that a parameter is a scalar, array, hash, reference, etc., and whether it is required or optional? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

sorting with each

2002-01-29 Thread John
I heard each was more efficient than what appears here. Is there any way to get each to sort? foreach my $key ( sort( keys( %somehash ))) { print "$key = $somehash{$key}\n"; } -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Perl path for windows 98

2002-01-29 Thread John
It may be convenient to set the PATHEXT environment variable to include ..pl, that way it should search your PATH for .pl files (so you don't have to type the path or be in the directory). At least this works in 2000, don't know 98. At Tuesday, 29 January 2002, "Angus Laycock" wrote: >Hi, >

Re: newbie question

2002-01-29 Thread John
While you're at it: make love cat food At Tuesday, 29 January 2002, "Clarke" <[EMAIL PROTECTED]> wrote: >$ man make > >;-) > >Clarke > >- Original Message - >From: Thunem, Tom <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Tuesday, January 29, 2002 5:45 PM >Subject: newbie question

Re: How do I read a web page from within perl?

2002-01-30 Thread John
I'm sure I'll get some crap for this old snippy-quick coding, but here is an example, if you are interested in HTTP 200, etc. codes (this is cut and paste from a function, so no header, etc.), or for more flexibility. I never got https to work, I think the firewall is closed to 443. use

CGI with duplicate hidden and URL variable [was Re: What's the difference?????]

2002-01-30 Thread John
Sorry, I posted this with the wrong subject and don't want it go get lost. If I use CGI, then reference $cgi->param( "some_variable" ), and some_variable is passed both as a hidden form field and as a URL parameter, will one reliably override the other? -- To unsubscribe, e-mail: [EM

Re: What's the difference?????

2002-01-30 Thread John
If I use CGI, then reference $cgi->param( "some_variable" ), and some_variable is passed both as a hidden form field and as a URL parameter, will one reliably override the other? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Regex help Please...

2002-01-31 Thread John
Couldn't it be: m#^([^\\/]+)(.*)([^\\/]+)$# ) At Thursday, 31 January 2002, [EMAIL PROTECTED] wrote: >I know this is not a good RegEx. Can I see some criticism and fine- tuning of >this RegEx that I came up with? > >Objective: To parse the path to drive, directory and file name. > >Here is wha

Re: Launch a url in my web browser?

2002-01-31 Thread John
In NT you can use the start command with a URL. So to start a brower at a specific location: system( "start http://jpw3.com/search.html"; ); Depending on how you have IE configured, this might start a new window. If it doesn't and you need to use a new browser window: system( "start iexplor

link to faq/listsearch in trailer?

2002-02-01 Thread John
To help with these common questions might it be helpful for the moderator to put links to the faq and/or list archives in the message trailer? I have seen this as very useful on other lists (the poster sees their message, views the faq, and answers their own question). >To unsubscribe, e-mail:

STDERR on NT

2002-02-04 Thread John
Let's say I am stuck on NT and have a perl script (first.pl) that calls a second perl script such as: my $out = `second.pl 2>&1`; that calls a command line tool (clt). If in second.pl I use: my $out = `clt 2>&1`; The return value of clt is nonzero when I call it this way, but out does not c

what have I gotten myself into and how do I get out

2002-02-06 Thread John
I believe that what my application requires is a hash of hashes that each reference an array of hashes. What is the best way to rewrite this structure or the access to it so that I do not need one foreach within another? #!/usr/bin/perl -w use Strict; my %cfg = ( "outer_key1" =>

execute dynamic block of code

2002-02-07 Thread John
I have a block of code which determines what subroutine to call and what parameters to pass, I want to put the statement to execute in a variable. At the end of the block I would like to output/print the variable containing the subroutine to be called and call it. I played around with do and

Re: execute dynamic block of code

2002-02-07 Thread John
I don't know if this will make any sense out of context and without the modules that are used, but here's the current code. Thanks, -John if ( $file =~ m#${templatedata}[\\/]usbank[\\/]piper_news# ) { $str = "UCM::ucmPiperNewsDB( \"$file\", \"INTE

Re: execute dynamic block of code

2002-02-07 Thread John
ry 2002, you wrote: >On Thu, 7 Feb 2002, John wrote: > >> if ( $file =~ m#${templatedata}[\\/]usbank[\\/]piper_news# ) >> { >> $str = "UCM::ucmPiperNewsDB( \"$file\", \"INTERNET_\" . uc( $env >> ), $script )"; >> } >> elsi

Re: execute dynamic block of code

2002-02-08 Thread John
On Feb 7, Jeff 'japhy' Pinyan said: > ($func, $fname, @args) = ( >"UCM::ucmPiperNewsDB", >\&UCM::ucmPiperNewsDB, >$file, uc("INTERNET_$env"), $script, > ); > > print "Simulating $func(@args)\n"; I was trying to avoid the multiple variables, and specifically having to change two s

directory tree minus certain directories

2002-02-08 Thread John
Is this the right/best way to do this? I wanted to use File::Find but couldn't figure out how to exclude directories. I want to display a directory tree, but I don't want to display the directories called WORKAREA, STAGING, EDITION, or .raw, and I don't want to search those directories for s

RE: directory tree minus certain directories

2002-02-08 Thread John
At Friday, 8 February 2002, Nikola Janceski wrote: >Use File::Find in V5.6.1 of perl or higher. I gotta go with what the vendor ships. This version doesn't seem to have CGI Vars either, which would be really handy. Anyone know what the approximate build date for this would be? Any issues r

change NT password through browser

2002-02-08 Thread John
Anyone know if there is a way to do this with Perl? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: change NT password through browser

2002-02-08 Thread John
No, not cool. It's an intranet page, so it shouldn't be so bad. Also I assume I could write javscript or whatever to encrypt, hopefully there is a standard function? At Friday, 8 February 2002, "Matthew Peter Lyon" <[EMAIL PROTECTED]> wrote: >so, wait, you want to pass a plain text pass. thr

RE: Complete Beginner Looking for Advise!

2002-02-10 Thread John
Don't get me wrong, I think Perl is great and has it's place, and I know I'm no authority, but I don't consider Perl a good language for new CIS/CS students for a number of reasons including: It's technically a scripting language, not a programming language. It's "object-oriented" system is an af

print a 3D array

2004-03-01 Thread John
I want to print a 3D array (all values dynamically)

Re: print a 3D array

2004-03-01 Thread John
Could you tell me what the above means? - Original Message - From: "Daniel T. Staal" <[EMAIL PROTECTED]> To: "Perl Beginners" <[EMAIL PROTECTED]> Sent: Monday, March 01, 2004 6:07 PM Subject: Re: print a 3D array > --As of Monday, March 1, 2004 5

Re: Dynamic loading of values (Tk::JComboBox)

2004-03-01 Thread John
Yeah but does this drop down list accept values from an array (resultset) - Original Message - From: "zsdc" <[EMAIL PROTECTED]> To: "John" <[EMAIL PROTECTED]> Cc: "Perl Beginners" <[EMAIL PROTECTED]> Sent: Monday, March 01, 2004 6:

Reformatting the Date

2004-03-03 Thread John
I receive the date from the Oracle as DD/MM/YY and i want to insert that date in a mysql date field. I know that mysql date form is -MM-DD. Well, do you know if there is any date function to do the job? Thanks in advance.

Re: Reformatting the Date

2004-03-04 Thread John
I fix it that with an Oracle Function (to_char()). Thank you - Original Message - From: "Morten Liebach" <[EMAIL PROTECTED]> To: "Perl Beginners" <[EMAIL PROTECTED]> Sent: Thursday, March 04, 2004 11:03 AM Subject: Re: Reformatting the Date > On 20

Re: running PERL from CMD line OSX

2004-03-18 Thread John
Try #perl test.pl -e 'command'one line of program (several -e's allowed, omit programfile) - Original Message - From: "David Gilden" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 18, 2004 7:27 PM Subject: running PERL from CMD line OSX > Trying to run a perl sc

Sending email a HTML page

2004-03-29 Thread John
I want to send HTML file via MIME::Lite Is that practicable?

the standard error

2004-03-29 Thread John
I want to shut the standard error from my scritps. How to do that?

RE: Createing a email and placing it in Lotus Notes outbox

2004-03-30 Thread John
Ned, Sorry I can't help you with the specifics of Lotus Notes, but regarding your google attempt, you might try "perl+email+lotus+notes" as your search string. I got over 52,000 hits for this. There's gotta be *something* in that to help you avoid re-inventing the wheel. John

RE: Createing a email and placing it in Lotus Notes outbox

2004-03-30 Thread John
Ned, Sorry I can't help you with the specifics of Lotus Notes, but regarding your google attempt, you might try "perl+email+lotus+notes" as your search string. I got over 52,000 hits for this. There's gotta be *something* in that to help you avoid re-inventing the wheel. John

@ in a string

2004-04-01 Thread John
I realised that the @ cannot enter in a string without escape characters. Is that equivalent to " Thanks John

Apache::AuthenIMAP in httpd.conf PROBLEM!

2004-04-22 Thread John
I have installed the mod_perl with my Apache 1.3.28 I want to authenticate (basic) against an IMAP Server. I have also successfully installed the Apache::AuthenIMAP Here is my httpd.conf ... PerlModule Apache::AuthenIMAP Options Indexes FollowSymLinks AllowOverride None order allow,den

Re: Apache::AuthenIMAP in httpd.conf PROBLEM!

2004-04-22 Thread John
Ok, i fixed. Now ti authenticates against an IMAP on a linux - Original Message - From: "WC -Sx- Jones" <[EMAIL PROTECTED]> To: "Perl Beginners" <[EMAIL PROTECTED]> Sent: Thursday, April 22, 2004 3:56 PM Subject: Re: Apache::AuthenIMAP in ht

RE: Why Perl

2004-04-27 Thread John
ock-down, drag-out, no-holds-barred, bar room brawl is to assert, amongst a group of programmers, "*My* programming language is *THE* best..." (Hey, I wandered into perl from a PL/1 background...so I know its good -- its much like a comfy old shoe. ) John -- > -Original Messag

writing to a DOC

2004-06-23 Thread John
I have store a greek text in mysql database field. Using my script i retrieve the greek text and then i store it in a file.doc. When i email the file.doc (through MIME::Lite) i can open it with the Microsoft Word and then it asks me the encoding of the document. I click on simple text and i can

Checking for Senders via POP3

2004-06-30 Thread John
I want to check for specific senders (in my inbox) connecting to the Mail Server via POP3.(just checking the From : bla bla string) Not to download the inbox mails to my system. Thanks in advance

Mail::POP3Client Doesn't Work on Win32 perl

2004-06-30 Thread John
I have This is perl, v5.6.1 built for MSWin32-x86-multi-thread (with 1 registered patch, see perl -V for more detail) I also have the Mail::POP3Client but it doen;t connect to anywhere. Could you help me with that? john

Re: Checking for Senders via POP3

2004-06-30 Thread John
t; <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 30, 2004 5:55 PM Subject: Re: Checking for Senders via POP3 > John wrote: > > I want to check for specific senders (in my inbox) connecting to > > the Mail Server via POP3.(just checking the From : bla b

Re: Mail::POP3Client Doesn't Work on Win32 perl

2004-06-30 Thread John
I installed the module via ppm : install Mail::POP3Client - Original Message - From: "Nicolay A. Vasiliev" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 01, 2004 12:50 AM Subject: Re: Mail::POP3Client Doesn't Work on Win32 perl >

Re: Checking for Senders via POP3

2004-06-30 Thread John
I checked again the code and it worked well!! Now my question is if i can retreive the date that a message has been sent and the subject ,as well. Thanks again! - Original Message - From: "Josimar Nunes de Oliveira" <[EMAIL PROTECTED]> To: "John" <[EMAIL

Re: Checking for Senders via POP3

2004-07-01 Thread John
ssage you respond to, but strip the > parts that are not needed for context. > > Type your follow-up below the quoted part, i.e. do not "top-post". ] > > John wrote: > > Gunnar Hjalmarsson wrote: > >> John wrote: > >>> I want to check for spec

trim

2004-07-08 Thread John
Is there any trim function that trims the spaces before and the end of the string?

Re: trim

2004-07-08 Thread John
Thanks a lot! It worked! - Original Message - From: "Bob Showalter" <[EMAIL PROTECTED]> To: "'John'" <[EMAIL PROTECTED]>; "Perl Beginners" <[EMAIL PROTECTED]> Sent: Thursday, July 08, 2004 7:07 PM Subject: RE: trim > Joh

Help with processing values

2004-08-19 Thread john
_form; print read_file('../../htdocs/merlinadmin/htmlfootp.html'); } As mentioned the script processes, but I am assuming that the server value is never getting picked up, since the file does not get copied. Thanks in advance, John -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: Is there a module to manipulate NTFS permissions?

2004-09-27 Thread John
Chris Devers wrote: On Mon, 27 Sep 2004, S.A. Birl wrote: I could use backticks `` to call cacls.exe inside of Perl But there's a problem using cacls.exe, I cannot wipe out all permissions on a given directory. I need to know the user/group. Is there another .exe? If so, email off-line as t

Re: Is there a module to manipulate NTFS permissions?

2004-09-27 Thread John
S.A. Birl wrote: Now I can wipe out the IUSR_computer account from the permissions. But it's the OWS_abcdefghij groups that are a headache. I was hoping that it would be easier to drop all the permissions and then re-add Administrators and SYSTEM in PERL. I must be missing something. There may

Re: Is there a module to manipulate NTFS permissions?

2004-09-27 Thread John
John wrote: Then add the other users and groups: cacls /t /g SYSTEM:f cacls /t /g Administrator:f cacls /t /g Administrators:f err, cacls /t /p SYSTEM:F First param to calcls is file/directory. Use /p instead of /g when you want to edit permissions instead of setting permissions - so use /g to

(when) is the ; required?

2004-09-29 Thread John
I was just updating some old script and found a big switch full of one-liners. In one of the cases there is no ";". Why doesn't the interpreter flag that as a syntax error? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Removing many files and subdirectories under a folrder

2004-10-04 Thread John
can the above be done with one perl function?

Re: Removing many files and subdirectories under a folrder

2004-10-04 Thread John
L PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 04, 2004 10:26 AM Subject: Re: Removing many files and subdirectories under a folrder > Not a perl master, but can't you just do a: > > system("rm -r "); > > Is that what you mean? > > Denzil

Re: Removing many files and subdirectories under a folrder

2004-10-04 Thread John
blahhh... :-000ps..!! > Moreover if it was some other **ix type system, I don't think the > above code will smell right when cooked. Thats what i guess though. > :-) > > > Is that what you mean? > > > > Denzil > > > > > > > > --- John <[E

Net::SFTP and different port than 22

2004-10-04 Thread John
Can i define a different port than 22 ?

SFTP failed to get a file from remote host

2004-10-04 Thread John
Here is the debug monster: sftp: Sent SSH2_FXP_OPEN I:1 P:/usr/local/apache/logs/access_log monster: sftp: Sent message SSH2_FXP_READ I:2 O:0 monster: sftp: Received reply T:103 I:2 monster: sftp: In read loop, got 8192 offset 0 monster: sftp: Sent message SSH2_FXP_READ I:3 O:8192 monster: channel

Re: Net::SFTP and different port than 22

2004-10-04 Thread John
I fixed that Here is the solution my $sftp = Net::SFTP->new($myhost, user=>"user", password=>"pass", debug=>0,ssh_args => [port =>145]) or die(); - Original Message - From: "Chris Devers" <[EMAIL PROTECTED]> To: "John&

Re: Segmentation fault error and its causes

2004-11-16 Thread John
supriya devburman wrote: some time script gives 'Segmentation fault' error what does it mean n what is its cause thnx.. I don't see Perl segfault often, but one place I have seen it is when an old version of Perl parses an XML file which contains a BOM. Are you parsing XML with an old version

converting a postscript file to an image or bitmap

2004-11-28 Thread John
Is there any script or module to do that job?

pdf 2 bmp

2004-12-01 Thread John
Has anyone know how to do that task? It think that is quite easy as far as pdf is a set of images.

Checking if a scalar value is a number or not

2004-12-01 Thread John
Hello Is there any special function for that job?

trying to chroot perl and its modules

2004-12-18 Thread John
copied the /usr/bin/perl to the /chroot/usr/bin/perl and the /usr/lib/perl5 to the /chroot/usr/lib/perl5 now when i try to run a perl script for example #!/usr/bin/perl use MIME::Lite; $msg = MIME::Lite->new( Type =>'text/html', From =>'[EMAIL PROTECTED]

Re: trying to chroot perl and its modules

2004-12-18 Thread John
- Original Message - From: "Jonathan Paton" <[EMAIL PROTECTED]> To: "John" <[EMAIL PROTECTED]>; "Perl Beginners" <[EMAIL PROTECTED]> Sent: Saturday, December 18, 2004 6:54 PM Subject: Re: trying to chroot perl and its modules > > w

Re: trying to chroot perl and its modules

2004-12-18 Thread John
- Original Message - From: "Jonathan Paton" <[EMAIL PROTECTED]> To: "John" <[EMAIL PROTECTED]>; "Perl Beginners" <[EMAIL PROTECTED]> Sent: Saturday, December 18, 2004 9:31 PM Subject: Re: trying to chroot perl and its modules > > We

Re: trying to chroot perl and its modules

2004-12-20 Thread John
- Original Message - From: "John" <[EMAIL PROTECTED]> To: "Perl Beginners" Sent: Saturday, December 18, 2004 6:22 PM Subject: trying to chroot perl and its modules copied the /usr/bin/perl to the /chroot/usr/bin/perl and the /usr/lib/perl5 to the /chroot/usr

Re: trying to chroot perl and its modules

2004-12-20 Thread John
- Original Message - From: "John" <[EMAIL PROTECTED]> To: "Perl Beginners" Sent: Saturday, December 18, 2004 6:22 PM Subject: trying to chroot perl and its modules copied the /usr/bin/perl to the /chroot/usr/bin/perl and the /usr/lib/perl5 to the /chroot

executing a .cgi script (passing some arguments) through php

2004-12-22 Thread John
Has anyone tried that?

Re: executing a .cgi script (passing some arguments) through php

2004-12-22 Thread John
- Original Message - From: "JupiterHost.Net" <[EMAIL PROTECTED]> To: "Perl Beginners" Sent: Wednesday, December 22, 2004 5:32 PM Subject: Re: executing a .cgi script (passing some arguments) through php > > > John wrote: > > > Has anyone tr

Converting a array to a scalar

2004-12-23 Thread John
Is there any good function to convert an array (this is the content of a file) to scalar (for email sending as the body)

Re: Converting a array to a scalar

2004-12-23 Thread John
- Original Message - From: "Moon, John" <[EMAIL PROTECTED]> To: "'John'" <[EMAIL PROTECTED]>; "Perl Beginners" Sent: Thursday, December 23, 2004 3:37 PM Subject: RE: Converting a array to a scalar > Subject: Converting a array to

Re: Converting a array to a scalar

2004-12-23 Thread John
- Original Message - From: "John W. Krahn" <[EMAIL PROTECTED]> To: "Perl Beginners" Sent: Thursday, December 23, 2004 4:06 PM Subject: Re: Converting a array to a scalar > John wrote: > > I found a quite easy way to do that. > > > > $co

replacing special chars

2005-02-03 Thread John
Hello to all I want to replace the & with the & I use the command s/\&/\&/; with no luck Does anybody know what am i missing here?

replacing special chara

2005-02-03 Thread John
Hello to all I want to replace the special char & with the & I am using that command s/\&/\&/; with no luck. Do you know what am i missing? Thanks in advance

Re: replacing special chars

2005-02-04 Thread John
- Original Message - From: "Stout, Joel R" <[EMAIL PROTECTED]> To: "John" <[EMAIL PROTECTED]>; "Perl Beginners" Sent: Thursday, February 03, 2005 8:17 PM Subject: RE: replacing special chars > Try this, and remember - with XML there are mo

Net::FTP problems

2005-02-24 Thread John
Hi all I tried to chroot the perl and when i am trying to run a Net::FTP script I receive the error Net::FTP: Bad protocol 'tcp' Do you know what is going on?

PDF Creation

2005-02-26 Thread John
Hi all I am trying to create a PDF using the PDF::Create module. Has anyone tried that module? I tried to write greek in the pdf with no luck. Does it support that encoding? What about images ? Can anyone add an image to the pdf? Thanks in advance.

apache log parsing

2005-03-31 Thread John
hello I want to split the datetime of apache log i tried this code with no success @fields=split(/[/:]/, $datetime); ### DD/MM/:HH:MM:SS has anyone tried anything like that? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re[2]: apache log parsing

2005-03-31 Thread John
From: John Doe <[EMAIL PROTECTED]> To: beginners@perl.org Date: Thursday, March 31, 2005, 2:24:24 PM Subject: apache log parsing Thursday, March 31, 2005, 2:24:24 PM, you wrote: > Am Donnerstag, 31. März 2005 11.08 schrieb John: >> hello >> >> I want to split

Re[2]: apache log parsing

2005-04-03 Thread John
From: John Doe <[EMAIL PROTECTED]> To: beginners@perl.org Date: Thursday, March 31, 2005, 7:42:03 PM Subject: apache log parsing Thursday, March 31, 2005, 7:42:03 PM, you wrote: > Am Donnerstag, 31. März 2005 15.36 schrieb John: > [...] > Hi John >> I found the a

GeoIPCity.dat

2005-04-04 Thread John
I am trying to put GeoIP into work for the cities derived from ip and hostnames. I cannot find GeoIPCity.dat for downloading. Has anyone tried that? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re[2]: GeoIPCity.dat

2005-04-04 Thread John
From: Ing. Branislav Gerzo <[EMAIL PROTECTED]> To: beginners@perl.org Date: Monday, April 4, 2005, 2:54:31 PM Subject: GeoIPCity.dat Monday, April 4, 2005, 2:54:31 PM, you wrote: > John [J], on Monday, April 4, 2005 at 14:46 (+0300) contributed this > to our collective wi

datetime comparisons

2005-04-05 Thread John
hello all i am wondering a there is a module that do comparisons between two different datetime stamps for example 2/4/2005:15:20:20 and 4/4/2005:12:09:23 which date is bigger (namely earliest) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re[2]: datetime comparisons

2005-04-05 Thread John
From: Peter Rabbitson <[EMAIL PROTECTED]> To: beginners@perl.org Date: Tuesday, April 5, 2005, 5:03:09 PM Subject: datetime comparisons Tuesday, April 5, 2005, 5:03:09 PM, you wrote: > On Tue, Apr 05, 2005 at 04:12:31PM +0300, John wrote: >> hello all >> >>

Problem with GD::Graph

2006-09-15 Thread john
Hi all I have installed the GD::Graph module and I tried to run the example using this code #!/usr/bin/perl -w use GD::Graph; @data = ( ["1st","2nd","3rd","4th","5th","6th","7th", "8th", "9th"], [1,2,5,6,3, 1.5,1, 3, 4], [ sort { $a

RE: Problem with GD::Graph

2006-09-15 Thread john
nk that all these type of plotting are included in the GD::Graph module. -Original Message- From: Owen Cook [mailto:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 10:45 AM To: john Cc: beginners@perl.org Subject: Re: Problem with GD::Graph -- On Fri, 15 Sep 2006, john wrote: >

RE: Re[2]: Problem with GD::Graph

2006-09-15 Thread john
: Friday, September 15, 2006 11:28 AM To: john Subject: Re[2]: Problem with GD::Graph Hello john, Friday, September 15, 2006, 11:09:10 AM, you wrote: > I replace the crusial line with the one below > my $graph = GD::Graph::area->new(400, 300); > and I received the error > Can't

RE: Re[2]: Problem with GD::Graph

2006-09-15 Thread john
Well , tried to recompile the GD-2.35 and the tests failed. It cannot recongised those functions. I have installed all the required modules. -Original Message- From: Owen Cook [mailto:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 12:47 PM To: john Cc: beginners@perl.org Subject

RE: Re[2]: Problem with GD::Graph

2006-09-15 Thread john
Where could I find the installed DG version since it's no visible in the GD man page. -Original Message- From: Owen Cook [mailto:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 1:15 PM To: john Cc: beginners@perl.org Subject: RE: Re[2]: Problem with GD::Graph On Fri, 15 Sep

RE: Re[2]: Problem with GD::Graph

2006-09-16 Thread john
Well, I installed the newest version of GD and now it works! Thanks. -Original Message- From: Owen Cook [mailto:[EMAIL PROTECTED] Sent: Saturday, September 16, 2006 1:07 AM To: john Cc: beginners@perl.org Subject: RE: Re[2]: Problem with GD::Graph -- On Fri, 15 Sep 2006, john wrote

  1   2   3   4   5   6   7   8   9   10   >