| Newsgroups |
perl.cvs.mod_parrot |
| Message-ID |
<[email protected]> |
cvsuser 02/05/27 23:11:53
Modified: . README
Log:
May as well point out the existing IO methods.
Access to the headers should follow once I commit the new
get_string_keyed function I wrote. (and make sure I'm patching Brent's
new configure properly).
Revision Changes Path
1.7 +10 -0 mod_parrot/README
Index: README
===================================================================
RCS file: /cvs/public/mod_parrot/README,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -w -r1.6 -r1.7
--- README 24 May 2002 17:26:35 -0000 1.6
+++ README 28 May 2002 06:11:52 -0000 1.7
@@ -76,6 +76,16 @@
print P1, "Testing\n"
+You can also get access to the ap_rputs method wrapped in a printf
+function by creating an Apache object and calling set_string_keyed on
+it, like so:
+
+new P0,Apache
+set_keyed P0,"print","Hello\n"
+
+Do not mix the two types of IOs, as it seems to confuse apache into
+sending incomplete headers.
+
To use mod_parrot, use assemble.pl to compile to bytecode, and then
put that in your web directory.