view release on metacpan or search on metacpan
Sendmail.pm view on Meta::CPAN
unless ( Email::Valid->address($mailer_args->{From}) ) {
$address_errors .= "Address '$mailer_args->{From}' in 'From' element failed $Email::Valid::Details check. ";
}
# set the content-type
$mailer_args->{'Content-Type'} = ($mailer_args->{'Content-Type'})? $mailer_args->{'Content-Type'} : 'text/plain';
$mailer_args->{'Content-Type'} .= '; charset=';
$mailer_args->{'Content-Type'} .= ($mailer_args->{'charset'})? $mailer_args->{'charset'} : 'utf-8';
# munge the text if it needs to be
Sendmail.pm view on Meta::CPAN
return q| push (@cc_addrs, ''|;
}
elsif ($tag eq 'bcc') {
return q| push (@bcc_addrs, ''|;
}
elsif ($tag eq 'content-type') {
return q| $mail_args{'Content-Type'} = ''|;
}
elsif ($tag eq 'content-transfer-encoding') {
return q| $mail_args{'Content-Transfer-Encoding'} = ''|;
}
Sendmail.pm view on Meta::CPAN
=head2 C<E<lt>sendmail:subjectE<gt>>
Defines the subject of the message.
=head2 C<E<lt>sendmail:content-typeE<gt>>
Defines the content-type of the body of the message (default: text/plain).
=head2 C<E<lt>sendmail:content-transfer-encodingE<gt>>
Defines the content-transfer-encoding of the body of the message. The
default depends on whether you have MIME::QuotedPrint available or not.
view all matches for this distribution
view release on metacpan or search on metacpan
plugins/demo/gallery view on Meta::CPAN
<filesize>$filesize</filesize>
<size>$size</size>
<modified>$mod</modified>
<uri>$uri</uri>
<dirpath>$path</dirpath>
<content-type>$ct</content-type>
</image>
</imagesheet>
EOXML
$input->dom($xml);
plugins/demo/gallery view on Meta::CPAN
my $filename = $node->findnodes('./filename/text()');
my $fullpath = catfile($dirpath, "$filename");
my $ct = $mm->checktype_filename($fullpath);
$node->appendWellBalancedChunk(<<EOXML);
<dirpath>$dirpath</dirpath>
<content-type>$ct</content-type>
EOXML
}
# Finally we add in the config info
$self->log(LOGINFO, "Augmenting config info");
view all matches for this distribution
view release on metacpan or search on metacpan
conf/bo.xml view on Meta::CPAN
<!--Default Language-->
<example>a</example>
</parameter>
<parameter>
<contentType>text/html</contentType>
<!--Default content-type-->
<example>a</example>
</parameter>
<parameter>
<extension>html</extension>
<!-- -->
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Backblaze/B2V2Client.pm view on Meta::CPAN
my (%args) = @_;
# this must include valid entries for 'new_file_name' and 'bucket_name'
# and it has to include either the raw file contents in 'file_contents'
# or a valid location in 'file_location'
# also, you can include 'content_type' (which would be the MIME Type'
# if you do not want B2 to auto-determine the MIME/content-type
# did they provide a file location or path?
if ($args{file_location} && -e "$args{file_location}") {
$args{file_contents} = path( $args{file_location} )->slurp_raw;
lib/Backblaze/B2V2Client.pm view on Meta::CPAN
if (!$args{bucket_name} || !$args{new_file_name}) {
$self->error_tracker(qq{You must provide 'bucket_name' and 'new_file_name' args for b2_upload_file().});
return 'Error';
}
# default content-type
$args{content_type} ||= 'b2/x-auto';
# OK, let's continue: get the upload URL and authorization token for this bucket
$self->b2_get_upload_url( $args{bucket_name} );
lib/Backblaze/B2V2Client.pm view on Meta::CPAN
my $self = shift;
my (%args) = @_;
# this must include valid entries for 'new_file_name' and 'bucket_name'
# and it has to a valid location in 'file_location' (Do not load in file contents)
# also, you can include 'content_type' (which would be the MIME Type'
# if you do not want B2 to auto-determine the MIME/content-type
# did they provide a file location or path?
if ($args{file_location} && -e "$args{file_location}") {
# if they didn't provide a file-name, use the one on this file
$args{new_file_name} = path( $args{file_location} )->basename;
lib/Backblaze/B2V2Client.pm view on Meta::CPAN
if (!$bucket_name) {
$self->error_tracker(qq{You must provide a valid 'bucket_name' arg for b2_upload_large_file().});
return $self->{current_status};
}
# default content-type
$args{content_type} ||= 'b2/x-auto';
# get the bucket ID
$self->b2_list_buckets($bucket_name);
lib/Backblaze/B2V2Client.pm view on Meta::CPAN
NOTE: If you are going to use the 'file_contents' method, it's best
to load the scalar using the 'slurp_raw' method in Path::Tiny.
(I believe 'read_file' in File::Slurp will work, but have yet to test.)
You can also pass a 'content-type' key with the MIME type for the new
file. The default is 'b2/auto'.
Upon a successful upload, the new GUID for the file will be available
in $b2client->{b2_response}{fileId} .
view all matches for this distribution
view release on metacpan or search on metacpan
share/public/js/base/jquery.form.js view on Meta::CPAN
//log('response detected');
xhr.responseText = doc.body ? doc.body.innerHTML : doc.documentElement ? doc.documentElement.innerHTML : null;
xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;
xhr.getResponseHeader = function(header){
var headers = {'content-type': s.dataType};
return headers[header];
};
var scr = /(json|script)/.test(s.dataType);
if (scr || s.textarea) {
share/public/js/base/jquery.form.js view on Meta::CPAN
var parseJSON = $.parseJSON || function(s) {
return window['eval']('(' + s + ')');
};
var httpData = function( xhr, type, s ) { // mostly lifted from jq1.4.4
var ct = xhr.getResponseHeader('content-type') || '',
xml = type === 'xml' || !type && ct.indexOf('xml') >= 0,
data = xml ? xhr.responseXML : xhr.responseText;
if (xml && data.documentElement.nodeName === 'parsererror') {
$.error && $.error('parsererror');
view all matches for this distribution
view release on metacpan or search on metacpan
data/t/attributes/misc_attribute_coerce_lazy.t view on Meta::CPAN
has 'headers' => (
is => 'rw',
isa => 'Header',
coerce => 1,
lazy => 1,
default => sub { [ 'content-type', 'text/html' ] }
);
}
my $r = Request->new;
isa_ok($r, 'Request');
view all matches for this distribution
view release on metacpan or search on metacpan
share/P6STD/std_hilite/jquery-1.4.2.min.js view on Meta::CPAN
false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&...
false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);r...
c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._...
d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var ...
g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f)...
1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){...
"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n===...
if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","padd...
this[a].style.display=d||"";if(c.css(this[a],"display")==="none"){d=this[a].nodeName;var f;if(la[d])f=la[d];else{var e=c("<"+d+" />").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;f...
"olddisplay",c.css(this[a],"display"))}a=0;for(b=this.length;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b){var d=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments)...
animate:function(a,b,d,f){var e=c.speed(b,d,f);if(c.isEmptyObject(a))return this.each(e.complete);return this[e.queue===false?"each":"queue"](function(){var j=c.extend({},e),i,o=this.nodeType===1&&c(this).is(":hidden"),k=this;for(i in a){var n=i.repl...
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bio/BioVeL/Service.pm view on Meta::CPAN
return Apache2::Const::OK;
}
=item response_header
Returns the HTTP response header. This might include the content-type.
=cut
sub response_header {
die "Implement me!";
view all matches for this distribution
view release on metacpan or search on metacpan
doc/CHANGES_2.7.txt view on Meta::CPAN
Moved 'last_modified' check into SourceAdaptor::dsncreated. Now the HTTP header always includes the 'dsncreated' last modified date (defaults to epoch). Also moved the call into the eval (was capable of causing server hangs).
HTTP response codes are now only set to values other than 200 (OK) if they actually result in an error (for HTTP compliance). DAS response codes remain in the X-DAS-Status header.
The content-type header for XSL responses has been changed from 'text/xml' to 'text/xsl'. Although the W3C standards define text/xml as one of the standard types, the spec states that in future, more specific types will be defined. Most browsers actu...
view all matches for this distribution
view release on metacpan or search on metacpan
docs/HOWTO-MySQL.html view on Meta::CPAN
<p class=MsoBodyText>A BioSQL ER diagram in PDF form can be <a
href="http://cvs.bioperl.org/cgi-bin/viewcvs/viewcvs.cgi/*checkout*/biosql-schema/doc/biosql-ERD.pdf?rev=HEAD&cvsroot=biosql">downloaded
directly</a> (PDF) from the OBF anonymous CVS server. A formatted listing of
the tables described in the schema can be <a
href="http://cvs.bioperl.org/cgi-bin/viewcvs/viewcvs.cgi/*checkout*/biosql-schema/doc/biosql.html?rev=HEAD&cvsroot=biosql&content-type=text/html">viewed
online directly</a> (HTML) from the same server.</p>
<div style='border:none;border-bottom:solid windowtext 1.5pt;padding:0in 0in 1.0pt 0in'>
<p class=MsoNormal style='border:none;mso-border-bottom-alt:solid windowtext 1.5pt;
view all matches for this distribution
view release on metacpan or search on metacpan
templates/blog.tmpl view on Meta::CPAN
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="http://awesnob.com/textpattern/css.php?s=default" type="text/css" media="screen" />
<title>Awesnob!</title>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Blog/Blosxom.pm view on Meta::CPAN
to C<new> and defaults to C<html>.
=head2 component
A component is one of the five (currently) sections of the page: head, foot, story,
date and content-type. The story and date components appear zero-to-many times on
each page and the other three appear exactly once.
=head2 template
A template is a flavoured component. It is defined as a file in the blog root whose
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Blosxom/Plugin/Web/Request/Upload.pm view on Meta::CPAN
sub fh { $_[0]->{fh} }
sub size { -s $_[0]->{fh} }
sub filename { "$_[0]->{fh}" }
sub content_type { shift->{header}->{'content-type'} }
sub header {
my ( $self, $field ) = @_;
$field =~ tr/_A-Z/-a-z/;
$self->{header}->{$field};
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bluesky.pm view on Meta::CPAN
# Testing because HTTP::Tiny does not support multipart
# I need to get auth token for new service via 'com.atproto.server.getServiceAuth'
my $boundary = join '', map { [ 0 .. 9, 'a' .. '4' ]->[ rand 36 ] } 1 .. 5 + rand(10);
my $job = $at->post(
'https://video.bsky.app/xrpc/app.bsky.video.uploadVideo?did=' . $at->did . '&name=upload.mp4',
{ headers => { 'content-type' => 'multipart/form-data; boundary=' . $boundary },
content =>
qq[--$boundary\x0d\x0aContent-Disposition: form-data; name="file_name"; filename="file_name_1.mp4"\x0d\x0aContent-Type: video/mp4\x0d\x0a$vid\x0d\x0a--$boundary--\x0d\x0a]
}
);
$job || return $job->throw;
lib/Bluesky.pm view on Meta::CPAN
if ( $image =~ /^data:/ ) {
$card{thumb} = $self->uploadFile($image);
}
else {
$res = $http->get( URI->new_abs( $image, $url ) );
$card{thumb} = $res->{success} ? $self->uploadFile( $res->{content}, $res->{headers}{'content-type'} ) : ();
}
}
}
{ '$type' => 'app.bsky.embed.external', external => \%card };
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/BmltClient/ApiClient.pm view on Meta::CPAN
return join(',', @header);
}
}
# return the content type based on an array of content-type provided
# @param [Array] content_type_array Array fo content-type
# @return String Content-Type (e.g. application/json)
sub select_header_content_type
{
my ($self, @header) = @_;
view all matches for this distribution
view release on metacpan or search on metacpan
root/js/jquery-1.3.2.min.js view on Meta::CPAN
* Sizzle CSS Selector Engine - v0.9.3
* Copyright 2009, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
* More information: http://sizzlejs.com/
*/
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==...
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Brocade/BSC.pm view on Meta::CPAN
my $urlpath = "/restconf/operations/opendaylight-inventory:nodes"
. "/node/$node/yang-ext:mount/ietf-netconf-monitoring:get-schema";
my $payload = qq({"input":{"identifier":"$schemaId","version":)
. qq("$schemaVersion","format":"yang"}});
my %headers = ('content-type'=>'application/yang.data+json',
'accept'=>'text/json, text/html, application/xml, */*');
my $resp = $self->_http_req('POST', $urlpath, $payload, \%headers);
if ($resp->code == HTTP_OK) {
my $xmltree_ref = new XML::Parser(Style => 'Tree')->parse($resp->content);
lib/Brocade/BSC.pm view on Meta::CPAN
my $self = shift;
my $node = shift;
my $status = new Brocade::BSC::Status($BSC_OK);
my $urlpath = "/restconf/config/opendaylight-inventory:nodes/node/controller-config/yang-ext:mount/config:modules";
my %headers = ('content-type' => 'application/xml',
'accept' => 'application/xml');
my $xmlPayload = <<END_XML;
<module xmlns="urn:opendaylight:params:xml:ns:yang:controller:config">
<type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">prefix:sal-netconf-connector</type>
<name>$node->{name}</name>
view all matches for this distribution
view release on metacpan or search on metacpan
bryar-newblog view on Meta::CPAN
<input name="search" type="text" class="bryarSingleLineBox">
<input name="submit" type="submit" value="Search" class="bryarButton" />
</form>
<hr />
Subscribe to full text feeds via:
<a href="?format=atom" content-type="application/atom+xml">ATOM</a>
|
<a href="?format=rss2" content-type="application/rdf+xml">RSS2</a>
|
<a href="?format=rss" content-type="application/rdf+xml">RSS</a>
<br />
Subscribe to preview feeds via:
<a href="?format=atom_excerpt" content-type="application/atom+xml">ATOM</a>
|
<a href="?format=rss2_excerpt" content-type="application/rdf+xml">RSS2</a>
|
<a href="?format=rss_excerpt" content-type="application/rdf+xml">RSS</a>
<br />
<a href="http://www.feedvalidator.org/check.cgi?url=http://bryar.multiply.org/notebook/bryar.cgi?format=atom"><img src="/notebook/images/valid-atom.png" alt="[Valid Atom]" title="Validate my Atom feed" width="88" height="31" border="0" /></a>
</body>
view all matches for this distribution
view release on metacpan or search on metacpan
bin/opnpost view on Meta::CPAN
X => 'POST',
'ca-path' => '/etc/ssl/certs',
);
my @required = qw(content endpoint);
my @options = qw(help endpoint=s content=s content-type=s timeout=i k d v cc=s ca=s ca-path=s X=s man redir=s@ agent=s r);
if ($script_name eq 'opnpost') {
push(@required, 'content-type');
push(@options, 'wrap-soap');
push(@options, 'soap-version=s');
push(@options, 'soap-action=s');
}
elsif ($script_name eq 'opnsoap') {
$options{'content-type'} = 'application/xml';
$options{'soap-version'} = 1.1;
push(@options, 'wrap-soap');
push(@options, 'soap-version=s');
push(@options, 'soap-action=s');
}
elsif ($script_name eq 'opnjson') {
$options{'content-type'} = 'application/json';
}
{
local $SIG{__WARN__} = sub { die shift };
my $ok = eval { GetOptions(\%options, @options) };
bin/opnpost view on Meta::CPAN
);
my $req = HTTP::Request->new(
$options{X} => $options{endpoint},
HTTP::Headers->new(
Content_Type => $options{'content-type'},
exists $options{'soap-action'} ?
( SOAPAction => sprintf('"%s"', $options{'soap-action'}) ) : (),
),
$content,
);
view all matches for this distribution
view release on metacpan or search on metacpan
subtest 'POST request' => sub {
my $request = $bitpay->prepare_request('invoice', $data);
is $request->method, 'POST', 'method';
is $request->uri, "https://$api_key:\@bitpay.com/api/invoice", 'uri';
is $request->header('content-type'), 'application/json', 'content type';
is $request->header('X-BitPay-Plugin-Info'),
'perl' . $Business::Bitpay::VERSION, 'plugin info header';
is_deeply decode_json($request->content), $data, 'data';
};
view all matches for this distribution
view release on metacpan or search on metacpan
t/03notifications.t view on Meta::CPAN
$POSTED++;
HTTP::Response->new(
200,
'OK',
[
'content-type' => 'application/x-www-form-urlencoded',
'host' => 'localhost'
],
$IS_SUCCESS ? 'VERIFIED' : 'INVALID'
)
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Business/Fixflo/Client.pm view on Meta::CPAN
};
if ( $res->is_success ) {
my $data = $res->content;
if ( $res->headers->header( 'content-type' ) =~ m!application/json! ) {
$data = JSON->new->decode( $data );
}
return $data;
}
view all matches for this distribution
view release on metacpan or search on metacpan
t/business/gocardless/pro.t view on Meta::CPAN
"response_headers": {
"date": "Tue, 30 Jan 2024 00:07:35 GMT",
"pragma": "no-cache",
"server": "Mojolicious (Perl)",
"connection": "close",
"content-type": "application/json;charset=UTF-8",
"cache-control": "no-store",
"x-frame-options": "SAMEORIGIN",
"strict-transport-security": "max-age=31536000; includeSubdomains; preload"
},
"response_headers_content_truncated": false,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Business/OnlinePayment/BitPay/Client.pm view on Meta::CPAN
my $public = $opts{"public"};
my $uri = $self->{apiUri} or croak "no api_uri exists for object";
$uri = $uri . "/" . $path;
my $request = HTTP::Request->new(GET => $uri);
$request->content($jsonc);
$request->header('content-type' => 'application/json');
$request->header('X-BitPay-Plugin-Info' => 'PerlLib');
$request->header('User-Agent' => 'perl-bitpay-client');
unless($public){
my $signature = Business::OnlinePayment::BitPay::KeyUtils::bpSignMessageWithPem($self->{pem}, $uri);
my $pubkey = Business::OnlinePayment::BitPay::KeyUtils::bpGetPublicKeyFromPem($self->{pem});
lib/Business/OnlinePayment/BitPay/Client.pm view on Meta::CPAN
my $request = HTTP::Request->new(POST => $uri);
my $ua = LWP::UserAgent->new;
$ua->ssl_opts( verify_hostname=> 0, SSL_ca_file => Mozilla::CA::SSL_ca_file(), SSL_Version => 'TLSv2', SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE);
my $jsonc = encode_json \%content;
$request->content($jsonc);
$request->header('content-type' => 'application/json');
$request->header('X-BitPay-Plugin-Info' => 'PerlLib');
$request->header('User-Agent' => 'perl-bitpay-client');
if ($content{"token"}){
my $signature = Business::OnlinePayment::BitPay::KeyUtils::bpSignMessageWithPem($self->{pem}, $uri . $jsonc);
my $pubkey = Business::OnlinePayment::BitPay::KeyUtils::bpGetPublicKeyFromPem($self->{pem});
view all matches for this distribution
view release on metacpan or search on metacpan
sub test_can_connect_to_bitpay_api {
my $uri = "https://bitpay.com/tokens";
my $pem = Business::OnlinePayment::BitPay::KeyUtils::bpGeneratePem();
my $sin = Business::OnlinePayment::BitPay::KeyUtils::bpGenerateSinFromPem($pem);
my $request = HTTP::Request->new(POST => $uri);
$request->header('content-type' => 'application/json');
my %content = ('id'=>$sin);
my $jsonc = encode_json \%content;
$request->content($jsonc);
my $ua = LWP::UserAgent->new;
my $response = $ua->request($request);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Business/Shipping/UPS_XML.pm view on Meta::CPAN
my ($page, $response, %reply_headers) = post_https('www.ups.com', '443', '/ups.app/xml/Rate',
make_headers(
'content-type' => 'application/x-www-form-urlencoded',
),
$xml
);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Business/Shipping/RateRequest/Online.pm view on Meta::CPAN
my $request_xml = $self->_gen_request_xml();
#trace( $request_xml );
info("gen_url = " . $self->_gen_url());
my $request = HTTP::Request->new('POST', $self->_gen_url());
$request->header('content-type' => 'application/x-www-form-urlencoded');
$request->header('content-length' => length($request_xml));
$request->content($request_xml);
return ($request);
}
view all matches for this distribution
view release on metacpan or search on metacpan
examples/web/Scripts/jquery-1.4.4.min.js view on Meta::CPAN
b.contentType);if(b.ifModified){c.lastModified[b.url]&&w.setRequestHeader("If-Modified-Since",c.lastModified[b.url]);c.etag[b.url]&&w.setRequestHeader("If-None-Match",c.etag[b.url])}o||w.setRequestHeader("X-Requested-With","XMLHttpRequest");w.setRequ...
c.triggerGlobal(b,"ajaxSend",[w,b]);var L=w.onreadystatechange=function(m){if(!w||w.readyState===0||m==="abort"){J||c.handleComplete(b,w,e,f);J=true;if(w)w.onreadystatechange=c.noop}else if(!J&&w&&(w.readyState===4||m==="timeout")){J=true;w.onreadyst...
c.handleSuccess(b,w,e,f);else c.handleError(b,w,e,p);d||c.handleComplete(b,w,e,f);m==="timeout"&&w.abort();if(b.async)w=null}};try{var g=w.abort;w.abort=function(){w&&Function.prototype.call.call(g,w);L("abort")}}catch(i){}b.async&&b.timeout>0&&setTi...
encodeURIComponent(h)+"="+encodeURIComponent(l)};if(b===B)b=c.ajaxSettings.traditional;if(c.isArray(a)||a.jquery)c.each(a,function(){e(this.name,this.value)});else for(var f in a)da(f,a[f],b,e);return d.join("&").replace(tb,"+")}});c.extend({active:0...
[b,a])},handleComplete:function(a,b,d){a.complete&&a.complete.call(a.context,b,d);a.global&&c.triggerGlobal(a,"ajaxComplete",[b,a]);a.global&&c.active--===1&&c.event.trigger("ajaxStop")},triggerGlobal:function(a,b,d){(a.context&&a.context.url==null?c...
e=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(e)c.etag[b]=e;return a.status===304},httpData:function(a,b,d){var e=a.getResponseHeader("content-type")||"",f=b==="xml"||!b&&e.indexOf("xml")>=0;a=f?a.responseXML:a.responseText;f&&a.documentE...
if(E.ActiveXObject)c.ajaxSettings.xhr=function(){if(E.location.protocol!=="file:")try{return new E.XMLHttpRequest}catch(a){}try{return new E.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}};c.support.ajax=!!c.ajaxSettings.xhr();var ea={},vb=/^(?:toggle...
3),a,b,d);else{d=0;for(var e=this.length;d<e;d++){a=this[d];b=a.style.display;if(!c.data(a,"olddisplay")&&b==="none")b=a.style.display="";b===""&&c.css(a,"display")==="none"&&c.data(a,"olddisplay",qa(a.nodeName))}for(d=0;d<e;d++){a=this[d];b=a.style....
d)}for(a=0;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b,d){var e=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||e?this.each(function(){var f=e?a:...
d,e);if(c.isEmptyObject(a))return this.each(f.complete);return this[f.queue===false?"each":"queue"](function(){var h=c.extend({},f),l,k=this.nodeType===1,o=k&&c(this).is(":hidden"),x=this;for(l in a){var r=c.camelCase(l);if(l!==r){a[r]=a[l];delete a[...
"inline")this.style.display="inline-block";else{this.style.display="inline";this.style.zoom=1}else this.style.display="inline-block"}if(c.isArray(a[l])){(h.specialEasing=h.specialEasing||{})[l]=a[l][1];a[l]=a[l][0]}}if(h.overflow!=null)this.style.ove...
view all matches for this distribution
view release on metacpan or search on metacpan
share/www/static/jquery.js view on Meta::CPAN
requestHeaders[ name ] = value;
}
return this;
},
// Overrides response content-type header
overrideMimeType: function( type ) {
if ( !state ) {
s.mimeType = type;
}
return this;
share/www/static/jquery.js view on Meta::CPAN
}
});
/* Handles responses to an ajax request:
* - sets all responseXXX fields accordingly
* - finds the right dataType (mediates between content-type and expected dataType)
* - returns the corresponding response
*/
function ajaxHandleResponses( s, jqXHR, responses ) {
var firstDataType, ct, finalDataType, type,
contents = s.contents,
share/www/static/jquery.js view on Meta::CPAN
if ( type in responses ) {
jqXHR[ responseFields[type] ] = responses[ type ];
}
}
// Remove auto dataType and get content-type in the process
while( dataTypes[ 0 ] === "*" ) {
dataTypes.shift();
if ( ct === undefined ) {
ct = s.mimeType || jqXHR.getResponseHeader("Content-Type");
}
}
// Check if we're dealing with a known content-type
if ( ct ) {
for ( type in contents ) {
if ( contents[ type ] && contents[ type ].test( ct ) ) {
dataTypes.unshift( type );
break;
view all matches for this distribution
view release on metacpan or search on metacpan
CAM-PDFTaxforms.htm view on Meta::CPAN
<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CAM::PDFTaxforms - CAM::PDF wrapper to also allow editing of checkboxes (ie. for IRS Tax forms).</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:root@localhost" />
</head>
<body>
view all matches for this distribution