Re: (no subject)

2002-12-26 Thread Randy W. Sims
On 12/26/2002 5:08 PM, Coonfield, Ben CONT wrote: I cannot get the expected result from code similar to the following: my @source = (); @($source[0]){"host","port","dir"} = [($pSource =~ m/(\S+)(-\S+)?(:.*)?/)]; close, try: @{$source[0]}{"host","port","dir"} = ($pSource =~ m/(\S+)(-\S+)?(:.*

date compare in sql ???

2002-12-26 Thread kris
Hi folks, i hope you had an nice x-mas. Well, back in the office i have a lot things to do, that's more "administrative" stuff. I know i can compare dates in a mysql table, but i have problems to do a comand that's compares a date (added by days) whith now(). e.g: Select... ... WHERE (startdat

(no subject)

2002-12-26 Thread Coonfield, Ben CONT
I cannot get the expected result from code similar to the following: my @source = (); @($source[0]){"host","port","dir"} = [($pSource =~ m/(\S+)(-\S+)?(:.*)?/)]; My intention is that: First, the match expression returns a array of three values, which are to be assigned to three hash elements. T

RE: problem comparing hashes

2002-12-26 Thread Burak Gürsoy
#!/perl -w use strict; my %default = ( one => 1, two => 2, three => 3, four => 4, five => 5, six => 6, ); my %cgi = ( one => 10, two => 20,

problem comparing hashes

2002-12-26 Thread Adam Peterson
hi, i have a cgi script where i attempt to compare the values in 2 separate hashes( %query_data & %cgi_data). if there are differences in the vaules, i would like to build a 3rd hash (%update_data) containing the differences (the keys of the two hashes are the same). i'm having no luck... any advi

RE: 5.8 GD, DB_File, and TK::Jpeg ppd request

2002-12-26 Thread Burak Gürsoy
Activestate must add this address to the standard ppm repository list :)) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Randy Kobes Sent: Thursday, December 26, 2002 10:16 PM To: Bruce Winter Cc: [EMAIL PROTECTED] Subject: RE: 5.8 GD, DB_File, and TK::J

RE: 5.8 GD, DB_File, and TK::Jpeg ppd request

2002-12-26 Thread Randy Kobes
On Sat, 14 Dec 2002, Bruce Winter wrote: > You mentioned a freetype lib fix. Do you think with that fix > we will be able to use TrueType fonts in GD? In past versions, > we have gotten that to work well on linux, but never with > windows GD. It always returned empty boxes where the fonts > sho

Re: String Parse

2002-12-26 Thread Randy Kobes
On Thu, 26 Dec 2002, Frazier, Joe Jr wrote: [ ... ] > I use XML::LibXML to parse jobpostboards currently to drill > down into several layers or pages (using LWP) and verify my > clients jobs are all posted by compairing data on each page to > a DB generated list of jobs that should be on the board

RE: Getting Tables in MS Access DB

2002-12-26 Thread Jeff Urlwin
> > > Using a DBI:ODBC DSN-less connection to an Access DB( Access > 2000 ), how do I get the the names of all tables contained in > the DB? I tried to query MSysObjects, but I'm getting a > permission's error. Try using the tables() method -- however, that results in a direct call to SQLTa

Getting Tables in MS Access DB

2002-12-26 Thread MOTTER, JEFFREY D.
Using a DBI:ODBC DSN-less connection to an Access DB( Access 2000 ), how do I get the the names of all tables contained in the DB? I tried to query MSysObjects, but I'm getting a permission's error. Here's my connect string: my $dbh = DBI->connect("dbi:ODBC:driver=Microsoft Access Driver

RE: RE: Win32::AdminMisc module on linux

2002-12-26 Thread Thomas_M
Kavita wrote: > Actually my problem is that i wanna put up one website on > intranet.In which i wanna authenticate intranet's users to NT > Domain Controller(PDC).Also i wanna get rights of users on > shared folders.And also wanna display those files and folders > web-based. I have tred ur Win

RE: RE: Win32::AdminMisc module on linux

2002-12-26 Thread Ricci, Mark
Is coding around "Samba" an option? -Original Message- From: Dave Roth [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 26, 2002 3:39 AM To: '[EMAIL PROTECTED]'; Dave Roth; [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: RE: Win32::AdminMisc module on linux Adm

RE: String Parse

2002-12-26 Thread Gerber, Christopher J
I just want to express to everyone how much I love these mailing lists. I've learned so many ways to refine my code in just the past few weeks... it's amazing. Take the below example. I've got it down to 2 "real" lines now... one to load the data, one to print the desired results. Take an amazin

DDE and perl5.8

2002-12-26 Thread Peter Heirman
Best wishes to everyone, I would like to migrate to perl 5.8, but i can't find the package win32:DDE:Client on the new activestate repository. Anyone knows where else I can find it? Peter Heirman ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To

Re: String Parse

2002-12-26 Thread Frazier, Joe Jr
> And the third, the worse one, it's parsing input received, > and it's like > this: > > while($content =~ m| class=\"list-item-odd\"> class=\"list-item-title\">(.*?)([\w\W]*?) valign=\"top\" class=\"list-item-odd\">(.*?)([\w\W]*?) valign=\"top\" > class=\"list-item-odd\">(.*?)([\w\W]*?)

RE: RE: RE: Win32::AdminMisc module on linux

2002-12-26 Thread Dave Roth
You should be able to use either LDAP or Kerberos (Win2k and .NET Server both use Kerberos for authentication). A quick lookup in Google yielded many results. One of which is http://library.smc.edu/rpa.htm#ldap. Good luck, dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PRO

Re:RE: RE: Win32::AdminMisc module on linux

2002-12-26 Thread kavita
Hello dave, can perl-ldap module authenticates against an ADSI?? if yes, then i will try to change my authentication mechanism from NT SAM(on PDC) to ADSI. Thanks. Kavita On Thu, 26 Dec 2002 00:38:42 -0800 rothd wrote AdminMisc simply won't work on non Win32 systems. I am not aware of any auth

RE: RE: Win32::AdminMisc module on linux

2002-12-26 Thread Dave Roth
AdminMisc simply won't work on non Win32 systems. I am not aware of any authentication modules that would do what you are looking for. However years ago there was a groovy open source library that did interact with an NT domain controller for the sake of authentication. I had modified an old versio