]> gitweb.factorcode.org Git - factor.git/commitdiff
Updated post-data slot names in http-docs.factor
authorotoburb <otoburb@gmail.com>
Tue, 15 Dec 2009 23:12:48 +0000 (18:12 -0500)
committerotoburb <otoburb@gmail.com>
Tue, 15 Dec 2009 23:12:48 +0000 (18:12 -0500)
basis/http/http-docs.factor

index 0dca26fd328b35aa43a930731bb9479cffa95d98..2de2323394634150def828ea5b12d533f7443e3f 100644 (file)
@@ -103,9 +103,10 @@ HELP: post-data
 $nl
 "Instances contain the following slots:"
 { $table
-    { { $slot "raw" } { "The raw bytes of the POST data" } }
-    { { $slot "content" } { "The POST data. This can be in a higher-level form, such as an assoc of POST parameters, a string, or an XML document" } }
-    { { $slot "content-type" } "A MIME type" }
+    { { $slot "data" } { "The POST data. This can be in a higher-level form, such as an assoc of POST parameters, a string, or an XML document" } }
+    { { $slot "params" } { "Parameters passed in the POST request." } } 
+    { { $slot "content-type" } { "A MIME type" } }
+    { { $slot "content-encoding" } { "Encoding used for the POST data" } }
 } } ;
 
 HELP: set-header