Home
last modified time | relevance | path

Searched refs:push_header (Results 1 – 25 of 259) sorted by relevance

1234567891011

/dports/www/p5-HTTP-Proxy/HTTP-Proxy-0.304/t/
H A D50hopbyhop.t52 $req->push_header( Connection => 'Foo' );
53 $req->push_header( Connection => 'Bar' );
54 $req->push_header( Foo => 'foofoo' );
55 $req->push_header( Bar => 'barbar' );
56 $req->push_header( User_Agent => 'Foo/1.0' );
78 $req->push_header( Connection => 'Foo, Bar' );
79 $req->push_header( Connection => 'Baz' );
80 $req->push_header( Foo => 'foofoo' );
81 $req->push_header( Bar => 'barbar' );
82 $req->push_header( Baz => 'bazbaz' );
[all …]
/dports/www/p5-HTML-Parser/HTML-Parser-3.76/lib/HTML/
H A DHeadParser.pm168 $self->{'header'}->push_header(Title => $text);
205 $self->{header}->push_header($key => $attr->{charset});
212 $self->{'header'}->push_header($key => $attr->{content});
216 $self->{'header'}->push_header('Content-Base' => $base);
220 $self->{'header'}->push_header(Isindex => $attr->{prompt} || '?');
234 $self->{'header'}->push_header(Link => $h_val);
/dports/www/p5-LWPx-TimedHTTP/LWPx-TimedHTTP-1.8/lib/LWPx/
H A DTimedHTTP.pm401 $response->push_header(@h);
403 $response->push_header("Client-Junk" => \@junk) if @junk;
406 …$response->push_header($_, $LWPx::TimedHTTP::Socket::timings{$_}) for keys %LWPx::TimedHTTP::Socke…
407 $response->push_header('Client-Request-Connect-Time', tv_interval($prev_time, $this_time));
410 $response->push_header('Client-Request-Transmit-Time', tv_interval($prev_time, $this_time));
422 $response->push_header('Client-Transfer-Encoding', \@te);
424 $response->push_header('Client-Response-Num', scalar $socket->increment_response_count);
439 … $response->push_header('Client-Response-Server-Time', tv_interval($prev_time, $this_time));
449 $response->push_header('Client-Response-Receive-Time', tv_interval($prev_time, $this_time));
455 $response->push_header(@h);
/dports/www/p5-HTTP-Headers-Fast/HTTP-Headers-Fast-0.22/tools/
H A Dbenchmark.pl16 push_header => sub {
22 orig => sub { $h->push_header('X-Foo' => 1) },
23 fast => sub { $f->push_header('X-Foo' => 1) },
33 orig => sub { $h->push_header('X-Foo' => 1, 'X-Bar' => 2) },
34 fast => sub { $f->push_header('X-Foo' => 1, 'X-Bar' => 2) },
/dports/www/p5-HTTP-Cookies/HTTP-Cookies-6.10/t/
H A Dcookies.t528 $res->push_header("Set-Cookie" => qq(trip.appServer=1111-0000-x-024;Domain=.trip.com;Path=/));
529 $res->push_header("Set-Cookie" => qq(JSESSIONID=fkumjm7nt1.JS24;Path=/trs));
530 $res->push_header("Set-Cookie2" => qq(JSESSIONID=fkumjm7nt1.JS24;Version=1;Discard;Path="/trs"));
550 $res->push_header("Set-Cookie" => qq(s1=session;Path=/scripts));
552 $res->push_header("Set-Cookie" => qq(p2=perm;Path=/;expires=Fri, 02-Feb-$year_plus_one 23:24:20 GM…
553 $res->push_header("Set-Cookie" => qq(s2=session;Path=/scripts;Domain=.perlmeister.com));
554 $res->push_header("Set-Cookie2" => qq(s3=session;Version=1;Discard;Path="/"));
655 $res->push_header("Set-Cookie", "expired2=1; expires=Fri Jan 1 00:00:00 GMT 1970; path=/; domain=.…
656 $res->push_header("Set-Cookie", "expired3=1; expires=Fri Jan 1 00:00:01 GMT 1970; path=/; domain=.…
657 $res->push_header("Set-Cookie", "expired4=1; expires=Thu Dec 31 23:59:59 GMT 1969; path=/; domain=.…
[all …]
/dports/www/p5-HTTP-Link-Parser/HTTP-Link-Parser-0.200/t/
H A D01basic.t46 $response->push_header("Base" => "http://example.org/subject");
47 $response->push_header("Link" => "<http://example.net/absolute>; rel=\"http://example.net/rel/one h…
48 $response->push_header("Link" => "<relative>; rel=\"three\"; title=\"relative\"");
49 $response->push_header("Link" => "<nextdoc>; rel=\"next\"; title=\"relative\"; type=\"TEXT/HTML\"; …
50 $response->push_header("Link" => "<subject>; rel=\"prev\"; title=\"subject\"; anchor=\"nextdoc\"");
51 $response->push_header("Link" => "<author>; rev=\"made\"; title=\"author\";");
52 $response->push_header("Link" => "<german-page>; rev=\"test\"; title=\"nachstes Kapitel\"; title*=U…
H A D02rdf.t52 $response->push_header("Base" => "http://example.org/subject");
53 $response->push_header("Link" => "<http://example.net/absolute>; rel=\"http://example.net/rel/one h…
54 $response->push_header("Link" => "<relative>; rel=\"three\"; title=\"relative\"");
55 $response->push_header("Link" => "<nextdoc>; rel=\"next\"; title=\"relative\"; type=\"TEXT/HTML\"; …
56 $response->push_header("Link" => "<subject>; rel=\"prev\"; title=\"subject\"; anchor=\"nextdoc\"");
57 $response->push_header("Link" => "<author>; rev=\"made\"; title=\"author\";");
58 $response->push_header("Link" => "<german-page>; rev=\"test\"; title=\"nachstes Kapitel\"; title*=U…
/dports/multimedia/aegisub/aegisub-3.2.2/src/
H A Dsubtitles_provider.cpp73 auto push_header = [&](const char *str) { in LoadSubtitles() local
81 push_header("\xEF\xBB\xBF[Script Info]\n"); in LoadSubtitles()
85 push_header("[V4+ Styles]\n"); in LoadSubtitles()
89 push_header("[Events]\n"); in LoadSubtitles()
/dports/www/p5-HTTP-Headers-Fast/HTTP-Headers-Fast-0.22/t/
H A D01-compat.t17 $h->push_header('foo' => undef);
20 test "push_header's return value" => sub {
24 $h->push_header('foo' => 'baz');
/dports/www/p5-Dancer/Dancer-1.3513/t/12_response/
H A D09_headers_to_array.t10 push_header A => 1;
11 push_header A => 2;
12 push_header B => 3;
/dports/www/fswiki/wiki3_6_2/lib/LWP/
H A DProtocol.pm211 $response->push_header("Client-Aborted", "max_size");
234 $response->push_header("Client-Aborted", "max_size");
254 $response->push_header('X-Died' => $@);
255 $response->push_header("Client-Aborted", "die");
/dports/www/p5-ParallelUserAgent/ParallelUserAgent-2.62/lib/LWP/Parallel/
H A DProtocol.pm201 $response->push_header("Client-Aborted", "max_size");
232 $response->push_header("Client-Aborted", "max_size");
250 $response->push_header('X-Died' => $@);
251 $response->push_header("Client-Aborted", "die");
/dports/www/p5-HTTP-Proxy/HTTP-Proxy-0.304/lib/HTTP/Proxy/HeaderFilter/
H A Dstandard.pm30 $headers->push_header(
47 $hop->push_header( $k => $v );
51 $client->push_header( $k => $v );
/dports/irc/keitairc2/keitairc-2.0/lib/Keitairc/
H A DView.pm46 $response->push_header('Location', $path);
160 $response->push_header('Content-type', $mime_type);
167 $response->push_header('Content-type', 'text/html; charset=' . $me->{Config}->content_charset());
180 $response->push_header('Content-type', $vars->{content_type});
/dports/games/wesnoth/wesnoth-1.14.17/src/help/
H A Dhelp_topic_generators.cpp576 push_header(first_row, _("Type")); in operator ()()
577 push_header(first_row, _("Strikes")); in operator ()()
578 push_header(first_row, _("Range")); in operator ()()
579 push_header(first_row, _("Special")); in operator ()()
646 push_header(first_res_row, _("Resistance")); in operator ()()
679 push_header(first_row, _("Terrain")); in operator ()()
680 push_header(first_row, _("Defense")); in operator ()()
681 push_header(first_row, _("Movement Cost")); in operator ()()
685 push_header(first_row, _("Defense Cap")); in operator ()()
690 push_header(first_row, _("Vision Cost")); in operator ()()
[all …]
/dports/www/p5-Dancer/Dancer-1.3513/lib/Dancer/
H A DResponse.pm122 sub push_header { subroutine
128 $self->{headers}->push_header( $header => $h );
180 $self->push_header(
/dports/www/p5-libwww/libwww-perl-6.59/lib/LWP/
H A DProtocol.pm168 $response->push_header("Client-Aborted", "max_size");
179 $response->push_header('X-Died' => $error);
180 $response->push_header("Client-Aborted", "die");
/dports/www/fswiki/wiki3_6_2/lib/LWP/Protocol/
H A Dhttp.pm313 $response->push_header($k, $v);
315 $response->push_header("Client-Junk" => \@junk) if @junk;
326 $response->push_header('Client-Transfer-Encoding', \@te);
328 $response->push_header('Client-Response-Num', $socket->increment_response_count);
348 $response->push_header($k, $v);
/dports/www/p5-LWPx-ParanoidAgent/LWPx-ParanoidAgent-1.12/lib/LWPx/Protocol/
H A Dhttp_paranoid.pm354 $response->push_header($k, $v);
356 $response->push_header("Client-Junk" => \@junk) if @junk;
367 $response->push_header('Client-Transfer-Encoding', \@te);
369 $response->push_header('Client-Response-Num', $socket->increment_response_count);
393 $response->push_header($k, $v);
/dports/www/p5-libwww/libwww-perl-6.59/lib/LWP/Protocol/
H A Dhttp.pm445 $response->push_header(@h);
447 $response->push_header("Client-Junk" => \@junk) if @junk;
458 $response->push_header('Client-Transfer-Encoding', \@te);
460 $response->push_header('Client-Response-Num', scalar $socket->increment_response_count);
483 $response->push_header(@h);
/dports/www/p5-HTTP-Engine/HTTP-Engine-0.03005/t/020_interface/
H A Dpsgi.t18 $res->headers->push_header('X-Foo' => 1);
19 $res->headers->push_header('X-Foo' => 2);
/dports/www/p5-HTTP-Message/HTTP-Message-6.35/lib/HTTP/Headers/
H A DAuth.pm58 $self->push_header($header, $a_scheme);
88 $self->push_header($header, $val);
/dports/www/fswiki/wiki3_6_2/lib/HTTP/Headers/
H A DAuth.pm54 $self->push_header($header, $a_scheme);
82 $self->push_header($header, $val);
/dports/devel/bugzilla50/bugzilla-5.0.4/Bugzilla/WebService/Server/
H A DXMLRPC.pm77 $self->response->headers->push_header('Set-Cookie', $cookie);
96 $self->response->headers->push_header('ETag', $etag);
97 $self->response->headers->push_header('status', '304 Not Modified');
100 $self->response->headers->push_header('ETag', $etag);
/dports/devel/p5-POE/POE-1.368/lib/POE/Filter/
H A DHTTPD.pm181 $r->push_header($key, $val) if $key;
192 $r->push_header($key, $val) if $key;
505 $response->push_header( 'Content-Type', $content_type );
506 $response->push_header( 'Content-Length', length($content) );

1234567891011