Re: [OTish] Version Control?

2002-10-31 Thread Ged Haywood
Hi all, On Thu, 31 Oct 2002, Iain 'Spoon' Truskett wrote: experimenting with perforce [which, so far, appears nicer than CVS] ) Yikes! Josh, you got anything to say about that? 73, Ged.

Novice - How would I add a hidden form field to a LWP::UserAgent call?

2002-10-31 Thread Chris Pizzo
Hi, I'm trying to post data to a server that requires a hidden form field. This is what I'm doing: my $content = info=somedata; my $rec_len = length($content); my $send_url = new URI::URL($url); my $hdrsend = new HTTP::Headers('Content-length' = $rec_len); $hdrsend-header('Content-type' =

Re: [O] Re: Yahoo is moving to PHP ??

2002-10-31 Thread Randal L. Schwartz
Mike == Mike Miller [EMAIL PROTECTED] writes: Let's prey that those PHP geeks quickly discover the true joy of working with functionnals (map and al.). I have often wondered about the ratio of Perl programmers still using the C-like for construct. I guess it's rather low. Mike But for is

Re: [OTish] Version Control?

2002-10-31 Thread Rob Nagler
Another approach which allows easy sharing between projects is: ~/src/perl/ + Project1/ + Project2/ + Project3/ where Project[123] are root package names. Set PERLLIB=~/src/perl and you can get access to any *.pm in the system, each has a globally unique name. This makes it easy

Re: hangs on $ENV{'QUERY_STRING'}

2002-10-31 Thread Michael Forbes
Well, I've managed to make some significant progress: I got past that hang (apparently modperl was having problems with the URL b/c some of the values were being passed empty... i.e., stage=4eqtype=Allcont=restrictflags=12... notice that cont has no value. At any rate, I solved that problem by

Re: hangs on $ENV{'QUERY_STRING'}

2002-10-31 Thread Perrin Harkins
Michael Forbes wrote: Well, I've managed to make some significant progress: I got past that hang (apparently modperl was having problems with the URL b/c some of the values were being passed empty... i.e., stage=4eqtype=Allcont=restrictflags=12... notice that cont has no value. That sounds

Re: Yahoo is moving to PHP ??

2002-10-31 Thread Franck PORCHER
On Wed, 30 Oct 2002, Rob Nagler wrote: Tagore Smith writes: I think it would be harder to hire people to work on his system (of course you'd probably also get more experienced people, so that might not be such a bad thing). This raises the $64 question: If you could hire 10 PHP

How to parse after reading POST data in mod_perl 2 ?

2002-10-31 Thread Sumitro Chowdhury
Hi all, Please help ... Using Apache/2.0.43 (Unix) mod_perl/1.99_07-dev Perl/v5.8.0 . I read in POST data from Form using $r-read($buff,$r-headers_in-{'Content-length'}) Since I donot use Apache::compat, what API methods are available to parse this string data ? ( possibly convert it to a hash

Re: [OTish] Version Control?

2002-10-31 Thread Ask Bjoern Hansen
On Wed, 30 Oct 2002 [EMAIL PROTECTED] wrote: I don't believe in transfering _any_ binaries around, every binary recompiles on its new platform at install time. All modules, apache, external software etc. This eliminates those pesky little problems that pop up when you start pushing binaries.

RE: [OTish] Version Control?

2002-10-31 Thread Ask Bjoern Hansen
On Wed, 30 Oct 2002, Bill Moseley wrote: At 04:47 PM 10/30/02 -0500, Jesse Erlbaum wrote: Web development projects can map very nicely into CVS. We have a very mature layout for all web projects. In a nutshell, it boils down to this: project/ + apache/ + bin/ That

Re: [OTish] Version Control?

2002-10-31 Thread siberian
I dont really understand where you are coming from, its easy enough for the script to recompile its external dependancies on install. This way I don't really care what core version of linux or solaris or BSD is installed on each platform since we do not control them all. Precisely _because_

RE: Job opportunity - Fort Lauderdale FL

2002-10-31 Thread Tammy Orange
Job Description : SportsLine.com is looking for a System Administrator with excellent Perl programming skills to work on the various in-house applications and systems used for managing all aspects of the network. Responsibilities: * Develop, test,

Novice - Problem with data encoding

2002-10-31 Thread Chris Pizzo
Hi, I have an XML doc that I generated using XML::LibXML that needs to be included as a hidden form field in a form post. Code snippet: sub getcXML { use XML::LibXML; my $resp_doc = XML::LibXML::Document-new(); my $root = $resp_doc-createElement('blah'); ... my $content = $resp_doc-toString;

Re: [O] Re: Yahoo is moving to PHP ??

2002-10-31 Thread Franck PORCHER
On Thu, 31 Oct 2002, Mike Miller wrote: On Wed, 30 Oct 2002 20:28:11 + (GMT) Franck PORCHER [EMAIL PROTECTED] wrote: Let's prey that those PHP geeks quickly discover the true joy of working with functionnals (map and al.). I have often wondered about the ratio of Perl programmers

Re: [OTish] Version Control?

2002-10-31 Thread Ask Bjoern Hansen
On Thu, 31 Oct 2002 [EMAIL PROTECTED] wrote: [...] I guess in your book we suck either way eh? Life goes on :) You'll change your ways when you get more servers. :-) It's not easy enough for the script to do anything if the base system installations are not very similar. If they are; then

Re: [O] Re: Yahoo is moving to PHP ??

2002-10-31 Thread Ask Bjoern Hansen
On Thu, 31 Oct 2002, Franck PORCHER wrote: In fact, regarding the efficiency of the map construct, I often wondered whether Perl detects map being ran in a void context, so as to give it an iterative interpretation, avoiding to build the output list. IIRC (but I might not) then it does since

Re: Novice - How would I add a hidden form field to a LWP::UserAgent call?

2002-10-31 Thread Robert Landrum
On Thu, Oct 31, 2002 at 10:28:32AM -0500, Chris Pizzo wrote: Hi, I'm trying to post data to a server that requires a hidden form field. This is what I'm doing: my $content = info=somedata; my $rec_len = length($content); my $send_url = new URI::URL($url); my $hdrsend = new

Re: DBD::Oracle/Windows2000 OK from prompt, not mod_perl?

2002-10-31 Thread Larry Leszczynski
I'm having a problem on Windows 2000 where DBD::Oracle works fine from perl on the command prompt but not from inside mod_perl. I think it is a problem loading DLLs but I can't figure out what's different running under mod_perl. I started making progress after taking Randy's

Re: Yahoo is moving to PHP ??

2002-10-31 Thread Vivek Khera
PH == Perrin Harkins [EMAIL PROTECTED] writes: PH Sure. That's why Vignette used TCL: adding your own C commands to the PH language is easy. Probably the same story for AOLServer. Considering that the whole purpose for TCL was to embed it into C progams, one would hope that it would be

[OT] Wanted: beginning perl books for poor kids

2002-10-31 Thread Nick Tonkin
Hi all, I am going to be working with a small group of disadvantaged youngsters here teaching them how to build web applications with perl and apache. These are mostly Latino kids who have been doing analog and digital art for years and have self-selected into webmastering, html-ing and such.

Re: [OT] Wanted: beginning perl books for poor kids

2002-10-31 Thread Ryan Parr
What open-source geek doesn't understand the importance, and calling, of supporting your community? Count me in. I think it's great that you are donating your time and patience. Teaching isn't easy, but you've got a great cause. Send me your shipping address and I'll send you a Llama book.