You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by ri...@hyperreal.org on 1999/04/22 20:39:40 UTC

cvs commit: modperl-site/embperl Changes.pod.1.html Embperl.pod.15.html Embperl.pod.2.html Embperl.pod.5.html

richter     99/04/22 11:39:37

  Modified:    embperl  Changes.pod.1.html Embperl.pod.15.html
                        Embperl.pod.2.html Embperl.pod.5.html
  Log:
  Embperl Webpages - Changes
  
  Revision  Changes    Path
  1.52      +1 -1      modperl-site/embperl/Changes.pod.1.html
  
  Index: Changes.pod.1.html
  ===================================================================
  RCS file: /export/home/cvs/modperl-site/embperl/Changes.pod.1.html,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- Changes.pod.1.html	1999/04/20 09:25:39	1.51
  +++ Changes.pod.1.html	1999/04/22 18:39:33	1.52
  @@ -18,7 +18,7 @@
     <blockquote>
   [<a href="index.html">HOME</a>]&nbsp;&nbsp; [<a href="Changes.pod.cont.html">CONTENT</a>]&nbsp;&nbsp; [<a href="Changes.pod.cont.html">PREV (Revision History - Content)</a>]&nbsp;&nbsp; [<a href="Changes.pod.2.html">NEXT (1.2b4 (BETA)  15 Feb 1999)</a>]&nbsp;&nbsp; <br><hr>
   <P>
  -Last Update: Tue Apr 20 11:26:05 1999 (MET)
  +Last Update: Thu Apr 22 20:39:58 1999 (MET)
   
   <P>
   NOTE: This version is only available via <A HREF="CVS.pod.1.html#INTRO">"CVS"</A>
  
  
  
  1.7       +1 -1      modperl-site/embperl/Embperl.pod.15.html
  
  Index: Embperl.pod.15.html
  ===================================================================
  RCS file: /export/home/cvs/modperl-site/embperl/Embperl.pod.15.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Embperl.pod.15.html	1999/03/22 04:43:57	1.6
  +++ Embperl.pod.15.html	1999/04/22 18:39:34	1.7
  @@ -46,7 +46,7 @@
    
    Win NT/95/98 binarys
    Apache/perl/
  - mod_perl/Embperl       <A HREF="http://mothra.tamu.edu/perl/">http://mothra.tamu.edu/perl/</A>
  + mod_perl/Embperl       <A HREF="http://www.perl.com/CPAN/authors/Jeffrey_Baker/">http://www.perl.com/CPAN/authors/Jeffrey_Baker/</A>
   </PRE>
   <P>
   <HR>
  
  
  
  1.8       +12 -4     modperl-site/embperl/Embperl.pod.2.html
  
  Index: Embperl.pod.2.html
  ===================================================================
  RCS file: /export/home/cvs/modperl-site/embperl/Embperl.pod.2.html,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Embperl.pod.2.html	1999/02/15 12:34:07	1.7
  +++ Embperl.pod.2.html	1999/04/22 18:39:34	1.8
  @@ -126,10 +126,18 @@
   <DT><STRONG><A NAME="item_optDisableEmbperlErrorPage">optDisableEmbperlErrorPage = 2</A></STRONG><DD>
   <P>
   Tells Embperl to not send its own errorpage in case of failure, instead
  -giving the error back to the web server and let the web server handle it
  -the standard way. Without this option, Embperl sends its own error page,
  -showing all the errors which have occurred. If you have dbgLogLink enabled,
  -every error will be a link to the corresponding location in the log file.
  +shows as much of the page as possible. Errors are only logged to the log
  +file. Without this option, Embperl sends its own error page, showing all
  +the errors which have occurred. If you have dbgLogLink enabled, every error
  +will be a link to the corresponding location in the log file. This option
  +has no effect if optReturnError is set.
  +
  +<DT><STRONG><A NAME="item_optReturnError">optReturnError = 262144</A></STRONG><DD>
  +<P>
  +With this option set Embperl sends no output in case of an error, instead
  +it returns the error back to Apache or the calling programm. When running
  +under mod_perl this gives you the chance to use the Apache <EM>ErrorDocument</EM>
  +directive to show a custom error-document.
   
   <DT><STRONG><A NAME="item_optSafeNamespace">optSafeNamespace = 4</A></STRONG><DD>
   <P>
  
  
  
  1.7       +6 -4      modperl-site/embperl/Embperl.pod.5.html
  
  Index: Embperl.pod.5.html
  ===================================================================
  RCS file: /export/home/cvs/modperl-site/embperl/Embperl.pod.5.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Embperl.pod.5.html	1999/02/15 12:34:07	1.6
  +++ Embperl.pod.5.html	1999/04/22 18:39:35	1.7
  @@ -157,8 +157,9 @@
   <OL>
   <LI>
   <P>
  -End when an expression with <CODE>$row</CODE> becomes undefined. The row
  -containing the undefined expression is <STRONG>not</STRONG> displayed.
  +End when one of the expressions with <CODE>$row</CODE> becomes undefined.
  +The row containing the undefined expression is <STRONG>not</STRONG> displayed. Only those expression are observed which contains an access to
  +the varibale $row.
   
   <LI>
   <P>
  @@ -178,8 +179,9 @@
   <OL>
   <LI><STRONG><A NAME="item_6">6</A></STRONG>
   <P>
  -End when an expression with <CODE>$col</CODE> becomes undefined. The column
  -containing the undefined expression is <STRONG>not</STRONG> displayed.
  +End when one of the expression with <CODE>$col</CODE> becomes undefined.
  +The column containing the undefined expression is <STRONG>not</STRONG> displayed. Only those expression are observed which contains an access to
  +the varibale $col.
   
   <LI><STRONG><A NAME="item_2">2</A></STRONG>
   <P>