in reply to Re: Re: Re: Re: mod_perl and modules (Or "how do I import subs into my PerlHandler module)
in thread mod_perl and modules (Or "how do I import subs into my PerlHandler module)

Hum, I'm sorry but mod_pel does (?)fiddle with the exporter. It puts all modules under the name Apache::something for example.
  • Comment on Re: Re: Re: Re: Re: mod_perl and modules (Or "how do I import subs into my PerlHandler module)

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Re: mod_perl and modules (Or "how do I import subs into my PerlHandler module)
by perrin (Chancellor) on Nov 22, 2002 at 16:15 UTC
    No, it doesn't. A PerlHandler module will be in whatever package you declare. Apache::Registry generates package names for CGI scripts, but even then it doesn't affect the exporter. See this section on sharing variables with the exporter, for example.
      All right. I have to agree :-)
      BTW, your link provided me with the black magic I was looking for earlier on, thanx :-)))))