view release on metacpan or search on metacpan
pad_sv|||
pad_swipe|||
pad_tidy|||
pad_undef|||
parse_body|||
parse_unicode_opts|||
path_is_absolute|||
peep|||
pending_ident|||
perl_alloc_using|||n
perl_alloc|||n
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CORBA/Python/ClassVisitor.pm view on Meta::CPAN
print $FH $self->{indent}," CORBA.marshal(output, 'wstring', self._value)\n";
print $FH "\n";
}
}
else {
print $FH $self->{indent},"class ",$node->{py_name},"(unicode):\n";
print $FH $self->{indent}," \"\"\" Typedef ",$node->{repos_id}," \"\"\"\n";
print $FH "\n";
print $FH $self->{indent}," def __init__(self, val):\n";
print $FH $self->{indent}," if not isinstance(val, basestring):\n";
print $FH $self->{indent}," raise CORBA.SystemException('IDL:CORBA/BAD_PARAM:1.0', 2, CORBA.CORBA_COMPLETED_MAYBE)\n";
if (exists $type->{max}) {
print $FH $self->{indent}," if len(val) > ",$type->{max}->{py_literal},":\n";
print $FH $self->{indent}," raise CORBA.SystemException('IDL:CORBA/BAD_PARAM:1.0', 2, CORBA.CORBA_COMPLETED_MAYBE)\n";
}
print $FH $self->{indent}," unicode.__init__(val)\n";
print $FH "\n";
if ($self->{marshal}) {
print $FH $self->{indent}," def marshal(self, output):\n";
print $FH $self->{indent}," CORBA.marshal(output, 'wstring', self)\n";
print $FH "\n";
lib/CORBA/Python/ClassVisitor.pm view on Meta::CPAN
print $FH $self->{indent}," CORBA.marshal(output, 'wchar', self._value)\n";
print $FH "\n";
}
}
else {
print $FH $self->{indent},"class ",$node->{py_name},"(unicode):\n";
print $FH $self->{indent}," \"\"\" Typedef ",$node->{repos_id}," \"\"\"\n";
print $FH "\n";
print $FH $self->{indent}," def __init__(self, val):\n";
print $FH $self->{indent}," CORBA.check('wchar', val)\n";
print $FH $self->{indent}," unicode.__init__(val)\n";
print $FH "\n";
if ($self->{marshal}) {
print $FH $self->{indent}," def marshal(self, output):\n";
print $FH $self->{indent}," CORBA.marshal(output, 'wchar', self)\n";
print $FH "\n";
view all matches for this distribution
view release on metacpan or search on metacpan
omnithreads/ppport.h view on Meta::CPAN
pad_sv||5.009004|
pad_swipe|||
pad_tidy|||
pad_undef|||
parse_body|||
parse_unicode_opts|||
path_is_absolute|||n
peep|||
pending_ident|||
perl_alloc_using|||n
perl_alloc|||n
view all matches for this distribution
view release on metacpan or search on metacpan
corpus/dists/B-C.changes view on Meta::CPAN
Fixed HvAUX init. Previously only with magic hashes, now on all OOK hashes (OOK+SHAREKEYS)
e.g. %warning::Bits
Added support for new PADLIST type since 5.17.4 (with xpadl_id) and 5.17.6 (without)
$^X returns now the real executable name, not just perl or perl.exe
Adjust COW string lengths to hold the COW_REFCNT byte at the end
Fix unicode string CUR and LEN (#142, #162)
Fix unicode hashkeys (HEK) mostly (#200), but not yet testc.sh 2001 (compile-time
stored utf8 heks)
Save HvTOTALKEYS at run-time as max added to the number of run-time added keys (#178)
Fix UV uvuformat on 32bit -Duse64bitint (#145)
op_pmreplstart is now run-time initialized >= 5.10 (#160)
Fixed special usage of magic vars @-,@+,%+,$-,$! (#90)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CPAN/Index.pm view on Meta::CPAN
=head1 TO DO
- Write the index file download code
- Verify CPAN::Index handles index unicode data properly
- A bunch of other things...
=head1 SUPPORT
view all matches for this distribution
view release on metacpan or search on metacpan
t/tml-local/yaml-roundtrip/quoting.tml
t/tml-local/yaml-roundtrip/scalar.tml
t/tml-local/yaml-roundtrip/sequence.tml
t/tml-spec/basic-data.tml
t/tml-spec/multiline.tml
t/tml-spec/unicode.tml
t/tml-world/Acme-Time-Baby.tml
t/tml-world/Data-Swap.tml
t/tml-world/Games-Nintendo-Wii-Mii.tml
t/tml-world/HTML-WebDAO.tml
t/tml-world/ITS-SIN-FIDS-Content-XML.tml
view all matches for this distribution
view release on metacpan or search on metacpan
t/data-test/preserve-release-status.yml
t/data-test/provides-version-missing.json
t/data-test/resources.yml
t/data-test/restricted-2.json
t/data-test/restrictive-1_4.yml
t/data-test/unicode.yml
t/data-test/version-not-normal.json
t/data-test/version-ranges-1_4.yml
t/data-test/version-ranges-2.json
t/data-test/x_deprecated-META.json
t/data-valid/1122575719-META.yml
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CPAN/MetaCurator/Util/Database.pm view on Meta::CPAN
my(%attributes) =
(
AutoCommit => $$config{AutoCommit},
mysql_enable_utf8 => $$config{mysql_enable_utf8}, #Ignored if not using MySQL.
RaiseError => $$config{RaiseError},
sqlite_unicode => $$config{sqlite_unicode}, #Ignored if not using SQLite.
);
my(@dsn) = split('=', $$config{dsn});
$dsn[1] = File::Spec -> catfile($self -> home_path, $dsn[1]);
$dsn[0] = "$dsn[0]=$dsn[1]";
view all matches for this distribution
view release on metacpan or search on metacpan
Change: 254df68f3034af55247f547f26f6e0096137a011
Author: Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org>
Date : 2017-03-14 00:55:21 +0000
Some issue with unicode filename had to be fixed
Change: 908006eb7563d23443bb34bdb73457fa3b68ac99
Author: Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org>
Date : 2017-03-14 00:50:22 +0000
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Pod/Markdown.pm view on Meta::CPAN
if ($section){
# TODO: sites/pod formatters differ on how to transform the section
# TODO: we could do it according to specified url prefix or pod formatter
# TODO: or allow a coderef?
# TODO: (Pod::Simple::XHTML:idify() for metacpan)
# TODO: (Pod::Simple::HTML section_escape/unicode_escape_url/section_url_escape for s.c.o.)
$url .= '#' . $section;
}
}
# if we don't know how to handle the url just print the pod back out
view all matches for this distribution
view release on metacpan or search on metacpan
t/share/report/perl5/invalid-version-v.json view on Meta::CPAN
"warnings": 2,
"duration": 8,
"output": {
"configure": "Checking if your kit is complete...\n Looks good\n Generating a Unix-style Makefile\n Writing Makefile for Data::Printer\n Writing MYMETA.yml and MYMETA.json",
"build": "cp lib/Data/Printer/Filter/DateTime.pm blib/lib/Data/Printer/Filter/DateTime.pm\n cp lib/Data/Printer/Filter/DB.pm blib/lib/Data/Printer/Filter/DB.pm\n cp lib/Data/Printer.pm blib/lib/Data/Printer.pm\n cp lib/Data/Printer/Filter/Diges...
"test": "PERL_DL_NONLAZY=1 \"/Users/garu/.plenv/versions/5.24.1/bin/perl5.24.1\" \"-MExtUtils::Command::MM\" \"-MTest::Harness\" \"-e\" \"undef *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')\" t/*.t t/00-load.t ................
"install": "Manifying 6 pod documents\n Installing /Users/garu/.plenv/versions/5.24.1/lib/perl5/site_perl/5.24.1/Data/Printer.pm\n Installing /Users/garu/.plenv/versions/5.24.1/lib/perl5/site_perl/5.24.1/Data/Printer/Filter.pm\n Installing /Use...
}
},
"distribution": {
"name": "Data-Printer",
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CPAN/Testers/TailLog/Result.pm view on Meta::CPAN
CPAN::Testers::TailLog::Result - A single log entry from
metabase.cpantesters.org
=head1 DESCRIPTION
All propteries in this object are verbatim strings from upstream, with unicode
text (not bytes) where relevant.
=head1 METHODS
=head2 accepted
view all matches for this distribution
view release on metacpan or search on metacpan
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
DROP TABLE IF EXISTS `access`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `access` (
`accessid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`accessname` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`accesslevel` int(4) DEFAULT NULL,
PRIMARY KEY (`accessid`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `access`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
`folderid` int(10) unsigned NOT NULL DEFAULT '0',
`groupid` int(10) unsigned DEFAULT '0',
`userid` int(10) unsigned DEFAULT '0',
`accessid` int(4) DEFAULT NULL,
PRIMARY KEY (`aclid`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `acls`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
DROP TABLE IF EXISTS `folders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `folders` (
`folderid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`parent` int(10) DEFAULT NULL,
`accessid` int(10) NOT NULL DEFAULT '5',
PRIMARY KEY (`folderid`),
KEY `IXPATH` (`path`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `folders`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
DROP TABLE IF EXISTS `groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `groups` (
`groupid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`groupname` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`master` int(2) DEFAULT '0',
`member` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`groupid`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `groups`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
DROP TABLE IF EXISTS `hits`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hits` (
`pageid` int(11) NOT NULL DEFAULT '0',
`area` varchar(32) COLLATE utf8_unicode_ci DEFAULT '',
`photoid` int(11) NOT NULL DEFAULT '0',
`counter` int(11) DEFAULT NULL,
`query` varchar(255) COLLATE utf8_unicode_ci DEFAULT '',
`createdate` varchar(255) COLLATE utf8_unicode_ci DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `images`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
DROP TABLE IF EXISTS `images`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `images` (
`imageid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`tag` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`link` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`type` int(4) DEFAULT NULL,
`href` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`dimensions` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`imageid`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `images`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
DROP TABLE IF EXISTS `imagestock`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `imagestock` (
`stockid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`stockid`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `imagestock`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
DROP TABLE IF EXISTS `imetadata`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `imetadata` (
`imageid` int(10) unsigned NOT NULL DEFAULT '0',
`tag` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`imageid`,`tag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `ipindex`
--
DROP TABLE IF EXISTS `ipindex`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ipindex` (
`ipaddr` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`author` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`type` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`ipaddr`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `ixaddress`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
CREATE TABLE `ixaddress` (
`userid` int(10) unsigned NOT NULL,
`addressid` int(10) unsigned NOT NULL,
PRIMARY KEY (`userid`,`addressid`),
KEY `IXADDR` (`addressid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `ixfolderrealm`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ixfolderrealm` (
`folderid` int(10) unsigned NOT NULL DEFAULT '0',
`realmid` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`folderid`,`realmid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ixfolderrealm`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ixmarked` (
`id` int(10) unsigned NOT NULL,
`addressid` int(10) unsigned NOT NULL,
`address` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`cpanid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`markdate` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IXADDR` (`addressid`),
KEY `IXPAUSE` (`cpanid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `ixtester`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
DROP TABLE IF EXISTS `ixtester`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ixtester` (
`userid` int(10) unsigned NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`confirm` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`confirmed` int(2) DEFAULT '0',
PRIMARY KEY (`userid`,`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `ixusergroup`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
`indexid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` int(1) unsigned NOT NULL DEFAULT '0',
`linkid` int(10) unsigned NOT NULL DEFAULT '0',
`groupid` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`indexid`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ixusergroup`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `menus` (
`menuid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`typeid` int(10) unsigned DEFAULT '1',
`realmid` int(10) unsigned NOT NULL DEFAULT '0',
`title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`menuid`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `menus`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
CREATE TABLE `optimages` (
`optionid` int(10) unsigned NOT NULL DEFAULT '0',
`typeid` int(10) unsigned NOT NULL DEFAULT '1',
`imageid` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`optionid`,`typeid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `options`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `options` (
`optionid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`menuid` int(10) unsigned NOT NULL DEFAULT '0',
`orderno` int(2) DEFAULT '0',
`text` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`href` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`optionid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `realms`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
DROP TABLE IF EXISTS `realms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `realms` (
`realmid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`realm` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`command` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`realmid`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `realms`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sessions` (
`sessionid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`labyrinth` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`userid` int(10) unsigned NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`realm` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`folderid` int(10) unsigned NOT NULL DEFAULT '0',
`optionid` int(10) unsigned NOT NULL DEFAULT '0',
`timeout` int(11) unsigned NOT NULL DEFAULT '0',
`langcode` char(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'en',
`query` blob,
PRIMARY KEY (`sessionid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `updates`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
DROP TABLE IF EXISTS `updates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `updates` (
`upid` int(11) NOT NULL AUTO_INCREMENT,
`area` varchar(8) COLLATE utf8_unicode_ci DEFAULT '',
`pageid` int(11) DEFAULT NULL,
`now` int(11) DEFAULT NULL,
`pagets` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`upid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `users`
--
vhost/cgi-bin/db/cpanadmin-schema.sql view on Meta::CPAN
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`userid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`accessid` int(10) unsigned NOT NULL DEFAULT '1',
`imageid` int(10) unsigned NOT NULL DEFAULT '1',
`nickname` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`realname` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`realm` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locked` int(2) DEFAULT '1',
`aboutme` blob,
PRIMARY KEY (`userid`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
view all matches for this distribution
view release on metacpan or search on metacpan
vhost/cgi-bin/db/cpanblog-base.sql view on Meta::CPAN
DROP TABLE IF EXISTS `folders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `folders` (
`folderid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`parent` int(10) DEFAULT NULL,
`accessid` int(10) NOT NULL DEFAULT '5',
PRIMARY KEY (`folderid`),
KEY `IXPATH` (`path`)
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `folders`
--
view all matches for this distribution
view release on metacpan or search on metacpan
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
CREATE TABLE `access` (
`accessid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`accessname` varchar(255) DEFAULT NULL,
`accesslevel` int(4) DEFAULT NULL,
PRIMARY KEY (`accessid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `access`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
`folderid` int(10) unsigned NOT NULL DEFAULT '0',
`groupid` int(10) unsigned DEFAULT '0',
`userid` int(10) unsigned DEFAULT '0',
`accessid` int(4) DEFAULT NULL,
PRIMARY KEY (`aclid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `acls`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
DROP TABLE IF EXISTS `folders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `folders` (
`folderid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`parent` int(10) DEFAULT NULL,
`accessid` int(10) NOT NULL DEFAULT '5',
PRIMARY KEY (`folderid`),
KEY `IXPATH` (`path`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `folders`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
`groupid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`groupname` varchar(255) DEFAULT NULL,
`master` int(2) DEFAULT '0',
`member` varchar(255) DEFAULT NULL,
PRIMARY KEY (`groupid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `groups`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
`photoid` int(11) NOT NULL DEFAULT '0',
`counter` int(11) DEFAULT NULL,
`area` varchar(32) DEFAULT '',
`query` varchar(255) DEFAULT '',
`createdate` varchar(255) DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `images`
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
`link` varchar(255) DEFAULT NULL,
`type` int(4) DEFAULT NULL,
`href` varchar(255) DEFAULT NULL,
`dimensions` varchar(255) DEFAULT NULL,
PRIMARY KEY (`imageid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `images`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
CREATE TABLE `imagestock` (
`stockid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`path` varchar(255) DEFAULT NULL,
PRIMARY KEY (`stockid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `imagestock`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `imetadata` (
`imageid` int(10) unsigned NOT NULL DEFAULT '0',
`tag` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`imageid`,`tag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `imetadata`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
CREATE TABLE `ipindex` (
`ipaddr` varchar(255) NOT NULL DEFAULT '',
`author` varchar(255) NOT NULL DEFAULT '',
`type` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`ipaddr`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ipindex`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ixfolderrealm` (
`folderid` int(10) unsigned NOT NULL DEFAULT '0',
`realmid` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`folderid`,`realmid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ixfolderrealm`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
`indexid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` int(1) unsigned NOT NULL DEFAULT '0',
`linkid` int(10) unsigned NOT NULL DEFAULT '0',
`groupid` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`indexid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ixusergroup`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
`menuid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`typeid` int(10) unsigned DEFAULT '1',
`realmid` int(10) unsigned NOT NULL DEFAULT '0',
`title` varchar(255) DEFAULT NULL,
PRIMARY KEY (`menuid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `menus`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
CREATE TABLE `optimages` (
`optionid` int(10) unsigned NOT NULL DEFAULT '0',
`typeid` int(10) unsigned NOT NULL DEFAULT '1',
`imageid` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`optionid`,`typeid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `optimages`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
`menuid` int(10) unsigned NOT NULL DEFAULT '0',
`orderno` int(2) DEFAULT '0',
`text` varchar(255) DEFAULT NULL,
`href` varchar(255) DEFAULT NULL,
PRIMARY KEY (`optionid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `options`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
CREATE TABLE `prefs_authors` (
`pauseid` varchar(255) NOT NULL,
`active` int(2) DEFAULT '0',
`lastlogin` varchar(255) DEFAULT NULL,
PRIMARY KEY (`pauseid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `prefs_distributions`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
`version` varchar(1000) DEFAULT 'LATEST',
`patches` int(1) DEFAULT '0',
`perl` varchar(1000) DEFAULT 'ALL',
`platform` varchar(1000) DEFAULT 'ALL',
PRIMARY KEY (`pauseid`,`distribution`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `realms`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
`realmid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`realm` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`command` varchar(255) DEFAULT NULL,
PRIMARY KEY (`realmid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `realms`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
`optionid` int(10) unsigned NOT NULL DEFAULT '0',
`timeout` int(11) unsigned NOT NULL DEFAULT '0',
`langcode` char(2) NOT NULL DEFAULT 'en',
`query` blob,
PRIMARY KEY (`sessionid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `updates`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
`area` varchar(8) DEFAULT '',
`pageid` int(11) DEFAULT NULL,
`now` int(11) DEFAULT NULL,
`pagets` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`upid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `users`
--
vhost/cgi-bin/db/cpanprefs-master.sql view on Meta::CPAN
`realm` varchar(255) DEFAULT NULL,
`password` varchar(255) DEFAULT NULL,
`aboutme` blob,
`search` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
view all matches for this distribution
view release on metacpan or search on metacpan
vhost/cgi-bin/db/cpanreps-base.sql view on Meta::CPAN
DROP TABLE IF EXISTS `folders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `folders` (
`folderid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`parent` int(10) DEFAULT NULL,
`accessid` int(10) NOT NULL DEFAULT '5',
PRIMARY KEY (`folderid`),
KEY `IXPATH` (`path`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `folders`
--
view all matches for this distribution
view release on metacpan or search on metacpan
vhost/cgi-bin/db/cpanwiki-base.sql view on Meta::CPAN
DROP TABLE IF EXISTS `folders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `folders` (
`folderid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`parent` int(10) DEFAULT NULL,
`accessid` int(10) NOT NULL DEFAULT '5',
PRIMARY KEY (`folderid`),
KEY `IXPATH` (`path`)
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `folders`
--
view all matches for this distribution
view release on metacpan or search on metacpan
t/data/build.cloudweights.log view on Meta::CPAN
t/20-unit/Type-Utils/dwim-mouse.t .................. skipped: Test requires module 'Mouse' but it's not found
t/20-unit/Type-Utils/match-on-type.t ............... ok
t/20-unit/Types-Common-Numeric/basic.t ............. ok
t/20-unit/Types-Common-String/basic.t .............. ok
t/20-unit/Types-Common-String/coerce.t ............. ok
t/20-unit/Types-Common-String/unicode.t ............ ok
t/20-unit/Types-Standard/basic.t ................... ok
t/20-unit/Types-Standard/deep-coercions.t .......... ok
t/20-unit/Types-Standard/mxtmlb-alike.t ............ ok
t/20-unit/Types-Standard/optlist.t ................. ok
t/20-unit/Types-Standard/overload.t ................ ok
view all matches for this distribution
view release on metacpan or search on metacpan
2007-12-09 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
* Test::Harness 3.04 failing when Encode not installed?
t/unicode.........................
# Failed test 'Unicode smiley (script): value for description matches'
# at t/unicode.t line 111.
Wide character in print at t/lib/Test/Builder.pm line 1266.
# got: 'Everything is fine âº'
# expected: 'Everything is fine %Gâº%@'
# Looks like you failed 1 test of 20.
Dubious, test returned 1 (wstat 256, 0x100)
#!perl -t
?? What was the exact error message again?
t/04unicode......................Can't locate XML/XPathScript.pm in @INC (@INC contains: /home/src/perl/repoperls/installed-perls/perl/pztfddi/perl-5.8.0@32354/lib/5.10.0/i686-linux-64int /home/src/perl/repoperls/installed-perls/perl/pztfddi/perl-5.8...
BEGIN failed--compilation aborted at t/04unicode.t line 7.
# Looks like your test died before it could output anything.
Dubious, test returned 255 (wstat 65280, 0xff00)
Failed 11/11 subtests
So it is the right perl being called but not the module in blib being
added a sleep.
2007-05-01 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
* The UTF-8 HOWTO is by Bruno Haible. Markus Kuhn wrote
http://www.cl.cam.ac.uk/~mgk25/unicode.html which is a FAQ. The latter
contains 'How should the UTF-8 mode be activated?'
* Todo: Jesse Vincent #26840
2007-04-30 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
Fixed in SVK rev. 2112 or so.
* Todo: XUL::Node is some POE stuff and asks two questions
* rxvt-unicode current version is @ 8.2, debian's is @ 7.9
* Todo: post a working patch against Danga-Socket based on Dan Kogai's
posting
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-12/msg00187.html
Giving up on 19096, trying 19523.
Same thing but I realise that I can skip Scalar-List-Utils. Now I need
to install LWP with notest. And XML::Atom fails because 'Undefined
subroutine &utf8::is_utf8 called at t/18-unicode.t line 17.' Use notest
again. And XML-Feed's test still fails with
t/01-parse............NOK 44/72
# Failed test at t/01-parse.t line 59.
# 'Hello!...'
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CPANPLUS/YACSmoke/IniFiles.pm view on Meta::CPAN
}
}
# If there's a UTF BOM (Byte-Order-Mark) in the first
# character of the first line then remove it before processing
# (http://www.unicode.org/unicode/faq/utf_bom.html#22)
s/^//;
return $_;
} else {
local $/=$self->{line_ends};
view all matches for this distribution
view release on metacpan or search on metacpan
inc/bundle/JSON/PP.pm view on Meta::CPAN
my $invalid_char_re;
BEGIN {
$invalid_char_re = "[";
for my $i (0 .. 0x01F, 0x22, 0x5c) { # '/' is ok
$invalid_char_re .= quotemeta chr utf8::unicode_to_native($i);
}
$invalid_char_re = qr/$invalid_char_re]/;
}
inc/bundle/JSON/PP.pm view on Meta::CPAN
} unpack('U*', $_[0])
);
}
sub _encode_surrogates { # from perlunicode
my $uni = $_[0] - 0x10000;
return ($uni / 0x400 + 0xD800, $uni % 0x400 + 0xDC00);
}
inc/bundle/JSON/PP.pm view on Meta::CPAN
}
my $hex = hex( $u );
if ( chr $u =~ /[[:^ascii:]]/ ) {
$is_utf8 = 1;
$s .= _decode_unicode($u) || next;
}
else {
$s .= chr $hex;
}
}
inc/bundle/JSON/PP.pm view on Meta::CPAN
return $is_dec ? $v/1.0 : 0+$v;
}
# Compute how many bytes are in the longest legal official Unicode
# character
my $max_unicode_length = do {
no warnings 'utf8';
chr 0x10FFFF;
};
utf8::encode($max_unicode_length);
$max_unicode_length = length $max_unicode_length;
sub is_valid_utf8 {
# Returns undef (setting $utf8_len to 0) unless the next bytes in $text
# comprise a well-formed UTF-8 encoded character, in which case,
inc/bundle/JSON/PP.pm view on Meta::CPAN
my $start_point = substr($text, $at - 1);
# Look no further than the maximum number of bytes in a single
# character
my $limit = $max_unicode_length;
$limit = length($start_point) if $limit > length($start_point);
# Find the number of bytes comprising the first character in $text
# (without having to know the details of its internal representation).
# This loop will iterate just once on well-formed input.
inc/bundle/JSON/PP.pm view on Meta::CPAN
}
} # PARSE
sub _decode_surrogates { # from perlunicode
my $uni = 0x10000 + (hex($_[0]) - 0xD800) * 0x400 + (hex($_[1]) - 0xDC00);
my $un = pack('U*', $uni);
utf8::encode( $un );
return $un;
}
sub _decode_unicode {
my $un = pack('U', hex shift);
utf8::encode( $un );
return $un;
}
view all matches for this distribution
view release on metacpan or search on metacpan
cpan-security-advisory.json view on Meta::CPAN
{"dists":{"SPVM-Resource-Zlib-V1_2_11":{"advisories":[{"severity":"high","reported":"2022-03-25","fixed_versions":[],"affected_versions":[">=0.01,<=0.02"],"references":["https://rt.cpan.org/Ticket/Display.html?id=143579","https://www.openwall.com/lis...
view all matches for this distribution
view release on metacpan or search on metacpan
include/boost/config/compiler/clang.hpp view on Meta::CPAN
#if !__has_feature(cxx_alias_templates)
# define BOOST_NO_CXX11_TEMPLATE_ALIASES
#endif
#if !__has_feature(cxx_unicode_literals)
# define BOOST_NO_CXX11_UNICODE_LITERALS
#endif
#if !__has_feature(cxx_variadic_templates)
# define BOOST_NO_CXX11_VARIADIC_TEMPLATES
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CPU/x86_64/InstructionWriter.pm view on Meta::CPAN
$writer->data(\%set);
Append a string of literal bytes to the instruction stream.
If the value is a hashref, each key of the hashref will be added, and each value of the hashref
will be a label that is anchored to the start of those bytes. If your hashref keys are unicode
strings, use L<data_str> instead. This also looks for opportunities to overlap strings if one
is a subset of another.
=head2 data_i8, data_i16, data_i32, data_i64
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CSS/Adaptor/Whitelist.pm view on Meta::CPAN
'letter-spacing' => qr/^(?:normal\b|$re_ndim)$/,
'word-spacing' => qr/^(?:normal\b|$re_ndim)$/,
'caption-side' => list2hash(qw(top bottom)),
'empty-cells' => list2hash(qw(hide show)),
'table-layout' => list2hash(qw(auto fixed)),
'unicode-bidi' => list2hash(qw(normal embed bidi-override)),
'vertical-align' => qr/^(?: $re_ndim | baseline \b | middle \b | su(?:b|per) \b | (?:text-)?(?:top|bottom) \b )$/x,
'white-space' => list2hash(qw(normal nowrap pre pre-line pre-wrap)),
'z-index' => qr/^(?: auto \b | -?\d+ \b )$/x,
orphans => qr/^\d+\b$/,
view all matches for this distribution
view release on metacpan or search on metacpan
Debian_CPANTS.txt view on Meta::CPAN
"libtree-dagnode-perl", "Tree-DAG_Node", "1.06", "0", "0"
"libtree-redblack-perl", "Tree-RedBlack", "0.5", "0", "0"
"libtree-simple-perl", "Tree-Simple", "1.18", "0", "0"
"libtree-simple-visitorfactory-perl", "Tree-Simple-VisitorFactory", "0.10", "0", "0"
"libtry-tiny-perl", "Try-Tiny", "0.02", "0", "0"
"libunicode-map-perl", "Unicode-Map", "0.112", "1", "0"
"libunicode-map8-perl-dfsg", "Unicode-Map8", "0.12", "0", "0"
"libunicode-maputf8-perl", "Unicode-MapUTF8", "1.11", "0", "0"
"libunicode-string-perl", "Unicode-String", "2.09", "0", "0"
"libuniversal-can-perl", "UNIVERSAL-can", "1.15", "0", "0"
"libuniversal-isa-perl", "UNIVERSAL-isa", "1.02", "0", "0"
"libuniversal-moniker-perl", "UNIVERSAL-moniker", "0.08", "0", "0"
"libuniversal-require-perl", "UNIVERSAL-require", "0.13", "0", "0"
"libunix-syslog-perl", "Unix-Syslog", "1.1", "0", "0"
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CSS/DOM/Interface.pm view on Meta::CPAN
textDecoration => STR,
textIndent => STR,
textShadow => STR,
textTransform => STR,
top => STR,
unicodeBidi => STR,
verticalAlign => STR,
visibility => STR,
voiceFamily => STR,
volume => STR,
whiteSpace => STR,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CSS/Janus/Consts.pm view on Meta::CPAN
# nonascii [\240-\377]
# $NON_ASCII = '[\200-\377]';
# modified: handle characters beyond \377.
$NON_ASCII = "[^\\000-\\177]";
# unicode \\{h}{1,6}(\r\n|[ \t\r\n\f])?
$UNICODE = "(?:(?:\\\\[0-9a-f]{1,6})(?:\\r\\n|[ \\t\\r\\n\\f])?)";
# escape {unicode}|\\[^\r\n\f0-9a-f]
$ESCAPE = "(?:$UNICODE|\\\\[^\\r\\n\\f0-9a-f])";
# nmstart [_a-z]|{nonascii}|{escape}
$NMSTART = "(?:[_a-z]|$NON_ASCII|$ESCAPE)";
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CSS/LESS/Filter.pm view on Meta::CPAN
{ debug($thisline, @item); $return = {key => $item[1], sep => $item[2], value => $item[3], semicolon => join '', @{$item[4]}} }
property: /[\*]?/ ident
{ debug($thisline, @item); $return = join'', @item[1..2] }
unicode_range: /U\+[0-9a-fA-F?]{1,6}/
{ debug($thisline, @item); $return = $item[1] }
iefilter: 'progid:DXImageTransform.Microsoft.' ident parens
{ debug($thisline, @item); $return = join'', @item[1..3] }
lib/CSS/LESS/Filter.pm view on Meta::CPAN
values: (value | comments | /[, ]/ )(s)
{ debug($thisline, @item); $return = join '', @{$item[1]} }
value: (
string | url | variable | color | iefilter | javascript
| unicode_range | expression | percent
| px | num | function | ident | important
| sp | unknown
)(s)
{ debug($thisline, @item); $return = join'', @{$item[1]} }
lib/CSS/LESS/Filter.pm view on Meta::CPAN
{ debug($thisline, @item); $return = join '', $item[1], @{$item[2]}, $item[3] }
string2: /~?'/ ( /[^\n\r\f\\']/ | escaped_nl | escape )(s?) /'/
{ debug($thisline, @item); $return = join '', $item[1], @{$item[2]}, $item[3] }
unicode: '\\' /[0-9a-fA-F]{1,6}(\r\n|[ \n\r\f\t])?/
{ debug($thisline, @item); $return = join '', @item[1..2] }
word: /[-]?/ nmstart nmchar(s?)
{ debug($thisline, @item); $return = join '', @item[1..2], @{$item[3]} }
lib/CSS/LESS/Filter.pm view on Meta::CPAN
nonascii: /[^\0-\237]/
{ debug($thisline, @item); $return = $item[1] }
escape:
unicode
{ debug($thisline, @item); $return = $item[1] }
| '\\' /[^\n\r\f0-9a-fA-F]/
{ debug($thisline, @item); $return = join '', @item[1..2] }
escaped_nl: '\\' nl
view all matches for this distribution
view release on metacpan or search on metacpan
CSS/Parse/CompiledGrammar.pm view on Meta::CPAN
$_[1] = $text;
return $return;
}
# ARGS ARE: ($parser, $text; $repeating, $_noactions, \@args)
sub Parse::RecDescent::CSS::Parse::CompiledGrammar::macro_unicode
{
my $thisparser = $_[0];
use vars q{$tracelevel};
local $tracelevel = ($tracelevel||0)+1;
$ERRORS = 0;
my $thisrule = $thisparser->{"rules"}{"macro_unicode"};
Parse::RecDescent::_trace(q{Trying rule: [macro_unicode]},
Parse::RecDescent::_tracefirst($_[1]),
q{macro_unicode},
$tracelevel)
if defined $::RD_TRACE;
my $err_at = @{$thisparser->{errors}};
CSS/Parse/CompiledGrammar.pm view on Meta::CPAN
while (!$_matched && !$commit)
{
Parse::RecDescent::_trace(q{Trying production: [/\\[0-9a-f]\{1,6\}[ \\n\\r\\t\\f]?/]},
Parse::RecDescent::_tracefirst($_[1]),
q{macro_unicode},
$tracelevel)
if defined $::RD_TRACE;
my $thisprod = $thisrule->{"prods"}[0];
$text = $_[1];
my $_savetext;
@item = (q{macro_unicode});
%item = (__RULE__ => q{macro_unicode});
my $repcount = 0;
Parse::RecDescent::_trace(q{Trying terminal: [/\\[0-9a-f]\{1,6\}[ \\n\\r\\t\\f]?/]}, Parse::RecDescent::_tracefirst($text),
q{macro_unicode},
$tracelevel)
if defined $::RD_TRACE;
$lastsep = "";
$expectation->is(q{})->at($text);
CSS/Parse/CompiledGrammar.pm view on Meta::CPAN
push @item, $item{__PATTERN1__}=$current_match;
Parse::RecDescent::_trace(q{Trying action},
Parse::RecDescent::_tracefirst($text),
q{macro_unicode},
$tracelevel)
if defined $::RD_TRACE;
$_tok = ($_noactions) ? 0 : do {$return = $item[1]};
CSS/Parse/CompiledGrammar.pm view on Meta::CPAN
Parse::RecDescent::_trace(q{>>Matched production: [/\\[0-9a-f]\{1,6\}[ \\n\\r\\t\\f]?/]<<},
Parse::RecDescent::_tracefirst($text),
q{macro_unicode},
$tracelevel)
if defined $::RD_TRACE;
$_matched = 1;
last;
}
CSS/Parse/CompiledGrammar.pm view on Meta::CPAN
$_[1] = $text; # NOT SURE THIS IS NEEDED
Parse::RecDescent::_trace(q{<<Didn't match rule>>},
Parse::RecDescent::_tracefirst($_[1]),
q{macro_unicode},
$tracelevel)
if defined $::RD_TRACE;
return undef;
}
if (!defined($return) && defined($score))
{
Parse::RecDescent::_trace(q{>>Accepted scored production<<}, "",
q{macro_unicode},
$tracelevel)
if defined $::RD_TRACE;
$return = $score_return;
}
splice @{$thisparser->{errors}}, $err_at;
$return = $item[$#item] unless defined $return;
if (defined $::RD_TRACE)
{
Parse::RecDescent::_trace(q{>>Matched rule<< (return value: [} .
$return . q{])}, "",
q{macro_unicode},
$tracelevel);
Parse::RecDescent::_trace(q{(consumed: [} .
Parse::RecDescent::_tracemax(substr($_[1],0,-length($text))) . q{])},
Parse::RecDescent::_tracefirst($text),
, q{macro_unicode},
$tracelevel)
}
$_[1] = $text;
return $return;
}
CSS/Parse/CompiledGrammar.pm view on Meta::CPAN
my @arg = defined $_[4] ? @{ &{$_[4]} } : ();
my %arg = ($#arg & 01) ? @arg : (@arg, undef);
my $text;
my $lastsep="";
my $current_match;
my $expectation = new Parse::RecDescent::Expectation(q{macro_unicode, or /\\\\[ -~\\200-\\4177777]/});
$expectation->at($_[1]);
my $thisline;
tie $thisline, q{Parse::RecDescent::LineCounter}, \$text, $thisparser;
while (!$_matched && !$commit)
{
Parse::RecDescent::_trace(q{Trying production: [macro_unicode]},
Parse::RecDescent::_tracefirst($_[1]),
q{macro_escape},
$tracelevel)
if defined $::RD_TRACE;
my $thisprod = $thisrule->{"prods"}[0];
CSS/Parse/CompiledGrammar.pm view on Meta::CPAN
@item = (q{macro_escape});
%item = (__RULE__ => q{macro_escape});
my $repcount = 0;
Parse::RecDescent::_trace(q{Trying subrule: [macro_unicode]},
Parse::RecDescent::_tracefirst($text),
q{macro_escape},
$tracelevel)
if defined $::RD_TRACE;
if (1) { no strict qw{refs};
$expectation->is(q{})->at($text);
unless (defined ($_tok = Parse::RecDescent::CSS::Parse::CompiledGrammar::macro_unicode($thisparser,$text,$repeating,$_noactions,sub { \@arg })))
{
Parse::RecDescent::_trace(q{<<Didn't match subrule: [macro_unicode]>>},
Parse::RecDescent::_tracefirst($text),
q{macro_escape},
$tracelevel)
if defined $::RD_TRACE;
$expectation->failed();
last;
}
Parse::RecDescent::_trace(q{>>Matched subrule: [macro_unicode]<< (return value: [}
. $_tok . q{]},
Parse::RecDescent::_tracefirst($text),
q{macro_escape},
$tracelevel)
if defined $::RD_TRACE;
$item{q{macro_unicode}} = $_tok;
push @item, $_tok;
}
Parse::RecDescent::_trace(q{Trying action},
CSS/Parse/CompiledGrammar.pm view on Meta::CPAN
push @item, $_tok;
$item{__ACTION1__}=$_tok;
Parse::RecDescent::_trace(q{>>Matched production: [macro_unicode]<<},
Parse::RecDescent::_tracefirst($text),
q{macro_escape},
$tracelevel)
if defined $::RD_TRACE;
$_matched = 1;
CSS/Parse/CompiledGrammar.pm view on Meta::CPAN
],
'name' => '_alternation_1_of_production_1_of_rule_macro_string1',
'vars' => '',
'line' => 109
}, 'Parse::RecDescent::Rule' ),
'macro_unicode' => bless( {
'impcount' => 0,
'calls' => [],
'changed' => 0,
'opcount' => 0,
'prods' => [
CSS/Parse/CompiledGrammar.pm view on Meta::CPAN
}, 'Parse::RecDescent::Action' )
],
'line' => undef
}, 'Parse::RecDescent::Production' )
],
'name' => 'macro_unicode',
'vars' => '',
'line' => 89
}, 'Parse::RecDescent::Rule' ),
'_alternation_1_of_production_2_of_rule_URI' => bless( {
'impcount' => 0,
CSS/Parse/CompiledGrammar.pm view on Meta::CPAN
'line' => 25
}, 'Parse::RecDescent::Rule' ),
'macro_escape' => bless( {
'impcount' => 0,
'calls' => [
'macro_unicode'
],
'changed' => 0,
'opcount' => 0,
'prods' => [
bless( {
CSS/Parse/CompiledGrammar.pm view on Meta::CPAN
'error' => undef,
'patcount' => 0,
'actcount' => 1,
'items' => [
bless( {
'subrule' => 'macro_unicode',
'matchrule' => 0,
'implicit' => undef,
'argcode' => undef,
'lookahead' => 0,
'line' => 90
view all matches for this distribution