Re: Test Reforms

2004-02-03 Thread Sam Vilain
Rocco Caputo wrote: I gave it a shot. Devel::Cover has come a long way since I last looked at it. It only introduces failures in three of the tests. The results are temporarily available at http://nopaste.snit.ch:8001/541 Yep, it sure has. You want to generate the HTML report next, which

Re: sslpoe

2004-01-15 Thread Sam Vilain
blocks in Net::SSLeay::BIO_write($rbio, $buffer, length($buffer)); That way, there is nothing tangible for SSLeay to block on. Does this give anyone out there enough material to write POE::Component::Filter::SSLeay ? -- Sam Vilain, [EMAIL PROTECTED] A politician's most important ability

Re: sslpoe

2004-01-14 Thread Sam Vilain
library, I recall you just pass it in a socket with O_NONBLOCK set to signal nonblocking action. And get ready to catch the errors ;-). Otherwise, the openssl library should be trivial to wrap directly with some XS. Its interface mirrors standard sockets exactly... -- Sam Vilain, [EMAIL PROTECTED

Re: Getting Keypresses

2004-01-04 Thread Sam Vilain
also found no matches). Ugh. Maybe you need a different ActivePerl? `perl -V' should give you a string much like `MSWin32-x86-multi-thread' - perhaps that is the build you have. If so, try the ActivePerl build without threading. -- Sam Vilain, [EMAIL PROTECTED] To be sure of hitting

Re: Getting Keypresses

2003-12-30 Thread Sam Vilain
, however. It's badly out of date. [*] - see http://ppm.activestate.com/PPMPackages/ -- Sam Vilain, [EMAIL PROTECTED] The best thing for being sad is to learn something. That is the only thing that never fails. T. H. WHITE

Re: Re[2]: An idea of HTTP chat server based on POE

2003-11-07 Thread Sam Vilain
= m[2]; text = m[4]; -- Sam Vilain, [EMAIL PROTECTED] Overheard at a supervision : Supervisor : Do you think you understand the basic ideas of Quantum Mechanics ? Supervisee : Ah! Well,what do we mean by to understand in the context of Quantum Mechanics? Supervisor

Re: Fwd: soap server

2003-11-05 Thread Sam Vilain
, and ebxml. Both of which are, naturally, horrendous. SSL is a much simpler solution (to some of the problems). -- Sam Vilain, [EMAIL PROTECTED] All religions issue Bibles against Satan, and say the most injurious things against him, but we never hear his side. MARK TWAIN

Re: Signal delivery in POE and time warp.

2003-09-03 Thread Sam Vilain
be damned :-) -- Sam Vilain, [EMAIL PROTECTED] Before Java we had to code all of out bugs by hand; now we just inherit them

Re: Creating a Daemon

2003-08-24 Thread Sam Vilain
to ignore the appropriate module, you should at least also disassociate from the terminal and set a new process session ID: use POSIX qw(setsid); open STDIN, /dev/null or die $!; open STDOUT, /dev/null or die $!; open STDERR, STDOUT or die $!; fork and exit; setsid(); -- Sam Vilain

Re: Grandwheels or wheel-wheels question

2003-08-20 Thread Sam Vilain
I would like to employ POE also - does anybody have experience with wheel processes (children) creating one or more wheels again? You probably want to start a new poe kernel in each sub-process, and pass messages if necessary to the parent process (eg, via STDOUT). -- Sam Vilain, [EMAIL

Re: POE events in Apache

2003-06-09 Thread Sam Vilain
for a starting POE project ;-) -- Sam Vilain, [EMAIL PROTECTED] The greatness of a nation and its moral progress can be judged by the way its animals are treated. -- Mahatma Gandhi package FastCGI::Record; use POE::Preprocessor ( isa = POE::Filter::FastCGI ); use base qw(Class::Tangram); our

Re: Q: Need recipe for a generic wizard application

2003-02-16 Thread Sam Vilain
) for the pages. I have a feeling in my stomach that this is a perfect job for POE. But after starting with POE::NFA i got stuck. It isn't that rich as i expected. Also i didn't find premade MVC POE components, though i was sure that POE has that already. Any ideas/tips welcome. Murat -- Sam Vilain

Re: UML?!

2002-08-15 Thread Sam Vilain
) this is perfect. At any point, you can decide that a module should not be stored in the database and is just a normal .pm file by setting a flag. Flat files are an awful way for humans to examine and edit data structures. Don't restrict yourself to it. -- Sam Vilain, [EMAIL PROTECTED] WWW

Re: POE::Component::Client::UserAgent problem

2002-03-12 Thread Sam Vilain
2. You may also need to insert the line use HTML::HeadParser; anywhere near the top of LWP::Parallel::Protocol.pm. I added the line at line 8 (after =head1 NAME) but it still doesn't work. Sam. ps. I'm kidding, it worked.