Author: stas Date: Fri Dec 17 13:22:19 2004 New Revision: 122681 URL: http://svn.apache.org/viewcvs?view=rev&rev=122681 Log: reinsert the last commit in the sorted order
Modified: perl/modperl/docs/trunk/src/docs/2.0/user/config/config.pod Modified: perl/modperl/docs/trunk/src/docs/2.0/user/config/config.pod Url: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/user/config/config.pod?view=diff&rev=122681&p1=perl/modperl/docs/trunk/src/docs/2.0/user/config/config.pod&r1=122680&p2=perl/modperl/docs/trunk/src/docs/2.0/user/config/config.pod&r2=122681 ============================================================================== --- perl/modperl/docs/trunk/src/docs/2.0/user/config/config.pod (original) +++ perl/modperl/docs/trunk/src/docs/2.0/user/config/config.pod Fri Dec 17 13:22:19 2004 @@ -261,6 +261,31 @@ + +=head2 C<PerlConfigRequire> + + PerlConfigRequire Foo/Bar.pm + +is equivalent to Perl's: + + require "Foo/Bar.pm"; + +C<PerlConfigRequire> is used to load files with Perl code. + +It is very similar to C<L<PerlRequire|/C_PerlRequire_>> +with the only difference being that Perl startup is not +L<delayed|/Startup_Process> and will be immediately started +upon encountering this directive. + +META: need to expand on this with examples and suggested usages + + + + + + + + =head2 C<PerlLoadModule> The C<PerlLoadModule> directive is similar to @@ -644,6 +669,36 @@ + + + +=head2 C<PerlPostConfigRequire> + + PerlPostConfigRequire Foo/Bar.pm + +is equivalent to Perl's: + + require "Foo/Bar.pm"; + +C<PerlPostConfigRequire> is used to load files with Perl code +as late as possible during server startup. + +It is very similar to C<L<PerlRequire|/C_PerlRequire_>> and +C<L<PerlConfigRequire|/C_PerlConfigRequire_>>. + +C<PerlPostConfigRequire> delays loading of the file until +the last possible moment before the server is starting, in +the post_config phase. + +META: need to expand on this with examples and suggested usages + + + + + + + + =head2 C<PerlRequire> PerlRequire Foo/Bar.pm @@ -681,47 +736,6 @@ -=head2 C<PerlConfigRequire> - - PerlConfigRequire Foo/Bar.pm - -is equivalent to Perl's: - - require "Foo/Bar.pm"; - -C<PerlConfigRequire> is used to load files with Perl code. - -It is very similar to C<L<PerlRequire|/C_PerlRequire_>> -with the only difference being that Perl startup is not -L<delayed|/Startup_Process> and will be immediately started -upon encountering this directive. - -META: need to expand on this with examples and suggested usages - - - - - - -=head2 C<PerlPostConfigRequire> - - PerlPostConfigRequire Foo/Bar.pm - -is equivalent to Perl's: - - require "Foo/Bar.pm"; - -C<PerlPostConfigRequire> is used to load files with Perl code -as late as possible during server startup. - -It is very similar to C<L<PerlRequire|/C_PerlRequire_>> and -C<L<PerlConfigRequire|/C_PerlConfigRequire_>>. - -C<PerlPostConfigRequire> delays loading of the file until -the last possible moment before the server is starting, in -the post_config phase. - -META: need to expand on this with examples and suggested usages --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]