Zac Morris wrote: > Ahhh, ok more clarity. :) > > Forgive me if I'm just not doing my detective work in poking around for > documentation, but is there a doc that contains all the "kludges" or > "assumed modules" I need to already have in place?
All the docs that we have now are at http://perl.apache.org/release/docs/index.html Most of the kludges are documented here: http://perl.apache.org/release/docs/2.0/user/compat/compat.html There are much more to come, but it'll take time. For now there is more than enough docs to get yourself started. If something is unclear or missing please shout aloud. > I'm assuming that the bulk of these things are handled via a CPAN > "Apache::bundle" install, and because mod_perl2 is still beta we don't have > that in place yet? yes, but Apache::Module is an XS module using mod_perl 1.0's API, so it won't be in the Apache::Bundle for 2.0. This patch may go in soon: Index: lib/Apache/compat.pm =================================================================== RCS file: /home/cvs/modperl-2.0/lib/Apache/compat.pm,v retrieving revision 1.61 diff -u -r1.61 compat.pm --- lib/Apache/compat.pm 4 Jun 2002 12:40:53 -0000 1.61 +++ lib/Apache/compat.pm 25 Jun 2002 15:17:56 -0000 @@ -91,7 +91,8 @@ } sub module { - require Apache::Module; + eval { require Apache::Module }; + die "Please install Apache::Module from CPAN" if $@; return Apache::Module::loaded($_[1]); } > Thanks for all this info, learning more and more every day. :) cool :) __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com