joes 2003/07/17 14:56:39
Modified: env README
glue README
src README
Removed: build test_config.pl
Log:
Update READMEs and drop test_config.pl
Revision Changes Path
1.2 +8 -10 httpd-apreq-2/env/README
Index: README
===================================================================
RCS file: /home/cvs/httpd-apreq-2/env/README,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- README 15 Jan 2003 14:17:46 -0000 1.1
+++ README 17 Jul 2003 21:56:38 -0000 1.2
@@ -1,16 +1,14 @@
-This is where "ports" of apreq-2 go.
+This is where "ports" of apreq-2 are made.
To port apreq-2 to a particular application, you need
-to populate
-
- extern struct apreq_env APReq;
-
-See apreq_env.h in core/ for details.
+to provide definitions for all the declarations in
+src/apreq_env.h.
Layout:
- env/<port>/
- <stuff for libtool>
- <source files>
- t/* <unit tests for the port>
+ env/
+ Makefile.am - build system configuration
+ *.c - available environments
+ c-modules/ - test modules
+ t/*.t - unit tests
1.2 +1 -1 httpd-apreq-2/glue/README
Index: README
===================================================================
RCS file: /home/cvs/httpd-apreq-2/glue/README,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- README 15 Jan 2003 14:21:18 -0000 1.1
+++ README 17 Jul 2003 21:56:38 -0000 1.2
@@ -1 +1 @@
-Language ports go in glue/<lang>/.
+Language bindings go in glue/<lang>/.
1.4 +6 -5 httpd-apreq-2/src/README
Index: README
===================================================================
RCS file: /home/cvs/httpd-apreq-2/src/README,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- README 21 Apr 2003 22:26:23 -0000 1.3
+++ README 17 Jul 2003 21:56:38 -0000 1.4
@@ -38,9 +38,10 @@
req->body != NULL: req->v.data now points to the active parser.
- req->v.status == APR_INCOMPLETE: Parsing in progress.
- req->v.status == APR_SUCCESS: Parsing complete.
- req->v.status == <other>: parser error, parsing aborted.
+ status: (as returned by apreq_env_read)
+ APR_INCOMPLETE: Parsing in progress.
+ APR_SUCCESS: Parsing complete.
+ <other>: parser error, parsing aborted.
PARSER EXTENSIONS:
@@ -48,6 +49,6 @@
apreq_parser_t: extends apreq_value_t to represent a parser callback,
with its associated configuration data.
- APREQ_HOOK: extends multipart/form-data by transforming the input
- brigade and pushing buckets onto the current param->bb.
+ apreq_hook_t: extends multipart/form-data by transforming the input
+ brigade and pushing buckets onto the current param->bb.