:: -----Urspr�ngliche Nachricht-----
:: Von: Matt Sergeant [mailto:[EMAIL PROTECTED]] 
:: Gesendet: Sonntag, 9. Juni 2002 18:29
:: An: [EMAIL PROTECTED]
:: Betreff: 1.6 release?
:: 
:: 
:: -----BEGIN PGP SIGNED MESSAGE-----
:: Hash: SHA1
:: 
:: OK, so a few people seem happy with the 1.6 rc5 release 
:: candidate. Is there 
:: anyone left with problems or can we put 1.6 out?

For my own two-machine enviroment, i am happy with it.

Silly last comment: In the pod documentation of AxKit::XSP::PerForm
there is a silly mistake with s/// ( forward-slash is missing) in the
example:

     sub validate_firstname {
         my ($ctxt, $value) = @_;
         $value =~ s/^\s*/;
         $value =~ s/\s*$/;

should be ...

     sub validate_firstname {
         my ($ctxt, $value) = @_;
         $value =~ s/^\s*//;
         $value =~ s/\s*$//;

That costed me some 30 mins after just copy+pasting the example.. I
think
now there is an example dir in the dist, but i found it faster to use
the
pod-stuff.

Hurray,
Murat


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to