ANNOUNCE: Embperl 2.0b8

2002-06-25 Thread Gerald Richter - ecos gmbh
The URL ftp://ftp.dev.ecos.de/pub/perl/embperl/Embperl-2.0b8.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GR/GRICHTER/Embperl-2.0b8.tar.gz size: 628343 bytes md5: d089a86671a0c559b77f107a4e6d67c9 I have done a lot of fine tuning and error fixing since 2.0b7. Also Embperl now

Embperl 2.0b8 & Apache 2.0

2002-06-25 Thread Alexander Hartmaier
Hi! I've updates DBI to version 1.28 (from 1.21) and since then httpd doesn't start any more (no entry in the logs). Now i started updating all other modules also and saw Embperl 2.0b8... My problem is that Embperl detect mod_perl2 although it isn't installed! I installed apache 2.0.34 mon

Re: Embperl 2.0b8 & Apache 2.0

2002-06-25 Thread Gerald Richter - ecos gmbh
Hi! > > I've updates DBI to version 1.28 (from 1.21) and since then httpd doesn't start > any more (no entry in the logs). > > Now i started updating all other modules also and saw Embperl 2.0b8... > My problem is that Embperl detect mod_perl2 although it isn't installed! > I installed apache

Embperl 2.0b8 local escmode

2002-06-25 Thread Alexander Hartmaier
Hi again! This line isn't working any more in b8: Expand Administrativa WHY? THX Alex - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Embperl 2.0b8 local escmode

2002-06-25 Thread Axel Beckert - ecos gmbh
On Tue, Jun 25, 2002 at 03:28:33PM +0200, Alexander Hartmaier wrote: > This line isn't working any more in b8: > > Expand Administrativa Write > WHY? Perfomance reasons. This is the following fix mention in Gerald's announcement: - removed do { } around expressions of [+ +] blocks insi

Re: Embperl 2.0b8 local escmode

2002-06-25 Thread Gerald Richter - ecos gmbh
Hi again! > > This line isn't working any more in b8: > > Expand Administrativa > > WHY? > Because it should have also not work in any Embperl 2 version before, but did by accident. The reason is that it was much slower before. Anything inside [+ +] must be a valid Perl expression (there was a bu

Multithreaded Apache/ModPerl/Embperl

2002-06-25 Thread Debian User
Apache 2.0/worker and ModPerl2 work fine. I want to add Embeded Perl, just for fun. I am looking for (even broken) version that can do it. Is it the CVS branch Embperl2c? Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

Re: Multithreaded Apache/ModPerl/Embperl

2002-06-25 Thread Gerald Richter
> Apache 2.0/worker and ModPerl2 work fine. I want to add Embeded Perl, > just for fun. > > I am looking for (even broken) version that can do it. Is it the CVS > branch Embperl2c? > Branch Embperl2c is the current branch and the one of today is the same as Embperl 2.0b8. 2.0b8 will not run wi

Re: ANNOUNCE: Embperl 2.0b8

2002-06-25 Thread Gerald Richter
Hi, > > While I am not very familiar with Embperl, I saw some discussion concerning > PHP that struck me as pretty interesting for Embperl and similar > applications: have you considered making (or atleast having an option for) > Embperl an output filter for Apache 2/mod_perl 2? I think this woul

Re: Apache::SessionX make test fails

2002-06-25 Thread Gerald Richter
Hi, > I am having the same issue referenced in the following message: > > http://www.ecos.de/~mailarc/embperl/2002-02/msg00122.html > > well, the first part anyway... the make test issue... > > is there a known fix/workaround for this problem? im trying to get embperl > up and running with sess

Re: How can I trigger an error document from HTML::EmbperlObject?

2002-06-25 Thread Gerald Richter
> I want something like: > > $status = Execute({inputfile => '*'}); > if ($status) { > where if there's an error I go to my default /error.html file, which > can then print out all the information I'd normally get using the > ErrorDocument directive. Barring that an internal redirect would >

Re: DBIx::Recordset patch for select xxxx AS foo

2002-06-25 Thread Gerald Richter
> At Fri, 21 Jun 2002 02:56:31 -0400, Kee Hinckley wrote: > > Currently if you do something like: > > select year(pubdate) as year; > > you can't refer to $set->{year}, instead it's $set->{'year(pubdate) > > as year'}. > > i have used column aliasing (or whatever its called) without even > thinkin

Re: Uploading files to an EmbPerl script?

2002-06-25 Thread Gerald Richter
> > My question is, where are the contents of the file going? > $fdat{upfile} is a filehandle, it's the same as with CGI.pm (actualy CGI.pm does handle the upload for Embperl). Do a perldoc HTML::Embperl and search for upload to get a code example (additionaly to what Kee already send) Gerald