view release on metacpan or search on metacpan
corpus/dir/http.html view on Meta::CPAN
<html><head>
<title>Index of /corpus/dist/</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type='text/css'>
table { width:100%%; }
.name { text-align:left; }
.size, .mtime { text-align:right; }
.type { width:11em; }
view all matches for this distribution
view release on metacpan or search on metacpan
t/alien_build_plugin_fetch_promp.t view on Meta::CPAN
fetch sub {
my($build, $url) = @_;
return {
type => 'html',
charset => 'utf-8',
base => $url,
content => '<html/>',
protocol => 'https',
};
};
view all matches for this distribution
view release on metacpan or search on metacpan
t/alien_build_plugin_fetch_promptbeforedownload.t view on Meta::CPAN
fetch sub {
my($build, $url) = @_;
return {
type => 'html',
charset => 'utf-8',
base => $url,
content => '<html/>',
};
};
view all matches for this distribution
view release on metacpan or search on metacpan
cp/codepress/languages/html.js view on Meta::CPAN
{ input : 'h3', output : '<h3>$0</h3>' },
{ input : 'h4', output : '<h4>$0</h4>' },
{ input : 'h5', output : '<h5>$0</h5>' },
{ input : 'h6', output : '<h6>$0</h6>' },
{ input : 'html', output : '<html>\n\t$0\n</html>' },
{ input : 'head', output : '<head>\n\t<meta http-equiv="content-type" content="text/html; charset=utf-8" />\n\t<title>$0</title>\n\t\n</head>' },
{ input : 'img', output : '<img src="$0" alt="" />' },
{ input : 'input', output : '<input name="$0" id="" type="" value="" />' },
{ input : 'label', output : '<label for="$0"></label>' },
{ input : 'legend', output : '<legend>\n\t$0\n</legend>' },
{ input : 'link', output : '<link rel="stylesheet" href="$0" type="text/css" media="screen" charset="utf-8" />' },
{ input : 'base', output : '<base href="$0" />' },
{ input : 'body', output : '<body>\n\t$0\n</body>' },
{ input : 'css', output : '<link rel="stylesheet" href="$0" type="text/css" media="screen" charset="utf-8" />' },
{ input : 'div', output : '<div>\n\t$0\n</div>' },
{ input : 'divid', output : '<div id="$0">\n\t\n</div>' },
{ input : 'dl', output : '<dl>\n\t<dt>\n\t\t$0\n\t</dt>\n\t<dd></dd>\n</dl>' },
{ input : 'fieldset', output : '<fieldset>\n\t$0\n</fieldset>' },
{ input : 'form', output : '<form action="$0" method="" name="">\n\t\n</form>' },
{ input : 'meta', output : '<meta name="$0" content="" />' },
{ input : 'p', output : '<p>$0</p>' },
{ input : 'script', output : '<script type="text/javascript" language="javascript" charset="utf-8">\n\t$0\t\n</script>' },
{ input : 'scriptsrc', output : '<script src="$0" type="text/javascript" language="javascript" charset="utf-8"></script>' },
{ input : 'span', output : '<span>$0</span>' },
{ input : 'table', output : '<table border="$0" cellspacing="" cellpadding="">\n\t<tr><th></th></tr>\n\t<tr><td></td></tr>\n</table>' },
{ input : 'style', output : '<style type="text/css" media="screen">\n\t$0\n</style>' }
]
view all matches for this distribution
view release on metacpan or search on metacpan
src/Source/LibRawLite/dcraw/dcraw.1.html view on Meta::CPAN
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<HTML><HEAD><TITLE>Manpage of dcraw</TITLE>
</HEAD><BODY>
<H1>dcraw</H1>
Section: User Commands (1)<BR>Updated: February 2, 2012<BR><A HREF="#index">Index</A>
<A HREF="../index.html">Return to Main Contents</A><HR>
view all matches for this distribution
view release on metacpan or search on metacpan
test/functional/examples.pl view on Meta::CPAN
my $json = to_json(\@choices, {ascii => 1});
print STDERR "RESPONSE: $json\n";
my $response = HTTP::Response->new(RC_OK);
$response->header(
'Content-Type' => 'text/javascript; charset=ISO-8859-1',
'Cache-Control' => 'no-cache, must-revalidate, max-age=0',
'Pragma' => 'no-cache',
'Expires' => '0');
$response->content($json);
$client_connection->send_response($response);
test/functional/examples.pl view on Meta::CPAN
my $json = to_json($resp, {ascii => 1});
my $response = HTTP::Response->new(RC_OK);
$response->header(
'Content-Type' => 'application/json; charset=ISO-8859-1',
'Cache-Control' => 'no-cache, must-revalidate, max-age=0',
'Pragma' => 'no-cache',
'Expires' => '0');
$response->content( $json );
$client_connection->send_response($response);
}
elsif ($path_info =~ /^.*\.css$/) {
print STDERR "CSS $path_info\n";
my $response = HTTP::Response->new(RC_OK);
$response->header('Content-Type' => 'text/css; charset=utf-8');
$client_connection->send_file("../$path_info");
}
elsif ($path_info =~ /^.*\.(gif|png|jpg|jpeg)$/) {
print STDERR "IMAGE $path_info\n";
$client_connection->send_file_response("../$path_info");
view all matches for this distribution
view release on metacpan or search on metacpan
src/judy-1.0.5/autom4te.cache/output.0 view on Meta::CPAN
main ()
{
/* FIXME: Include the comments suggested by Paul. */
#ifndef __cplusplus
/* Ultrix mips cc rejects this. */
typedef int charset[2];
const charset cs;
/* SunOS 4.1.1 cc rejects this. */
char const *const *pcpcc;
char **ppc;
/* NEC SVR4.0.2 mips cc rejects this. */
struct point {int x, y;};
view all matches for this distribution
view release on metacpan or search on metacpan
0.97005 18 Apr 2008
- Add dependency to Alien::Iconv if we could not detect libiconv and
the user chose to do so
0.97004 12 Apr 2008
- Ask for prefix and charset to use at configure time.
0.97003 06 Apr 2008
- Use LIBS instead of libpath as suggested by srezic
0.97002 05 Apr 2008
view all matches for this distribution
view release on metacpan or search on metacpan
prototype.js view on Meta::CPAN
'Accept': 'text/javascript, text/html, application/xml, text/xml, */*'
};
if (this.method == 'post') {
headers['Content-type'] = this.options.contentType +
(this.options.encoding ? '; charset=' + this.options.encoding : '');
/* Force "Connection: close" for older Mozilla browsers to work
* around a bug where XMLHttpRequest sends an incorrect
* Content-length header. See Mozilla Bugzilla #246651.
*/
view all matches for this distribution
view release on metacpan or search on metacpan
inc/inc_Module-Build/Module/Build/Platform/VMS.pm view on Meta::CPAN
# Need to look up the EFS character set mode. This may become a dynamic
# mode in the future.
sub _efs {
my $efs;
if ($use_feature) {
$efs = VMS::Feature::current("efs_charset");
} else {
my $env_efs = $ENV{'DECC$EFS_CHARSET'} || '';
$efs = $env_efs =~ /^[ET1]/i;
}
return $efs;
view all matches for this distribution
view release on metacpan or search on metacpan
patches/SDL-1.2.14-configure view on Meta::CPAN
main ()
{
/* FIXME: Include the comments suggested by Paul. */
#ifndef __cplusplus
/* Ultrix mips cc rejects this. */
typedef int charset[2];
const charset cs;
/* SunOS 4.1.1 cc rejects this. */
char const *const *pcpcc;
char **ppc;
/* NEC SVR4.0.2 mips cc rejects this. */
struct point {int x, y;};
view all matches for this distribution
view release on metacpan or search on metacpan
src/subversion/CHANGES view on Meta::CPAN
* 'svn co' can take multiple URLs now
* new 'svn ls' command
* new 'svn st --no-ignore' option
* new 'svn --version --quiet' option
* more conservative 'svn help' usage error-message
* more graceful degradation from charset conversion failure
* standardize policy of -q switch behavior
* less intimidating error output
* new SVNParentPath directive for mod_dav_svn <Location>s
* svnlook now correctly displays copied subtrees
* Handbook: additions, tweaks, cleanups, and new French Translation :-)
view all matches for this distribution
view release on metacpan or search on metacpan
SaxonHE9-8-0-7J/doc/index.html view on Meta::CPAN
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Saxonica: XSLT and XQuery Processing: Welcome</title>
<meta name="title" content="Saxonica: Welcome" />
<meta name="description" content="" />
view all matches for this distribution
view release on metacpan or search on metacpan
share/index.html view on Meta::CPAN
<!-- HTML for static distribution bundle build -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Swagger UI</title>
<link rel="stylesheet" type="text/css" href="./swagger-ui.css" >
<link rel="icon" type="image/png" href="./favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="./favicon-16x16.png" sizes="16x16" />
<style>
view all matches for this distribution
view release on metacpan or search on metacpan
inc/inc_Module-Build/Module/Build/Platform/VMS.pm view on Meta::CPAN
# Need to look up the EFS character set mode. This may become a dynamic
# mode in the future.
sub _efs {
my $efs;
if ($use_feature) {
$efs = VMS::Feature::current("efs_charset");
} else {
my $env_efs = $ENV{'DECC$EFS_CHARSET'} || '';
$efs = $env_efs =~ /^[ET1]/i;
}
return $efs;
view all matches for this distribution
view release on metacpan or search on metacpan
share/adapter/ext/ext-base-debug.js view on Meta::CPAN
});
return data.substr(0, data.length - 1);
},
useDefaultHeader : true,
defaultPostHeader : 'application/x-www-form-urlencoded; charset=UTF-8',
useDefaultXhrHeader : true,
defaultXhrHeader : 'XMLHttpRequest',
poll : {},
timeout : {},
conn: {},
view all matches for this distribution
view release on metacpan or search on metacpan
share/browser.html view on Meta::CPAN
<!doctype html>
<head>
<meta charset="utf-8">
<title>The HAL Browser</title>
<link rel="stylesheet" media="screen" href="vendor/css/bootstrap.css" />
<style type="text/css">
body {
padding-top: 60px;
view all matches for this distribution
view release on metacpan or search on metacpan
xgboost/doc/_static/xgboost-theme/layout.html view on Meta::CPAN
<link rel="stylesheet" href="{{ pathto('_static/xgboost.css', 1) }}">
{%- endmacro %}
<html lang="en">
<head>
<meta charset="{{ encoding }}">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{# The above 3 meta tags *must* come first in the head; any other head content
must come *after* these tags. #}
{{ metatags }}
view all matches for this distribution
view release on metacpan or search on metacpan
libcares/ares_platform.c view on Meta::CPAN
{"udt_os", {NULL}, 3900, "udp"},
{"nimsh", {NULL}, 3901, "tcp"},
{"nimsh", {NULL}, 3901, "udp"},
{"nimaux", {NULL}, 3902, "tcp"},
{"nimaux", {NULL}, 3902, "udp"},
{"charsetmgr", {NULL}, 3903, "tcp"},
{"charsetmgr", {NULL}, 3903, "udp"},
{"omnilink-port", {NULL}, 3904, "tcp"},
{"omnilink-port", {NULL}, 3904, "udp"},
{"mupdate", {NULL}, 3905, "tcp"},
{"mupdate", {NULL}, 3905, "udp"},
{"topovista-data", {NULL}, 3906, "tcp"},
view all matches for this distribution
view release on metacpan or search on metacpan
patch/flex-2.6.4.diff view on Meta::CPAN
+"PO-Revision-Date: 2017-06-17 09:26+0300\n"
+"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
+"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Bugs: Report translation errors to the Language-Team address.\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Lokalize 1.5\n"
view all matches for this distribution
view release on metacpan or search on metacpan
patch/msys2-patch-2.7.1.patch view on Meta::CPAN
--- patch-2.7.1/lib/gnulib.mk 2012-09-28 20:40:58 +0400
+++ patch-2.7.1-p/lib/gnulib.mk 2013-02-24 13:46:08 +0400
@@ -572,7 +572,7 @@
case '$(host_os)' in \
darwin[56]*) \
need_charset_alias=true ;; \
- darwin* | cygwin* | mingw* | pw32* | cegcc*) \
+ darwin* | cygwin* | msys* | mingw* | pw32* | cegcc*) \
need_charset_alias=false ;; \
*) \
need_charset_alias=true ;; \
diff -Naur patch-2.7.1/m4/double-slash-root.m4 patch-2.7.1-p/m4/double-slash-root.m4
--- patch-2.7.1/m4/double-slash-root.m4 2012-08-01 06:44:13 +0400
+++ patch-2.7.1-p/m4/double-slash-root.m4 2013-02-24 13:47:12 +0400
@@ -16,7 +16,7 @@
# special semantics and is distinct from /, please report it to
view all matches for this distribution
view release on metacpan or search on metacpan
patches/wxMSW-2.8.10-version.patch view on Meta::CPAN
#define DLL_FLAGS 0x0L
#endif
+// 0x0409 is US English, 0x04b0 is Unicode and 0x0000 is 7 bit ASCII. see
+// http://msdn.microsoft.com/en-us/library/aa381049(VS.85).aspx for the full
+// list of languages and charsets
+#define LANG 0x0409
#ifdef _UNICODE
- #define LANG "04090000"
+ #define CHARSET 0x4b0
+ #define LANG_WITH_CHARSET "040904b0"
view all matches for this distribution
view release on metacpan or search on metacpan
data/registry/vss view on Meta::CPAN
HOME data/vss
# optional info file (displayed by "info;" command in CQP)
INFO data/vss/.info
# corpus properties provide additional information about the corpus:
##:: charset = "latin1" # change if your corpus uses different charset
##:: language = "en" # insert ISO code for language (de, en, fr, ...)
#========================================================================#
##
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CWB/CEQL/String.pm view on Meta::CPAN
$string = new CWB::CEQL::String "my string", "String";
$string .= " is beautiful"; # changes string, but not its type
$string->value("another string"); # $string = "..."; would replace with ordinary string
print $string->value, "\n"; # access string value explicitly
$string->attribute("charset", "ascii"); # declare and/or set user-defined attribute
if ($string->attribute("charset") eq "utf8") { ... }
$new_string = $string->copy; # $new_string = $string; would point to same object
=head1
view all matches for this distribution
view release on metacpan or search on metacpan
GETPWUID_R_PROTO|5.008000|5.008000|Vn
get_quantifier_value|5.033006||Viu
get_re_arg|||xciu
get_re_gclass_nonbitmap_data|5.031011||Viu
get_regclass_nonbitmap_data|5.031011||Viu
get_regex_charset_name|5.031004||Vniu
getservbyname|5.005000||Viu
GETSERVBYNAME_R_HAS_BUFFER|5.008000||Viu
GETSERVBYNAME_R_HAS_PTR|5.008000||Viu
GETSERVBYNAME_R_PROTO|5.008000|5.008000|Vn
getservbyport|5.005000||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
avs_version(license_key)
avs_create_options(limit, timeout, flags)
avs_create_parameters(_interface_version, license, ignored_thresh, chars_before_wildcard, unlimited_wild_words, indexformat, cache_threshold, options, charset, ntiers, nbuckets)
=head1 DESCRIPTION
This set of extensions provides wrappers for most of the C functionalities in
the AltaVista Search software development kit (SDK) except for a few functions
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alvis/Document/Meta.pm view on Meta::CPAN
}
elsif ($name=~/^\s*title\s*$/isgo)
{
$self->{attr}{title}=$value;
}
elsif ($name=~/^\s*detected\s*\-\s*charset\s*$/isgo)
{
$self->{attr}{detectedCharSet}=$value;
}
elsif ($name=~/^\s*Meta\-\s*(.*)$/isgo)
{
lib/Alvis/Document/Meta.pm view on Meta::CPAN
"Special" field names are
url
title
date
detected-charset
=head1 METHODS
=head2 new()
lib/Alvis/Document/Meta.pm view on Meta::CPAN
"Special" field names are
url
title
date
detected-charset
=head2 get_dcs()
Returns all Dublin Core mapped features as
([<name>,<value>],[<name>,<value>],...)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alvis/NLPPlatform.pm view on Meta::CPAN
my $h_config = $_[0];
my $doc_xml = $_[1];
my $descriptor = $_[2];
my $printCollectionHeaderFooter = $_[3];
my $xmlhead="";#"<?xml version=\"1.0\" encoding=\"$charset\"?>\n<documentCollection xmlns=\"http://alvis.info/enriched/\" version=\"1.1\">\n";
my $xmlfoot="";#</documentCollection>\n";
my $doc_hash;
$last_semantic_unit=0;
lib/Alvis/NLPPlatform.pm view on Meta::CPAN
@tab_errors=();
starttimer();
# $doc_xml =~ s/("<\?xml version=\"1.0\" encoding=\"$charset\"?>\n
$doc_hash=Alvis::NLPPlatform::Annotation::load_xml($doc_xml, $h_config);
$time_load+=endtimer();
# Recording computing data (time and entity size)
# init
lib/Alvis/NLPPlatform.pm view on Meta::CPAN
$nlp_host = $config{"NLP_connection"}->{"SERVER"};
$nlp_port = $config{"NLP_connection"}->{"PORT"};
$connection_retry = $config{"alvis_connection"}->{"RETRY_CONNECTION"};
# print STDERR Dumper(\%config);
my $charset = 'UTF-8';
# header and footer
my $xmlhead="<?xml version=\"1.0\" encoding=\"$charset\"?>\n<documentCollection xmlns=\"http://alvis.info/enriched/\" version=\"1.1\">\n";
my $xmlfoot="</documentCollection>\n";
# connection to the crawler
my $pipe = new Alvis::Pipeline::Read(port => $config{"alvis_connection"}->{"HARVESTER_PORT"}, spooldir => $config{"alvis_connection"}->{"SPOOLDIR"},
lib/Alvis/NLPPlatform.pm view on Meta::CPAN
my $doc_id;
my $line;
my $rec_out = "";
my @tab_proc_id;
my $xmlhead=""; #<?xml version=\"1.0\" encoding=\"$charset\"?>\n<documentCollection xmlns=\"http://alvis.info/enriched/\" version=\"1.1\">\n";
my $xmlfoot=""; #</documentCollection>\n";
print STDERR "Starting Server Initialisation ...\n";
# warn "Receiving SIGINT -- Aborting any NL processing\n";
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Amazon/MWS/Uploader.pm view on Meta::CPAN
print "No feed id found, doing a request for $job_id $type\n";
my $feed_content = $self->_slurp_file($record->{feed_file});
my $res;
try {
$res = $self->client
->SubmitFeed(content_type => 'text/xml; charset=utf-8',
FeedType => $names{$type},
FeedContent => $feed_content,
MarketplaceIdList => [$self->marketplace_id],
);
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Amazon/PAApi5/Signature.pm view on Meta::CPAN
my ($self) = @_;
my $aws_headers = $self->aws_headers;
$aws_headers->{'content-encoding'} = 'amz-1.0';
$aws_headers->{'content-type'} = 'application/json; charset=UTF-8';
$aws_headers->{'host'} = $self->host;
$aws_headers->{'x-amz-date'} = $self->x_amz_date;
$aws_headers->{'x-amz-target'} = $self->_build_amz_target;
my $canonical_url = $self->_prepare_canonical_url;
view all matches for this distribution