stas        2002/07/15 23:43:42

  Modified:    src/docs/1.0/guide Changes.pod porting.pod
  Log:
   o clarify the issue with END blocks in packages loaded from the
     registry scripts [Jim Schueler]
  
  Revision  Changes    Path
  1.30      +5 -2      modperl-docs/src/docs/1.0/guide/Changes.pod
  
  Index: Changes.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/1.0/guide/Changes.pod,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- Changes.pod       14 Jul 2002 07:17:37 -0000      1.29
  +++ Changes.pod       16 Jul 2002 06:43:42 -0000      1.30
  @@ -11,7 +11,10 @@
   
   =head1 Ongoing
   
  -* ...
  +* coding.pod:
  +
  + o clarify the issue with END blocks in packages loaded from the
  +   registry scripts [Jim Schueler]
   
   =head1 Jul 14 2002 ver 1.32
   
  @@ -19,7 +22,7 @@
   
     o new recipe: File Upload with Apache::Request [Rich Bowen]
   
  -* cookbook
  +* cookbook.pod:
   
     o ported "Passing Arguments to a SSI script" from the modperl faq
   
  
  
  
  1.12      +3 -2      modperl-docs/src/docs/1.0/guide/porting.pod
  
  Index: porting.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/1.0/guide/porting.pod,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- porting.pod       30 May 2002 03:07:09 -0000      1.11
  +++ porting.pod       16 Jul 2002 06:43:42 -0000      1.12
  @@ -2666,11 +2666,12 @@
   i.e. under mod_cgi, once per invocation of the CGI script. However,
   mod_perl only calls C<perl_run()> once, during server startup. Any
   C<END> blocks encountered during main server startup, i.e. those
  -pulled in by the C<PerlRequire> or by any C<PerlModule>, are
  +pulled in by C<PerlRequire>, C<PerlModule> and the startup file, are
   suspended.
   
   Except during the cleanup phase, any C<END> blocks encountered during
  -compilation of C<Apache::Registry> scripts, including subsequent
  +compilation of C<Apache::Registry> scripts (including those defined in
  +the packages C<use()>'d by the script), including subsequent
   invocations when the script is cached in memory, are called after the
   script has completed.
   
  
  
  

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

Reply via email to