[svn:mod_parrot] r321 - in mod_parrot/trunk: . eg/perl6 eg/perl6/ModPerl6

[email protected] Sun, 20 Jan 2008 07:40:32 -0800 (PST)
Newsgroups perl.cvs.mod_parrot
Message-ID <[email protected]>
Author: jhorwitz
Date: Sun Jan 20 07:40:31 2008
New Revision: 321

Modified:
   mod_parrot/trunk/CHANGES
   mod_parrot/trunk/eg/perl6/ModPerl6/Counter.pm
   mod_parrot/trunk/eg/perl6/ModPerl6/Polly.pm
   mod_parrot/trunk/eg/perl6/README

Log:
various doc updates


Modified: mod_parrot/trunk/CHANGES
==============================================================================
--- mod_parrot/trunk/CHANGES	(original)
+++ mod_parrot/trunk/CHANGES	Sun Jan 20 07:40:31 2008
@@ -1,6 +1,6 @@
 $Id$
 
-0.4    January 19, 2008
+0.4    January 20, 2008
        * Support for Parrot 0.5.1 (Hatachi)
        * Begin transition to server-side tests
        * Keep testing infrastructure on make clean (versus distclean)

Modified: mod_parrot/trunk/eg/perl6/ModPerl6/Counter.pm
==============================================================================
--- mod_parrot/trunk/eg/perl6/ModPerl6/Counter.pm	(original)
+++ mod_parrot/trunk/eg/perl6/ModPerl6/Counter.pm	Sun Jan 20 07:40:31 2008
@@ -8,7 +8,7 @@
 #
 # Usage:
 #
-# ParrotIncludePath /path/to/eg/perl6
+# ParrotIncludePath /path/to/eg/perl6:/path/to/parrot/runtime/parrot/library:/path/to/mod_parrot/lib
 # ParrotLoad ModParrot/HLL/perl6.pbc
 # ParrotAddHandler perl6 perl6-script
 # <Location /perl6/counter>
@@ -17,6 +17,7 @@
 # </Location>
 #
 # Stop Apache
+# Set the PARROT_RUNTIME environment variable to /path/to/parrot
 # Set the PERL6LIB environment variable to /path/to/eg/perl6
 # Start Apache
 

Modified: mod_parrot/trunk/eg/perl6/ModPerl6/Polly.pm
==============================================================================
--- mod_parrot/trunk/eg/perl6/ModPerl6/Polly.pm	(original)
+++ mod_parrot/trunk/eg/perl6/ModPerl6/Polly.pm	Sun Jan 20 07:40:31 2008
@@ -5,7 +5,8 @@
 #
 # Usage:
 #
-# ParrotIncludePath /path/to/mod_parrot/lib:/path/to/runtime/parrot/library
+# ParrotIncludePath /path/to/eg/perl6:/path/to/parrot/runtime/parrot/library:/pa
+th/to/mod_parrot/lib
 # ParrotLoad ModParrot/HLL/perl6.pbc
 # ParrotAddHandler perl6 perl6-script
 # <Location /perl6/polly>
@@ -14,6 +15,7 @@
 # </Location>
 #
 # Stop Apache
+# Set the PARROT_RUNTIME environment variable to /path/to/parrot
 # Set the PERL6LIB environment variable to /path/to/eg/perl6
 # Start Apache
 

Modified: mod_parrot/trunk/eg/perl6/README
==============================================================================
--- mod_parrot/trunk/eg/perl6/README	(original)
+++ mod_parrot/trunk/eg/perl6/README	Sun Jan 20 07:40:31 2008
@@ -1,5 +1,5 @@
 This directory contains example mod_perl6 handlers.  Until the perl6 compiler
 implements search paths, the HLL layer needs some help loading handler modules.
-For these examples, set the PERL6LIB environment variable to the location of
-this directory, then stop and start Apache.  You can also add it to Apache's
-envvars script (found in the same directory as apachectl).
+In particular, you'll need to set the PARROT_RUNTIME and PERL6LIB environment
+variables, which you can do on the command line or in Apache's envvars script
+(found in the same directory as apachectl).