Re: best AJAX tool/module ?

2011-09-29 Thread Shlomi Fish
Hello Rajeev, first of all I should note (to you and to everybody else) that you shouldn't start a new thread by replying to an existing message, because this confuses threaded mailers. Instead, compose a new message to beginners@perl.org . On Wed, 28 Sep 2011 13:50:01 -0700 (PDT) Rajeev Prasad

Re: best AJAX tool/module ?

2011-09-29 Thread Shlomi Fish
Hi Rajeev, On Wed, 28 Sep 2011 20:14:29 -0700 (PDT) Rajeev Prasad rp.ne...@yahoo.com wrote: how about dojo EXT motools  ...etc. ? can these be integrated with perl CGI? Yes, they can (including jQuery). What are you trying to do exactly? Regards, Shlomi Fish --

Matching Greek letters in UTF-8 file

2011-09-29 Thread Hamann, T.D. (Thomas)
Hi, I need to write a regex that matches any single Greek letter followed by a hyphen in a UTF-8 text file that is otherwise in English. How can I match the Greek alphabet (lower and upper case)? Thanks, Thomas -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional

RE: Need help getting data from a structure..

2011-09-29 Thread Weidner, Ron
Can someone explain how to access $InstDesc?? Also please explain how I would access (that is read from or write to) to the $Severity scalar on the bottom structure.. Thanks in advance.. flk Sure I can help. (or guide you astray) #!/usr/bin/perl use strict; use warnings; my %PlcyActions

RE: Need help getting data from a structure..

2011-09-29 Thread Frank Kleinburg
List, First I would like to thank all who provided input.. With the help of the this list, I was able to figure out what I needed to change to get it all working.. And we have successfully kept VB out (Yippy!).. Now to the solution (note: I have copied the little test code and its output

Re: Matching Greek letters in UTF-8 file

2011-09-29 Thread John Delacour
At 11:42 + 29/9/11, Hamann, T.D. (Thomas) wrote: I need to write a regex that matches any single Greek letter followed by a hyphen in a UTF-8 text file that is otherwise in English. How can I match the Greek alphabet (lower and upper case)? #!/usr/local/bin/perl use strict; use utf8;

Re: Matching Greek letters in UTF-8 file

2011-09-29 Thread Brian Fraser
On Thu, Sep 29, 2011 at 10:58 AM, John Delacour johndelac...@gmail.comwrote: use encoding 'utf-8'; Nitpick: Please don't use this, as encoding is broken. use utf8; and use open qw :std :encoding(UTF-8) ; should make do for a replacement. To the original poster, please note that there's a bit

Re: best AJAX tool/module ?

2011-09-29 Thread Rajeev Prasad
Hi Shlomi/all, i am simply trying to find a tool/module/method (as in English word method) which would allow asynchronous XMLHTTPRequest to be sent to perl CGI programs on my web server (or sub routines in a perl script) and return the value(s) to webpage to be displayed in the div i want to

Re: Matching Greek letters in UTF-8 file

2011-09-29 Thread John Delacour
At 11:59 -0300 29/9/11, Brian Fraser wrote: On Thu, Sep 29, 2011 at 10:58 AM, John Delacour johndelac...@gmail.com wrote: use encoding 'utf-8'; Nitpick: Please don't use this, as encoding is broken. use utf8; and use open qw :std :encoding(UTF-8) ; should make do for a replacement.

Re: best AJAX tool/module ?

2011-09-29 Thread Brandon McCaig
On Thu, Sep 29, 2011 at 2:37 PM, Rajeev Prasad rp.ne...@yahoo.com wrote: i am simply trying to find a tool/module/method (as in English word method) which would allow asynchronous XMLHTTPRequest to be sent to perl CGI programs on my web server (or sub routines in a perl script) and return the

Re: Matching Greek letters in UTF-8 file

2011-09-29 Thread Brian Fraser
On Thu, Sep 29, 2011 at 4:03 PM, John Delacour johndelac...@gmail.comwrote: Nitpick: Why the upper-case charset name? Uppercase is UTF-8-strict, while lowercase is the lax version that perl uses internally. Unless you are passing data from one perl program to another, and you are using

Re: Matching Greek letters in UTF-8 file

2011-09-29 Thread John Delacour
At 17:29 -0300 29/9/11, Brian Fraser wrote: On Thu, Sep 29, 2011 at 4:03 PM, John Delacour johndelac...@gmail.com wrote: Nitpick: Why the upper-case charset name? Uppercase is UTF-8-strict, while lowercase is the lax version that perl uses internally. Unless you are passing data from one

How to get the multiselect select box or checkbox element values WITHOUT using CGI module

2011-09-29 Thread Rajeev Prasad
Hi,   without using CGI.pm how can i collect the values of a multiselect element?   say for e.g.:   select name=hobbies id=hobbies multiple optionReading Books/option optionWriting Stories/option optionCollecting Coins/option optionCross Stitching/option optionTenis/option optionPlaying

Re: How to get the multiselect select box or checkbox element values WITHOUT using CGI module

2011-09-29 Thread Octavian Rasnita
From: Rajeev Prasad rp.ne...@yahoo.com Hi, without using CGI.pm how can i collect the values of a multiselect element? say for e.g.: select name=hobbies id=hobbies multiple optionReading Books/option optionWriting Stories/option optionCollecting Coins/option optionCross Stitching/option