Re: Ax1: making document() calls use files instead of URLs

2008-06-25 Thread Martijn
On Mon, Jun 23, 2008 at 5:23 PM, Jörg Walter wrote: A file:// URL should fo the trick. Which, indeed, it does. Thanks. Martijn. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: ax2: base-class in XSP documents fails

2008-06-25 Thread Martijn
On Tue, Jun 17, 2008 at 4:39 PM, Matt Sergeant wrote: Fixed in SVN (I think). I still get an error when I use My::BaseClass::SubClass as a base-class, which inherits the handler method from My::BaseClass. Which makes sense: in _load_module() only My::BaseClass::SubClass is added to %INC; hence

Re: ax2: base-class in XSP documents fails

2008-06-25 Thread Matt Sergeant
On Wed, 25 Jun 2008, Martijn wrote: On Tue, Jun 17, 2008 at 4:39 PM, Matt Sergeant wrote: Fixed in SVN (I think). I still get an error when I use My::BaseClass::SubClass as a base-class, which inherits the handler method from My::BaseClass. Which makes sense: in _load_module() only

Re: ax2: base-class in XSP documents fails

2008-06-25 Thread Martijn
On Wed, Jun 25, 2008 at 1:50 PM, wrote: How do you mean inherits from? If you're just doing @ISA = qw(My::BaseClass); that's not enough - try use base qw(My::BaseClass); instead. That's exactly what I did. Thanks. Martijn.

Re: ax2: base-class in XSP documents fails

2008-06-25 Thread Martijn
On Wed, Jun 25, 2008 at 2:18 PM, Martijn wrote: That's exactly what I did. Thanks. That's exactly what I did *wrong* I meant to say. :-) Speaking of XSP, would it be worth adding a line no warnings 'redefine'; to the XSP-blurb that is being evaluated? Otherwise, I get tons of 'subroutine ...

Re: ax2: base-class in XSP documents fails

2008-06-25 Thread Matt Sergeant
On Wed, 25 Jun 2008, Martijn wrote: On Wed, Jun 25, 2008 at 2:18 PM, Martijn wrote: That's exactly what I did. Thanks. That's exactly what I did *wrong* I meant to say. :-) Speaking of XSP, would it be worth adding a line no warnings 'redefine'; to the XSP-blurb that is being evaluated?

ax2: subroutine redefined warnings on XSP pages

2008-06-25 Thread Martijn
On Wed, Jun 25, 2008 at 4:57 PM, Matt Sergeant wrote: On Wed, 25 Jun 2008, Martijn wrote: Speaking of XSP, would it be worth adding a line no warnings 'redefine'; to the XSP-blurb that is being evaluated? Otherwise, I get tons of 'subroutine ... redefined' warnings when an XSP page is loaded