haxe perl target

2012-01-06 Thread Axel Huizinga

hi folks,
am looking for some help from perl internals gurus since I want to 
contribute to the development

of a perl target for the famous HaXe (http://haxe.org) compiler.
anyone who might have an idea where else it would make sense to ask - 
please tell me about.


Cordially,
Axel


Re: decline and fall of modperl?

2009-03-24 Thread Axel Huizinga

Marilyn Burgess schrieb:
>From a fellow lurker to another, I would be interested in reading 
your perspective.


- Marilyn


me too,
Axel


mod_perl specialchars form post data trouble

2008-11-12 Thread Axel Huizinga

Hi,
am stuck with a problem on
mod_apreq2-20051231/2.6.0 mod_perl/2.0.3 Perl/v5.8.8
form data string with special chars like

[EMAIL PROTECTED]

POSTed to a handler
is returned as:

[EMAIL PROTECTED]

by Apache2::Request::param

to test if the form works well I tried with CGI.pm - there the data is 
returned like input.

is there any way to get back the original Data with mod_perl?
I tried different charsets and enctype settings in the form document
and decode utf8 and charset(8)  on the mod_perl handler but no success.

Best,
Axel



Re: APR::SockAddr

2008-01-07 Thread Axel Huizinga

Philippe M. Chiasson schrieb:


Axel Huizinga wrote:


Hi,

Suddenly on of my mod_perl handlers is broken with the following error:

Can't locate object method "ip_get" via package "APR::SockAddr"

at line:
my $ip = $self->{r}->connection->remote_addr->ip_get;

(temporary replaced by  $ENV{'REMOTE_ADDR'} - now the handler works 
again)


I didn't change the code before the error appeared - can the 
configuration cause this behavior?



Missing:

use APR::SockAddr ();

somewhere ?


Ok - thanks - works again.

Axel


APR::SockAddr

2008-01-06 Thread Axel Huizinga

Hi,

Suddenly on of my mod_perl handlers is broken with the following error:

Can't locate object method "ip_get" via package "APR::SockAddr"

at line:
my $ip = $self->{r}->connection->remote_addr->ip_get;

(temporary replaced by  $ENV{'REMOTE_ADDR'} - now the handler works again)

I didn't change the code before the error appeared - can the 
configuration cause this behavior?


Axel