Changeset 8469 in project
Legend:
- Unmodified
- Added
- Removed
-
wiki/http
r8467 r8469 66 66 67 67 [procedure] (http:POST REQUEST [ARGUMENTS] #!key [headers: LIST] 68 [type: CTYPE] [delim: DELIM]) 68 [type: CTYPE] 69 [delim: DELIM]) 69 70 70 71 Sends a '''POST''' request represented by {{REQUEST}}, which may be a string (URL) … … 76 77 77 78 <scheme> 78 (display "<table style=\"table-layout: auto ; vertical-align: baseline\">")79 (display "<table style=\"table-layout: auto\">") 79 80 (display "<tr><th><tt>Content-Type</tt></th><th>Handler</th></tr>") 80 (display "<tr><td><tt>application/x-www-form-urlencoded</tt></td>") 81 (display "<tr style=\"text-align: top; padding-top: 1em\">") 82 (display "<td><tt>application/x-www-form-urlencoded</tt></td>") 81 83 (display "<td><tt>ARGUMENTS</tt> may be a string or a list. The list may ") 82 84 (display "contain either <tt>(NAME . VALUE)</tt> pairs or strings of the ") (display "form <tt>\"name=value\"</tt>. The message body is generated ") 83 85 (display "as <tt>\"name1=val1&name2=val2...\"</tt>. <tt>DELIM</tt> ") 84 86 (display "is ignored.</td></tr>") 85 (display "<tr><td><tt>multipart/form-data</tt></td>") 87 (display "<tr style=\"text-align: top; padding-top: 1.5em\">") 88 (display "<td><tt>multipart/form-data</tt></td>") 86 89 (display "<td><p><tt>ARGUMENTS</tt> may be a string or a list. ") 87 90 (display "<tt>DELIM</tt> is used as the boundary between multipart ") … … 93 96 (display "segment, and must be composed of elements of the following ") 94 97 (display "types:\n") 95 (display "<table style=\"inline-table; vertical-align: baseline; table-layout: auto\"><tr><td><tt>NAME</tt></td>") 98 (display "<table style=\"inline-table; table-layout: auto\">") 99 (display "<tr style=\"text-align: top; padding-top: 0.75em\">") 100 (display "<td><tt>NAME</tt></td>") 96 101 (display "<td>name attribute set to <tt>NAME</tt>. Body is empty.") 97 102 (display "</td></tr>") 98 (display "<tr><td><tt>(NAME . VALUE)</tt></td>") 103 (display "<tr style=\"text-align: top; padding-top: 1em\">") 104 (display "<td><tt>(NAME . VALUE)</tt></td>") 99 105 (display "<td>name attribute set to <tt>NAME</tt>. Body set to ") 100 106 (display "<tt>VALUE</tt>.</td></tr>") 101 (display "<tr><td><tt>(NAME (ATTRIB . AVAL)... VALUE)</tt></td>") 107 (display "<tr style=\"text-align: top; padding-top: 1em; padding-bottom: 0.75em\">") 108 (display "<td><tt>(NAME (ATTRIB . AVAL)... VALUE)</tt></td>") 102 109 (display "<td>name attribute set to <tt>NAME</tt>. Every ") 103 110 (display "<tt>(ATTRIB . AVAL)</tt> pair is added to the segment header ") … … 107 114 (display "is appended to the body after attributes are processed, and ") 108 115 (display "must NOT be a pair.</td></tr></table></p></td></tr>") 109 (display "<tr><td>everything else</td>") 116 (display "<tr style=\"text-align: top; padding-top: 1.5em; padding-bottom: 1em\">") 117 (display "<td>everything else</td>") 110 118 (display "<td><tt>ARGUMENTS</tt> may be a string or a list of strings. ") 111 119 (display "Lists of strings are concatenated with <tt>DELIM</tt> as a ")
Note: See TracChangeset
for help on using the changeset viewer.