File | Code |
---|---|
CTILMES/CroX-HTTP-Transform-GraphQL…/GraphQL.pm6 :36: |
when 'POST' |
CTILMES/GraphQL…/README.md :91: |
The server takes any GraphQL query sent with HTTP POST to /graphql, |
CTILMES/GraphQL…/GraphQL.md :40: |
In a typical GraphQL Web server, the query would be HTTP POSTed to an endpoint at `/graphql` which would call `GraphQL::Schema.execute()` and send the resulting JSON string back to the requester. |
CTILMES/GraphQL…/GraphQL.pm :563: |
In a typical GraphQL Web server, the query would be HTTP POSTed to an |
CTILMES/LibCurl…/README.md :24: |
HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, |
CTILMES/LibCurl…/README.md :66: |
# POST |
CTILMES/LibCurl…/README.md :89: |
$http.POST('http://example.com/form.html', 'name=foo&opt=value').perform; |
CTILMES/LibCurl…/README.md :104: |
# POST content (query args are OK; pass form as named args) |
CTILMES/LibCurl…/README.md :111: |
# Same POST as above + decode response as JSON |
CTILMES/LibCurl…/README.md :161: |
CURLOPT_COPYPOSTFIELDS so it will always copy the fields. |
CTILMES/LibCurl…/README.md :213: |
post |
CTILMES/LibCurl…/README.md :214: |
postfields |
CTILMES/LibCurl…/README.md :215: |
postfieldsize |
CTILMES/LibCurl…/README.md :419: |
There is a special POST option for multipart/formdata. |
CTILMES/LibCurl…/README.md :437: |
This will automatically cause LibCurl to POST the data. |
CTILMES/LibCurl…/HTTP.pod6 :23: |
$http.POST('http://example.com/form.html', 'name=foo&opt=value').perform; |
CTILMES/LibCurl…/HTTP.pod6 :25: |
$http.POST('http://example.com') |
CTILMES/LibCurl…/HTTP.pod6 :53: |
=item method B<POST>($URL, $content?) |
CTILMES/LibCurl…/LibCurl::HTTP.md :23: |
$http.POST('http://example.com/form.html', 'name=foo&opt=value').perform; |
CTILMES/LibCurl…/LibCurl::HTTP.md :49: |
* method **POST**($URL, $content) |
CTILMES/LibCurl…/http.pl6 :11: |
# POST content (query args are OK; pass form as named args) |
CTILMES/LibCurl…/http.pl6 :18: |
# Same POST as above + decode response as JSON |
CTILMES/LibCurl…/Easy.pm6 :47: |
CURLE_HTTP_POST_ERROR |
CTILMES/LibCurl…/Easy.pm6 :201: |
post => (CURLOPT_POST, CURLOPT_BOOL ), |
CTILMES/LibCurl…/Easy.pm6 :202: |
postfields => (CURLOPT_COPYPOSTFIELDS, CURLOPT_STR ), |
CTILMES/LibCurl…/Easy.pm6 :203: |
postfieldsize => (CURLOPT_POSTFIELDSIZE_LARGE, CURLOPT_OFF_T ), |
CTILMES/LibCurl…/Easy.pm6 :580: |
$!handle.setopt(CURLOPT_HTTPPOST, $!form.firstitem) if $!form; |
CTILMES/LibCurl…/EasyHandle.pm6 :133: |
CURLE_HTTP_POST_ERROR |
CTILMES/LibCurl…/EasyHandle.pm6 :268: |
constant CURLOPT_POSTFIELDS = CURLOPTTYPE_OBJECTPOINT + 15; |
CTILMES/LibCurl…/EasyHandle.pm6 :277: |
constant CURLOPT_HTTPPOST = CURLOPTTYPE_OBJECTPOINT + 24; |
CTILMES/LibCurl…/EasyHandle.pm6 :289: |
constant CURLOPT_POSTQUOTE = CURLOPTTYPE_OBJECTPOINT + 39; |
CTILMES/LibCurl…/EasyHandle.pm6 :297: |
constant CURLOPT_POST = CURLOPTTYPE_LONG + 47; |
CTILMES/LibCurl…/EasyHandle.pm6 :308: |
constant CURLOPT_POSTFIELDSIZE = CURLOPTTYPE_LONG + 60; |
CTILMES/LibCurl…/EasyHandle.pm6 :363: |
constant CURLOPT_POSTFIELDSIZE_LARGE = CURLOPTTYPE_OFF_T + 120; |
CTILMES/LibCurl…/EasyHandle.pm6 :397: |
constant CURLOPT_POSTREDIR = CURLOPTTYPE_LONG + 161; |
CTILMES/LibCurl…/EasyHandle.pm6 :400: |
constant CURLOPT_COPYPOSTFIELDS = CURLOPTTYPE_OBJECTPOINT + 165; |
CTILMES/LibCurl…/EasyHandle.pm6 :482: |
constant CURLOPT_POST301 = CURLOPT_POSTREDIR; |
CTILMES/LibCurl…/HTTP.pm6 :34: |
method POST($URL, $content?) |
CTILMES/LibCurl…/HTTP.pm6 :37: |
self.setopt(:failonerror, customrequest => 'POST', URL => $URL); |
CTILMES/LibCurl…/HTTP.pm6 :54: |
$http.POST($url, $postform).perform.content; |
CTILMES/LibCurl…/test0003.t :23: |
"POST /3 HTTP/1.1 |
CTILMES/LibCurl…/test0095.t :36: |
"POST /we/want/that/page/95 HTTP/1.1 |
CTILMES/LibCurl…/test0097.t :27: |
"POST /97 HTTP/1.1 |
CTILMES/LibCurl…/03-http.t6 :55: |
# POST |
CTILMES/LibCurl…/03-http.t6 :60: |
$curl.POST('http://httpbin.org/post?foo=42\&bar=x').perform; |
CTILMES/LibCurl…/05-WWW.t6 :51: |
:message(/error/), "can detect a POST error over $prot.uc()"; |
CTILMES/LibGit2…/Tree.pm6 :10: |
GIT_TREEWALK_POST |
CTILMES/LibGit2…/Tree.pm6 :85: |
my $mode = $post ?? GIT_TREEWALK_POST !! GIT_TREEWALK_PRE; |
FCO/Red…/CommonSQL.pm6 :66: |
POSTFIX POWER PRECEDING PRECISION PREFIX PREORDER PREPARE PREPARED PRESERVE PRIMARY PRINT PRIOR PRIVILEGES PROC |
HANENKAMP/Amazon-DynamoDB…/DynamoDB.pm6 :786: |
:method<POST>, :$body, :$uri, :@headers, :$.region, :service<dynamodb>, |
HANENKAMP/Amazon-DynamoDB…/DynamoDB.pm6 :793: |
my %req = :method<POST>, :$uri, :%headers, :content($body); |
HANENKAMP/Amazon-DynamoDB…/UserAgent.pm6 :23: |
my $req = POST($uri, |%headers, :$content); |
HANENKAMP/Amazon-DynamoDB…/aws-examples-offline.t :68: |
method => 'POST', |
HANENKAMP/ArrayHash…/ArrayHash.pm6 :183: |
POST { %!hash{$key} =:= @!array[ @!array.first(want($key), :k, :end) ].value } |
HANENKAMP/ArrayHash…/ArrayHash.pm6 :204: |
POST { $!multivalued || @!array.grep(want($pair.key)).elems <= 1 } |
HANENKAMP/ArrayHash…/ArrayHash.pm6 :205: |
POST { %!hash{$pair.key} =:= @!array[ @!array.first(want($pair.key), :k, :end) ].value } |
HANENKAMP/ArrayHash…/ArrayHash.pm6 :245: |
POST { %!hash{$key} =:= @!array.reverse.first(want($key)).value } |
HANENKAMP/ArrayHash…/ArrayHash.pm6 :260: |
POST { $!multivalued || @!array.grep(want(pair.key)).elems <= 1 } |
HANENKAMP/ArrayHash…/ArrayHash.pm6 :261: |
POST { %!hash{pair.key} =:= @!array.reverse.first(want(pair.key)).value } |
HANENKAMP/ArrayHash…/ArrayHash.pm6 :294: |
POST { %!hash{$key} :!exists } |
HANENKAMP/ArrayHash…/ArrayHash.pm6 :295: |
POST { @!array.first(want($key), :k) ~~ Nil } |
HANENKAMP/ArrayHash…/ArrayHash.pm6 :309: |
POST { @!array[$pos] ~~ Pair:U } |
HANENKAMP/ArrayHash…/ArrayHash.pm6 :310: |
POST { |
HANENKAMP/ArrayHash…/ArrayHash.pm6 :315: |
POST { |
HANENKAMP/Cofra…/PathRouter.pm6 :71: |
$*ROUTER.add-route('POST', .key, .value) for %route; |
HANENKAMP/CroX-HTTP-FallbackPassthru…/basic.t :20: |
post -> 'bar', 'baz' { content 'text/plain', 'baz POST' }; |
HANENKAMP/CroX-HTTP-FallbackPassthru…/basic.t :47: |
is await($r.body-text), 'baz POST', 'bar/baz POST works direclty'; |
HANENKAMP/CroX-HTTP-FallbackPassthru…/basic.t :59: |
is await($r.body-text), 'baz POST', 'bar/baz POST works indirectly'; |
HANENKAMP/HTTP-Headers…/Header.pod :15: |
$headers.Allow = 'GET', 'POST'; |
HANENKAMP/HTTP-Headers…/Header.pod :50: |
$headers.Allow = "GET", "POST"; |
HANENKAMP/HTTP-Headers…/Header.pod :52: |
# GET, POST |
HANENKAMP/HTTP-Headers…/Header.pod :58: |
# Allow: POST |
HANENKAMP/HTTP-Headers…/Header.pod :66: |
$headers.Allow = "GET", "POST"; |
HANENKAMP/HTTP-Headers…/Header.pod :68: |
# GET, POST |
HANENKAMP/HTTP-Headers…/Header.pod :81: |
$headers.Allow.push: "POST"; |
HANENKAMP/HTTP-Headers…/Header.pod :83: |
# GET, POST |
HANENKAMP/HTTP-Headers…/Header.pod :92: |
$headers.Allow.unshift: "POST"; |
HANENKAMP/HTTP-Headers…/Header.pod :94: |
# POST, GET |
HANENKAMP/HTTP-Headers…/Header.pod :102: |
$headers.Allow = "GET", "POST"; |
HANENKAMP/HTTP-Headers…/Header.pod :112: |
$headers.Allow = "GET", "POST"; |
HANENKAMP/HTTP-Headers…/Header.pod :114: |
# POST |
HANENKAMP/HTTP-Headers…/Header.pod :122: |
$headers.Allow.init("GET", "POST"); |
HANENKAMP/HTTP-Headers…/Header.pod :127: |
# Allow: POST |
HANENKAMP/HTTP-Headers…/Header.pod :136: |
$headers.Allow = "GET", "POST"; |
HANENKAMP/HTTP-Headers…/Header.pod :139: |
# Allow: POST |
HANENKAMP/HTTP-Headers…/Header.pod :141: |
# Allow: GET; Allow: POST |
HANENKAMP/HTTP-Headers…/headers-from-pairs.t :24: |
::(Allow) => 'POST', |
HANENKAMP/HTTP-Headers…/headers-from-pairs.t :28: |
is $h.Allow.value, 'GET, POST', 'Allow'; |
HANENKAMP/HTTP-Headers…/headers-from-pairs.t :47: |
::(Allow) => 'POST', |
HANENKAMP/HTTP-Headers…/headers-from-pairs.t :53: |
is $h.Allow.value, 'GET, POST', 'Allow'; |
HANENKAMP/HTTP-Headers…/headers-from-pairs.t :70: |
::(Allow) => 'POST', |
HANENKAMP/HTTP-Headers…/headers-from-pairs.t :76: |
is $h.Allow.value, 'POST', 'Allow'; |
HANENKAMP/HTTP-Request-FormData…/README.md :18: |
my $req = POST( |
HANENKAMP/HTTP-Request-FormData…/README.md :100: |
my $req = POST( |
HANENKAMP/HTTP-Request-FormData…/FormData.pm6 :21: |
my $req = POST( |
HANENKAMP/HTTP-Request-FormData…/FormData.pm6 :113: |
my $req = POST( |
HANENKAMP/HTTP-Request-Supply…/http-1.0-close.txt :1: |
POST /index.html HTTP/1.0 |
HANENKAMP/HTTP-Request-Supply…/http-1.0-dumb.txt :1: |
POST /index.html HTTP/1.0 |
HANENKAMP/HTTP-Request-Supply…/http-1.0-keep-alive.txt :1: |
POST /index.html HTTP/1.0 |
HANENKAMP/HTTP-Request-Supply…/http-1.0-pipeline.txt :1: |
POST http://example.com/index.html HTTP/1.0 |
HANENKAMP/HTTP-Request-Supply…/http-1.0-trailing-garbage.txt :1: |
POST /index.html HTTP/1.0 |
HANENKAMP/HTTP-Request-Supply…/http-1.1-close.txt :1: |
POST /index.html HTTP/1.1 |
HANENKAMP/HTTP-Request-Supply…/http-1.1-pipeline.txt :1: |
POST http://example.com/index.html HTTP/1.1 |
HANENKAMP/HTTP-Request-Supply…/http-1.1-pipeline.txt :19: |
POST http://example.com/form.html HTTP/1.1 |
HANENKAMP/HTTP-Request-Supply…/http-1.1-short.txt :1: |
POST /index.html HTTP/1.1 |
HANENKAMP/HTTP-Request-Supply…/http-1.1-trailing-garbage.txt :1: |
POST /index.html HTTP/1.1 |
HANENKAMP/HTTP-Request-Supply…/request-deprecated.t :18: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Request-Supply…/request-deprecated.t :33: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Request-Supply…/request-deprecated.t :47: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Request-Supply…/request-deprecated.t :62: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Request-Supply…/request-http-1.0.t :14: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Request-Supply…/request-http-1.0.t :29: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Request-Supply…/request-http-1.0.t :43: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Request-Supply…/request-http-1.0.t :58: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Request-Supply…/request-http-1.1.t :14: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Request-Supply…/request-http-1.1.t :30: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Request-Supply…/request-http-1.1.t :45: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Request-Supply…/request-http-1.1.t :67: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Request-Supply…/request-trailing-garbage.t :15: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Request-Supply…/request-trailing-garbage.t :30: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Supply…/http-1.0-close.txt :1: |
POST /index.html HTTP/1.0 |
HANENKAMP/HTTP-Supply…/http-1.0-dumb.txt :1: |
POST /index.html HTTP/1.0 |
HANENKAMP/HTTP-Supply…/http-1.0-keep-alive.txt :1: |
POST /index.html HTTP/1.0 |
HANENKAMP/HTTP-Supply…/http-1.0-pipeline.txt :1: |
POST http://example.com/index.html HTTP/1.0 |
HANENKAMP/HTTP-Supply…/http-1.0-trailing-garbage.txt :1: |
POST /index.html HTTP/1.0 |
HANENKAMP/HTTP-Supply…/http-1.1-close.txt :1: |
POST /index.html HTTP/1.1 |
HANENKAMP/HTTP-Supply…/http-1.1-pipeline.txt :1: |
POST http://example.com/index.html HTTP/1.1 |
HANENKAMP/HTTP-Supply…/http-1.1-pipeline.txt :19: |
POST http://example.com/form.html HTTP/1.1 |
HANENKAMP/HTTP-Supply…/http-1.1-short.txt :1: |
POST /index.html HTTP/1.1 |
HANENKAMP/HTTP-Supply…/http-1.1-trailing-garbage.txt :1: |
POST /index.html HTTP/1.1 |
HANENKAMP/HTTP-Supply…/request-deprecated.t :18: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Supply…/request-deprecated.t :33: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Supply…/request-deprecated.t :47: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Supply…/request-deprecated.t :62: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Supply…/request-http-1.0.t :14: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Supply…/request-http-1.0.t :29: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Supply…/request-http-1.0.t :43: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Supply…/request-http-1.0.t :58: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Supply…/request-http-1.1.t :14: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Supply…/request-http-1.1.t :30: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Supply…/request-http-1.1.t :45: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Supply…/request-http-1.1.t :67: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Supply…/request-trailing-garbage.t :15: |
REQUEST_METHOD => 'POST', |
HANENKAMP/HTTP-Supply…/request-trailing-garbage.t :30: |
REQUEST_METHOD => 'POST', |
HANENKAMP/Smack…/Common.pm6 :32: |
sub POST(Smack::URI:D() $uri, :$content, *@headers, *%headers) is export { |
HANENKAMP/Smack…/Common.pm6 :33: |
my $req = Smack::Client::Request.new(:method<POST>, :$uri); |
HANENKAMP/Smack…/URI.pm6 :1030: |
This routine will slice and dice a query string, which is useful when parsing URIs and may also be useful when parsing POST entities that are encoded as C<application/x-www-form-urlencoded>. |
HANENKAMP/Smack…/error.t :11: |
my $req = POST($u, content => supply { |
HANENKAMP/Smack…/input.t :11: |
my $req = POST($url, |
HANENKAMP/Smack…/conditional-get.t :53: |
name => 'etag header does not trigger not modified for POST', |
HANENKAMP/Smack…/conditional-get.t :55: |
request => POST('/', content => '', If-None-Match => $tag), |
JGOFF/ANTLR4-Grammar…/Swift.g4 :551: |
// GRAMMAR OF A POSTFIX EXPRESSION |
JGOFF/ANTLR4-Grammar…/vhdl.g4 :85: |
POSTPONED : 'postponed'; |
JGOFF/ANTLR4-Grammar…/vhdl.g4 :209: |
| ( label_colon )? ( POSTPONED )? concurrent_signal_assignment_statement |
JGOFF/ANTLR4-Grammar…/vhdl.g4 :410: |
: ( label_colon )? ( POSTPONED )? assertion SEMI |
JGOFF/ANTLR4-Grammar…/vhdl.g4 :419: |
: ( label_colon )? ( POSTPONED )? procedure_call SEMI |
JGOFF/ANTLR4-Grammar…/vhdl.g4 :423: |
: ( label_colon )? ( POSTPONED )? |
JGOFF/ANTLR4-Grammar…/vhdl.g4 :941: |
: APOSTROPHE attribute_designator ( expression ( COMMA expression )* )? |
JGOFF/ANTLR4-Grammar…/vhdl.g4 :1140: |
: ( label_colon )? ( POSTPONED )? PROCESS |
JGOFF/ANTLR4-Grammar…/vhdl.g4 :1145: |
END ( POSTPONED )? PROCESS ( identifier )? SEMI |
JGOFF/ANTLR4-Grammar…/vhdl.g4 :1153: |
: subtype_indication APOSTROPHE ( aggregate | LPAREN expression RPAREN ) |
JGOFF/ANTLR4-Grammar…/vhdl.g4 :1610: |
: APOSTROPHE . APOSTROPHE |
JGOFF/ANTLR4-Grammar…/vhdl.g4 :1682: |
APOSTROPHE |
JGOFF/Perl6-Parser…/Factory.pm6 :6779: |
# POST |
JNTHN/Cro-HTTP-Test…/Test.pm6 :121: |
request('POST', $path, |%client-options) |
JNTHN/Cro-HTTP-Test…/Test.pm6 :124: |
request('POST', |%client-options) |
JNTHN/Cro-HTTP…/Client.pm6 :301: |
self.request('POST', $url, %options) |
JNTHN/Cro-HTTP…/Client.pm6 :304: |
self.request('POST', $url, %options) |
JNTHN/Cro-HTTP…/RequestParser.pm6 :12: |
:@allowed-methods = <GET HEAD POST PUT DELETE PATCH CONNECT OPTIONS> |
JNTHN/Cro-HTTP…/Router.pm6 :601: |
$*CRO-ROUTE-SET.add-handler('POST', &handler); |
JNTHN/Cro-HTTP…/RequestParser.pm6 :12: |
:@allowed-methods = <GET HEAD POST PUT DELETE PATCH CONNECT OPTIONS> |
JNTHN/Cro-HTTP…/http-auth-basic.t :26: |
content 'text/plain', 'POST'; |
JNTHN/Cro-HTTP…/http-client.t :170: |
ok $resp ~~ Cro::HTTP::Response, 'Got a response back from POST /'; |
JNTHN/Cro-HTTP…/http-request-parser.t :155: |
parses 'Simple POST request with no headers', q:to/REQUEST/, |
JNTHN/Cro-HTTP…/http-request-parser.t :156: |
POST / HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :159: |
*.method eq 'POST', |
JNTHN/Cro-HTTP…/http-request-parser.t :208: |
allowed-methods => <GET PUT POST DELETE TRACE>, |
JNTHN/Cro-HTTP…/http-request-parser.t :491: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :497: |
*.method eq 'POST', |
JNTHN/Cro-HTTP…/http-request-parser.t :503: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :512: |
*.method eq 'POST', |
JNTHN/Cro-HTTP…/http-request-parser.t :518: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :533: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :547: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :571: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :602: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :616: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :630: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :644: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :661: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :680: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :694: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :717: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :762: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :828: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :842: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :906: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :911: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :923: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :928: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :940: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-parser.t :945: |
POST /bar HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-serializer.t :47: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :53: |
POST /foo HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-serializer.t :63: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :70: |
POST /foo HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-serializer.t :80: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :86: |
POST /foo HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-serializer.t :96: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :103: |
POST /foo HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-serializer.t :113: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :120: |
POST /foo HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-serializer.t :130: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :137: |
POST /foo HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-serializer.t :147: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :154: |
POST /foo HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-serializer.t :164: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :171: |
POST /foo HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-serializer.t :181: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :188: |
POST /foo HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-serializer.t :198: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :208: |
POST /foo HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-serializer.t :218: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :225: |
POST /foo HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-serializer.t :235: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :244: |
POST /foo HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-serializer.t :254: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :262: |
POST /foo HTTP/1.1 |
JNTHN/Cro-HTTP…/http-request-serializer.t :272: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :279: |
'POST /foo HTTP/1.1' \n |
JNTHN/Cro-HTTP…/http-request-serializer.t :297: |
my $req = Cro::HTTP::Request.new(:method<POST>, :target</foo>); |
JNTHN/Cro-HTTP…/http-request-serializer.t :312: |
'POST /foo HTTP/1.1' \n |
JNTHN/Cro-HTTP…/http-router.t :105: |
response.set-body('A POST request'.encode('ascii')); |
JNTHN/Cro-HTTP…/http-router.t :134: |
$source.emit(Cro::HTTP::Request.new(:method<POST>, :target</product>)); |
JNTHN/Cro-HTTP…/http-router.t :136: |
ok $r ~~ Cro::HTTP::Response, 'Route set routes POST'; |
JNTHN/Cro-HTTP…/http-router.t :139: |
is-deeply body-text($r), 'A POST request', 'Got expected body'; |
JNTHN/Cro-HTTP…/http-router.t :747: |
for <PUT POST DELETE> -> $method { |
JNTHN/Cro-HTTP…/http2-request-parser.t :68: |
@headers = HTTP::HPACK::Header.new(name => ':method', value => 'POST'), |
JNTHN/Cro-HTTP…/http2-request-parser.t :86: |
[[(*.method eq 'POST'), |
JNTHN/Cro-HTTP…/http2-request-parser.t :104: |
[[(*.method eq 'POST'), |
JNTHN/Cro-HTTP…/http2-request-parser.t :125: |
[[(*.method eq 'POST'), |
JNTHN/Cro-HTTP…/http2-request-parser.t :153: |
[[(*.method eq 'POST'), |
JNTHN/Cro-HTTP…/http2-request-parser.t :178: |
[[(*.method eq 'POST'), |
JNTHN/Cro-HTTP…/http2-request-parser.t :181: |
[(*.method eq 'POST'), |
JNTHN/Cro-HTTP…/http2-request-parser.t :204: |
[[(*.method eq 'POST'), |
JNTHN/Cro-HTTP…/http2-request-parser.t :208: |
[(*.method eq 'POST'), |
JNTHN/Cro-HTTP…/http2-request-parser.t :232: |
[[(*.method eq 'POST'), |
JNTHN/Cro-HTTP…/http2-request-parser.t :235: |
[(*.method eq 'POST'), |
JNTHN/Cro-HTTP…/http2-request-parser.t :255: |
[[(*.method eq 'POST'), |
JNTHN/Cro-HTTP…/http2-request-parser.t :258: |
[(*.method eq 'POST'), |
JNTHN/Cro-HTTP…/http2-request-serializer.t :57: |
$req = Cro::HTTP::Request.new(:method<POST>, |
JNTHN/Cro-HTTP…/http2-request-serializer.t :61: |
@headers = HTTP::HPACK::Header.new(name => ':method', value => 'POST'), |
JNTHN/Cro-HTTP…/http2-request-serializer.t :88: |
$req = Cro::HTTP::Request.new(:method<POST>, |
JNTHN/Cro-HTTP…/http2-request-serializer.t :92: |
@headers = HTTP::HPACK::Header.new(name => ':method', value => 'POST'), |
JNTHN/Cro-OpenAPI-RoutesFromDefinition…/README.md :194: |
* Method (`GET`, `POST`, etc.) (failure to match will result in an automatic |
JNTHN/OpenAPI-Model…/OpenAPI.pm6 :1015: |
#| Represents a efinition of a POST operation on this path. |
JNTHN/cro…/http-auth-and-sessions.md :298: |
<form method="POST" action="/login"> |
JNTHN/cro…/spa-with-cro.md :31: |
* Submitting new tips (a POST to the backend) |
JNTHN/cro…/spa-with-cro.md :33: |
* Being able to agree or disagree with a tip (also a POST) |
JNTHN/cro…/spa-with-cro.md :865: |
## POSTing to the backend |
JNTHN/cro…/spa-with-cro.md :870: |
* Write a POST handler in the Cro backend |
JNTHN/cro…/spa-with-cro.md :871: |
* Find a way to have our Redux action result in a POST |
JNTHN/cro…/spa-with-cro.md :957: |
And do the POST to the backend: |
JNTHN/cro…/spa-with-cro.md :964: |
type: 'POST', |
JNTHN/cro…/spa-with-cro.md :1385: |
type: 'POST', |
JNTHN/cro…/spa-with-cro.md :1394: |
type: 'POST', |
JNTHN/cro…/cro-http-request.md :10: |
as `GET` or `POST`). The `target` property can be used to get or set the |
JNTHN/cro…/cro-http-router.md :134: |
# POST /catalogue/products |
JNTHN/cro…/cro-http-router.md :160: |
# POST /catalogue/products |
JNTHN/cro…/cro-http-router.md :161: |
http 'POST', -> 'catalogue', 'products' { |
JNTHN/cro…/cro-http-router.md :192: |
`PUT` was performed, but the only routes matching are for `GET` and `POST`), |
JNTHN/cro…/cro-http-router.md :566: |
The `created` routine is used to respond to `POST` requests that create a new |
JNTHN/cro…/cro-http-server.md :205: |
* POST |
JNTHN/cro…/cro-http-server.md :219: |
:allowed-methods<GET HEAD PUT POST DELETE LINK UNLINK> |
JNTHN/cro…/cro-openapi-routesfromdefinition.md :200: |
* Method (`GET`, `POST`, etc.) (failure to match will result in an automatic 405 |
JNTHN/cro…/app.js :22821: |
type = "POST"; |
JNTHN/cro…/app.js :23315: |
type: 'POST', |
JNTHN/cro…/app.js :24994: |
// Alias for send("POST", …). |
JNTHN/cro…/app.js :24996: |
return request.send("POST", data, callback); |
JNTHN/cro…/app.js :33536: |
type: 'POST', |
JNTHN/cro…/app.js :33562: |
type: 'POST', |
JNTHN/cro…/app.js :33652: |
type: 'POST', |
JNTHN/cro…/actions.js :23: |
type: 'POST', |
JNTHN/cro…/actions.js :17: |
type: 'POST', |
JNTHN/cro…/actions.js :41: |
type: 'POST', |
JNTHN/cro…/actions.js :56: |
type: 'POST', |
JSTOWE/Lumberjack-Application…/PSGI.pm :37: |
The application will only accept 'POST' requests of content type |
JSTOWE/Lumberjack-Application…/PSGI.pm :57: |
if %env<REQUEST_METHOD> eq 'POST' { |
JSTOWE/Lumberjack-Application…/PSGI.pm :64: |
return 405, [Allow => 'POST', Content-Type => 'application/json' ], ['{ "status" : "Only POST method allowed" }']; |
JSTOWE/Lumberjack-Application…/Proxy.pm :24: |
This implements a C<Lumberjack::Dispatcher> that will POST the messages |
JSTOWE/Lumberjack-Application…/Proxy.pm :39: |
will accept an 'application/json' POST of the message data. |
JSTOWE/Lumberjack-Application…/Proxy.pm :75: |
my $req = POST($!url, content => $message.to-json, Content-Type => "application/json; charset=utf-8"); |
JSTOWE/Lumberjack-Application…/050-proxy.t :20: |
is %env<REQUEST_METHOD>, 'POST', "request is a post"; |
JSTOWE/META6…/projects.json :8642: |
"WebService::SOP::V1_1::Request::POST" : "lib/WebService/SOP/V1_1/Request/POST.pm6", |
JSTOWE/META6…/projects.json :8644: |
"WebService::SOP::V1_1::Request::POST_JSON" : "lib/WebService/SOP/V1_1/Request/POST_JSON.pm6", |
JSTOWE/META6…/projects.json :9041: |
"Net::HTTP::POST" : "lib/Net/HTTP/POST.pm6", |
JSTOWE/Monitor-Monit…/Monit.pm :343: |
self.request(POST(self.process(:$path, :$params), %form, |%!default-headers, |%headers, |%h)) but MonitResponse; |
JSTOWE/Monitor-Monit…/Monit.pm :346: |
self.request(POST(self.process(:$path, :$params), :$content, |%!default-headers, |%headers)) but MonitResponse; |
JSTOWE/WebService-Soundcloud…/Soundcloud.pm :218: |
This method is used to make a POST request on the given path. The second |
JSTOWE/WebService-Soundcloud…/Soundcloud.pm :496: |
self.request( 'POST', $url, $headers, $content ); |
JSTOWE/WebService-Soundcloud…/Soundcloud.pm :604: |
my $response = self.request( 'POST', $url, $headers, %params ); |
MATIASL/Pygments…/perl.py :233: |
'KEEP', 'LAST', 'LEAVE', 'NEXT', 'POST', 'PRE', 'START', 'TEMP', |
MLDEVINE/Async-Command…/Command.md :62: |
'-X', ' POST', |
MLDEVINE/Async-Command…/Command.md :78: |
"-X", " POST", |
MOZNION/Router-Boost…/Method.pm6 :96: |
$router.add(['POST'], '/a', 'p'); |
MOZNION/Router-Boost…/Method.pm6 :124: |
C<@methods> is a list to represent HTTP method. i.e. ['GET'], ['POST'], ['DELETE'], ['PUT'], etc. |
MOZNION/Router-Boost…/03-method.t :7: |
$r.add(['POST'], '/a', 'p'); |
MOZNION/Router-Boost…/03-method.t :26: |
my $matched = $r.match('POST', '/a'); |
MOZNION/Router-Boost…/03-method.t :31: |
}, 'POST /a'; |
MOZNION/Router-Boost…/03-method.t :38: |
is-deeply $matched<allowed-methods>, ['GET', 'POST']; |
MOZNION/Router-Boost…/03-method.t :42: |
my $matched = $r.match('POST', '/b'); |
MOZNION/Router-Boost…/03-method.t :58: |
my $matched = $r.match('POST', '/c'); |
MOZNION/Router-Boost…/03-method.t :63: |
}, 'POST /c'; |
MOZNION/Router-Boost…/03-method.t :75: |
my $matched = $r.match('POST', '/d'); |
MOZNION/Router-Boost…/03-method.t :78: |
}, 'POST'; |
MOZNION/Router-Boost…/03-method.t :94: |
[['POST'], '/a', 'p'], |
NINE/Inline-Perl5…/dancr.pl :98: |
if ( request.method eq "POST" ) { |
RIBNOTTER/Text-Names…/dist.all.last :1481: |
POST 0.008 48.202 1481 |
RIBNOTTER/Text-Names…/dist.all.last :3368: |
POSTON 0.004 58.454 3368 |
RIBNOTTER/Text-Names…/dist.all.last :12350: |
POSTELL 0.001 73.322 12350 |
RIBNOTTER/Text-Names…/dist.all.last :17606: |
POSTMA 0.001 76.836 17606 |
RIBNOTTER/Text-Names…/dist.all.last :20021: |
POSTEL 0.000 78.049 20021 |
RIBNOTTER/Text-Names…/dist.all.last :27245: |
POSTER 0.000 80.833 27245 |
RIBNOTTER/Text-Names…/dist.all.last :33047: |
POSTHUMA 0.000 82.498 33047 |
RIBNOTTER/Text-Names…/dist.all.last :34965: |
POSTLEY 0.000 82.976 34965 |
RIBNOTTER/Text-Names…/dist.all.last :37122: |
POSTIER 0.000 83.479 37122 |
RIBNOTTER/Text-Names…/dist.all.last :37123: |
POSTEMA 0.000 83.479 37123 |
RIBNOTTER/Text-Names…/dist.all.last :42459: |
POSTLEWAIT 0.000 84.593 42459 |
RIBNOTTER/Text-Names…/dist.all.last :42460: |
POSTLE 0.000 84.593 42460 |
RIBNOTTER/Text-Names…/dist.all.last :45844: |
POSTLETHWAIT 0.000 85.221 45844 |
RIBNOTTER/Text-Names…/dist.all.last :49937: |
POSTLEWAITE 0.000 85.915 49937 |
RIBNOTTER/Text-Names…/dist.all.last :49938: |
POSTHUMUS 0.000 85.915 49938 |
RIBNOTTER/Text-Names…/dist.all.last :51969: |
ESPOSTO 0.000 86.238 51969 |
RIBNOTTER/Text-Names…/dist.all.last :54847: |
POSTERT 0.000 86.669 54847 |
RIBNOTTER/Text-Names…/dist.all.last :54848: |
POSTEN 0.000 86.669 54848 |
RIBNOTTER/Text-Names…/dist.all.last :58747: |
APOSTAL 0.000 87.227 58747 |
RIBNOTTER/Text-Names…/dist.all.last :61073: |
POSTLETHWAITE 0.000 87.525 61073 |
RIBNOTTER/Text-Names…/dist.all.last :61074: |
POSTIN 0.000 87.525 61074 |
RIBNOTTER/Text-Names…/dist.all.last :65994: |
APOSTOL 0.000 88.151 65994 |
RIBNOTTER/Text-Names…/dist.all.last :68983: |
POSTUCI 0.000 88.486 68983 |
RIBNOTTER/Text-Names…/dist.all.last :68984: |
POSTAL 0.000 88.487 68984 |
RIBNOTTER/Text-Names…/dist.all.last :79646: |
POSTO 0.000 89.610 79646 |
RIBNOTTER/Text-Names…/dist.all.last :79647: |
POSTLES 0.000 89.610 79647 |
RIBNOTTER/Text-Names…/dist.all.last :79648: |
POSTIGLIONE 0.000 89.610 79648 |
RIBNOTTER/Text-Names…/dist.all.last :79649: |
POSTEMSKI 0.000 89.610 79649 |
SAMGWISE/PowerNap…/PowerNap.pm6 :43: |
enum Verb <GET POST PUT PATCH DELETE>; |
SAMGWISE/PowerNap…/Controller.pm6 :10: |
result-err 501, 'POST not supported for this endpoint.' |
SAMGWISE/PowerNap…/Controller.pm6 :52: |
when PowerNap::Verb::POST { |
SCIMON/Test-HTTP-Server…/03-empty-folder.t :54: |
is @events[0].method, 'POST', "Expected method used"; |
SCIMON/Trait-Env…/README.md :37: |
# Get all pairs where the key ends with '_POST' |
SCIMON/Trait-Env…/README.md :38: |
has %.post-map is env( :post_match<_POST> ); |
SCIMON/Trait-Env…/README.md :43: |
# Get all pairs where the Key starts with 'PRE_' and ends with '_POST' |
SCIMON/Trait-Env…/README.md :44: |
has %.both-map is env( :pre_match<PRE_>, :post_match<_POST> ); |
SCIMON/Trait-Env…/Env.pm6 :49: |
# Get all pairs where the key ends with '_POST' |
SCIMON/Trait-Env…/Env.pm6 :50: |
has %.post-map is env( :post_match<_POST> ); |
SCIMON/Trait-Env…/Env.pm6 :55: |
# Get all pairs where the Key starts with 'PRE_' and ends with '_POST' |
SCIMON/Trait-Env…/Env.pm6 :56: |
has %.both-map is env( :pre_match<PRE_>, :post_match<_POST> ); |
SCIMON/Trait-Env…/07-hashes.t :37: |
has %.post-hash is env( :post_match<_POST> ); |
SCIMON/Trait-Env…/07-hashes.t :39: |
has %.both-hash is env{ :pre_match<PRE_>, :post_match<_POST> }; |
SCIMON/Trait-Env…/07-hashes.t :43: |
temp %*ENV = ( :TEST_POST<test>, :HOME_POST<home>, |
SCIMON/Trait-Env…/07-hashes.t :44: |
:THIS_PRE_POST_NOT<nope>, |
SCIMON/Trait-Env…/07-hashes.t :46: |
:PRE_TEST_POST<test> |
SCIMON/Trait-Env…/07-hashes.t :50: |
is $tc.post-hash, { "TEST_POST" => "test", "HOME_POST" => "home", "PRE_TEST_POST" => "test" } , "Post Named hashes"; |
SCIMON/Trait-Env…/07-hashes.t :51: |
is $tc.pre-hash, { "PRE_TEST" => "test", "PRE_HOME" => "home", "PRE_TEST_POST" => "test" } , "Pre Named hashes"; |
SCIMON/Trait-Env…/07-hashes.t :52: |
is $tc.both-hash, { "PRE_TEST_POST" => "test" } , "Both Named hashes"; |
SCIMON/Trait-Env…/09-basic-variable.t :71: |
:TEST_POST<test>, |
SCIMON/Trait-Env…/09-basic-variable.t :72: |
:HOME_POST<home>, |
SCIMON/Trait-Env…/09-basic-variable.t :73: |
:THIS_PRE_POST_NOT<nope>, |
SCIMON/Trait-Env…/09-basic-variable.t :76: |
:PRE_TEST_POST<test>, |
SCIMON/Trait-Env…/09-basic-variable.t :82: |
my %post-hash is env( :post_match<_POST> ); |
SCIMON/Trait-Env…/09-basic-variable.t :84: |
my %both-hash is env( :pre_match<PRE_>, :post_match<_POST> ); |
SCIMON/Trait-Env…/09-basic-variable.t :87: |
is %post-hash, { "TEST_POST" => "test", "HOME_POST" => "home", "PRE_TEST_POST" => "test" } , "Post Named hashes"; |
SCIMON/Trait-Env…/09-basic-variable.t :88: |
is %pre-hash, { "PRE_TEST" => "test", "PRE_HOME" => "home", "PRE_TEST_POST" => "test" } , "Pre Named hashes"; |
SCIMON/Trait-Env…/09-basic-variable.t :89: |
is %both-hash, { "PRE_TEST_POST" => "test" } , "Both Named hashes"; |
TBROWDER/Geo-Ellipsoid…/p5-get-orig-geo-data.pl :8: |
use HTTP::Request::Common qw(POST); |
TBROWDER/Geo-Ellipsoid…/p5-get-orig-geo-data.pl :24: |
my $req = POST $uf, [ |
TBROWDER/Geo-Ellipsoid…/p5-get-orig-geo-data.pl :71: |
my $req = POST $ui, [ |
TOKUHIROM/HTTP-Server-Tiny…/09-chunked-request.t :29: |
"POST /resource/test HTTP/1.1\r\n", |
TYIL/IRC-Client-Plugin-Github…/Github.pm6 :21: |
# Set up the web hook for Github notification POSTs |
TYIL/IRC-Client-Plugin-Github…/readme.adoc :74: |
# If set to true, it will notify for every repository that POSTs a payload to |
UFOBAT/Bailador…/echo.pl6 :8: |
'<form method="POST" action="/echo"><input name="text"><input type="submit"></form>' |
UFOBAT/Bailador…/echo.pl6 :19: |
return 'echo via POST: ' ~ (request.params<text> // ''); |
UFOBAT/Bailador…/Bailador.pm :53: |
app.add_route: make-route('POST', $x, :$container); |
UFOBAT/Bailador…/Request.pm :29: |
# Dancer2 also mixes GET and POST params and overwrites the GET params by the POST params |
UFOBAT/Bailador…/Request.pm :188: |
method is_post { self.method eq 'POST' } |
UFOBAT/Bailador…/Route.pm :106: |
my Str @all-methods = <GET PUT POST HEAD PUT DELETE TRACE OPTIONS CONNECT PATCH>; |
UFOBAT/Bailador…/01-OO-route-existence.t :15: |
self.add_route: make-route('POST', '/bar' => sub { '/bar' }); |
UFOBAT/Bailador…/01-OO-route-existence.t :16: |
self.add_route: make-route('POST', '/echo3/:text' => sub ($text) { return 'Echo3: ' ~ join('-', $text, (self.request.params<text> // ''), (self.request.params('body')<text> // ''), (self.request.params('query')<text> // ''))}); |
UFOBAT/Bailador…/01-OO-route-existence.t :30: |
self.add_route: make-route('POST', '/a' => sub { 'port=' ~ self.request.port }); |
UFOBAT/Bailador…/01-OO-route-existence.t :31: |
self.add_route: make-route('POST', '/b' => sub { 'request_uri=' ~ self.request.request_uri }); |
UFOBAT/Bailador…/01-OO-route-existence.t :32: |
self.add_route: make-route('POST', '/c' => sub { 'uri=' ~ self.request.uri }); |
UFOBAT/Bailador…/01-OO-route-existence.t :33: |
self.add_route: make-route('POST', '/d' => sub { 'path=' ~ self.request.path }); |
UFOBAT/Bailador…/01-OO-route-existence.t :34: |
self.add_route: make-route('POST', '/e' => sub { 'method=' ~ self.request.method }); |
UFOBAT/Bailador…/01-OO-route-existence.t :35: |
self.add_route: make-route('POST', '/f' => sub { join '-', self.request.is_get, self.request.is_post, self.request.is_put, self.request.is_delete, self.request.is_head, self.request.is_patch }); |
UFOBAT/Bailador…/01-OO-route-existence.t :36: |
self.add_route: make-route('POST', '/g' => sub { 'content_type=' ~ (self.request.content_type // '')}); |
UFOBAT/Bailador…/01-OO-route-existence.t :37: |
self.add_route: make-route('POST', '/h' => sub { 'content_length=' ~ (self.request.content_length // '') }); |
UFOBAT/Bailador…/01-OO-route-existence.t :38: |
self.add_route: make-route('POST', '/i' => sub { 'body=' ~ (self.request.body // '' )}); |
UFOBAT/Bailador…/01-OO-route-existence.t :45: |
is-deeply get-psgi-response($app, 'POST', '/foo'), [404, ["Content-Type" => "text/plain;charset=UTF-8"], 'Not found'], 'route POST /foo does not exist'; |
UFOBAT/Bailador…/01-OO-route-existence.t :46: |
is-deeply get-psgi-response($app, 'POST', '/bar'), [200, ["Content-Type" => "text/html"], '/bar'], 'route POST /bar exists'; |
UFOBAT/Bailador…/01-OO-route-existence.t :52: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:1234/echo3/foo?text=bar', 'text=zorg'), [200, ["Content-Type" => "text/html"], 'Echo3: foo-zorg-zorg-bar'], 'echo with text'; |
UFOBAT/Bailador…/01-OO-route-existence.t :64: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/a?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'port=9876'], 'port'; |
UFOBAT/Bailador…/01-OO-route-existence.t :65: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/b?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'request_uri=/b?text=bar'], 'requestn_uri'; |
UFOBAT/Bailador…/01-OO-route-existence.t :66: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/c?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'uri=/c?text=bar'], 'uri'; |
UFOBAT/Bailador…/01-OO-route-existence.t :67: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/d?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'path=/d'], 'path'; |
UFOBAT/Bailador…/01-OO-route-existence.t :68: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/e?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'method=POST'], 'method'; |
UFOBAT/Bailador…/01-OO-route-existence.t :69: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/f?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'False-True-False-False-False-False'], 'is'; |
UFOBAT/Bailador…/01-OO-route-existence.t :70: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/g?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'content_type='], 'content_type'; # ??? |
UFOBAT/Bailador…/01-OO-route-existence.t :71: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/h?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'content_length='], 'content_length'; # ??? |
UFOBAT/Bailador…/01-OO-route-existence.t :72: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/i?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'body=text=foo'], 'body'; |
UFOBAT/Bailador…/01-route-existence.t :43: |
is-deeply get-psgi-response($p6w-app, 'POST', '/foo'), [404, ["Content-Type" => "text/plain;charset=UTF-8"], 'Not found'], 'route POST /foo does not exist'; |
UFOBAT/Bailador…/01-route-existence.t :44: |
is-deeply get-psgi-response($p6w-app, 'POST', '/bar'), [200, ["Content-Type" => "text/html"], '/bar'], 'route POST /bar exists'; |
UFOBAT/Bailador…/01-route-existence.t :54: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:1234/echo3/foo?text=bar', 'text=zorg'), [200, ["Content-Type" => "text/html"], 'Echo3: foo-zorg-zorg-bar'], 'echo with text'; |
UFOBAT/Bailador…/01-route-existence.t :66: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/a?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'port=9876'], 'port'; |
UFOBAT/Bailador…/01-route-existence.t :67: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/b?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'request_uri=/b?text=bar'], 'request_uri'; |
UFOBAT/Bailador…/01-route-existence.t :68: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/c?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'uri=/c?text=bar'], 'uri'; |
UFOBAT/Bailador…/01-route-existence.t :69: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/d?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'path=/d'], 'path'; |
UFOBAT/Bailador…/01-route-existence.t :70: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/e?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'method=POST'], 'method'; |
UFOBAT/Bailador…/01-route-existence.t :71: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/f?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'False-True-False-False-False-False'], 'is'; |
UFOBAT/Bailador…/01-route-existence.t :72: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/g?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'content_type='], 'content_type'; |
UFOBAT/Bailador…/01-route-existence.t :73: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/h?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'content_length='], 'content_length'; |
UFOBAT/Bailador…/01-route-existence.t :74: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/i?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'body=text=foo'], 'body'; |
UFOBAT/Bailador…/03-OO-response-content.t :14: |
self.add_route: make-route('POST', '/bar' => sub { "peti bar" }); |
UFOBAT/Bailador…/03-OO-response-content.t :31: |
self.add_route: make-route('POST', '/utf8' => sub { |
UFOBAT/Bailador…/03-OO-response-content.t :39: |
is-deeply get-psgi-response($app, 'POST', '/bar'), [200, ["Content-Type" => "text/html"], 'peti bar'], 'route POST /bar returns content'; |
UFOBAT/Bailador…/03-OO-response-content.t :41: |
is-deeply get-psgi-response($app, 'POST', '/foo'), [404, ["Content-Type" => "text/plain;charset=UTF-8"], 'Not found'], 'route POST /foo not found'; |
UFOBAT/Bailador…/03-OO-response-content.t :64: |
lives-ok { get-psgi-response($app, 'POST', 'http://127.0.0.1/utf8', |
UFOBAT/Bailador…/03-OO-response-content.t :70: |
my $res0 = get-psgi-response($app, 'POST', 'http://127.0.0.1/utf8', 'text=%C3%86'); |
UFOBAT/Bailador…/03-OO-response-content.t :71: |
my $res1 = get-psgi-response($app, 'POST', 'http://127.0.0.1/utf8', 'text=%C6'); |
UFOBAT/Bailador…/03-OO-response-content.t :72: |
my $res2 = get-psgi-response($app, 'POST', 'http://127.0.0.1/utf8', 'text=%C3%86%C6'); |
UFOBAT/Bailador…/03-response-content.t :36: |
is-deeply get-psgi-response($p6w-app, 'POST', '/bar'), [200, ["Content-Type" => "text/html"], 'peti bar'], 'route POST /bar returns content'; |
UFOBAT/Bailador…/03-response-content.t :38: |
is-deeply get-psgi-response($p6w-app, 'POST', '/foo'), [404, ["Content-Type" => "text/plain;charset=UTF-8"], 'Not found'], 'route POST /foo not found'; |
UFOBAT/Bailador…/03-response-content.t :61: |
lives-ok { get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1/utf8', |
UFOBAT/Bailador…/03-response-content.t :67: |
my $res0 = get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1/utf8', 'text=%C3%86'); |
UFOBAT/Bailador…/03-response-content.t :68: |
my $res1 = get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1/utf8', 'text=%C6'); |
UFOBAT/Bailador…/03-response-content.t :69: |
my $res2 = get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1/utf8', 'text=%C3%86%C6'); |
UFOBAT/Bailador…/05-post-content.t :13: |
my $req = Bailador::Request.new_for_request('POST', '/foo'); |
UFOBAT/Bailador…/05-post-content.t :19: |
#is ~$resp.content, $data, 'POST data string roundtrips correctly'; |
UFOBAT/Bailador…/05-post-content.t :20: |
#is $req.params<a>, '1;b=2', 'application/x-www-form-urlencoded POST data should only split on &'; |
UFOBAT/Bailador…/09-OO-nested-routes.t :18: |
self.add_route: make-route('POST', '/login/:user' => sub { |
UFOBAT/Bailador…/09-OO-nested-routes.t :58: |
$response = get-psgi-response($app, 'POST', '/login/ufobat'); |
UFOBAT/Bailador…/30-examples-echo.t :33: |
my %data = run-psgi-request($app, 'POST', '/echo', "text=Foo+Bar"); |
UFOBAT/Bailador…/30-examples-echo.t :34: |
is-deeply %data<response>, [200, ["Content-Type" => "text/html"], "echo via POST: Foo Bar"], 'route GET /'; |
UFOBAT/Bailador…/30-examples-pastebin.t :39: |
my %data1 = run-psgi-request($app, 'POST', '/new_paste', "content=http::/bailador.net"); |
UFOBAT/Bailador…/30-examples-pastebin.t :46: |
is-deeply %data1<response>, [200, ["Content-Type" => "text/html"], ''], 'route POST /new_paste'; |
UFOBAT/Bailador…/30-examples-postapp.t :23: |
my %data = run-psgi-request($app, 'POST', '/', "text=Foo+Bar&answer=42"); |
UFOBAT/Bailador…/30-examples-postapp.t :25: |
is-deeply %data<response>, [200, ["Content-Type" => "text/html"], ["\{:answer(\"42\"), :text(\"Foo Bar\")}", Any, Any]], 'route POST /'; |
UGEXE/zef…/P6CReporter.pm6 :8: |
state $probe = (try require Net::HTTP::POST) !~~ Nil ?? True !! False; |
UGEXE/zef…/P6CReporter.pm6 :62: |
my $response = ::('Net::HTTP::POST')("http://testers.perl6.org/report", body => $report-json.encode); |
VRURG/Cro-RPC-JSON…/RequestParser.pm6 :18: |
die "JSON-RPC is only supported for POST method"; |
VRURG/Cro-RPC-JSON…/050-request.t :67: |
body-text => /"500 JSON-RPC is only supported for POST method"/, |
VRURG/Cro-RPC-JSON…/Basic-JRPC.pm6 :13: |
# This must die with 'POST only' error |
WARRINGD/PDF-ISO_32000…/Source_information.pm6 :30: |
2 Accessed by means of an HTTP POST request |
WARRINGD/PDF-ISO_32000…/PDFDocEncoding_Character_Set.html :1523: |
APOSTROPHE (&apos;) |
WARRINGD/PDF-ISO_32000…/Source_information_entries.html :116: |
2 Accessed by means of an HTTP POST request |
WARRINGD/PDF-ISO_32000…/Submit_form_action_flags.html :117: |
If set, field names and values shall be submitted using an HTTP GET request. If clear, they shall be submitted using a POST request. This flag is meaningful only when the ExportFormat flag is set; if ExportFormat is clear, this flag shall also be clear. |
WARRINGD/PDF-ISO_32000…/PDFDocEncoding_Character_Set.json :371: |
"APOSTROPHE (')", |
WARRINGD/PDF-ISO_32000…/Source_information_entries.json :28: |
"(Optional) A code which, if present, shall indicate the type of form submission, if any, by which the source data was accessed (see 12.7.5.2… |
WARRINGD/PDF-ISO_32000…/Submit_form_action_flags.json :28: |
"If set, field names and values is submitted using an HTTP GET request. If clear, they is submitted using a POST request. This flag is meaningful only when the ExportFormat flag is set; if ExportFormat is clear, this flag shall also be clear." |
Bailador/Bailador…/echo.pl6 :8: |
'<form method="POST" action="/echo"><input name="text"><input type="submit"></form>' |
Bailador/Bailador…/echo.pl6 :19: |
return 'echo via POST: ' ~ (request.params<text> // ''); |
Bailador/Bailador…/Bailador.pm :53: |
app.add_route: make-route('POST', $x, :$container); |
Bailador/Bailador…/Request.pm :29: |
# Dancer2 also mixes GET and POST params and overwrites the GET params by the POST params |
Bailador/Bailador…/Request.pm :188: |
method is_post { self.method eq 'POST' } |
Bailador/Bailador…/Route.pm :106: |
my Str @all-methods = <GET PUT POST HEAD PUT DELETE TRACE OPTIONS CONNECT PATCH>; |
Bailador/Bailador…/01-OO-route-existence.t :15: |
self.add_route: make-route('POST', '/bar' => sub { '/bar' }); |
Bailador/Bailador…/01-OO-route-existence.t :16: |
self.add_route: make-route('POST', '/echo3/:text' => sub ($text) { return 'Echo3: ' ~ join('-', $text, (self.request.params<text> // ''), (self.request.params('body')<text> // ''), (self.request.params('query')<text> // ''))}); |
Bailador/Bailador…/01-OO-route-existence.t :30: |
self.add_route: make-route('POST', '/a' => sub { 'port=' ~ self.request.port }); |
Bailador/Bailador…/01-OO-route-existence.t :31: |
self.add_route: make-route('POST', '/b' => sub { 'request_uri=' ~ self.request.request_uri }); |
Bailador/Bailador…/01-OO-route-existence.t :32: |
self.add_route: make-route('POST', '/c' => sub { 'uri=' ~ self.request.uri }); |
Bailador/Bailador…/01-OO-route-existence.t :33: |
self.add_route: make-route('POST', '/d' => sub { 'path=' ~ self.request.path }); |
Bailador/Bailador…/01-OO-route-existence.t :34: |
self.add_route: make-route('POST', '/e' => sub { 'method=' ~ self.request.method }); |
Bailador/Bailador…/01-OO-route-existence.t :35: |
self.add_route: make-route('POST', '/f' => sub { join '-', self.request.is_get, self.request.is_post, self.request.is_put, self.request.is_delete, self.request.is_head, self.request.is_patch }); |
Bailador/Bailador…/01-OO-route-existence.t :36: |
self.add_route: make-route('POST', '/g' => sub { 'content_type=' ~ (self.request.content_type // '')}); |
Bailador/Bailador…/01-OO-route-existence.t :37: |
self.add_route: make-route('POST', '/h' => sub { 'content_length=' ~ (self.request.content_length // '') }); |
Bailador/Bailador…/01-OO-route-existence.t :38: |
self.add_route: make-route('POST', '/i' => sub { 'body=' ~ (self.request.body // '' )}); |
Bailador/Bailador…/01-OO-route-existence.t :45: |
is-deeply get-psgi-response($app, 'POST', '/foo'), [404, ["Content-Type" => "text/plain;charset=UTF-8"], 'Not found'], 'route POST /foo does not exist'; |
Bailador/Bailador…/01-OO-route-existence.t :46: |
is-deeply get-psgi-response($app, 'POST', '/bar'), [200, ["Content-Type" => "text/html"], '/bar'], 'route POST /bar exists'; |
Bailador/Bailador…/01-OO-route-existence.t :52: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:1234/echo3/foo?text=bar', 'text=zorg'), [200, ["Content-Type" => "text/html"], 'Echo3: foo-zorg-zorg-bar'], 'echo with text'; |
Bailador/Bailador…/01-OO-route-existence.t :64: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/a?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'port=9876'], 'port'; |
Bailador/Bailador…/01-OO-route-existence.t :65: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/b?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'request_uri=/b?text=bar'], 'requestn_uri'; |
Bailador/Bailador…/01-OO-route-existence.t :66: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/c?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'uri=/c?text=bar'], 'uri'; |
Bailador/Bailador…/01-OO-route-existence.t :67: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/d?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'path=/d'], 'path'; |
Bailador/Bailador…/01-OO-route-existence.t :68: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/e?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'method=POST'], 'method'; |
Bailador/Bailador…/01-OO-route-existence.t :69: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/f?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'False-True-False-False-False-False'], 'is'; |
Bailador/Bailador…/01-OO-route-existence.t :70: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/g?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'content_type='], 'content_type'; # ??? |
Bailador/Bailador…/01-OO-route-existence.t :71: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/h?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'content_length='], 'content_length'; # ??? |
Bailador/Bailador…/01-OO-route-existence.t :72: |
is-deeply get-psgi-response($app, 'POST', 'http://127.0.0.1:9876/i?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'body=text=foo'], 'body'; |
Bailador/Bailador…/01-route-existence.t :43: |
is-deeply get-psgi-response($p6w-app, 'POST', '/foo'), [404, ["Content-Type" => "text/plain;charset=UTF-8"], 'Not found'], 'route POST /foo does not exist'; |
Bailador/Bailador…/01-route-existence.t :44: |
is-deeply get-psgi-response($p6w-app, 'POST', '/bar'), [200, ["Content-Type" => "text/html"], '/bar'], 'route POST /bar exists'; |
Bailador/Bailador…/01-route-existence.t :54: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:1234/echo3/foo?text=bar', 'text=zorg'), [200, ["Content-Type" => "text/html"], 'Echo3: foo-zorg-zorg-bar'], 'echo with text'; |
Bailador/Bailador…/01-route-existence.t :66: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/a?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'port=9876'], 'port'; |
Bailador/Bailador…/01-route-existence.t :67: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/b?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'request_uri=/b?text=bar'], 'request_uri'; |
Bailador/Bailador…/01-route-existence.t :68: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/c?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'uri=/c?text=bar'], 'uri'; |
Bailador/Bailador…/01-route-existence.t :69: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/d?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'path=/d'], 'path'; |
Bailador/Bailador…/01-route-existence.t :70: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/e?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'method=POST'], 'method'; |
Bailador/Bailador…/01-route-existence.t :71: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/f?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'False-True-False-False-False-False'], 'is'; |
Bailador/Bailador…/01-route-existence.t :72: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/g?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'content_type='], 'content_type'; |
Bailador/Bailador…/01-route-existence.t :73: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/h?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'content_length='], 'content_length'; |
Bailador/Bailador…/01-route-existence.t :74: |
is-deeply get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1:9876/i?text=bar', 'text=foo'), [200, ["Content-Type" => "text/html"], 'body=text=foo'], 'body'; |
Bailador/Bailador…/03-OO-response-content.t :14: |
self.add_route: make-route('POST', '/bar' => sub { "peti bar" }); |
Bailador/Bailador…/03-OO-response-content.t :31: |
self.add_route: make-route('POST', '/utf8' => sub { |
Bailador/Bailador…/03-OO-response-content.t :39: |
is-deeply get-psgi-response($app, 'POST', '/bar'), [200, ["Content-Type" => "text/html"], 'peti bar'], 'route POST /bar returns content'; |
Bailador/Bailador…/03-OO-response-content.t :41: |
is-deeply get-psgi-response($app, 'POST', '/foo'), [404, ["Content-Type" => "text/plain;charset=UTF-8"], 'Not found'], 'route POST /foo not found'; |
Bailador/Bailador…/03-OO-response-content.t :64: |
lives-ok { get-psgi-response($app, 'POST', 'http://127.0.0.1/utf8', |
Bailador/Bailador…/03-OO-response-content.t :70: |
my $res0 = get-psgi-response($app, 'POST', 'http://127.0.0.1/utf8', 'text=%C3%86'); |
Bailador/Bailador…/03-OO-response-content.t :71: |
my $res1 = get-psgi-response($app, 'POST', 'http://127.0.0.1/utf8', 'text=%C6'); |
Bailador/Bailador…/03-OO-response-content.t :72: |
my $res2 = get-psgi-response($app, 'POST', 'http://127.0.0.1/utf8', 'text=%C3%86%C6'); |
Bailador/Bailador…/03-response-content.t :36: |
is-deeply get-psgi-response($p6w-app, 'POST', '/bar'), [200, ["Content-Type" => "text/html"], 'peti bar'], 'route POST /bar returns content'; |
Bailador/Bailador…/03-response-content.t :38: |
is-deeply get-psgi-response($p6w-app, 'POST', '/foo'), [404, ["Content-Type" => "text/plain;charset=UTF-8"], 'Not found'], 'route POST /foo not found'; |
Bailador/Bailador…/03-response-content.t :62: |
lives-ok { get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1/utf8', |
Bailador/Bailador…/03-response-content.t :68: |
my $res0 = get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1/utf8', 'text=%C3%86'); |
Bailador/Bailador…/03-response-content.t :69: |
my $res1 = get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1/utf8', 'text=%C6'); |
Bailador/Bailador…/03-response-content.t :70: |
my $res2 = get-psgi-response($p6w-app, 'POST', 'http://127.0.0.1/utf8', 'text=%C3%86%C6'); |
Bailador/Bailador…/05-post-content.t :13: |
my $req = Bailador::Request.new_for_request('POST', '/foo'); |
Bailador/Bailador…/05-post-content.t :19: |
#is ~$resp.content, $data, 'POST data string roundtrips correctly'; |
Bailador/Bailador…/05-post-content.t :20: |
#is $req.params<a>, '1;b=2', 'application/x-www-form-urlencoded POST data should only split on &'; |
Bailador/Bailador…/09-OO-nested-routes.t :18: |
self.add_route: make-route('POST', '/login/:user' => sub { |
Bailador/Bailador…/09-OO-nested-routes.t :58: |
$response = get-psgi-response($app, 'POST', '/login/ufobat'); |
Bailador/Bailador…/30-examples-echo.t :33: |
my %data = run-psgi-request($app, 'POST', '/echo', "text=Foo+Bar"); |
Bailador/Bailador…/30-examples-echo.t :34: |
is-deeply %data<response>, [200, ["Content-Type" => "text/html"], "echo via POST: Foo Bar"], 'route GET /'; |
Bailador/Bailador…/30-examples-pastebin.t :39: |
my %data1 = run-psgi-request($app, 'POST', '/new_paste', "content=http::/bailador.net"); |
Bailador/Bailador…/30-examples-pastebin.t :46: |
is-deeply %data1<response>, [200, ["Content-Type" => "text/html"], ''], 'route POST /new_paste'; |
Bailador/Bailador…/30-examples-postapp.t :23: |
my %data = run-psgi-request($app, 'POST', '/', "text=Foo+Bar&answer=42"); |
Bailador/Bailador…/30-examples-postapp.t :25: |
is-deeply %data<response>, [200, ["Content-Type" => "text/html"], ["\{:answer(\"42\"), :text(\"Foo Bar\")}", Any, Any]], 'route POST /'; |
CurtTilmes/Perl6-GraphQL…/README.md :91: |
The server takes any GraphQL query sent with HTTP POST to /graphql, |
CurtTilmes/Perl6-GraphQL…/GraphQL.md :40: |
In a typical GraphQL Web server, the query would be HTTP POSTed to an endpoint at `/graphql` which would call `GraphQL::Schema.execute()` and send the resulting JSON string back to the requester. |
CurtTilmes/Perl6-GraphQL…/GraphQL.pm :563: |
In a typical GraphQL Web server, the query would be HTTP POSTed to an |
CurtTilmes/perl6-libcurl…/README.md :24: |
HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, |
CurtTilmes/perl6-libcurl…/README.md :66: |
# POST |
CurtTilmes/perl6-libcurl…/README.md :89: |
$http.POST('http://example.com/form.html', 'name=foo&opt=value').perform; |
CurtTilmes/perl6-libcurl…/README.md :104: |
# POST content (query args are OK; pass form as named args) |
CurtTilmes/perl6-libcurl…/README.md :111: |
# Same POST as above + decode response as JSON |
CurtTilmes/perl6-libcurl…/README.md :161: |
CURLOPT_COPYPOSTFIELDS so it will always copy the fields. |
CurtTilmes/perl6-libcurl…/README.md :213: |
post |
CurtTilmes/perl6-libcurl…/README.md :214: |
postfields |
CurtTilmes/perl6-libcurl…/README.md :215: |
postfieldsize |
CurtTilmes/perl6-libcurl…/README.md :419: |
There is a special POST option for multipart/formdata. |
CurtTilmes/perl6-libcurl…/README.md :437: |
This will automatically cause LibCurl to POST the data. |
CurtTilmes/perl6-libcurl…/HTTP.pod6 :23: |
$http.POST('http://example.com/form.html', 'name=foo&opt=value').perform; |
CurtTilmes/perl6-libcurl…/HTTP.pod6 :25: |
$http.POST('http://example.com') |
CurtTilmes/perl6-libcurl…/HTTP.pod6 :53: |
=item method B<POST>($URL, $content?) |
CurtTilmes/perl6-libcurl…/LibCurl::HTTP.md :23: |
$http.POST('http://example.com/form.html', 'name=foo&opt=value').perform; |
CurtTilmes/perl6-libcurl…/LibCurl::HTTP.md :49: |
* method **POST**($URL, $content) |
CurtTilmes/perl6-libcurl…/http.pl6 :11: |
# POST content (query args are OK; pass form as named args) |
CurtTilmes/perl6-libcurl…/http.pl6 :18: |
# Same POST as above + decode response as JSON |
CurtTilmes/perl6-libcurl…/Easy.pm6 :47: |
CURLE_HTTP_POST_ERROR |
CurtTilmes/perl6-libcurl…/Easy.pm6 :201: |
post => (CURLOPT_POST, CURLOPT_BOOL ), |
CurtTilmes/perl6-libcurl…/Easy.pm6 :202: |
postfields => (CURLOPT_COPYPOSTFIELDS, CURLOPT_STR ), |
CurtTilmes/perl6-libcurl…/Easy.pm6 :203: |
postfieldsize => (CURLOPT_POSTFIELDSIZE_LARGE, CURLOPT_OFF_T ), |
CurtTilmes/perl6-libcurl…/Easy.pm6 :580: |
$!handle.setopt(CURLOPT_HTTPPOST, $!form.firstitem) if $!form; |
CurtTilmes/perl6-libcurl…/EasyHandle.pm6 :133: |
CURLE_HTTP_POST_ERROR |
CurtTilmes/perl6-libcurl…/EasyHandle.pm6 :268: |
constant CURLOPT_POSTFIELDS = CURLOPTTYPE_OBJECTPOINT + 15; |
CurtTilmes/perl6-libcurl…/EasyHandle.pm6 :277: |
constant CURLOPT_HTTPPOST = CURLOPTTYPE_OBJECTPOINT + 24; |
CurtTilmes/perl6-libcurl…/EasyHandle.pm6 :289: |
constant CURLOPT_POSTQUOTE = CURLOPTTYPE_OBJECTPOINT + 39; |
CurtTilmes/perl6-libcurl…/EasyHandle.pm6 :297: |
constant CURLOPT_POST = CURLOPTTYPE_LONG + 47; |
CurtTilmes/perl6-libcurl…/EasyHandle.pm6 :308: |
constant CURLOPT_POSTFIELDSIZE = CURLOPTTYPE_LONG + 60; |
CurtTilmes/perl6-libcurl…/EasyHandle.pm6 :363: |
constant CURLOPT_POSTFIELDSIZE_LARGE = CURLOPTTYPE_OFF_T + 120; |
CurtTilmes/perl6-libcurl…/EasyHandle.pm6 :397: |
constant CURLOPT_POSTREDIR = CURLOPTTYPE_LONG + 161; |
CurtTilmes/perl6-libcurl…/EasyHandle.pm6 :400: |
constant CURLOPT_COPYPOSTFIELDS = CURLOPTTYPE_OBJECTPOINT + 165; |
CurtTilmes/perl6-libcurl…/EasyHandle.pm6 :482: |
constant CURLOPT_POST301 = CURLOPT_POSTREDIR; |
CurtTilmes/perl6-libcurl…/HTTP.pm6 :34: |
method POST($URL, $content?) |
CurtTilmes/perl6-libcurl…/HTTP.pm6 :37: |
self.setopt(:failonerror, customrequest => 'POST', URL => $URL); |
CurtTilmes/perl6-libcurl…/HTTP.pm6 :54: |
$http.POST($url, $postform).perform.content; |
CurtTilmes/perl6-libcurl…/test0003.t :23: |
"POST /3 HTTP/1.1 |
CurtTilmes/perl6-libcurl…/test0095.t :36: |
"POST /we/want/that/page/95 HTTP/1.1 |
CurtTilmes/perl6-libcurl…/test0097.t :27: |
"POST /97 HTTP/1.1 |
CurtTilmes/perl6-libcurl…/03-http.t6 :55: |
# POST |
CurtTilmes/perl6-libcurl…/03-http.t6 :60: |
$curl.POST('http://httpbin.org/post?foo=42\&bar=x').perform; |
CurtTilmes/perl6-libcurl…/05-WWW.t6 :51: |
:message(/error/), "can detect a POST error over $prot.uc()"; |
GildedHonour/TelegramBot…/Telegram.pm6 :46: |
my $req = POST($url, %http-params-formatted); |
MARTIMM/unicode-precis…/PRECIS.pm6 :54: |
06FE; PVALID # ARABIC SIGN SINDHI POSTPOSITION MEN |
PerlGameDev/SDL6…/Constants.pm6 :438: |
MIX_CHANNEL_POST => -2, |
ShaneKilkelly/perl6-http-router-blind…/Blind.pm6 :4: |
POST => @[], |
ShaneKilkelly/perl6-http-router-blind…/Blind.pm6 :17: |
%!routes<POST>.push(@($path, @handlers)); |
YellowApple/p6-GLFW…/Key.pm6 :11: |
constant APOSTROPHE = 39; # ' |
adaptiveoptics/HTML-Tag…/Tags.pm6 :12: |
has Str $.method is rw = 'POST'; |
adaptiveoptics/HTML-Tag…/0010-html.t :48: |
is HTML::Tag::form.new(:action('/myscript/is') :id('myid')).render, '<form method="POST" id="myid" action="/myscript/is"></form>', 'HTML::Tag::form works'; |
adaptiveoptics/HTML-Tag…/0020-form.t :22: |
is $form.render, '<form method="POST" name="form" action="/"><input name="username" id="form-username" type="text"><input name="password" id="form-password" type="text"><input name="submit" id="form-submit" type="submit" value="Login"></form>', 'HTML::Tag::Macro::Form minimal def'; |
adaptiveoptics/HTML-Tag…/0020-form.t :32: |
is $form.render, '<form method="POST" name="form" action="/"><input name="username" id="form-username" type="text" autofocus><input name="password" id="form-password" type="text"><input name="submit" id="form-submit" type="submit" value="Login"></form>', 'HTML::Tag::Macro::Form autofocus'; |
adaptiveoptics/HTML-Tag…/0020-form.t :36: |
is $form.render, '<form method="POST" name="form" action="/"><label for="form-username">Username</label><input name="username" id="form-use… |
adaptiveoptics/HTML-Tag…/0020-form.t :47: |
is $form.render, '<form method="POST" name="form" action="/"><label for="form-username">Username</label><input name="username" id="form-use… |
adaptiveoptics/HTML-Tag…/0020-form.t :54: |
is $form.render, '<form method="POST" name="form" action="/"><input name="username" id="form-username" type="text" value="mark"><input name… |
adaptiveoptics/HTML-Tag…/0020-form.t :68: |
is $form.render, '<form method="POST" name="form" action="/"><label for="form-username">Username</label><input name="username" id="form-use… |
adaptiveoptics/HTML-Tag…/0020-form.t :83: |
is $form.render, '<form method="POST" name="form" action="/"><label for="form-username">Username</label><input name="username" id="form-use… |
adaptiveoptics/HTML-Tag…/0020-form.t :94: |
is $form.render, '<form method="POST" name="form" action="/"><span>oofie<label for="form-username">Username</label><input name="username" i… |
adaptiveoptics/HTML-Tag…/0020-form.t :107: |
is $form.render, '<form method="POST" name="form" action="/"><input name="username" id="form-username" type="text" required><input name="pa… |
adaptiveoptics/HTML-Tag…/0020-form.t :119: |
is $form.render, '<form method="POST" name="form" action="/"><input name="username" id="form-username" class="pink" type="text"><input name… |
adaptiveoptics/HTML-Tag…/0020-form.t :132: |
is $form.render, '<form method="POST" name="form" action="/"><input name="username" id="form-username" type="text"><input name="password" i… |
adaptiveoptics/HTML-Tag…/0020-form.t :146: |
is $form.render, '<form method="POST" name="form" action="/"><input name="username" id="form-username" type="text"><input name="password" i… |
adaptiveoptics/HTML-Tag…/0020-form.t :162: |
is $form.render, '<form method="POST" name="form" action="/"><input name="username" id="form-username" type="text"><input name="password" i… |
adaptiveoptics/HTML-Tag…/0020-form.t :177: |
is $form.render, '<form method="POST" name="form" action="/"><input name="username" id="form-username" type="text"><input name="password" i… |
adaptiveoptics/P6-Finance-GDAX-API…/README.md :96: |
upper-case. (POST, PUT, DELETE and GET currently supported). |
adaptiveoptics/P6-Finance-GDAX-API…/API.pm6 :15: |
has $.method is rw = 'POST'; |
adaptiveoptics/P6-Finance-GDAX-API…/API.pm6 :57: |
when 'POST' {$client.setopt(URL => self.get-url, |
adaptiveoptics/P6-Finance-GDAX-API…/API.pm6 :61: |
default {fail 'Method must be GET, POST, PUT or DELETE'} |
adaptiveoptics/P6-Finance-GDAX-API…/API.pm6 :202: |
upper-case. (POST, PUT, DELETE and GET currently supported). |
adaptiveoptics/P6-Finance-GDAX-API…/Deposit.pm6 :15: |
$.method = 'POST'; |
adaptiveoptics/P6-Finance-GDAX-API…/Deposit.pm6 :26: |
$.method = 'POST'; |
adaptiveoptics/P6-Finance-GDAX-API…/Funding.pm6 :27: |
$.method('POST'); |
adaptiveoptics/P6-Finance-GDAX-API…/MarginTransfer.pm6 :14: |
$.method = 'POST'; |
adaptiveoptics/P6-Finance-GDAX-API…/Order.pm6 :75: |
$.method = 'POST'; |
adaptiveoptics/P6-Finance-GDAX-API…/Order.pm6 :180: |
HTTP POST request. |
adaptiveoptics/P6-Finance-GDAX-API…/Position.pm6 :15: |
$.method = 'POST'; |
adaptiveoptics/P6-Finance-GDAX-API…/Report.pm6 :42: |
$.method = 'POST'; |
adaptiveoptics/P6-Finance-GDAX-API…/Withdrawl.pm6 :16: |
$.method = 'POST'; |
adaptiveoptics/P6-Finance-GDAX-API…/Withdrawl.pm6 :27: |
$.method = 'POST'; |
adaptiveoptics/P6-Finance-GDAX-API…/Withdrawl.pm6 :38: |
$.method = 'POST'; |
andydude/p6-c-parser…/gbytes.pp.c :1065: |
G_UNICODE_BREAK_POSTFIX, |
andydude/p6-c-parser…/gbytes.pp.c :1767: |
G_POST_ORDER, |
avuserow/perl6-webservice-lastfm…/README.md :40: |
Make a signed POST request, used for writing operations, the most famous of |
avuserow/perl6-webservice-lastfm…/README.md :52: |
- The assumption about requests being either GET/unsigned or POST/signed may |
azawawi/farabi6…/Util.pm6 :77: |
my $req = "POST {$o.path} HTTP/1.0{$CRLF}" ~ |
azawawi/farabi6…/perl.js :170: |
'$POSTMATCH' : 5, |
azawawi/farabi6…/perl.js :172: |
'${^POSTMATCH}' : 5, |
azawawi/farabi6…/jquery.min.js :4: |
},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)&&(a[d]=!1),a.r… |
azawawi/farabi6…/farabi.js :374: |
type: "POST", |
azawawi/farabi6…/farabi.js :421: |
type: "POST", |
azawawi/farabi6…/perl6-mode.js :124: |
'$POSTMATCH' : 5, |
azawawi/farabi6…/perl6-mode.js :126: |
'${^POSTMATCH}' : 5, |
azawawi/farabi6…/perl6-mode.js :249: |
"UNDO NEXT LAST PRE POST END CATCH CONTROL TEMP", |
azawawi/perl6-electron…/rpcclient.js :134: |
* method: string request method, default 'POST' |
azawawi/perl6-electron…/rpcclient.js :145: |
method: opts.method || 'POST', |
azawawi/perl6-gtk-scintilla…/SciLexer.h :65: |
#define SCLEX_METAPOST 50 |
azawawi/perl6-gtk-scintilla…/SciLexer.h :827: |
#define SCE_MMIXAL_OPCODE_POST 7 |
azawawi/perl6-gtk-scintilla…/SciLexer.h :878: |
#define SCE_METAPOST_DEFAULT 0 |
azawawi/perl6-gtk-scintilla…/SciLexer.h :879: |
#define SCE_METAPOST_SPECIAL 1 |
azawawi/perl6-gtk-scintilla…/SciLexer.h :880: |
#define SCE_METAPOST_GROUP 2 |
azawawi/perl6-gtk-scintilla…/SciLexer.h :881: |
#define SCE_METAPOST_SYMBOL 3 |
azawawi/perl6-gtk-scintilla…/SciLexer.h :882: |
#define SCE_METAPOST_COMMAND 4 |
azawawi/perl6-gtk-scintilla…/SciLexer.h :883: |
#define SCE_METAPOST_TEXT 5 |
azawawi/perl6-gtk-scintilla…/SciLexer.h :884: |
#define SCE_METAPOST_EXTRA 6 |
azawawi/perl6-gtk-scintilla…/SciLexer.h :1526: |
#define SCE_TXT2TAGS_POSTPROC 25 |
azawawi/perl6-gtk-scintilla…/Scintilla.iface :2822: |
val SCLEX_METAPOST=50 |
azawawi/perl6-gtk-scintilla…/Scintilla.iface :3684: |
val SCE_MMIXAL_OPCODE_POST=7 |
azawawi/perl6-gtk-scintilla…/Scintilla.iface :3743: |
lex Metapost=SCLEX_METAPOST SCE_METAPOST_ |
azawawi/perl6-gtk-scintilla…/Scintilla.iface :3744: |
val SCE_METAPOST_DEFAULT=0 |
azawawi/perl6-gtk-scintilla…/Scintilla.iface :3745: |
val SCE_METAPOST_SPECIAL=1 |
azawawi/perl6-gtk-scintilla…/Scintilla.iface :3746: |
val SCE_METAPOST_GROUP=2 |
azawawi/perl6-gtk-scintilla…/Scintilla.iface :3747: |
val SCE_METAPOST_SYMBOL=3 |
azawawi/perl6-gtk-scintilla…/Scintilla.iface :3748: |
val SCE_METAPOST_COMMAND=4 |
azawawi/perl6-gtk-scintilla…/Scintilla.iface :3749: |
val SCE_METAPOST_TEXT=5 |
azawawi/perl6-gtk-scintilla…/Scintilla.iface :3750: |
val SCE_METAPOST_EXTRA=6 |
azawawi/perl6-gtk-scintilla…/Scintilla.iface :4472: |
val SCE_TXT2TAGS_POSTPROC=25 |
azawawi/perl6-gtk-scintilla…/LexMMIXAL.cxx :130: |
sc.SetState(SCE_MMIXAL_OPCODE_POST); |
azawawi/perl6-gtk-scintilla…/LexMMIXAL.cxx :155: |
if (sc.state == SCE_MMIXAL_OPCODE_POST || // OPCODE_POST |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :37: |
// val SCE_METAPOST_DEFAULT = 0 |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :38: |
// val SCE_METAPOST_SPECIAL = 1 |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :39: |
// val SCE_METAPOST_GROUP = 2 |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :40: |
// val SCE_METAPOST_SYMBOL = 3 |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :41: |
// val SCE_METAPOST_COMMAND = 4 |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :42: |
// val SCE_METAPOST_TEXT = 5 |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :70: |
static inline bool isMETAPOSTcomment(int ch) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :75: |
static inline bool isMETAPOSTone(int ch) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :82: |
static inline bool isMETAPOSTtwo(int ch) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :87: |
static inline bool isMETAPOSTthree(int ch) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :95: |
static inline bool isMETAPOSTidentifier(int ch) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :101: |
static inline bool isMETAPOSTnumber(int ch) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :106: |
static inline bool isMETAPOSTstring(int ch) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :111: |
static inline bool isMETAPOSTcolon(int ch) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :116: |
static inline bool isMETAPOSTequal(int ch) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :121: |
static int CheckMETAPOSTInterface( |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :156: |
static void ColouriseMETAPOSTDoc( |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :169: |
int currentInterface = CheckMETAPOSTInterface(startPos,length,styler,defaultInterface) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :184: |
StyleContext sc(startPos, length, SCE_METAPOST_TEXT, styler) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :200: |
sc.SetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :206: |
sc.SetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :213: |
if (isMETAPOSTstring(sc.ch)) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :214: |
sc.SetState(SCE_METAPOST_SPECIAL) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :215: |
sc.ForwardSetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :218: |
sc.SetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :225: |
if ((! isMETAPOSTidentifier(sc.ch)) && (sc.LengthCurrent() > 0)) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :226: |
if (sc.state == SCE_METAPOST_COMMAND) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :229: |
sc.ChangeState(SCE_METAPOST_GROUP) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :233: |
sc.ChangeState(SCE_METAPOST_GROUP) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :236: |
sc.ChangeState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :240: |
sc.ChangeState(SCE_METAPOST_COMMAND) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :242: |
sc.ChangeState(SCE_METAPOST_EXTRA) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :244: |
sc.ChangeState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :249: |
if (isMETAPOSTcomment(sc.ch)) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :251: |
sc.SetState(SCE_METAPOST_SYMBOL) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :252: |
sc.ForwardSetState(SCE_METAPOST_DEFAULT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :255: |
sc.SetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :257: |
} else if (isMETAPOSTstring(sc.ch)) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :259: |
sc.SetState(SCE_METAPOST_SPECIAL) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :260: |
if (! isMETAPOSTstring(sc.chNext)) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :261: |
sc.ForwardSetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :265: |
sc.SetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :267: |
} else if (isMETAPOSTcolon(sc.ch)) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :269: |
if (! isMETAPOSTequal(sc.chNext)) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :270: |
sc.SetState(SCE_METAPOST_COMMAND) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :273: |
sc.SetState(SCE_METAPOST_SPECIAL) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :276: |
sc.SetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :278: |
} else if (isMETAPOSTone(sc.ch)) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :280: |
sc.SetState(SCE_METAPOST_SPECIAL) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :282: |
sc.SetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :284: |
} else if (isMETAPOSTtwo(sc.ch)) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :286: |
sc.SetState(SCE_METAPOST_GROUP) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :288: |
sc.SetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :290: |
} else if (isMETAPOSTthree(sc.ch)) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :292: |
sc.SetState(SCE_METAPOST_SYMBOL) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :294: |
sc.SetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :296: |
} else if (isMETAPOSTidentifier(sc.ch)) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :297: |
if (sc.state != SCE_METAPOST_COMMAND) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :298: |
sc.SetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :299: |
sc.ChangeState(SCE_METAPOST_COMMAND) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :301: |
} else if (isMETAPOSTnumber(sc.ch)) { |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :303: |
sc.SetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :305: |
sc.SetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :311: |
sc.SetState(SCE_METAPOST_TEXT) ; |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :345: |
while(isMETAPOSTidentifier(ch) && isalpha(ch) && length<100){ |
azawawi/perl6-gtk-scintilla…/LexMetapost.cxx :402: |
LexerModule lmMETAPOST(SCLEX_METAPOST, ColouriseMETAPOSTDoc, "metapost", FoldMetapostDoc, metapostWordListDesc); |
azawawi/perl6-gtk-scintilla…/LexTxt2tags.cxx :133: |
if (sc.state == SCE_TXT2TAGS_POSTPROC){ |
azawawi/perl6-gtk-scintilla…/LexTxt2tags.cxx :134: |
FollowToLineEnd('%', SCE_TXT2TAGS_POSTPROC, endPos, sc); |
azawawi/perl6-gtk-scintilla…/LexTxt2tags.cxx :315: |
sc.SetState(SCE_TXT2TAGS_POSTPROC); |
azawawi/perl6-gtk-scintilla…/ScintillaEditPy.pro :127: |
QMAKE_POST_LINK += rm -rf ../../bin/ScintillaEditPy.so && ln -s libScintillaEditPy.so ../../bin/ScintillaEditPy.so |
azawawi/perl6-gtk-scintilla…/ScintillaEditPy.pro :132: |
QMAKE_POST_LINK += rm -rf ../../bin/ScintillaEditPy.so && ln -s libScintillaEditPy.dylib ../../bin/ScintillaEditPy.so |
azawawi/perl6-gtk-scintilla…/Catalogue.cxx :143: |
LINK_LEXER(lmMETAPOST); |
azawawi/perl6-net-curl…/README.md :11: |
and TFTP. libcurl supports SSL certificates, HTTP POST, HTTP PUT, |
azawawi/perl6-net-curl…/http-post.pl6 :13: |
# First set the URL that is about to receive our POST. This URL can |
azawawi/perl6-net-curl…/http-post.pl6 :18: |
# Now specify the POST data |
azawawi/perl6-net-curl…/http-post.pl6 :19: |
curl_easy_setopt($curl, CURLOPT_POSTFIELDS, 'name=daniel&project=curl'); |
azawawi/perl6-net-curl…/simplepost.pl6 :15: |
curl_easy_setopt($curl, CURLOPT_POSTFIELDS, $postthis); |
azawawi/perl6-net-curl…/simplepost.pl6 :17: |
# if we don't provide POSTFIELDSIZE, libcurl will strlen() by itself |
azawawi/perl6-net-curl…/simplepost.pl6 :18: |
curl_easy_setopt($curl, CURLOPT_POSTFIELDSIZE, $postthis.chars); |
azawawi/perl6-net-curl…/anyauthput.c :59: |
* Since libcurl 7.12.3, using "any" auth and POST/PUT requires a set ioctl |
azawawi/perl6-net-curl…/curlx.c :179: |
the URL to be used in the POST. |
azawawi/perl6-net-curl…/curlx.c :437: |
/* Now specify the POST binary data */ |
azawawi/perl6-net-curl…/curlx.c :439: |
curl_easy_setopt(p.curl, CURLOPT_POSTFIELDS, binaryptr); |
azawawi/perl6-net-curl…/curlx.c :440: |
curl_easy_setopt(p.curl, CURLOPT_POSTFIELDSIZE,(long)tabLength); |
azawawi/perl6-net-curl…/curlx.c :476: |
/* Now specify the POST binary data */ |
azawawi/perl6-net-curl…/curlx.c :478: |
curl_easy_setopt(p.curl, CURLOPT_POSTFIELDS, binaryptr); |
azawawi/perl6-net-curl…/curlx.c :479: |
curl_easy_setopt(p.curl, CURLOPT_POSTFIELDSIZE,(long)tabLength); |
azawawi/perl6-net-curl…/ftpupload.c :111: |
curl_easy_setopt(curl, CURLOPT_POSTQUOTE, headerlist); |
azawawi/perl6-net-curl…/multi-post.c :72: |
/* what URL that receives this POST */ |
azawawi/perl6-net-curl…/multi-post.c :77: |
curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost); |
azawawi/perl6-net-curl…/post-callback.c :22: |
/* An example source code that issues a HTTP POST and we provide the actual |
azawawi/perl6-net-curl…/post-callback.c :75: |
/* First set the URL that is about to receive our POST. */ |
azawawi/perl6-net-curl…/post-callback.c :78: |
/* Now specify we want to POST data */ |
azawawi/perl6-net-curl…/post-callback.c :79: |
curl_easy_setopt(curl, CURLOPT_POST, 1L); |
azawawi/perl6-net-curl…/post-callback.c :91: |
If you use POST to a HTTP 1.1 server, you can send data without knowing |
azawawi/perl6-net-curl…/post-callback.c :92: |
the size before starting the POST if you use chunked encoding. You |
azawawi/perl6-net-curl…/post-callback.c :107: |
/* Set the expected POST size. If you want to POST large amounts of data, |
azawawi/perl6-net-curl…/post-callback.c :108: |
consider CURLOPT_POSTFIELDSIZE_LARGE */ |
azawawi/perl6-net-curl…/post-callback.c :109: |
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, pooh.sizeleft); |
azawawi/perl6-net-curl…/post-callback.c :114: |
Using POST with HTTP 1.1 implies the use of a "Expect: 100-continue" |
azawawi/perl6-net-curl…/postit2.c :23: |
* "HTML form based" (as described in RFC1738) uploads using HTTP POST. |
azawawi/perl6-net-curl…/postit2.c :80: |
/* what URL that receives this POST */ |
azawawi/perl6-net-curl…/postit2.c :85: |
curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost); |
azawawi/perl6-net-curl…/Curl.pm6 :28: |
constant CURLOPT_POSTFIELDS is export = 10015; |
azawawi/perl6-net-curl…/Curl.pm6 :37: |
constant CURLOPT_HTTPPOST is export = 10024; |
azawawi/perl6-net-curl…/Curl.pm6 :49: |
constant CURLOPT_POSTQUOTE is export = 10039; |
azawawi/perl6-net-curl…/Curl.pm6 :57: |
constant CURLOPT_POST is export = 47; |
azawawi/perl6-net-curl…/Curl.pm6 :68: |
constant CURLOPT_POSTFIELDSIZE is export = 60; |
azawawi/perl6-net-curl…/Curl.pm6 :124: |
constant CURLOPT_POSTFIELDSIZE_LARGE is export = 30120; |
azawawi/perl6-net-curl…/Curl.pm6 :158: |
constant CURLOPT_POSTREDIR is export = 161; |
azawawi/perl6-net-curl…/Curl.pm6 :161: |
constant CURLOPT_COPYPOSTFIELDS is export = 10165; |
azawawi/perl6-net-curl…/NativeCall.pm6 :133: |
CURLE_HTTP_POST_ERROR => 34, |
azawawi/perl6-net-curl…/NativeCall.pm6 :264: |
CURLOPT_POSTFIELDS => 10015, |
azawawi/perl6-net-curl…/NativeCall.pm6 :273: |
CURLOPT_HTTPPOST => 10024, |
azawawi/perl6-net-curl…/NativeCall.pm6 :285: |
CURLOPT_POSTQUOTE => 10039, |
azawawi/perl6-net-curl…/NativeCall.pm6 :293: |
CURLOPT_POST => 47, |
azawawi/perl6-net-curl…/NativeCall.pm6 :304: |
CURLOPT_POSTFIELDSIZE => 60, |
azawawi/perl6-net-curl…/NativeCall.pm6 :361: |
CURLOPT_POSTFIELDSIZE_LARGE => 30120, |
azawawi/perl6-net-curl…/NativeCall.pm6 :393: |
CURLOPT_POSTREDIR => 161, |
azawawi/perl6-net-curl…/NativeCall.pm6 :397: |
CURLOPT_COPYPOSTFIELDS => 10165, |
azawawi/perl6-net-curl…/NativeCall.pm6 :1039: |
# * CURLOPT_HTTPPOST to send it off to libcurl. |
azawawi/perl6-selenium-webdriver…/BlackBerry.pm6 :37: |
"POST", |
azawawi/perl6-selenium-webdriver…/WebElement.pm6 :9: |
# POST /session/:sessionId/element/:id/click |
azawawi/perl6-selenium-webdriver…/WebElement.pm6 :14: |
# POST /session/:sessionId/element/:id/value |
azawawi/perl6-selenium-webdriver…/WebElement.pm6 :74: |
# POST /session/:sessionId/element/:id/submit |
azawawi/perl6-selenium-webdriver…/WebWindow.pm6 :8: |
# POST /session/:sessionId/window |
azawawi/perl6-selenium-webdriver…/WebWindow.pm6 :18: |
# POST /session/:sessionId/window/:windowHandle/size |
azawawi/perl6-selenium-webdriver…/WebWindow.pm6 :31: |
# POST /session/:sessionId/window/:windowHandle/position |
azawawi/perl6-selenium-webdriver…/WebWindow.pm6 :41: |
# POST /session/:sessionId/window/:windowHandle/maximize |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :80: |
# POST /session |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :83: |
"POST", |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :112: |
# POST /session/:sessionId/timeouts |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :135: |
# POST /session/:sessionId/timeouts/async_script |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :140: |
# POST /session/:sessionId/timeouts/implicit_wait |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :169: |
# POST /session/:sessionId/execute |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :184: |
# POST /session/:sessionId/execute_async |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :215: |
# POST /session/:sessionId/ime/deactivate |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :220: |
# POST /session/:sessionId/ime/activate |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :225: |
# POST /session/:sessionId/frame |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :242: |
# POST /session/:sessionId/frame/parent |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :252: |
# POST /session/:sessionId/cookie |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :280: |
# POST /session/:sessionId/url |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :308: |
# POST /session/:sessionId/moveto |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :322: |
# POST /session/:sessionId/click |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :353: |
# POST /session/:sessionId/forward |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :360: |
# POST /session/:sessionId/back |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :367: |
# POST /session/:sessionId/refresh |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :374: |
# POST /session/:sessionId/element |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :441: |
# POST /session/:sessionId/elements |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :512: |
# POST /session/:sessionId/keys |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :522: |
# POST /session/:sessionId/orientation |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :532: |
# POST /session/:sessionId/alert_text |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :537: |
# POST /session/:sessionId/accept_alert |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :542: |
# POST /session/:sessionId/dismiss_alert |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :547: |
# POST /session/:sessionId/buttondown |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :552: |
# POST /session/:sessionId/buttonup |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :557: |
# POST /session/:sessionId/doubleclick |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :562: |
# POST /session/:sessionId/touch/click |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :567: |
# POST /session/:sessionId/touch/down |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :572: |
# POST /session/:sessionId/touch/up |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :577: |
# POST session/:sessionId/touch/move |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :582: |
# POST session/:sessionId/touch/scroll |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :597: |
# POST session/:sessionId/touch/doubleclick |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :602: |
# POST session/:sessionId/touch/longclick |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :607: |
# POST session/:sessionId/touch/flick |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :640: |
# POST /session/:sessionId/location |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :650: |
# POST /session/:sessionId/local_storage |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :680: |
# POST /session/:sessionId/session_storage |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :705: |
# POST /session/:sessionId/log |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :743: |
if ( $method eq 'POST' ) { |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :746: |
:POST($url), |
azawawi/perl6-selenium-webdriver…/Wire.pm6 :796: |
"POST", |
bbkr/jsonrpc…/Client.pm6 :72: |
$request.set-method( 'POST' ); |
bradclawsie/DB-Rscs…/Rscs.pm6 :86: |
my $req = HTTP::Request.new(POST=>$!addr ~ $KV_PATH ~ '/' ~ $key); |
bradclawsie/WebService-AWS-V4…/V4.pm6 :85: |
method message() { "With $.input, missing http method. Only GET POST HEAD are supported"; } |
bradclawsie/WebService-AWS-V4…/V4.pm6 :89: |
our constant $Methods = set < GET POST HEAD >; |
cbk/WebService-GoogleDyDNS…/README.md :11: |
* Maybe POST request would be better |
cjfields/bioperl6…/Fuzzy.pm6 :33: |
our %POSTYPEENCODE = ('<' => 'BEFORE', |
cjfields/bioperl6…/Fuzzy.pm6 :36: |
our %POSTYPEDECODE = ('BEFORE' => '<', |
cjfields/bioperl6…/Fuzzy.pm6 :66: |
if ( %POSTYPEENCODE.exists($x.start_pos_type)) { |
cjfields/bioperl6…/Fuzzy.pm6 :67: |
$x.start_pos_type = %POSTYPEENCODE{%params{'start_pos_type'}}; |
cjfields/bioperl6…/Fuzzy.pm6 :69: |
if ( %POSTYPEENCODE.exists($x.end_pos_type)) { |
cjfields/bioperl6…/Fuzzy.pm6 :70: |
$x.end_pos_type = %POSTYPEENCODE{%params{'end_pos_type'}}; |
cjfields/bioperl6…/Simple.pm6 :29: |
our %POSTYPEENCODE = ('<' => 'BEFORE', |
cjfields/bioperl6…/Simple.pm6 :32: |
our %POSTYPEDECODE = ('BEFORE' => '<', |
cjfields/bioperl6…/Simple.pm6 :50: |
if ( %POSTYPEENCODE.exists($x.start_pos_type)) { |
cjfields/bioperl6…/Simple.pm6 :51: |
$x.start_pos_type = %POSTYPEENCODE{%params{'start_pos_type'}}; |
cjfields/bioperl6…/Simple.pm6 :53: |
if ( %POSTYPEENCODE.exists($x.end_pos_type)) { |
cjfields/bioperl6…/Simple.pm6 :54: |
$x.end_pos_type = %POSTYPEENCODE{%params{'end_pos_type'}}; |
cygx/p6-tinycc-resources-win64…/winerror.h :229: |
#define ERROR_TOO_MANY_POSTS 298L |
cygx/p6-tinycc-resources-win64…/winerror.h :2488: |
#define RPC_E_CANTPOST_INSENDCALL _HRESULT_TYPEDEF_(0x80010003L) |
cygx/p6-tinycc-resources-win64…/winerror.h :2958: |
#define SPAPI_E_DI_POSTPROCESSING_REQUIRED _HRESULT_TYPEDEF_(0x800F0226L) |
cygx/p6-tinycc-resources-win64…/wingdi.h :253: |
#define POSTSCRIPT_DATA 37 |
cygx/p6-tinycc-resources-win64…/wingdi.h :254: |
#define POSTSCRIPT_IGNORE 38 |
cygx/p6-tinycc-resources-win64…/wingdi.h :293: |
#define POSTSCRIPT_PASSTHROUGH 4115 |
cygx/p6-tinycc-resources-win64…/wingdi.h :294: |
#define ENCAPSULATED_POSTSCRIPT 4116 |
cygx/p6-tinycc-resources-win64…/wingdi.h :296: |
#define POSTSCRIPT_IDENTIFY 4117 |
cygx/p6-tinycc-resources-win64…/wingdi.h :297: |
#define POSTSCRIPT_INJECTION 4118 |
cygx/p6-tinycc-resources-win64…/wingdi.h :1794: |
#define DMPAPER_JAPANESE_POSTCARD 43 |
cygx/p6-tinycc-resources-win64…/wingdi.h :1820: |
#define DMPAPER_DBL_JAPANESE_POSTCARD 69 |
cygx/p6-tinycc-resources-win64…/wingdi.h :1832: |
#define DMPAPER_JAPANESE_POSTCARD_ROTATED 81 |
cygx/p6-tinycc-resources-win64…/wingdi.h :1833: |
#define DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED 82 |
cygx/p6-tinycc-resources-win64…/wingdi.h :2233: |
#define GCPCLASS_POSTBOUNDLTR 0x20 |
cygx/p6-tinycc-resources-win64…/wingdi.h :2234: |
#define GCPCLASS_POSTBOUNDRTL 0x10 |
cygx/p6-tinycc-resources-win64…/winnt.h :2960: |
#define JOB_OBJECT_POST_AT_END_OF_JOB 1 |
cygx/p6-tinycc-resources-win64…/winuser.h :1809: |
#define PM_QS_POSTMESSAGE ((QS_POSTMESSAGE | QS_HOTKEY | QS_TIMER) << 16) |
cygx/p6-tinycc-resources-win64…/winuser.h :1904: |
#define BSF_POSTMESSAGE 0x00000010 |
cygx/p6-tinycc-resources-win64…/winuser.h :2488: |
#define QS_POSTMESSAGE 0x0008 |
cygx/p6-tinycc-resources-win64…/winuser.h :2493: |
#define QS_ALLPOSTMESSAGE 0x0100 |
cygx/p6-tinycc-resources-win64…/winuser.h :2497: |
#define QS_ALLEVENTS (QS_INPUT | QS_POSTMESSAGE | QS_TIMER | QS_PAINT | QS_HOTKEY) |
cygx/p6-tinycc-resources-win64…/winuser.h :2498: |
#define QS_ALLINPUT (QS_INPUT | QS_POSTMESSAGE | QS_TIMER | QS_PAINT | QS_HOTKEY | QS_SENDMESSAGE) |
cygx/p6-tinycc-resources-win64…/winuser.h :4075: |
#define DDL_POSTMSGS 0x2000 |
dboys/p6-WWW-SilverGoldBull…/SilverGoldBull.pm6 :91: |
return self!request(method => 'POST', uri => self!build-uri('orders/create'), params => $order.to-hash()); |
dboys/p6-WWW-SilverGoldBull…/SilverGoldBull.pm6 :95: |
return self!request(method => 'POST', uri => self!build-uri('orders/quote'), params => $quote.to-hash()); |
drforr/perl6-ANTLR4…/Swift.g4 :551: |
// GRAMMAR OF A POSTFIX EXPRESSION |
drforr/perl6-ANTLR4…/vhdl.g4 :85: |
POSTPONED : 'postponed'; |
drforr/perl6-ANTLR4…/vhdl.g4 :209: |
| ( label_colon )? ( POSTPONED )? concurrent_signal_assignment_statement |
drforr/perl6-ANTLR4…/vhdl.g4 :410: |
: ( label_colon )? ( POSTPONED )? assertion SEMI |
drforr/perl6-ANTLR4…/vhdl.g4 :419: |
: ( label_colon )? ( POSTPONED )? procedure_call SEMI |
drforr/perl6-ANTLR4…/vhdl.g4 :423: |
: ( label_colon )? ( POSTPONED )? |
drforr/perl6-ANTLR4…/vhdl.g4 :941: |
: APOSTROPHE attribute_designator ( expression ( COMMA expression )* )? |
drforr/perl6-ANTLR4…/vhdl.g4 :1140: |
: ( label_colon )? ( POSTPONED )? PROCESS |
drforr/perl6-ANTLR4…/vhdl.g4 :1145: |
END ( POSTPONED )? PROCESS ( identifier )? SEMI |
drforr/perl6-ANTLR4…/vhdl.g4 :1153: |
: subtype_indication APOSTROPHE ( aggregate | LPAREN expression RPAREN ) |
drforr/perl6-ANTLR4…/vhdl.g4 :1610: |
: APOSTROPHE . APOSTROPHE |
drforr/perl6-ANTLR4…/vhdl.g4 :1682: |
APOSTROPHE |
drforr/perl6-Perl6-Parser…/Factory.pm6 :6779: |
# POST |
fayland/perl6-WebService-GitHub…/Gist.pm :23: |
self.request('/gists', 'POST', :data(%data)); |
fayland/perl6-WebService-GitHub…/OAuth.pm :15: |
self.request('/authorizations', 'POST', :data(%data)); |
fayland/perl6-WebService-GitHub…/Users.pm :16: |
self.request('/user/emails', 'POST', :data(%data)); |
fayland/perl6-WebService-GitHub…/Users.pm :56: |
self.request('/user/keys', 'POST', :data(%data)) |
garu/Zef-Reporter…/CPANReporter.pm6 :3: |
use Net::HTTP::POST; |
garu/Zef-Reporter…/CPANReporter.pm6 :96: |
my $response = Net::HTTP::POST("http://api.cpantesters.org/v3/report", body => $report-json); |
gfldex/http-server-simple…/Simple.pm6 :142: |
$candidate_method eq any( <GET POST HEAD PUT DELETE> ); |
gfldex/perl6-meta6-bin…/bin.pm6 :362: |
my $curl = Proc::Async::Timeout.new('curl', '--silent', '-u', $github-user, '-X', 'POST', „https://api.github.com/repos/$owner/$repo/forks“); |
gfldex/perl6-meta6-bin…/bin.pm6 :400: |
my $curl = Proc::Async::Timeout.new('curl', '--silent', '--user', $github-user, '--request', 'POST', '--data', to-json({ title => $title, body => $body, head => $head, base => $base}), „https://api.github.com/repos/$owner/$repo/pulls“); |
hoelzro/p6-linenoise…/linenoise.c :429: |
raw.c_oflag &= ~(OPOST); |
jnthn/p6-http-hpack…/HPACK.pm6 :168: |
':method' => 'POST', |
jonathanstowe/Lumberjack-Application…/PSGI.pm :37: |
The application will only accept 'POST' requests of content type |
jonathanstowe/Lumberjack-Application…/PSGI.pm :57: |
if %env<REQUEST_METHOD> eq 'POST' { |
jonathanstowe/Lumberjack-Application…/PSGI.pm :64: |
return 405, [Allow => 'POST', Content-Type => 'application/json' ], ['{ "status" : "Only POST method allowed" }']; |
jonathanstowe/Lumberjack-Application…/Proxy.pm :24: |
This implements a C<Lumberjack::Dispatcher> that will POST the messages |
jonathanstowe/Lumberjack-Application…/Proxy.pm :39: |
will accept an 'application/json' POST of the message data. |
jonathanstowe/Lumberjack-Application…/Proxy.pm :75: |
my $req = POST($!url, content => $message.to-json, Content-Type => "application/json; charset=utf-8"); |
jonathanstowe/Lumberjack-Application…/050-proxy.t :20: |
is %env<REQUEST_METHOD>, 'POST', "request is a post"; |
jonathanstowe/WebService-Soundcloud…/Soundcloud.pm :218: |
This method is used to make a POST request on the given path. The second |
jonathanstowe/WebService-Soundcloud…/Soundcloud.pm :496: |
self.request( 'POST', $url, $headers, $content ); |
jonathanstowe/WebService-Soundcloud…/Soundcloud.pm :604: |
my $response = self.request( 'POST', $url, $headers, %params ); |
krunen/term-termios…/termios.pm6 :69: |
OPOST => 1, |
krunen/term-termios…/myhelper.c :148: |
{"OPOST", OPOST}, |
masak/druid…/README.md :78: |
* Make the web app do POST requests instead of GET requests. This is more in |
masak/gge…/OPTable.pm :12: |
##constant GGE_OPTABLE_POSTFIX = 0x20; |
masak/gge…/OPTable.pm :16: |
##constant GGE_OPTABLE_POSTCIRCUMFIX = 0x80; |
masak/gge…/OPTable.pm :22: |
sub GGE_OPTABLE_POSTFIX { 0x20 } |
masak/gge…/OPTable.pm :26: |
sub GGE_OPTABLE_POSTCIRCUMFIX { 0x80 } |
masak/gge…/OPTable.pm :36: |
'postfix:' => { syncat => GGE_OPTABLE_POSTFIX, |
masak/gge…/OPTable.pm :44: |
'postcircumfix:' => { syncat => GGE_OPTABLE_POSTCIRCUMFIX, |
masak/gge…/OPTable.pm :121: |
elsif $top<syncat> >= GGE_OPTABLE_POSTCIRCUMFIX() { |
masak/gge…/OPTable.pm :138: |
# The POSTCIRCUMFIX condition here is worrying because there's |
masak/gge…/OPTable.pm :141: |
if $top<syncat> == GGE_OPTABLE_POSTCIRCUMFIX() || ?@temp[0] { |
masak/gge…/OPTable.pm :255: |
if $topcat < GGE_OPTABLE_POSTCIRCUMFIX() { |
masak/gge…/OPTable.pm :267: |
elsif $token<syncat> >= GGE_OPTABLE_POSTCIRCUMFIX() { |
masak/gge…/OPTable.pm :271: |
elsif $topcat == GGE_OPTABLE_POSTFIX() |
masak/gge…/OPTable.pm :273: |
| GGE_OPTABLE_POSTFIX() { |
masak/gge…/OPTable.pm :296: |
| GGE_OPTABLE_POSTFIX() { |
masak/gge…/OPTable.pm :308: |
elsif $token<syncat> >= GGE_OPTABLE_POSTCIRCUMFIX() { |
masak/yapsi…/ROADMAP :29: |
+ PRE, POST phasers |
matiaslina/perl6-matrix-client…/endpoints.md :17: |
- [ ] POST - /_matrix/client/r0/delete_devices |
matiaslina/perl6-matrix-client…/endpoints.md :22: |
- [ ] POST - /_matrix/client/r0/keys/claim |
matiaslina/perl6-matrix-client…/endpoints.md :23: |
- [ ] POST - /_matrix/client/r0/keys/upload |
matiaslina/perl6-matrix-client…/endpoints.md :24: |
- [ ] POST - /_matrix/client/r0/keys/query |
matiaslina/perl6-matrix-client…/endpoints.md :32: |
- [x] POST - /_matrix/media/r0/upload |
matiaslina/perl6-matrix-client…/endpoints.md :37: |
- [ ] POST - /_matrix/client/r0/user/{userId}/openid/request_token |
matiaslina/perl6-matrix-client…/endpoints.md :43: |
- [ ] POST - /_matrix/client/r0/presence/list/{userId} |
matiaslina/perl6-matrix-client…/endpoints.md :50: |
- [ ] POST - /_matrix/client/r0/pushers/set |
matiaslina/perl6-matrix-client…/endpoints.md :60: |
- [ ] POST - /_matrix/client/r0/rooms/{roomId}/read_markers |
matiaslina/perl6-matrix-client…/endpoints.md :64: |
- [ ] POST - /_matrix/client/r0/rooms/{roomId}/report/{eventId} |
matiaslina/perl6-matrix-client…/endpoints.md :68: |
- [x] POST - /_matrix/client/r0/createRoom |
matiaslina/perl6-matrix-client…/endpoints.md :78: |
- [ ] POST - /_matrix/client/r0/publicRooms |
matiaslina/perl6-matrix-client…/endpoints.md :83: |
- [x] POST - /_matrix/client/r0/rooms/{roomId}/join |
matiaslina/perl6-matrix-client…/endpoints.md :84: |
- [ ] POST - /_matrix/client/r0/join/{roomIdOrAlias} |
matiaslina/perl6-matrix-client…/endpoints.md :85: |
- [ ] POST - /_matrix/client/r0/rooms/{roomId}/kick |
matiaslina/perl6-matrix-client…/endpoints.md :86: |
- [x] POST - /_matrix/client/r0/rooms/{roomId}/leave |
matiaslina/perl6-matrix-client…/endpoints.md :88: |
- [ ] POST - /_matrix/client/r0/rooms/{roomId}/invite |
matiaslina/perl6-matrix-client…/endpoints.md :89: |
- [ ] POST - /_matrix/client/r0/rooms/{roomId}/unban |
matiaslina/perl6-matrix-client…/endpoints.md :90: |
- [ ] POST - /_matrix/client/r0/rooms/{roomId}/ban |
matiaslina/perl6-matrix-client…/endpoints.md :91: |
- [ ] POST - /_matrix/client/r0/rooms/{roomId}/forget |
matiaslina/perl6-matrix-client…/endpoints.md :92: |
- [ ] POST - /_matrix/client/r0/rooms/{roomId}/invite |
matiaslina/perl6-matrix-client…/endpoints.md :102: |
- [ ] POST - /_matrix/client/r0/user/{userId}/filter |
matiaslina/perl6-matrix-client…/endpoints.md :113: |
- [ ] POST - /_matrix/client/r0/rooms/{roomId}/receipt/{receiptType}/{eventId} |
matiaslina/perl6-matrix-client…/endpoints.md :120: |
- [ ] POST - /_matrix/client/r0/search |
matiaslina/perl6-matrix-client…/endpoints.md :134: |
- [x] POST - /_matrix/client/r0/logout |
matiaslina/perl6-matrix-client…/endpoints.md :136: |
- [x] POST - /_matrix/client/r0/login |
matiaslina/perl6-matrix-client…/endpoints.md :137: |
- [ ] POST - /_matrix/client/r0/logout/all |
matiaslina/perl6-matrix-client…/endpoints.md :141: |
- [ ] POST - /_matrix/client/r0/account/password |
matiaslina/perl6-matrix-client…/endpoints.md :142: |
- [ ] POST - /_matrix/client/r0/user_directory/search |
matiaslina/perl6-matrix-client…/endpoints.md :150: |
- [x] POST - /_matrix/client/r0/register |
matiaslina/perl6-matrix-client…/endpoints.md :153: |
- [ ] POST - /_matrix/client/r0/account/3pid |
matiaslina/perl6-matrix-client…/endpoints.md :158: |
- [ ] POST - /_matrix/client/r0/account/deactivate |
matiaslina/perl6-matrix-client…/endpoints.md :159: |
- [ ] POST - /_matrix/client/r0/account/3pid/delete |
matiaslina/perl6-matrix-client…/Requester.pm6 :50: |
my $req = HTTP::Request.new(POST => $url, |
matiaslina/perl6-matrix-client…/Requester.pm6 :63: |
my $req = POST($.base-url(:media) |
moznion/p6-Router-Boost…/Method.pm6 :96: |
$router.add(['POST'], '/a', 'p'); |
moznion/p6-Router-Boost…/Method.pm6 :124: |
C<@methods> is a list to represent HTTP method. i.e. ['GET'], ['POST'], ['DELETE'], ['PUT'], etc. |
moznion/p6-Router-Boost…/03-method.t :7: |
$r.add(['POST'], '/a', 'p'); |
moznion/p6-Router-Boost…/03-method.t :26: |
my $matched = $r.match('POST', '/a'); |
moznion/p6-Router-Boost…/03-method.t :31: |
}, 'POST /a'; |
moznion/p6-Router-Boost…/03-method.t :38: |
is-deeply $matched<allowed-methods>, ['GET', 'POST']; |
moznion/p6-Router-Boost…/03-method.t :42: |
my $matched = $r.match('POST', '/b'); |
moznion/p6-Router-Boost…/03-method.t :58: |
my $matched = $r.match('POST', '/c'); |
moznion/p6-Router-Boost…/03-method.t :63: |
}, 'POST /c'; |
moznion/p6-Router-Boost…/03-method.t :75: |
my $matched = $r.match('POST', '/d'); |
moznion/p6-Router-Boost…/03-method.t :78: |
}, 'POST'; |
moznion/p6-Router-Boost…/03-method.t :94: |
[['POST'], '/a', 'p'], |
nicqrocks/perl6-slack-webhook…/META6.json :15: |
"Net::HTTP::POST", |
nicqrocks/perl6-slack-webhook…/Webhook.pm6 :3: |
use Net::HTTP::POST; |
nicqrocks/perl6-slack-webhook…/Webhook.pm6 :30: |
else { return Net::HTTP::POST($.url, :%header, :$body); } |
ohmycloud/fanfou-p6…/README.md :24: |
$client.request('/statuses/update', 'POST', %body); |
ohmycloud/fanfou-p6…/README.md :42: |
$client.request('/statuses/update', 'POST', %body); |
ohmycloud/fanfou-p6…/FanFou.pm6 :75: |
if $method eq 'POST' { |
ohmycloud/fanfou-p6…/FanFou.pm6 :177: |
$client.request('/statuses/update', 'POST', %body); |
peelle/LendingClub…/LendingClub.pm :10: |
use Net::HTTP::POST; |
peelle/LendingClub…/LendingClub.pm :12: |
method !request (Str $type where { $type eq 'GET'|'POST' }, Str $api_call, %body? ) returns Hash { |
peelle/LendingClub…/LendingClub.pm :24: |
$results = Net::HTTP::POST( $uri, :%header, :$body ); |
peelle/LendingClub…/LendingClub.pm :69: |
### POST REQUESTS ### |
peelle/LendingClub…/LendingClub.pm :77: |
return self!request('POST', 'funds/add', { :$transferFrequency, :$amount, :$startDate, :$endDate } ); |
peelle/LendingClub…/LendingClub.pm :81: |
return self!request('POST', 'funds/cancel', { :@transferIds } ); |
peelle/LendingClub…/LendingClub.pm :85: |
return self!request('POST', 'portfolios', { :$aid, :$portfolioName, :$portfolioDescription } ); |
peelle/LendingClub…/LendingClub.pm :89: |
return self!request('POST', 'orders', { :$aid, :@orders } ); |
perl6/doc…/jquery-3.1.1.min.js :4: |
void 0!==c?null===c?void r.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d… |
perl6/doc…/5to6-perlvar.pod6 :360: |
=item $POSTMATCH |
perl6/doc…/5to6-perlvar.pod6 :366: |
=item ${^POSTMATCH} |
perl6/doc…/grammars.pod6 :394: |
| GET | POST | OPTIONS | HEAD | PUT | DELETE | TRACE | CONNECT |
perl6/doc…/phasers.pod6 :43: |
POST {...} # assert postcondition at every block exit, after LEAVE |
perl6/doc…/phasers.pod6 :114: |
C<POST> phaser, but a C<LEAVE> phaser could be more liberal. |
perl6/doc…/phasers.pod6 :177: |
POST {...} # assert postcondition at every block exit, after LEAVE |
perl6/doc…/phasers.pod6 :290: |
and C<UNDO>. C<POST> phasers are evaluated after everything else, to guarantee |
perl6/doc…/phasers.pod6 :296: |
If a C<POST> fails or any kind of C<LEAVE> block throws an exception while the |
perl6/doc…/phasers.pod6 :338: |
The exceptions thrown by failing C<PRE> and C<POST> phasers cannot be caught by |
perl6/doc…/phasers.pod6 :339: |
a C<CATCH> in the same block, which implies that C<POST> phaser are not run if |
perl6/doc…/phasers.pod6 :342: |
=head2 X<POST|Phasers, POST> |
perl6/doc…/phasers.pod6 :346: |
For phasers such as C<KEEP> and C<POST> that are run when exiting a scope |
perl6/doc…/phasers.pod6 :350: |
The C<POST> block can be defined in one of two ways. Either the corresponding |
perl6/doc…/phasers.pod6 :351: |
C<POST> is defined as a separate phaser, in which case C<PRE> and C<POST> share |
perl6/doc…/phasers.pod6 :353: |
C<POST> as an embedded phaser block that closes over the lexical scope of the |
perl6/doc…/phasers.pod6 :356: |
If a C<POST> fails or any kind of C<LEAVE> block throws an exception while the |
perl6/doc…/phasers.pod6 :361: |
The exceptions thrown by failing C<PRE> and C<POST> phasers cannot be caught by |
perl6/doc…/phasers.pod6 :362: |
a C<CATCH> in the same block, which implies that C<POST> phaser are not run if |
perl6/doc…/Cool.pod6 :1009: |
# OUTPUT: «(("LATIN CAPITAL LETTER D WITH DOT BELOW", "COMBINING DOT ABOVE").Seq, ("APOSTROPHE",).Seq, ("LATIN SMALL LETTER O",).Seq, ("LATIN SMALL LETTER H",).Seq)» |
perl6/doc…/PrePost.pod6 :5: |
=SUBTITLE Error due to a false return value of a PRE/POST phaser |
perl6/doc…/PrePost.pod6 :10: |
Thrown when the condition inside a C<PRE> or C<POST> phaser evaluate to a |
perl6/doc…/PrePost.pod6 :26: |
Returns the name of the failed phaser, C<"PRE"> or C<"POST">. |
perl6/doc…/headings.t :31: |
| AST | EVAL | PRE | POST | CLI | MOP |
perl6/perl6-http-server-async…/README.md :67: |
GET/PUT/POST/etc |
perl6/perl6-http-server-async…/07_chunkedrequestecho.t :21: |
$client.print("POST / HTTP/1.0\r\nTransfer-Encoding: chunked\r\n\r\n"); |
perl6/perl6-lwp-simple…/README.md :6: |
This is a quick & dirty implementation of a LWP::Simple clone for Rakudo Perl 6; it does both `GET` and `POST` requests. |
perl6/perl6-lwp-simple…/Simple.pm :13: |
enum RequestType <GET POST PUT HEAD DELETE>; |
perl6/perl6-lwp-simple…/Simple.pm :40: |
self.request_shell(RequestType::POST, $url, %headers, $content) |
perl6/perl6-lwp-simple…/Simple.pm :76: |
if ($rt ~~ any(RequestType::POST, RequestType::PUT) && $content.defined) { |
pierre-vigier/Perl6-HTTP-Signature…/020-basic.t :9: |
my $request-str = Q:b (POST /foo?param=value&pet=dog HTTP/1.1\r\nHost: example.com\r\nDate: Thu, 05 Jan 2012 21:31:40 GMT\r\nContent-Type: application/json\r\nContent-MD5: Sd/dVLAcvNLSq16eXua5uQ==\r\nContent-Length: 18\r\n\r\n{"hello": "world"}\r\n); |
pierre-vigier/Perl6-HTTP-Signature…/030-verify.t :9: |
my $request-str = Q:b (POST /foo?param=value&pet=dog HTTP/1.1\r\nHost: example.com\r\nDate: Thu, 05 Jan 2012 21:31:40 GMT\r\nContent-Type: application/json\r\nContent-MD5: Sd/dVLAcvNLSq16eXua5uQ==\r\nContent-Length: 18\r\n\r\n{"hello": "world"}); |
retupmoca/P6-SOAP…/ConvertTemperature.xml :110: |
<http:binding verb="POST" /> |
retupmoca/P6-Web-RF…/RF.pm6 :26: |
subset Web::RF::Request::Post of Web::RF::Request is export where { $_.method eq 'POST' }; |
scmorrison/perl6-aws-pricing…/service-offers-AmazonS3-eu-west-1.csv :213: |
"578M9UJHH6X5PZVC","JRTCKXETXF","578M9UJHH6X5PZVC.JRTCKXETXF.6YS6EN2CT7","OnDemand","$0.005 per 1,000 PUT, COPY, POST, or LIST requests","2… |
scmorrison/perl6-aws-pricing…/service-offers-AmazonS3-eu-west-1.csv :248: |
"UE87QRFFVNPNZBMQ","JRTCKXETXF","UE87QRFFVNPNZBMQ.JRTCKXETXF.6YS6EN2CT7","OnDemand","$0.01 per 1,000 PUT, COPY, POST or LIST requests to St… |
scmorrison/perl6-aws-pricing…/service-offers-AmazonS3-eu-west-1.json :71: |
"groupDescription" : "PUT/COPY/POST or LIST requests", |
scmorrison/perl6-aws-pricing…/service-offers-AmazonS3-eu-west-1.json :3294: |
"groupDescription" : "PUT/COPY/POST or LIST requests to Standard-Infrequent Access", |
scmorrison/perl6-aws-pricing…/service-offers-AmazonS3-eu-west-1.json :4430: |
"description" : "$0.005 per 1,000 PUT, COPY, POST, or LIST requests", |
scmorrison/perl6-aws-pricing…/service-offers-AmazonS3-eu-west-1.json :7076: |
"description" : "$0.01 per 1,000 PUT, COPY, POST or LIST requests to Standard-Infrequent Access", |
sergot/http-useragent…/Request.pm6 :9: |
subset RequestMethod of Str where any(<GET POST HEAD PUT DELETE PATCH>); |
sergot/http-useragent…/Request.pm6 :335: |
=item method => URL, where method can be POST, GET ... etc. |
sergot/http-useragent…/Request.pm6 :351: |
$req.set-method: 'POST'; |
sergot/http-useragent…/Request.pm6 :377: |
or in a named parameter style, to the POST request (it doesn't |
sergot/http-useragent…/Common.pm6 :14: |
multi sub POST(URI $uri, %form, *%headers) is export { |
sergot/http-useragent…/Common.pm6 :18: |
multi sub POST(Str $uri, %form, *%headers) is export { |
sergot/http-useragent…/Common.pm6 :22: |
multi sub POST(URI $uri, Array :$content, *%headers) is export { |
sergot/http-useragent…/Common.pm6 :23: |
my $request = get-request('POST', $uri, |%headers); |
sergot/http-useragent…/Common.pm6 :28: |
multi sub POST(Str $uri, :$content, *%headers) is export { |
sergot/http-useragent…/Common.pm6 :32: |
multi sub POST(URI $uri, Hash :$content, *%headers) is export { |
sergot/http-useragent…/Common.pm6 :36: |
multi sub POST(URI $uri, Str :$content, *%headers) is export { |
sergot/http-useragent…/Common.pm6 :37: |
send-text-content('POST', $uri, :$content, |%headers); |
sergot/http-useragent…/Common.pm6 :66: |
multi sub POST(Str $uri, Blob :$content, *%headers ) is export { |
sergot/http-useragent…/Common.pm6 :70: |
multi sub POST(URI $uri, Blob :$content, *%headers ) is export { |
sergot/http-useragent…/Common.pm6 :71: |
send-binary-content('POST', $uri, :$content, |%headers); |
sergot/http-useragent…/Common.pm6 :177: |
=head2 C<POST $url> |
sergot/http-useragent…/Common.pm6 :179: |
=head2 C<POST $url, Header => Value,...> |
sergot/http-useragent…/Common.pm6 :181: |
=head2 C<POST $url, %form, Header => Value,...> |
sergot/http-useragent…/Common.pm6 :183: |
=head2 C<POST $url, Header => Value,..., content => $form_ref> |
sergot/http-useragent…/Common.pm6 :185: |
=head2 C<POST $url, Header => Value,..., content => $content> |
sergot/http-useragent…/Response.pm6 :83: |
# a separate GET method. This relates to POST, PUT, DELETE and PATCH methods. |
sergot/http-useragent…/Response.pm6 :87: |
$!request.method eq any('POST', 'PUT', 'DELETE', 'PATCH'); |
sergot/http-useragent…/UserAgent.pm6 :112: |
my $request = HTTP::Request.new(POST => $uri, |%header); |
sergot/http-useragent…/UserAgent.pm6 :575: |
Make a POST request to the specified uri, with the provided Hash of %form |
sergot/http-useragent…/040-request.t :13: |
my $r1 = HTTP::Request.new(POST => $url, test_field => 'this_is_field'); |
sergot/http-useragent…/040-request.t :20: |
ok $r1.Str ~~ /^POST\s$file/, 'new 6/8'; |
sergot/http-useragent…/040-request.t :40: |
ok $r1.Str ~~ /^POST\s$file/, 'uri 4/4'; |
sergot/http-useragent…/040-request.t :73: |
my $req = HTTP::Request.new(POST => URI.new('http://127.0.0.1/')); |
sergot/http-useragent…/040-request.t :75: |
is $req.method, 'POST'; |
sergot/http-useragent…/040-request.t :81: |
my $req = HTTP::Request.new(POST => URI.new('http://127.0.0.1/')); |
sergot/http-useragent…/040-request.t :83: |
is $req.method, 'POST'; |
sergot/http-useragent…/040-request.t :89: |
my $req = HTTP::Request.new(POST => 'http://127.0.0.1/', X-Foo => 'Bar'); |
sergot/http-useragent…/040-request.t :91: |
is $req.method, 'POST'; |
sergot/http-useragent…/040-request.t :99: |
my $req = HTTP::Request.new(POST => 'http://127.0.0.1/', Host => '127.0.0.1', content-type => 'multipart/form-data; boundary=XxYyZ'); |
sergot/http-useragent…/040-request.t :105: |
my $req = HTTP::Request.new(POST => 'http://127.0.0.1/'); |
sergot/http-useragent…/040-request.t :110: |
my $req = HTTP::Request.new(POST => 'http://127.0.0.1/'); |
sergot/http-useragent…/170-request-common.t :10: |
my $req = POST( |
sergot/http-useragent…/170-request-common.t :21: |
}, 'POST(multi-part)'; |
sergot/http-useragent…/170-request-common.t :25: |
my $req = POST(URI.new('http://127.0.0.1/'), { |
sergot/http-useragent…/170-request-common.t :28: |
is $req.method, 'POST'; |
sergot/http-useragent…/170-request-common.t :34: |
my $req = POST( |
sergot/http-useragent…/170-request-common.t :40: |
is $req.method, 'POST'; |
sergot/http-useragent…/170-request-common.t :47: |
my $req = POST('http://127.0.0.1/', |
sergot/http-useragent…/170-request-common.t :54: |
}, 'POST'; |
sergot/http-useragent…/230-binary-request.t :33: |
lives-ok { $req = POST($uri, content => $buf); }, "create POST with Buf"; |
sergot/http-useragent…/230-binary-request.t :46: |
}, "POST (with defaults)"; |
sergot/http-useragent…/230-binary-request.t :51: |
lives-ok { $req = POST($uri, content => $buf, Content-Type => 'image/x-something', Content-Length => 158); }, "create POST with Buf (supplying Content-Type and Content-Length"; |
sergot/http-useragent…/230-binary-request.t :64: |
}, "POST (with explicit Content-Type)"; |
sergot/http-useragent…/230-binary-request.t :71: |
lives-ok { $req = POST($uri, content => $buf, Content-Type => 'text/plain', Content-Length => 158); }, "create POST with Buf (supplying Content-Type and Content-Length"; |
sergot/http-useragent…/230-binary-request.t :85: |
}, "POST (with something that will be text coming back)"; |
sergot/http-useragent…/multipart-1.dat :1: |
POST / HTTP/1.1 |
shuppet/p6-api-discord…/Channel.pm6 :115: |
#| Sends a message to the channel and returns the POST promise. |
skaji/Frinfon…/Frinfon.pm6 :63: |
$!router.add([<POST>], $p.key, $p.value); |
skaji/Frinfon…/Frinfon.pm6 :72: |
$!router.add([<GET HEAD POST DELETE PUT>], $p.key, $p.value); |
skaji/Frinfon…/01-basic.t :16: |
$res = $cb(HTTP::Request.new(POST => "/")); |
slobo/Perl6-X11-Xlib-Raw…/keysym.pm6 :540: |
XK_apostrophe => 0x0027, #= U+0027 APOSTROPHE |
slobo/Perl6-X11-Xlib-Raw…/keysym.pm6 :1896: |
XK_Armenian_apostrophe => 0x100055a, #= U+055A ARMENIAN APOSTROPHE |
spebern/Parser-FreeXL-Native…/Makefile.in :85: |
POST_INSTALL = : |
spebern/Parser-FreeXL-Native…/Makefile.in :88: |
POST_UNINSTALL = : |
spebern/Parser-FreeXL-Native…/Makefile.in :85: |
POST_INSTALL = : |
spebern/Parser-FreeXL-Native…/Makefile.in :88: |
POST_UNINSTALL = : |
spebern/Parser-FreeXL-Native…/Makefile.in :85: |
POST_INSTALL = : |
spebern/Parser-FreeXL-Native…/Makefile.in :88: |
POST_UNINSTALL = : |
spebern/Parser-FreeXL-Native…/lt~obsolete.m4 :65: |
m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) |
spebern/Parser-FreeXL-Native…/Makefile.in :85: |
POST_INSTALL = : |
spebern/Parser-FreeXL-Native…/Makefile.in :88: |
POST_UNINSTALL = : |
spebern/Parser-FreeXL-Native…/Makefile.in :84: |
POST_INSTALL = : |
spebern/Parser-FreeXL-Native…/Makefile.in :87: |
POST_UNINSTALL = : |
spitsh/spitsh…/DigitalOcean.sp :140: |
DO.request('POST', 'droplets', :$json).ok.json<droplet>; |
spitsh/spitsh…/DigitalOcean.sp :203: |
DO.request('POST', 'account/keys', json => (:$name, public_key => $public-key)) |
spitsh/spitsh…/json-response.t :6: |
.request('POST').json<args><foo>, 'bar', |
spitsh/spitsh…/json-response.t :11: |
.request('POST', form => ( bar => '@foo') ) |
supernovus/perl6-http-client…/README :36: |
A more advanced POST application/x-www-form-urlencoded request: |
supernovus/perl6-http-client…/README :48: |
A more advanced POST multipart/form-data request: |
supernovus/perl6-http-client…/Client.pm6 :51: |
## A request that requires data: POST, PUT |
supernovus/perl6-http-client…/Client.pm6 :76: |
## POST request |
supernovus/perl6-http-client…/Client.pm6 :79: |
'POST', $url, :%query, :%data, :%files, :$multipart, :$follow |
supernovus/perl6-http-client…/Request.pm6 :28: |
has $!data = ''; ## The data body for POST/PUT. |
supernovus/perl6-http-client…/Request.pm6 :115: |
## Use multipart POST/PUT. |
supernovus/perl6-http-client…/Request.pm6 :120: |
## Use urlencoded POST/PUT. |
supernovus/perl6-http-client…/Request.pm6 :180: |
## First off, this only works on POST and PUT. |
supernovus/perl6-http-client…/Request.pm6 :181: |
if $.method ne 'POST' | 'PUT' { |
supernovus/perl6-http-client…/Request.pm6 :274: |
if $.method eq 'POST' | 'PUT' { |
supernovus/perl6-http-easy…/Easy.pm6 :124: |
unless $method eq 'GET' | 'POST' | 'HEAD' | 'PUT' | 'DELETE' | 'PATCH' |
supernovus/perl6-web-app-ballet…/Ballet.pm6 :131: |
handle-route($route, 'POST'); |
supernovus/perl6-web…/README.md :33: |
Currently only supports GET and non-multipart POST. |
supernovus/perl6-web…/README.md :34: |
We are planning on adding multi-part POST including file uploads, |
supernovus/perl6-web…/README.md :108: |
This provides GET and POST support including multipart/form-data. |
supernovus/perl6-web…/speed-2011-10.txt :31: |
form.p6 HTTP::Easy::PSGI 270ms POST / [2] |
supernovus/perl6-web…/speed-2011-10.txt :33: |
form.p6 SCGI via Apache 2 130ms POST / [2] |
supernovus/perl6-web…/Request.pm6 :103: |
## Now, if we're POST or PUT, let's get the body. |
supernovus/perl6-web…/Request.pm6 :104: |
if %new<method> eq 'POST' | 'PUT' { |
supernovus/perl6-web…/Request.pm6 :144: |
## Now, let's parse our POST/PUT arguments. |
supernovus/perl6-web…/Request.pm6 :145: |
if $.method eq 'POST' | 'PUT' { |
supernovus/perl6-web…/form-start.html :6: |
<form method="POST" enctype="multipart/form-data"> |
szabgab/Perl6-Maven…/jquery-1.7.2.min.js :4: |
.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return… |
szabgab/Perl6-Maven…/footer.tmpl :19: |
<form method=POST action="https://mail.szabgab.com/mailman/subscribe/perl6"\> |
szabgab/Perl6-Maven…/newsletter.tmpl :7: |
<form method=POST action="https://mail.szabgab.com/mailman/subscribe/perl6"\> |
tadzik/panda…/Reporter.pm :24: |
$to-send = "POST http://testers.perl6.org/report HTTP/1.1\nHost: testers.perl6.org\nConnection: Close"; |
tadzik/panda…/Reporter.pm :28: |
$to-send = "POST http://testers.perl6.org/report HTTP/1.1\nHost: testers.perl6.org\nConnection: Close"; |
titsuki/p6-Terminal-Readsecret…/readsecret.c :313: |
term.c_oflag |= ONLCR | OPOST; /* output mode: map NL to CR+NL, enable output processing */ |
tokuhirom/p6-Crust…/content-length.t :8: |
POST => "http://localhost/post", |
tokuhirom/p6-HTTP-Server-Tiny…/09-chunked-request.t :29: |
"POST /resource/test HTTP/1.1\r\n", |
tony-o/perl6-http-server-threaded…/README.md :65: |
GET/PUT/POST/etc |
tony-o/perl6-http-server-threaded…/07_chunkedrequestecho.t :25: |
$client.print("POST / HTTP/1.0\r\nTransfer-Encoding: chunked\r\n\r\n"); |
ugexe/Perl6-Grammar--HTTP…/RFC7230.pm6 :108: |
token method { GET || HEAD || POST || PUT || DELETE || CONNECT || OPTIONS || TRACE } |
ugexe/Perl6-Net--HTTP…/META6.json :14: |
"Net::HTTP::POST" : "lib/Net/HTTP/POST.pm6", |
ugexe/Perl6-Net--HTTP…/README.pod :20: |
use Net::HTTP::POST; |
ugexe/Perl6-Net--HTTP…/README.pod :22: |
my $response = Net::HTTP::POST("http://httpbin.org/post", :$body); |
ugexe/Perl6-Net--HTTP…/README.pod :60: |
=head3 Net::HTTP::POST |
ugexe/Perl6-Net--HTTP…/README.pod :63: |
my $response = Net::HTTP::POST("http://httpbin.org/post", :$body); |
ugexe/Perl6-Net--HTTP…/README.pod :65: |
Simple access to the http C<POST> client api (Still lacking anything beyond basic functionality) |
ugexe/Perl6-Net--HTTP…/POST.pm6 :7: |
class Net::HTTP::POST { |
ugexe/Perl6-Net--HTTP…/POST.pm6 :11: |
with Net::HTTP::Request.new(:$url, :$body, :method<POST>, :User-Agent<perl6-net-http>) -> $req { |
ugexe/Perl6-Net--HTTP…/Transport.pm6 :12: |
# similar to ::GET and ::POST but made for reuse (connection caching and other state control) |
ugexe/Perl6-Net--HTTP…/00-load.t :14: |
use-ok('Net::HTTP::POST'); |
ugexe/Perl6-Net--HTTP…/520-post.t :5: |
use Net::HTTP::POST; |
ugexe/Perl6-Net--HTTP…/520-post.t :24: |
my $response = Net::HTTP::POST($url, :$body); |
ugexe/Perl6-Net--HTTP…/520-post.t :29: |
}, "Basic POST"; |
ugexe/zef…/P6CReporter.pm6 :8: |
state $probe = (try require Net::HTTP::POST) !~~ Nil ?? True !! False; |
ugexe/zef…/P6CReporter.pm6 :62: |
my $response = ::('Net::HTTP::POST')("http://testers.perl6.org/report", body => $report-json.encode); |
viklund/november…/November.pm :113: |
# POST data. The difference is the presence of the 'articletext' |
viklund/november…/CGI.pm :21: |
# if %*ENV<REQUEST_METHOD> eq 'POST' && %*ENV{CONTENT_LENGTH} > 0 { |
viklund/november…/CGI.pm :22: |
if (%*ENV<REQUEST_METHOD> // '') eq 'POST' { |
viklund/november…/edit.tmpl :15: |
<form method="POST"> |
viklund/november…/log_in.tmpl :18: |
<form method="POST" name="login"> |
viklund/november…/edit.tmpl :11: |
<form method="POST"> |
viklund/november…/log_in.tmpl :14: |
<form method="POST" name="login"> |
viklund/november…/edit.tmpl :11: |
<form method="POST"> |
viklund/november…/log_in.tmpl :14: |
<form method="POST" name="login"> |
viklund/november…/edit.tmpl :11: |
<form method="POST"> |
viklund/november…/log_in.tmpl :13: |
<form method="POST" name="login"> |
viklund/november…/edit.tmpl :16: |
<form method="POST"> |
viklund/november…/log_in.tmpl :15: |
<form method="POST" name="login"> |
viklund/november…/register.tmpl :15: |
<form method="POST" name="register"> |
viklund/november…/02-cgi_post.t.sh :6: |
REQUEST_METHOD='POST' \ |
viklund/november…/02-cgi_post.t.sh :13: |
REQUEST_METHOD='POST' \ |
viklund/november…/02-cgi_post.t.sh :20: |
REQUEST_METHOD='POST' \ |
viklund/november…/02-cgi_post.t.sh :27: |
REQUEST_METHOD='POST' \ |
viklund/november…/02-cgi_post.t.sh :34: |
REQUEST_METHOD='POST' \ |
viklund/november…/02-cgi_post.t.sh :42: |
REQUEST_METHOD='POST' \ |
whity/perl6-hematite…/README.md :34: |
#$app.POST('/', sub ($ctx) { $ctx.render({'route' => '/'}, 'type' => 'json'); }); |
whity/perl6-hematite…/001-methods.t :9: |
my @methods = ('GET', 'POST'); |
yowcow/p6-WebService-SOP…/META6.json :21: |
"WebService::SOP::V1_1::Request::POST" : "lib/WebService/SOP/V1_1/Request/POST.pm6", |
yowcow/p6-WebService-SOP…/META6.json :22: |
"WebService::SOP::V1_1::Request::POST_JSON" : "lib/WebService/SOP/V1_1/Request/POST_JSON.pm6", |
yowcow/p6-WebService-SOP…/V1_1.pm6 :6: |
use WebService::SOP::V1_1::Request::POST; |
yowcow/p6-WebService-SOP…/V1_1.pm6 :7: |
use WebService::SOP::V1_1::Request::POST_JSON; |
yowcow/p6-WebService-SOP…/V1_1.pm6 :24: |
self.create-request('POST', $uri, $params); |
yowcow/p6-WebService-SOP…/V1_1.pm6 :28: |
self.create-request('POST_JSON', $uri, $params); |
yowcow/p6-WebService-SOP…/V1_1.pm6 :81: |
# To create a POST request object |
yowcow/p6-WebService-SOP…/V1_1.pm6 :89: |
# To create a POST request with JSON body |
yowcow/p6-WebService-SOP…/V1_1.pm6 :108: |
Creates a POST request object with content-type `application/x-www-form-urlencoded`. |
yowcow/p6-WebService-SOP…/V1_1.pm6 :112: |
Creates a POST request object with content-type `application/json`. |
yowcow/p6-WebService-SOP…/POST.pm6 :6: |
unit class WebService::SOP::V1_1::Request::POST; |
yowcow/p6-WebService-SOP…/POST.pm6 :15: |
POST( |
yowcow/p6-WebService-SOP…/POST_JSON.pm6 :7: |
unit class WebService::SOP::V1_1::Request::POST_JSON; |
yowcow/p6-WebService-SOP…/POST_JSON.pm6 :16: |
POST( |
yowcow/p6-WebService-SOP…/01-basic.t :9: |
'WebService::SOP::V1_1::Request::POST', |
yowcow/p6-WebService-SOP…/01-basic.t :10: |
'WebService::SOP::V1_1::Request::POST_JSON', |
yowcow/p6-WebService-SOP…/03-client.t :82: |
is $req.method, 'POST'; |
yowcow/p6-WebService-SOP…/03-client.t :96: |
}, 'Creating a POST request'; |
yowcow/p6-WebService-SOP…/03-client.t :103: |
is $req.method, 'POST'; |
yowcow/p6-WebService-SOP…/03-client.t :118: |
}, 'Creating a POST request with JSON body'; |
yowcow/p6-WebService-SOP…/post-json.t :7: |
use WebService::SOP::V1_1::Request::POST_JSON; |
yowcow/p6-WebService-SOP…/post-json.t :9: |
my Str $class = 'WebService::SOP::V1_1::Request::POST_JSON'; |
yowcow/p6-WebService-SOP…/post-json.t :41: |
is $req.method, 'POST'; |
yowcow/p6-WebService-SOP…/post.t :6: |
use WebService::SOP::V1_1::Request::POST; |
yowcow/p6-WebService-SOP…/post.t :8: |
my Str $class = 'WebService::SOP::V1_1::Request::POST'; |
yowcow/p6-WebService-SOP…/post.t :40: |
is $req.method, 'POST'; |
yowcow/p6-WebService-SOP…/post.t :65: |
is $req.method, 'POST'; |
zoffixznet/perl6-CoreHackers-Sourcery…/README.md :38: |
# BLOG POST |
zoffixznet/perl6-GlotIO…/GlotIO.pm6 :23: |
elsif ( $method eq 'POST' | 'PUT' ) { |
zoffixznet/perl6-GlotIO…/GlotIO.pm6 :74: |
self!request: 'POST', $uri, to-json %content; |
zoffixznet/perl6-GlotIO…/GlotIO.pm6 :126: |
self!request: 'POST', $!snip-api-url ~ '/snippets', to-json(%content), |
zoffixznet/perl6-Twitter…/DirectMessages.pm6 :7: |
self!ua.request: 'POST', 'direct_messages/new', |
zoffixznet/perl6-Twitter…/Favorites.pm6 :11: |
self!ua.request: 'POST', 'favorites/destroy', %( |
zoffixznet/perl6-Twitter…/Statuses.pm6 :5: |
= self!ua.request: 'POST', 'statuses/update', %(status => $tweet-text); |
zoffixznet/perl6-Twitter…/OAuth.pm6 :15: |
Str:D $method where { .uc eq any <POST GET> }, |
zoffixznet/perl6-Twitter…/UA.pm6 :25: |
when 'POST' { |
zoffixznet/perl6-Twitter…/01-sign.t :21: |
# my $signature = $t.sign: 'POST', <https://api.twitter.com/1/statuses/update.json?include\_entities=true\>, |
zoffixznet/perl6-WWW…/README.md :18: |
# POST content (query args are OK; pass form as named args) |
zoffixznet/perl6-WWW…/README.md :25: |
# Same POST as above + decode response as JSON |
zoffixznet/perl6-WWW…/README.md :28: |
# Also can post() or jpost() POST body directly as Str:D; headers passed as named args: |
zoffixznet/perl6-WWW…/README.md :115: |
by an optional `Hash` with HTTP headers to send. Form POST parameters can be |
zoffixznet/perl6-WWW…/README.md :120: |
To send POST body directly, pass it as Str:D positional arg. In this calling |
zoffixznet/perl6-WWW…/WWW.pm6 :38: |
my $req = HTTP::Request.new: POST => $url, |%headers; |
zoffixznet/perl6-WWW…/01-operation.t :52: |
:message(/404/), "can detect a POST 404 over $prot.uc()"; |
zostay/HTTP-Supply…/http-1.0-close.txt :1: |
POST /index.html HTTP/1.0 |
zostay/HTTP-Supply…/http-1.0-dumb.txt :1: |
POST /index.html HTTP/1.0 |
zostay/HTTP-Supply…/http-1.0-keep-alive.txt :1: |
POST /index.html HTTP/1.0 |
zostay/HTTP-Supply…/http-1.0-pipeline.txt :1: |
POST http://example.com/index.html HTTP/1.0 |
zostay/HTTP-Supply…/http-1.0-trailing-garbage.txt :1: |
POST /index.html HTTP/1.0 |
zostay/HTTP-Supply…/http-1.1-close.txt :1: |
POST /index.html HTTP/1.1 |
zostay/HTTP-Supply…/http-1.1-pipeline.txt :1: |
POST http://example.com/index.html HTTP/1.1 |
zostay/HTTP-Supply…/http-1.1-pipeline.txt :19: |
POST http://example.com/form.html HTTP/1.1 |
zostay/HTTP-Supply…/http-1.1-short.txt :1: |
POST /index.html HTTP/1.1 |
zostay/HTTP-Supply…/http-1.1-trailing-garbage.txt :1: |
POST /index.html HTTP/1.1 |
zostay/HTTP-Supply…/request-deprecated.t :18: |
REQUEST_METHOD => 'POST', |
zostay/HTTP-Supply…/request-deprecated.t :33: |
REQUEST_METHOD => 'POST', |
zostay/HTTP-Supply…/request-deprecated.t :47: |
REQUEST_METHOD => 'POST', |
zostay/HTTP-Supply…/request-deprecated.t :62: |
REQUEST_METHOD => 'POST', |
zostay/HTTP-Supply…/request-http-1.0.t :14: |
REQUEST_METHOD => 'POST', |
zostay/HTTP-Supply…/request-http-1.0.t :29: |
REQUEST_METHOD => 'POST', |
zostay/HTTP-Supply…/request-http-1.0.t :43: |
REQUEST_METHOD => 'POST', |
zostay/HTTP-Supply…/request-http-1.0.t :58: |
REQUEST_METHOD => 'POST', |
zostay/HTTP-Supply…/request-http-1.1.t :14: |
REQUEST_METHOD => 'POST', |
zostay/HTTP-Supply…/request-http-1.1.t :30: |
REQUEST_METHOD => 'POST', |
zostay/HTTP-Supply…/request-http-1.1.t :45: |
REQUEST_METHOD => 'POST', |
zostay/HTTP-Supply…/request-http-1.1.t :67: |
REQUEST_METHOD => 'POST', |
zostay/HTTP-Supply…/request-trailing-garbage.t :15: |
REQUEST_METHOD => 'POST', |
zostay/HTTP-Supply…/request-trailing-garbage.t :30: |
REQUEST_METHOD => 'POST', |
zostay/P6W…/P6W.pod :160: |
| | "GET" or "POST". |
zostay/P6W…/P6W.pod :415: |
Some calls to your application may be accompanied by a request payload. For example, a POST or PUT request sent by an origin using HTTP wil… |
zostay/P6W…/README.md :186: |
<td>The HTTP request method, such as "GET" or "POST".</td> |
zostay/P6W…/README.md :453: |
Some calls to your application may be accompanied by a request payload. For example, a POST or PUT request sent by an origin using HTTP wil… |
Created
April 27, 2022 18:45
-
-
Save Whateverable/8c730596edd2dc65454e43bcb5714a15 to your computer and use it in GitHub Desktop.
greppable6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
POST |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment