view release on metacpan or search on metacpan
* Consistent return value for parses ($type) on failure (issue#52)
* New options for xlscat (--no-empty, --clip=N)
* Support for hidden sheets
0.89 - 02 Jan 2024, H.Merijn Brand
* Auto-use BOM in CSV *files* with xlscat script
* Fix duplicate option letter (typo) (Erix)
* It's 2024
0.88 - 07 Nov 2023, H.Merijn Brand
* Guard $_ globbering from external bitrotted code
view all matches for this distribution
view release on metacpan or search on metacpan
}
},
"develop" : {
"requires" : {
"Pod::Coverage::TrustPod" : "0",
"Test::BOM" : "0",
"Test::More" : "0.88",
"Test::NoTabs" : "0",
"Test::Perl::Critic" : "0",
"Test::Pod" : "1.41",
"Test::Pod::Coverage" : "1.08"
view all matches for this distribution
view release on metacpan or search on metacpan
BOL|5.003007||Viu
BOL_t8_p8|5.033003||Viu
BOL_t8_pb|5.033003||Viu
BOL_tb_p8|5.033003||Viu
BOL_tb_pb|5.033003||Viu
BOM_UTF8|5.025005|5.003007|p
BOM_UTF8_FIRST_BYTE|5.019004||Viu
BOM_UTF8_TAIL|5.019004||Viu
bool|5.003007||Viu
boolSV|5.004000|5.003007|p
boot_core_mro|5.009005||Viu
boot_core_PerlIO|5.007002||Viu
boot_core_UNIVERSAL|5.003007||Viu
#endif
#endif
#if 'A' == 65
#ifndef BOM_UTF8
# define BOM_UTF8 "\xEF\xBB\xBF"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xEF\xBF\xBD"
#endif
#elif '^' == 95
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x73\x66\x73"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x73\x73\x71"
#endif
#elif '^' == 176
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x72\x65\x72"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x72\x72\x70"
#endif
view all matches for this distribution
view release on metacpan or search on metacpan
t/000-report-versions.t view on Meta::CPAN
return $self->_error("Did not provide a string to load");
}
# Byte order marks
# NOTE: Keeping this here to educate maintainers
# my %BOM = (
# "\357\273\277" => 'UTF-8',
# "\376\377" => 'UTF-16BE',
# "\377\376" => 'UTF-16LE',
# "\377\376\0\0" => 'UTF-32LE'
# "\0\0\376\377" => 'UTF-32BE',
# );
if ( $string =~ /^(?:\376\377|\377\376|\377\376\0\0|\0\0\376\377)/ ) {
return $self->_error("Stream has a non UTF-8 BOM");
} else {
# Strip UTF-8 bom if found, we'll just ignore it
$string =~ s/^\357\273\277//;
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Strehler/public/strehler/js/jquery.js view on Meta::CPAN
// The jQuery object is actually just the init constructor 'enhanced'
// Need init if jQuery is called (just allow error to be thrown if not included)
return new jQuery.fn.init( selector, context );
},
// Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE)
rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
// Matches dashed string for camelizing
rmsPrefix = /^-ms-/,
rdashAlpha = /-([\da-z])/gi,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/String/BOM.pm view on Meta::CPAN
package String::BOM;
# use warnings;
# use strict;
$String::BOM::VERSION = '0.3';
# http://www.unicode.org/faq/utf_bom.html#BOM
# http://search.cpan.org/perldoc?PPI::Token::BOM
%String::BOM::bom_types = (
"\x00\x00\xfe\xff" => 'UTF-32',
"\xff\xfe\x00\x00" => 'UTF-32',
"\xfe\xff" => 'UTF-16',
"\xff\xfe" => 'UTF-16',
"\xef\xbb\xbf" => 'UTF-8',
);
sub string_has_bom {
if ( $_[0] =~ m/^(\x00\x00\xfe\xff|\xff\xfe\x00\x00|\xfe\xff|\xff\xfe|\xef\xbb\xbf)/s ) {
return $String::BOM::bom_types{$1};
}
return;
}
sub strip_bom_from_string {
lib/String/BOM.pm view on Meta::CPAN
__END__
=head1 NAME
String::BOM - simple utilities to check for a BOM and strip a BOM
=head1 VERSION
This document describes String::BOM version 0.3
=head1 SYNOPSIS
use String::BOM qw(string_has_bom);
if (my $bom = string_has_bom($string)) {
print "According to the string's BOM it is '$bom'\n";
}
=head1 DESCRIPTION
See if a string or file has a BOM. Remove the BOM from a string or file.
=head2 You [c|sh]ould use PPI to do this is you are looking at a perl file
Something like this modified L<PPI> sysnopsis example should detect and remove a BOM:
use PPI;
my $Document = PPI::Document->new('Module.pm');
# Does it contain a BOM?
if ( $Document->find_any('PPI::Token::BOM') ) {
print "Module contains BOM!!\n";
$Document->prune('PPI::Token::BOM');
$Document->save('Module.pm.bom_free');
}
=head1 INTERFACE
All of these functions can be imported.
=head2 string_has_bom()
Takes a string and returns true (the type of BOM it is) if there is a BOM.
=head2 strip_bom_from_string()
Takes a string and returns a version with the BOM, if any, removed.
=head2 file_has_bom()
Takes a path and returns true (the type of BOM it is) if there is a BOM.
Check $! for file operation failure when it returns false.
=head2 strip_bom_from_file()
Takes a path and removes the BOM, if any, from it.
Check $! for file operation failure when it returns false.
A second argument with a true value will make it leave the original document on the file system with a .bak extension added.
Note: If the file had no BOM and was thus not edited then there is no .bak file.
=head1 DOM TYPES
The DOM data is the same as L<PPI::Token::BOM> which are taken from L<http://www.unicode.org/faq/utf_bom.html#BOM>.
=head1 DIAGNOSTICS
String::BOM throws no warnings or errors
=head1 CONFIGURATION AND ENVIRONMENT
String::BOM requires no configuration files or environment variables.
=head1 DEPENDENCIES
None.
view all matches for this distribution
view release on metacpan or search on metacpan
t/000-report-versions.t view on Meta::CPAN
return $self->_error("Did not provide a string to load");
}
# Byte order marks
# NOTE: Keeping this here to educate maintainers
# my %BOM = (
# "\357\273\277" => 'UTF-8',
# "\376\377" => 'UTF-16BE',
# "\377\376" => 'UTF-16LE',
# "\377\376\0\0" => 'UTF-32LE'
# "\0\0\376\377" => 'UTF-32BE',
# );
if ( $string =~ /^(?:\376\377|\377\376|\377\376\0\0|\0\0\376\377)/ ) {
return $self->_error("Stream has a non UTF-8 BOM");
} else {
# Strip UTF-8 bom if found, we'll just ignore it
$string =~ s/^\357\273\277//;
}
view all matches for this distribution
view release on metacpan or search on metacpan
t/000-report-versions.t view on Meta::CPAN
return $self->_error("Did not provide a string to load");
}
# Byte order marks
# NOTE: Keeping this here to educate maintainers
# my %BOM = (
# "\357\273\277" => 'UTF-8',
# "\376\377" => 'UTF-16BE',
# "\377\376" => 'UTF-16LE',
# "\377\376\0\0" => 'UTF-32LE'
# "\0\0\376\377" => 'UTF-32BE',
# );
if ( $string =~ /^(?:\376\377|\377\376|\377\376\0\0|\0\0\376\377)/ ) {
return $self->_error("Stream has a non UTF-8 BOM");
} else {
# Strip UTF-8 bom if found, we'll just ignore it
$string =~ s/^\357\273\277//;
}
view all matches for this distribution
view release on metacpan or search on metacpan
BOL_t8_p8|5.033003||Viu
BOL_t8_pb|5.033003||Viu
BOL_tb|5.035004||Viu
BOL_tb_p8|5.033003||Viu
BOL_tb_pb|5.033003||Viu
BOM_UTF8|5.025005|5.003007|p
BOM_UTF8_FIRST_BYTE|5.019004||Viu
BOM_UTF8_TAIL|5.019004||Viu
boolSV|5.004000|5.003007|p
boot_core_builtin|5.035007||Viu
boot_core_mro|5.009005||Viu
boot_core_PerlIO|5.007002||Viu
boot_core_UNIVERSAL|5.003007||Viu
#endif
#endif
#if 'A' == 65
#ifndef BOM_UTF8
# define BOM_UTF8 "\xEF\xBB\xBF"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xEF\xBF\xBD"
#endif
#elif '^' == 95
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x73\x66\x73"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x73\x73\x71"
#endif
#elif '^' == 176
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x72\x65\x72"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x72\x72\x70"
#endif
view all matches for this distribution
view release on metacpan or search on metacpan
t/000-report-versions.t view on Meta::CPAN
return $self->_error("Did not provide a string to load");
}
# Byte order marks
# NOTE: Keeping this here to educate maintainers
# my %BOM = (
# "\357\273\277" => 'UTF-8',
# "\376\377" => 'UTF-16BE',
# "\377\376" => 'UTF-16LE',
# "\377\376\0\0" => 'UTF-32LE'
# "\0\0\376\377" => 'UTF-32BE',
# );
if ( $string =~ /^(?:\376\377|\377\376|\377\376\0\0|\0\0\376\377)/ ) {
return $self->_error("Stream has a non UTF-8 BOM");
} else {
# Strip UTF-8 bom if found, we'll just ignore it
$string =~ s/^\357\273\277//;
}
view all matches for this distribution
view release on metacpan or search on metacpan
Debian_CPANTS.txt view on Meta::CPAN
"libfax-hylafax-client-perl", "Fax-Hylafax-Client", "1.02", "0", "0"
"libfcgi-perl", "FCGI", "0.71", "1", "1"
"libfcgi-procmanager-perl", "FCGI-ProcManager", "0.19", "0", "0"
"libfeed-find-perl", "Feed-Find", "0.07", "0", "1"
"libfile-basedir-perl", "File-BaseDir", "0.03", "0", "1"
"libfile-bom-perl", "File-BOM", "0.14", "0", "0"
"libfile-changenotify-perl", "File-ChangeNotify", "0.20", "0", "0"
"libfile-chmod-perl", "File-chmod", "0.32", "0", "0"
"libfile-copy-link-perl", "File-Copy-Link", "0.112", "0", "0"
"libfile-copy-recursive-perl", "File-Copy-Recursive", "0.38", "1", "0"
"libfile-counterfile-perl", "File-CounterFile", "1.04", "0", "0"
view all matches for this distribution
view release on metacpan or search on metacpan
t/000-report-versions.t view on Meta::CPAN
return $self->_error("Did not provide a string to load");
}
# Byte order marks
# NOTE: Keeping this here to educate maintainers
# my %BOM = (
# "\357\273\277" => 'UTF-8',
# "\376\377" => 'UTF-16BE',
# "\377\376" => 'UTF-16LE',
# "\377\376\0\0" => 'UTF-32LE'
# "\0\0\376\377" => 'UTF-32BE',
# );
if ( $string =~ /^(?:\376\377|\377\376|\377\376\0\0|\0\0\376\377)/ ) {
return $self->_error("Stream has a non UTF-8 BOM");
} else {
# Strip UTF-8 bom if found, we'll just ignore it
$string =~ s/^\357\273\277//;
}
view all matches for this distribution
view release on metacpan or search on metacpan
BOL_t8_p8|5.033003||Viu
BOL_t8_pb|5.033003||Viu
BOL_tb|5.035004||Viu
BOL_tb_p8|5.033003||Viu
BOL_tb_pb|5.033003||Viu
BOM_UTF8|5.025005|5.003007|p
BOM_UTF8_FIRST_BYTE|5.019004||Viu
BOM_UTF8_TAIL|5.019004||Viu
boolSV|5.004000|5.003007|p
boot_core_builtin|5.035007||Viu
boot_core_mro|5.009005||Viu
boot_core_PerlIO|5.007002||Viu
boot_core_UNIVERSAL|5.003007||Viu
#endif
#endif
#if 'A' == 65
#ifndef BOM_UTF8
# define BOM_UTF8 "\xEF\xBB\xBF"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xEF\xBF\xBD"
#endif
#elif '^' == 95
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x73\x66\x73"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x73\x73\x71"
#endif
#elif '^' == 176
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x72\x65\x72"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x72\x72\x70"
#endif
view all matches for this distribution
view release on metacpan or search on metacpan
BOL_t8_p8|5.033003||Viu
BOL_t8_pb|5.033003||Viu
BOL_tb|5.035004||Viu
BOL_tb_p8|5.033003||Viu
BOL_tb_pb|5.033003||Viu
BOM_UTF8|5.025005|5.003007|p
BOM_UTF8_FIRST_BYTE|5.019004||Viu
BOM_UTF8_TAIL|5.019004||Viu
boolSV|5.004000|5.003007|p
boot_core_builtin|5.035007||Viu
boot_core_mro|5.009005||Viu
boot_core_PerlIO|5.007002||Viu
boot_core_UNIVERSAL|5.003007||Viu
#endif
#endif
#if 'A' == 65
#ifndef BOM_UTF8
# define BOM_UTF8 "\xEF\xBB\xBF"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xEF\xBF\xBD"
#endif
#elif '^' == 95
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x73\x66\x73"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x73\x73\x71"
#endif
#elif '^' == 176
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x72\x65\x72"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x72\x72\x70"
#endif
view all matches for this distribution
view release on metacpan or search on metacpan
BOL_t8_p8|5.033003||Viu
BOL_t8_pb|5.033003||Viu
BOL_tb|5.035004||Viu
BOL_tb_p8|5.033003||Viu
BOL_tb_pb|5.033003||Viu
BOM_UTF8|5.025005|5.003007|p
BOM_UTF8_FIRST_BYTE|5.019004||Viu
BOM_UTF8_TAIL|5.019004||Viu
boolSV|5.004000|5.003007|p
boot_core_builtin|5.035007||Viu
boot_core_mro|5.009005||Viu
boot_core_PerlIO|5.007002||Viu
boot_core_UNIVERSAL|5.003007||Viu
#endif
#endif
#if 'A' == 65
#ifndef BOM_UTF8
# define BOM_UTF8 "\xEF\xBB\xBF"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xEF\xBF\xBD"
#endif
#elif '^' == 95
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x73\x66\x73"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x73\x73\x71"
#endif
#elif '^' == 176
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x72\x65\x72"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x72\x72\x70"
#endif
view all matches for this distribution
view release on metacpan or search on metacpan
BOL_t8_p8|5.033003||Viu
BOL_t8_pb|5.033003||Viu
BOL_tb|5.035004||Viu
BOL_tb_p8|5.033003||Viu
BOL_tb_pb|5.033003||Viu
BOM_UTF8|5.025005|5.003007|p
BOM_UTF8_FIRST_BYTE|5.019004||Viu
BOM_UTF8_TAIL|5.019004||Viu
boolSV|5.004000|5.003007|p
boot_core_builtin|5.035007||Viu
boot_core_mro|5.009005||Viu
boot_core_PerlIO|5.007002||Viu
boot_core_UNIVERSAL|5.003007||Viu
#endif
#endif
#if 'A' == 65
#ifndef BOM_UTF8
# define BOM_UTF8 "\xEF\xBB\xBF"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xEF\xBF\xBD"
#endif
#elif '^' == 95
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x73\x66\x73"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x73\x73\x71"
#endif
#elif '^' == 176
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x72\x65\x72"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x72\x72\x70"
#endif
view all matches for this distribution
view release on metacpan or search on metacpan
colorer/unicode/Encodings.cpp view on Meta::CPAN
UnsupportedEncodingException::UnsupportedEncodingException(const String& msg){
message = new StringBuffer("UnsupportedEncodingException: ");
message->append(msg);
}
const int Encodings::ENC_UTF8_BOM = 0xBFBBEF;
const int Encodings::ENC_UTF16_BOM = 0xFEFF;
const int Encodings::ENC_UTF16BE_BOM = 0xFFFE;
const int Encodings::ENC_UTF32_BOM = 0x0000FEFF;
const int Encodings::ENC_UTF32BE_BOM = 0xFFFE0000;
const int Encodings::ENC_UTF32BE = (-6);
const int Encodings::ENC_UTF32 = (-5);
const int Encodings::ENC_UTF16BE = (-4);
const int Encodings::ENC_UTF16 = (-3);
const int Encodings::ENC_UTF8 = (-2);
#define ENC_UTF8_BOM ((byte*)&Encodings::ENC_UTF8_BOM)
#define ENC_UTF16_BOM ((byte*)&Encodings::ENC_UTF16_BOM)
#define ENC_UTF16BE_BOM ((byte*)&Encodings::ENC_UTF16BE_BOM)
#define ENC_UTF32_BOM ((byte*)&Encodings::ENC_UTF32_BOM)
#define ENC_UTF32BE_BOM ((byte*)&Encodings::ENC_UTF32BE_BOM)
static byte *bomArray[5] = { ENC_UTF8_BOM, ENC_UTF16_BOM, ENC_UTF16BE_BOM, ENC_UTF32_BOM, ENC_UTF32BE_BOM };
static int bomArraySize[5] = { 3, 2, 2, 4, 4 };
byte* Encodings::getEncodingBOM(int encoding){
if (encoding >= -1 || encoding < -6) throw UnsupportedEncodingException(DString("getEncodingBOM was called for bad encoding"));
return bomArray[-encoding-2];
}
int Encodings::getEncodingBOMSize(int encoding){
if (encoding >= -1 || encoding < -6) throw UnsupportedEncodingException(DString("getEncodingBOM was called for bad encoding"));
return bomArraySize[-encoding-2];
}
int Encodings::isMultibyteEncoding(int encoding){
return (encoding < -1);
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Syntax/Infix/ppport.h view on Meta::CPAN
BOL_t8_p8|5.033003||Viu
BOL_t8_pb|5.033003||Viu
BOL_tb|5.035004||Viu
BOL_tb_p8|5.033003||Viu
BOL_tb_pb|5.033003||Viu
BOM_UTF8|5.025005|5.003007|p
BOM_UTF8_FIRST_BYTE|5.019004||Viu
BOM_UTF8_TAIL|5.019004||Viu
boolSV|5.004000|5.003007|p
boot_core_builtin|5.035007||Viu
boot_core_mro|5.009005||Viu
boot_core_PerlIO|5.007002||Viu
boot_core_UNIVERSAL|5.003007||Viu
lib/Syntax/Infix/ppport.h view on Meta::CPAN
#endif
#endif
#if 'A' == 65
#ifndef BOM_UTF8
# define BOM_UTF8 "\xEF\xBB\xBF"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xEF\xBF\xBD"
#endif
#elif '^' == 95
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x73\x66\x73"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x73\x73\x71"
#endif
#elif '^' == 176
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x72\x65\x72"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x72\x72\x70"
#endif
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Syntax/Kamelon/XML/xonotic-console.xml view on Meta::CPAN
<item> notification_CENTER_DEATH_SELF_TURRET </item>
<item> notification_CENTER_DEATH_SELF_TURRET_EWHEEL </item>
<item> notification_CENTER_DEATH_SELF_TURRET_WALK </item>
<item> notification_CENTER_DEATH_SELF_VH_BUMB_DEATH </item>
<item> notification_CENTER_DEATH_SELF_VH_CRUSH </item>
<item> notification_CENTER_DEATH_SELF_VH_RAPT_BOMB </item>
<item> notification_CENTER_DEATH_SELF_VH_RAPT_DEATH </item>
<item> notification_CENTER_DEATH_SELF_VH_SPID_DEATH </item>
<item> notification_CENTER_DEATH_SELF_VH_SPID_ROCKET </item>
<item> notification_CENTER_DEATH_SELF_VH_WAKI_DEATH </item>
<item> notification_CENTER_DEATH_SELF_VH_WAKI_ROCKET </item>
lib/Syntax/Kamelon/XML/xonotic-console.xml view on Meta::CPAN
<item> notification_DEATH_MURDER_TELEFRAG </item>
<item> notification_DEATH_MURDER_TOUCHEXPLODE </item>
<item> notification_DEATH_MURDER_VH_BUMB_DEATH </item>
<item> notification_DEATH_MURDER_VH_BUMB_GUN </item>
<item> notification_DEATH_MURDER_VH_CRUSH </item>
<item> notification_DEATH_MURDER_VH_RAPT_BOMB </item>
<item> notification_DEATH_MURDER_VH_RAPT_CANNON </item>
<item> notification_DEATH_MURDER_VH_RAPT_DEATH </item>
<item> notification_DEATH_MURDER_VH_SPID_DEATH </item>
<item> notification_DEATH_MURDER_VH_SPID_MINIGUN </item>
<item> notification_DEATH_MURDER_VH_SPID_ROCKET </item>
lib/Syntax/Kamelon/XML/xonotic-console.xml view on Meta::CPAN
<item> notification_DEATH_SELF_TURRET_WALK_GUN </item>
<item> notification_DEATH_SELF_TURRET_WALK_MEELE </item>
<item> notification_DEATH_SELF_TURRET_WALK_ROCKET </item>
<item> notification_DEATH_SELF_VH_BUMB_DEATH </item>
<item> notification_DEATH_SELF_VH_CRUSH </item>
<item> notification_DEATH_SELF_VH_RAPT_BOMB </item>
<item> notification_DEATH_SELF_VH_RAPT_DEATH </item>
<item> notification_DEATH_SELF_VH_SPID_DEATH </item>
<item> notification_DEATH_SELF_VH_SPID_ROCKET </item>
<item> notification_DEATH_SELF_VH_WAKI_DEATH </item>
<item> notification_DEATH_SELF_VH_WAKI_ROCKET </item>
lib/Syntax/Kamelon/XML/xonotic-console.xml view on Meta::CPAN
<item> notification_INFO_DEATH_MURDER_TELEFRAG </item>
<item> notification_INFO_DEATH_MURDER_TOUCHEXPLODE </item>
<item> notification_INFO_DEATH_MURDER_VH_BUMB_DEATH </item>
<item> notification_INFO_DEATH_MURDER_VH_BUMB_GUN </item>
<item> notification_INFO_DEATH_MURDER_VH_CRUSH </item>
<item> notification_INFO_DEATH_MURDER_VH_RAPT_BOMB </item>
<item> notification_INFO_DEATH_MURDER_VH_RAPT_CANNON </item>
<item> notification_INFO_DEATH_MURDER_VH_RAPT_DEATH </item>
<item> notification_INFO_DEATH_MURDER_VH_SPID_DEATH </item>
<item> notification_INFO_DEATH_MURDER_VH_SPID_MINIGUN </item>
<item> notification_INFO_DEATH_MURDER_VH_SPID_ROCKET </item>
lib/Syntax/Kamelon/XML/xonotic-console.xml view on Meta::CPAN
<item> notification_INFO_DEATH_SELF_TURRET_WALK_GUN </item>
<item> notification_INFO_DEATH_SELF_TURRET_WALK_MEELE </item>
<item> notification_INFO_DEATH_SELF_TURRET_WALK_ROCKET </item>
<item> notification_INFO_DEATH_SELF_VH_BUMB_DEATH </item>
<item> notification_INFO_DEATH_SELF_VH_CRUSH </item>
<item> notification_INFO_DEATH_SELF_VH_RAPT_BOMB </item>
<item> notification_INFO_DEATH_SELF_VH_RAPT_DEATH </item>
<item> notification_INFO_DEATH_SELF_VH_SPID_DEATH </item>
<item> notification_INFO_DEATH_SELF_VH_SPID_ROCKET </item>
<item> notification_INFO_DEATH_SELF_VH_WAKI_DEATH </item>
<item> notification_INFO_DEATH_SELF_VH_WAKI_ROCKET </item>
view all matches for this distribution
view release on metacpan or search on metacpan
BOL_t8_p8|5.033003||Viu
BOL_t8_pb|5.033003||Viu
BOL_tb|5.035004||Viu
BOL_tb_p8|5.033003||Viu
BOL_tb_pb|5.033003||Viu
BOM_UTF8|5.025005|5.003007|p
BOM_UTF8_FIRST_BYTE|5.019004||Viu
BOM_UTF8_TAIL|5.019004||Viu
boolSV|5.004000|5.003007|p
boot_core_builtin|5.035007||Viu
boot_core_mro|5.009005||Viu
boot_core_PerlIO|5.007002||Viu
boot_core_UNIVERSAL|5.003007||Viu
#endif
#endif
#if 'A' == 65
#ifndef BOM_UTF8
# define BOM_UTF8 "\xEF\xBB\xBF"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xEF\xBF\xBD"
#endif
#elif '^' == 95
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x73\x66\x73"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x73\x73\x71"
#endif
#elif '^' == 176
#ifndef BOM_UTF8
# define BOM_UTF8 "\xDD\x72\x65\x72"
#endif
#ifndef REPLACEMENT_CHARACTER_UTF8
# define REPLACEMENT_CHARACTER_UTF8 "\xDD\x72\x72\x70"
#endif
view all matches for this distribution
view release on metacpan or search on metacpan
share/2021.csv view on Meta::CPAN
Data-UUID-NCName-0.06_02,2021-01-27T02:17:01,DORIAN,cpan,developer,0.06_02,,Data-UUID-NCName,"Make valid NCName tokens which are also UUIDs."
CSS-Tidy-0.00_02,2021-01-27T03:46:47,BKB,backpan,developer,0.00_02,,CSS-Tidy,"reformat CSS"
RxPerl-Mojo-v6.0.1,2021-01-27T04:43:47,KARJALA,backpan,released,v6.0.1,,RxPerl-Mojo,"Mojo::IOLoop adapter for RxPerl"
App-Greple-xp-0.01,2021-01-27T07:04:04,UTASHIRO,cpan,released,0.01,1,App-Greple-xp,"extended pattern module"
Types-RENEEB-0.09,2021-01-27T07:19:31,RENEEB,latest,released,0.09,,Types-RENEEB,"Several predefined Type::Tiny types"
File-Find-Rule-BOM-0.03,2021-01-27T08:53:15,SKIM,latest,released,0.03,,File-Find-Rule-BOM,"Common rules for searching for BOM in files."
RxPerl-v6.5.0,2021-01-27T08:54:42,KARJALA,backpan,released,v6.5.0,,RxPerl,"an implementation of Reactive Extensions / rxjs for Perl"
App-Greple-xp-0.02,2021-01-27T09:14:33,UTASHIRO,cpan,released,0.02,,App-Greple-xp,"extended pattern module"
File-Find-Rule-DMIDecode-0.05,2021-01-27T10:36:49,SKIM,latest,released,0.05,,File-Find-Rule-DMIDecode,"Common rules for searching for dmidecode files."
File-Find-Rule-DWG-0.03,2021-01-27T10:42:10,SKIM,latest,released,0.03,,File-Find-Rule-DWG,"Common rules for searching DWG files."
Graph-Reader-UnicodeTree-0.03,2021-01-27T12:00:41,SKIM,latest,released,0.03,,Graph-Reader-UnicodeTree,"Perl class for reading a graph from unicode tree text format."
view all matches for this distribution
view release on metacpan or search on metacpan
share/2021.csv view on Meta::CPAN
Data-UUID-NCName-0.06_02,2021-01-27T02:17:01,DORIAN,cpan,developer,0.06_02,,Data-UUID-NCName,"Make valid NCName tokens which are also UUIDs."
CSS-Tidy-0.00_02,2021-01-27T03:46:47,BKB,backpan,developer,0.00_02,,CSS-Tidy,"reformat CSS"
RxPerl-Mojo-v6.0.1,2021-01-27T04:43:47,KARJALA,backpan,released,v6.0.1,,RxPerl-Mojo,"Mojo::IOLoop adapter for RxPerl"
App-Greple-xp-0.01,2021-01-27T07:04:04,UTASHIRO,cpan,released,0.01,1,App-Greple-xp,"extended pattern module"
Types-RENEEB-0.09,2021-01-27T07:19:31,RENEEB,latest,released,0.09,,Types-RENEEB,"Several predefined Type::Tiny types"
File-Find-Rule-BOM-0.03,2021-01-27T08:53:15,SKIM,latest,released,0.03,,File-Find-Rule-BOM,"Common rules for searching for BOM in files."
RxPerl-v6.5.0,2021-01-27T08:54:42,KARJALA,backpan,released,v6.5.0,,RxPerl,"an implementation of Reactive Extensions / rxjs for Perl"
App-Greple-xp-0.02,2021-01-27T09:14:33,UTASHIRO,cpan,released,0.02,,App-Greple-xp,"extended pattern module"
File-Find-Rule-DMIDecode-0.05,2021-01-27T10:36:49,SKIM,latest,released,0.05,,File-Find-Rule-DMIDecode,"Common rules for searching for dmidecode files."
File-Find-Rule-DWG-0.03,2021-01-27T10:42:10,SKIM,latest,released,0.03,,File-Find-Rule-DWG,"Common rules for searching DWG files."
Graph-Reader-UnicodeTree-0.03,2021-01-27T12:00:41,SKIM,latest,released,0.03,,Graph-Reader-UnicodeTree,"Perl class for reading a graph from unicode tree text format."
view all matches for this distribution
view release on metacpan or search on metacpan
share/2023.csv view on Meta::CPAN
"Syntax-Operator-Divides-0.04","2023-07-21T10:32:20","PEVANS","cpan","released","0.04","","Syntax-Operator-Divides","an infix operator for division test"
"Syntax-Operator-ExistsOr-0.02","2023-07-21T10:40:06","PEVANS","latest","released","0.02","","Syntax-Operator-ExistsOr","an infix operator sensitive to hash element existence"
"Syntax-Operator-In-0.06","2023-07-21T10:45:22","PEVANS","cpan","released","0.06","","Syntax-Operator-In","infix element-of-list meta-operator"
"Syntax-Operator-Zip-0.06","2023-07-21T10:48:10","PEVANS","cpan","released","0.06","","Syntax-Operator-Zip","infix operator to compose two lists together"
"Syntax-Operator-Identical-0.01","2023-07-21T11:53:39","PEVANS","cpan","released","0.01","1","Syntax-Operator-Identical","almost certainly a terrible idea; don't use this"
"Dist-Zilla-Plugin-Test-NoBOM-0.003","2023-07-21T13:09:10","GGOLDBACH","latest","released","0.003","","Dist-Zilla-Plugin-Test-NoBOM","Make sure files do not start with BOM"
"App-alios-2.8.7","2023-07-21T14:08:22","ZDENEK","backpan","released","v2.8.7","1","App-alios","tool for quick jumps into iOS app folders"
"CPAN-Meta-Check-0.018","2023-07-21T14:24:52","LEONT","latest","released","0.018","","CPAN-Meta-Check","Verify requirements in a CPAN::Meta object"
"App-alios-2.8.8","2023-07-21T14:43:56","ZDENEK","backpan","released","v2.8.8","","App-alios","tool for quick jumps into iOS app folders"
"Marpa-R2-13.002_000","2023-07-21T15:46:52","JKEGL","cpan","developer","13.002_000","","Marpa-R2","Release 2 of Marpa"
"Future-HTTP-0.16","2023-07-21T17:37:28","CORION","latest","released","0.16","","Future-HTTP","provide the most appropriate HTTP client with a Future API"
view all matches for this distribution
view release on metacpan or search on metacpan
share/2004.csv view on Meta::CPAN
Net-CDP-0.05,2004-06-10T06:47:46,MCHAPMAN,backpan,released,0.05,,Net-CDP,"Cisco Discovery Protocol (CDP) advertiser/listener"
Encode-Registry-0.12,2004-06-10T09:15:29,MHOSKEN,backpan,released,0.12,1,Encode-Registry,"module for processing makefiles"
Encode-UTR22-0.11,2004-06-10T09:15:56,MHOSKEN,backpan,released,0.11,1,Encode-UTR22,"module for processing makefiles"
Encode-TECkit-0.04,2004-06-10T09:18:04,MHOSKEN,latest,released,0.04,1,Encode-TECkit,"module for processing makefiles"
SIL-Shoe-1.18,2004-06-10T09:29:24,MHOSKEN,backpan,released,1.18,1,SIL-Shoe,"module for processing makefiles"
File-BOM-0.02,2004-06-10T09:38:35,MATTLAW,backpan,released,0.02,1,File-BOM,"Utilities for reading Byte Order Marks"
Lingua-CS-Num2Word-0.02,2004-06-10T11:53:54,RVASICEK,cpan,released,0.02,,Lingua-CS-Num2Word,"number to text convertor for czech. Output text is in iso-8859-2 encoding."
Lingua-Num2Word-0.04,2004-06-10T11:54:11,RVASICEK,cpan,released,0.04,,Lingua-Num2Word,"wrapper for number to text conversion modules of various languages in the Lingua:: hierarchy."
Date-Span-1.003,2004-06-10T13:14:59,RJBS,backpan,released,1.003,,Date-Span,"deal with date/time ranges than span multiple dates"
Lingua-Num2Word-0.05,2004-06-10T14:14:23,RVASICEK,cpan,released,0.05,,Lingua-Num2Word,"wrapper for number to text conversion modules of various languages in the Lingua:: hierarchy."
Apache-HEADRegistry-0.01,2004-06-10T14:42:52,GEOFF,latest,released,0.01,1,Apache-HEADRegistry,"Apache::Registry drop-in for HEAD requests"
File-BOM-0.03,2004-06-10T15:14:26,MATTLAW,backpan,released,0.03,,File-BOM,"Utilities for reading Byte Order Marks"
Statistics-Regression-0.15,2004-06-10T16:00:39,ITUB,cpan,released,0.15,1,Statistics-Regression,"weighted linear regression package (line+plane fitting)"
Win32-Exchange_v0.046,2004-06-10T16:55:04,SMANROSS,backpan,released,v0.046,,Win32-Exchange,
PerlMagick-6.02,2004-06-10T17:25:46,JCRISTY,backpan,released,6.02,,PerlMagick,"Perl extension for calling ImageMagick's libMagick methods"
Array-LineReader-1.01,2004-06-10T18:28:28,BHOLSTEN,latest,released,1.01,1,Array-LineReader,"Access lines of a file via an array"
CGI-Wiki-0.52,2004-06-10T18:59:32,KAKE,backpan,released,0.52,,CGI-Wiki,"set up a DBIx::FullTextSearch backend for CGI::Wiki"
share/2004.csv view on Meta::CPAN
XML-TreeBuilder-3.09,2004-06-11T04:40:23,SBURKE,backpan,released,3.09,,XML-TreeBuilder,"XML elements with the same interface as HTML::Element"
Net-Amazon-0.24,2004-06-11T05:33:27,MSCHILLI,backpan,released,0.24,,Net-Amazon,"Framework for accessing amazon.com via SOAP and XML/HTTP"
HTTP-MobileAgent-0.22,2004-06-11T05:56:48,TANIMOTO,cpan,released,0.22,,HTTP-MobileAgent,"HTTP mobile user agent string parser"
LibZip-0.02,2004-06-11T10:06:47,GMPASSOS,cpan,released,0.02,1,LibZip,"Create very low weight self executables. This is the generator of TinyPerl."
libintl-perl-1.11,2004-06-11T11:22:28,GUIDO,backpan,released,1.11,,libintl-perl,"Pure Perl Implementation of Uniforum Message Translation"
File-BOM-0.04,2004-06-11T11:40:33,MATTLAW,backpan,released,0.04,,File-BOM,"Utilities for reading Byte Order Marks"
Lingua-Features-0.3,2004-06-11T11:48:49,GROUSSE,backpan,released,0.3,,Lingua-Features,"Natural languages features"
Lingua-TagSet-0.3,2004-06-11T11:49:05,GROUSSE,backpan,released,0.3,,Lingua-TagSet,"Natural language tagset conversion"
Audio-Wav-0.03,2004-06-11T12:10:28,KGJERDE,cpan,released,0.03,,Audio-Wav,
Class-DBI-Plugin-AbstractCount-0.02,2004-06-11T12:17:39,JCZEUS,backpan,released,0.02,1,Class-DBI-Plugin-AbstractCount,"get COUNT(*) results with abstract SQL"
OpenGuides-0.33_03,2004-06-11T12:32:29,KAKE,backpan,developer,0.33_03,,OpenGuides,"A complete web application for managing a collaboratively-written guide to a city or town."
share/2004.csv view on Meta::CPAN
File-Scan-1.17,2004-06-14T12:58:10,HDIAS,cpan,released,1.17,,File-Scan,"Perl extension for Scanning files for Viruses"
Time-ProseClock-1.01,2004-06-14T13:59:20,GOLD,cpan,released,1.01,,Time-ProseClock,"an alternative to digital and analog formats"
Math-Algebra-Symbols-1.20,2004-06-14T14:41:56,PRBRENAN,cpan,released,1.20,,Math-Algebra-Symbols,"Symbolic Algebra in Pure Perl"
Text-Beautify-0.03,2004-06-14T14:49:33,COG,backpan,released,0.03,,Text-Beautify,"Beautifies text"
Set-Infinite-0.58,2004-06-14T15:32:02,FGLOCK,backpan,released,0.58,,Set-Infinite,"Sets of intervals"
File-BOM-0.05,2004-06-14T15:47:25,MATTLAW,backpan,released,0.05,,File-BOM,"Utilities for reading Byte Order Marks"
Test-AutoBuild-1.0.1,2004-06-14T17:16:00,DANBERR,backpan,released,v1.0.1,,Test-AutoBuild,"Automated build engine"
Net-Z3950-SimpleServer-0.08,2004-06-14T18:39:11,SONDBERG,cpan,released,0.08,,Net-Z3950-SimpleServer,"Perl package used to encode GRS-1 records."
File-Xcopy-0.06,2004-06-14T19:26:23,GEOTIGER,cpan,released,0.06,1,File-Xcopy,"copy files after comparing them."
Oracle-Loader-1.02,2004-06-14T19:28:29,GEOTIGER,cpan,released,1.02,,Oracle-Loader,"Perl extension for creating Oracle PL/SQL and control file."
Algorithm-CheckDigits-0.34,2004-06-14T20:25:47,MAMAWE,backpan,released,0.34,,Algorithm-CheckDigits,"Perl extension to generate and test check digits"
share/2004.csv view on Meta::CPAN
Math-TotalBuilder-1.10,2004-08-23T14:54:26,RJBS,backpan,released,1.10,,Math-TotalBuilder,"build a whole total out of valued pieces"
DBD-SQLite-1.04,2004-08-23T15:14:21,MSERGEANT,backpan,released,1.04,,DBD-SQLite,"Self Contained RDBMS in a DBI Driver"
List-MapList-1.10,2004-08-23T15:24:30,RJBS,backpan,released,1.10,,List-MapList,"map lists through a list of subs, not just one"
Number-Tolerant-1.32,2004-08-23T15:26:22,RJBS,backpan,released,1.32,,Number-Tolerant,"tolerance ranges for inexact numbers"
Archive-Zip-1.13,2004-08-23T15:39:23,NEDKONZ,backpan,released,1.13,,Archive-Zip,"Provide an interface to ZIP archive files."
File-BOM-0.06,2004-08-23T15:58:05,MATTLAW,backpan,released,0.06,,File-BOM,"Utilities for reading Byte Order Marks"
Net-LPR-1.007,2004-08-23T16:20:47,DMLLOYD,latest,released,1.007,,Net-LPR,"Perl extension for printing to RFC1179-compliant print servers."
File-Reader-0.7,2004-08-23T16:41:44,DUPUISARN,backpan,released,0.7,,File-Reader,"Perl extension for Read and write easily text file"
Acme-ProgressBar-1.10,2004-08-23T17:11:03,RJBS,backpan,released,1.10,,Acme-ProgressBar,"a simple progress bar for the patient"
DBD-Multiplex-1.94,2004-08-23T18:38:59,TKISHEL,backpan,released,1.94,,DBD-Multiplex,"A multiplexing driver for the DBI."
Acme-Test-Buffy-0.02,2004-08-23T20:23:16,MARKF,latest,released,0.02,,Acme-Test-Buffy,"example Test::Builder testing module"
view all matches for this distribution
view release on metacpan or search on metacpan
share/2004.csv view on Meta::CPAN
Net-CDP-0.05,2004-06-10T06:47:46,MCHAPMAN,backpan,released,0.05,,Net-CDP,"Cisco Discovery Protocol (CDP) advertiser/listener"
Encode-Registry-0.12,2004-06-10T09:15:29,MHOSKEN,backpan,released,0.12,1,Encode-Registry,"module for processing makefiles"
Encode-UTR22-0.11,2004-06-10T09:15:56,MHOSKEN,backpan,released,0.11,1,Encode-UTR22,"module for processing makefiles"
Encode-TECkit-0.04,2004-06-10T09:18:04,MHOSKEN,latest,released,0.04,1,Encode-TECkit,"module for processing makefiles"
SIL-Shoe-1.18,2004-06-10T09:29:24,MHOSKEN,backpan,released,1.18,1,SIL-Shoe,"module for processing makefiles"
File-BOM-0.02,2004-06-10T09:38:35,MATTLAW,backpan,released,0.02,1,File-BOM,"Utilities for reading Byte Order Marks"
Lingua-CS-Num2Word-0.02,2004-06-10T11:53:54,RVASICEK,cpan,released,0.02,,Lingua-CS-Num2Word,"number to text convertor for czech. Output text is in iso-8859-2 encoding."
Lingua-Num2Word-0.04,2004-06-10T11:54:11,RVASICEK,cpan,released,0.04,,Lingua-Num2Word,"wrapper for number to text conversion modules of various languages in the Lingua:: hierarchy."
Date-Span-1.003,2004-06-10T13:14:59,RJBS,backpan,released,1.003,,Date-Span,"deal with date/time ranges than span multiple dates"
Lingua-Num2Word-0.05,2004-06-10T14:14:23,RVASICEK,cpan,released,0.05,,Lingua-Num2Word,"wrapper for number to text conversion modules of various languages in the Lingua:: hierarchy."
Apache-HEADRegistry-0.01,2004-06-10T14:42:52,GEOFF,latest,released,0.01,1,Apache-HEADRegistry,"Apache::Registry drop-in for HEAD requests"
File-BOM-0.03,2004-06-10T15:14:26,MATTLAW,backpan,released,0.03,,File-BOM,"Utilities for reading Byte Order Marks"
Statistics-Regression-0.15,2004-06-10T16:00:39,ITUB,cpan,released,0.15,1,Statistics-Regression,"weighted linear regression package (line+plane fitting)"
Win32-Exchange_v0.046,2004-06-10T16:55:04,SMANROSS,backpan,released,v0.046,,Win32-Exchange,
PerlMagick-6.02,2004-06-10T17:25:46,JCRISTY,backpan,released,6.02,,PerlMagick,"Perl extension for calling ImageMagick's libMagick methods"
Array-LineReader-1.01,2004-06-10T18:28:28,BHOLSTEN,latest,released,1.01,1,Array-LineReader,"Access lines of a file via an array"
CGI-Wiki-0.52,2004-06-10T18:59:32,KAKE,backpan,released,0.52,,CGI-Wiki,"set up a DBIx::FullTextSearch backend for CGI::Wiki"
share/2004.csv view on Meta::CPAN
XML-TreeBuilder-3.09,2004-06-11T04:40:23,SBURKE,backpan,released,3.09,,XML-TreeBuilder,"XML elements with the same interface as HTML::Element"
Net-Amazon-0.24,2004-06-11T05:33:27,MSCHILLI,backpan,released,0.24,,Net-Amazon,"Framework for accessing amazon.com via SOAP and XML/HTTP"
HTTP-MobileAgent-0.22,2004-06-11T05:56:48,TANIMOTO,cpan,released,0.22,,HTTP-MobileAgent,"HTTP mobile user agent string parser"
LibZip-0.02,2004-06-11T10:06:47,GMPASSOS,cpan,released,0.02,1,LibZip,"Create very low weight self executables. This is the generator of TinyPerl."
libintl-perl-1.11,2004-06-11T11:22:28,GUIDO,backpan,released,1.11,,libintl-perl,"Pure Perl Implementation of Uniforum Message Translation"
File-BOM-0.04,2004-06-11T11:40:33,MATTLAW,backpan,released,0.04,,File-BOM,"Utilities for reading Byte Order Marks"
Lingua-Features-0.3,2004-06-11T11:48:49,GROUSSE,backpan,released,0.3,,Lingua-Features,"Natural languages features"
Lingua-TagSet-0.3,2004-06-11T11:49:05,GROUSSE,backpan,released,0.3,,Lingua-TagSet,"Natural language tagset conversion"
Audio-Wav-0.03,2004-06-11T12:10:28,KGJERDE,cpan,released,0.03,,Audio-Wav,
Class-DBI-Plugin-AbstractCount-0.02,2004-06-11T12:17:39,JCZEUS,backpan,released,0.02,1,Class-DBI-Plugin-AbstractCount,"get COUNT(*) results with abstract SQL"
OpenGuides-0.33_03,2004-06-11T12:32:29,KAKE,backpan,developer,0.33_03,,OpenGuides,"A complete web application for managing a collaboratively-written guide to a city or town."
share/2004.csv view on Meta::CPAN
File-Scan-1.17,2004-06-14T12:58:10,HDIAS,cpan,released,1.17,,File-Scan,"Perl extension for Scanning files for Viruses"
Time-ProseClock-1.01,2004-06-14T13:59:20,GOLD,cpan,released,1.01,,Time-ProseClock,"an alternative to digital and analog formats"
Math-Algebra-Symbols-1.20,2004-06-14T14:41:56,PRBRENAN,cpan,released,1.20,,Math-Algebra-Symbols,"Symbolic Algebra in Pure Perl"
Text-Beautify-0.03,2004-06-14T14:49:33,COG,backpan,released,0.03,,Text-Beautify,"Beautifies text"
Set-Infinite-0.58,2004-06-14T15:32:02,FGLOCK,backpan,released,0.58,,Set-Infinite,"Sets of intervals"
File-BOM-0.05,2004-06-14T15:47:25,MATTLAW,backpan,released,0.05,,File-BOM,"Utilities for reading Byte Order Marks"
Test-AutoBuild-1.0.1,2004-06-14T17:16:00,DANBERR,backpan,released,v1.0.1,,Test-AutoBuild,"Automated build engine"
Net-Z3950-SimpleServer-0.08,2004-06-14T18:39:11,SONDBERG,cpan,released,0.08,,Net-Z3950-SimpleServer,"Perl package used to encode GRS-1 records."
File-Xcopy-0.06,2004-06-14T19:26:23,GEOTIGER,cpan,released,0.06,1,File-Xcopy,"copy files after comparing them."
Oracle-Loader-1.02,2004-06-14T19:28:29,GEOTIGER,cpan,released,1.02,,Oracle-Loader,"Perl extension for creating Oracle PL/SQL and control file."
Algorithm-CheckDigits-0.34,2004-06-14T20:25:47,MAMAWE,backpan,released,0.34,,Algorithm-CheckDigits,"Perl extension to generate and test check digits"
share/2004.csv view on Meta::CPAN
Math-TotalBuilder-1.10,2004-08-23T14:54:26,RJBS,backpan,released,1.10,,Math-TotalBuilder,"build a whole total out of valued pieces"
DBD-SQLite-1.04,2004-08-23T15:14:21,MSERGEANT,backpan,released,1.04,,DBD-SQLite,"Self Contained RDBMS in a DBI Driver"
List-MapList-1.10,2004-08-23T15:24:30,RJBS,backpan,released,1.10,,List-MapList,"map lists through a list of subs, not just one"
Number-Tolerant-1.32,2004-08-23T15:26:22,RJBS,backpan,released,1.32,,Number-Tolerant,"tolerance ranges for inexact numbers"
Archive-Zip-1.13,2004-08-23T15:39:23,NEDKONZ,backpan,released,1.13,,Archive-Zip,"Provide an interface to ZIP archive files."
File-BOM-0.06,2004-08-23T15:58:05,MATTLAW,backpan,released,0.06,,File-BOM,"Utilities for reading Byte Order Marks"
Net-LPR-1.007,2004-08-23T16:20:47,DMLLOYD,latest,released,1.007,,Net-LPR,"Perl extension for printing to RFC1179-compliant print servers."
File-Reader-0.7,2004-08-23T16:41:44,DUPUISARN,backpan,released,0.7,,File-Reader,"Perl extension for Read and write easily text file"
Acme-ProgressBar-1.10,2004-08-23T17:11:03,RJBS,backpan,released,1.10,,Acme-ProgressBar,"a simple progress bar for the patient"
DBD-Multiplex-1.94,2004-08-23T18:38:59,TKISHEL,backpan,released,1.94,,DBD-Multiplex,"A multiplexing driver for the DBI."
Acme-Test-Buffy-0.02,2004-08-23T20:23:16,MARKF,latest,released,0.02,,Acme-Test-Buffy,"example Test::Builder testing module"
view all matches for this distribution
view release on metacpan or search on metacpan
t/000-report-versions.t view on Meta::CPAN
return $self->_error("Did not provide a string to load");
}
# Byte order marks
# NOTE: Keeping this here to educate maintainers
# my %BOM = (
# "\357\273\277" => 'UTF-8',
# "\376\377" => 'UTF-16BE',
# "\377\376" => 'UTF-16LE',
# "\377\376\0\0" => 'UTF-32LE'
# "\0\0\376\377" => 'UTF-32BE',
# );
if ( $string =~ /^(?:\376\377|\377\376|\377\376\0\0|\0\0\376\377)/ ) {
return $self->_error("Stream has a non UTF-8 BOM");
} else {
# Strip UTF-8 bom if found, we'll just ignore it
$string =~ s/^\357\273\277//;
}
view all matches for this distribution
view release on metacpan or search on metacpan
"Data::Compare" : "0",
"Data::DumpXML" : "0",
"Data::Structure::Util" : "0",
"Exception::Class" : "0",
"Exporter::Easy" : "0",
"File::BOM" : "0",
"Geo::Converter::dms2dd" : "0.05",
"Geo::GDAL::FFI" : "0.07",
"Geo::ShapeFile" : "3.00",
"Geo::Shapefile::Writer" : "0",
"Getopt::Long::Descriptive" : "0",
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/CoreList.pm view on Meta::CPAN
'Locale::Maketext::Simple'=> '0.21_01',
'Memoize' => '1.03_01',
'Module::CoreList' => '5.20170114_22',
'Module::CoreList::TieHashDelta'=> '5.20170114_22',
'Module::CoreList::Utils'=> '5.20170114_22',
'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
'Net::Cmd' => '3.05_01',
'Net::Config' => '3.05_01',
'Net::Domain' => '3.05_01',
'Net::FTP' => '3.05_01',
'Net::FTP::A' => '3.05_01',
inc/Module/CoreList.pm view on Meta::CPAN
'Math::BigInt::Trace' => '0.42_01',
'Memoize' => '1.03_01',
'Module::CoreList' => '5.20170114_24',
'Module::CoreList::TieHashDelta'=> '5.20170114_24',
'Module::CoreList::Utils'=> '5.20170114_24',
'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
'Net::Cmd' => '3.08_01',
'Net::Config' => '3.08_01',
'Net::Domain' => '3.08_01',
'Net::FTP' => '3.08_01',
'Net::FTP::A' => '3.08_01',
view all matches for this distribution