view release on metacpan or search on metacpan
examples/lib/My/App.pm view on Meta::CPAN
my $app = shift;
DBIx::Simple::Class->DEBUG(1);
my $dbix = DBIx::Simple->connect(
"dbi:SQLite:dbname=$ENV{users_HOME}/db.sqlite",
{sqlite_unicode => 1, RaiseError => 1}
) || die $DBI::errstr;
DBIx::Simple::Class->dbix($dbix);
$dbix->query(<<"TAB");
CREATE TABLE IF NOT EXISTS groups(
id INTEGER PRIMARY KEY AUTOINCREMENT,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/Simple/DataSection.pm view on Meta::CPAN
}
elsif ( $driver_name eq 'mysql' ) {
$self->{dbh}->{mysql_enable_utf8} = 1;
}
elsif ( $driver_name eq 'SQLite' ) {
$self->{dbh}->{unicode} = 1;
}
}
sub connect {
my $self = shift->SUPER::connect(@_);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/Simplish.pm view on Meta::CPAN
if ($self->_is_mysql) {
$options->{mysql_enable_utf8} = 1 unless exists $options->{mysql_enable_utf8};
$options->{mysql_enable_utf8mb4} = 1 unless exists $options->{mysql_enable_utf8mb4};
} elsif ($self->_is_sqlite) {
$options->{sqlite_use_immediate_transaction} = 1 unless exists $options->{sqlite_use_immediate_transaction};
$options->{sqlite_unicode} = 1 unless exists $options->{sqlite_unicode};
}
my $connector = DBIx::Connector->new(
$self->dsn,
$self->user,
$self->password,
view all matches for this distribution
view release on metacpan or search on metacpan
examples/01.pl view on Meta::CPAN
"",
"",
{
PrintError => !!0,
RaiseError => !!1,
sqlite_unicode => !!1,
},
);
};
get_artist_id_by_name do {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/Struct.pm view on Meta::CPAN
if ($driver eq 'Pg') {
$connect_attrs->{pg_enable_utf8} = 1;
} elsif ($driver eq 'mysql') {
$connect_attrs->{mysql_enable_utf8} = 1;
} elsif ($driver eq 'SQLite') {
$connect_attrs->{sqlite_unicode} = 1;
}
}
}
if (!@$connector_args) {
@$connector_args = ($dsn, $user, $password, $connect_attrs);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/Sunny.pm view on Meta::CPAN
$attr->{PrintError} = 0;
$attr->{ShowErrorStatement} = 1;
$attr->{AutoInactiveDestroy} = 1;
if ($dsn =~ /^(?i:dbi):SQLite:/) {
$attr->{sqlite_use_immediate_transaction} = 1;
$attr->{sqlite_unicode} = 1 unless exists $attr->{sqlite_unicode};
}
if ($dsn =~ /^(?i:dbi):mysql:/ && ! exists $attr->{mysql_enable_utf8} && ! exists $attr->{mysql_enable_utf8mb4} ) {
$attr->{mysql_enable_utf8} = 1;
}
if ($dsn =~ /^(?i:dbi):Pg:/ && ! exists $attr->{pg_enable_utf8}) {
lib/DBIx/Sunny.pm view on Meta::CPAN
$dbh->{PrintError} = 0;
$dbh->{ShowErrorStatement} = 1;
$dbh->{AutoInactiveDestroy} = 1;
if ($dsn =~ /^dbi:SQLite:/) {
$dbh->{sqlite_use_immediate_transaction} = 1;
$dbh->{sqlite_unicode} = 1 unless exists $attr->{sqlite_unicode};
$dbh->do("PRAGMA journal_mode = WAL");
$dbh->do("PRAGMA synchronous = NORMAL");
}
lib/DBIx/Sunny.pm view on Meta::CPAN
DBIx::Sunny sets AutoInactiveDestroy as true.
=item [SQLite/MySQL/Pg] Auto encode/decode UTF-8
DBIx::Sunny sets sqlite_unicode, mysql_enable_utf8 and pg_enable_utf8 automatically.
=item [SQLite] Performance tuning
DBIx::Sunny sets sqlite_use_immediate_transaction to true, and executes these PRAGMA statements
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/TempDB/Util.pm view on Meta::CPAN
$opt{AutoCommit} //= 1;
$opt{AutoInactiveDestroy} //= 1;
$opt{PrintError} //= 0;
$opt{RaiseError} //= 1;
$opt{sqlite_unicode} //= 1;
return $dsn, "", "", \%opt;
}
sub _on_process_end_double_fork {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/Wrapper.pm view on Meta::CPAN
for (1 .. 4) {
_parse_json_next_char();
if ($char !~ /[0-9A-Fa-f]/) {
# error -- bad unicode specifier
if ($json_warn) {
warn "bad unicode specifier at pos $looking_at, char=$char";
}
last;
}
$u .= $char;
}
view all matches for this distribution
view release on metacpan or search on metacpan
XMLServer.pm view on Meta::CPAN
return substr($text, 0, pos $text), substr($text, pos $text);
}
BEGIN {
# This hack is because Perl 5.6.1 appears to be buggy and not
# allow unicode character properties to be declared in a package
# pther than main.
our $property_package = $ lt v5.8 ? 'main' : 'DBIx::XMLServer::Request';
eval <<END_PROPERTIES;
package $property_package;
view all matches for this distribution
view release on metacpan or search on metacpan
pad_sv||5.011000|
pad_swipe|||
pad_tidy|||
pad_undef|||
parse_body|||
parse_unicode_opts|||
parser_dup|||
parser_free|||
path_is_absolute|||n
peep|||
pending_Slabs_to_ro|||
#ifndef PERL_PV_PRETTY_REGPROP
# define PERL_PV_PRETTY_REGPROP PERL_PV_PRETTY_ELLIPSES|PERL_PV_PRETTY_LTGT|PERL_PV_ESCAPE_RE
#endif
/* Hint: pv_escape
* Note that unicode functionality is only backported to
* those perl versions that support it. For older perl
* versions, the implementation will fall back to bytes.
*/
#ifndef pv_escape
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBM/Deep/Engine/File.pm view on Meta::CPAN
if ( $feature eq 'transactions' ) {
return $self->num_txns > 1;
}
return 1 if $feature eq 'singletons';
return 1 if $feature eq 'unicode';
return;
}
sub db_version {
return $_[0]{v} == 3 ? '1.0003' : 2;
view all matches for this distribution
view release on metacpan or search on metacpan
parser_free|5.009005||Viu
parser_free_nexttoke_ops|5.017006||Viu
parse_stmtseq|5.013006|5.013006|x
parse_subsignature|5.031003|5.031003|x
parse_termexpr|5.013008|5.013008|x
parse_unicode_opts|5.008001||Viu
parse_uniprop_string|5.027011||Viu
PATCHLEVEL|5.003007||Viu
path_is_searchable|5.019001||Vniu
Pause|5.003007||Viu
pause|5.005000||Viu
PL_tokenbuf||5.003007|ponu
PL_top_env|5.005000||Viu
PL_toptarget|5.005000||Viu
PL_TR_SPECIAL_HANDLING_UTF8|5.031006||Viu
PL_underlying_numeric_obj|5.027009||Viu
PL_unicode|5.008001||Viu
PL_unitcheckav|5.009005||Viu
PL_unitcheckav_save|5.009005||Viu
PL_unlockhook|5.007003||Viu
PL_unsafe|5.005000||Viu
PL_UpperLatin1|5.019005||Viu
#ifndef PERL_PV_PRETTY_REGPROP
# define PERL_PV_PRETTY_REGPROP PERL_PV_PRETTY_ELLIPSES|PERL_PV_PRETTY_LTGT|PERL_PV_ESCAPE_RE
#endif
/* Hint: pv_escape
* Note that unicode functionality is only backported to
* those perl versions that support it. For older perl
* versions, the implementation will fall back to bytes.
*/
#ifndef pv_escape
view all matches for this distribution
view release on metacpan or search on metacpan
pad_sv||5.011000|
pad_swipe|||
pad_tidy|||
pad_undef|||
parse_body|||
parse_unicode_opts|||
parser_dup|||
parser_free|||
path_is_absolute|||n
peep|||
pending_Slabs_to_ro|||
#ifndef PERL_PV_PRETTY_REGPROP
# define PERL_PV_PRETTY_REGPROP PERL_PV_PRETTY_ELLIPSES|PERL_PV_PRETTY_LTGT|PERL_PV_ESCAPE_RE
#endif
/* Hint: pv_escape
* Note that unicode functionality is only backported to
* those perl versions that support it. For older perl
* versions, the implementation will fall back to bytes.
*/
#ifndef pv_escape
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DDG/Manual/Translation.pod view on Meta::CPAN
=head2 Right to left
Yes, really, there are languages in the world, which are written right to left.
Beside the mess this brings to your hand if you are right handed, this is also
a huge difference in the web interface. You can see how a right to left page
looks like L<here|http://www.i18nguy.com/unicode/shma.html>. This also changes
about most punctuations and of course the flow of the page itself, even if you
force a specific order, you must revert it from right to left.
=head2 Grammatical numbers
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DJabberd/Connection.pm view on Meta::CPAN
my $p = $self->{parser} || $self->borrow_a_parser;
my $len = length $$bref;
#$self->log->debug("$self->{id} parsing $len bytes...") unless $len == 1;
# remove invalid low unicode code points which aren't allowed in XML,
# but both iChat and gaim have been observed to send in the wild, often
# when copy/pasting from bizarre sources. this probably isn't compliant,
# and there's a speed hit, so only regexp them out in quirks mode:
if ($self->{vhost} && $self->{vhost}{quirksmode}) {
$$bref =~ s/&\#([\da-f]{0,8});/DJabberd::Util::numeric_entity_clean($1)/ieg;
view all matches for this distribution
view release on metacpan or search on metacpan
pad_sv||5.011000|
pad_swipe|||
pad_tidy|||
pad_undef|||
parse_body|||
parse_unicode_opts|||
parser_dup|||
parser_free|||
path_is_absolute|||n
peep|||
pending_Slabs_to_ro|||
#ifndef PERL_PV_PRETTY_REGPROP
# define PERL_PV_PRETTY_REGPROP PERL_PV_PRETTY_ELLIPSES|PERL_PV_PRETTY_LTGT|PERL_PV_ESCAPE_RE
#endif
/* Hint: pv_escape
* Note that unicode functionality is only backported to
* those perl versions that support it. For older perl
* versions, the implementation will fall back to bytes.
*/
#ifndef pv_escape
view all matches for this distribution
view release on metacpan or search on metacpan
pad_sv||5.011000|
pad_swipe|||
pad_tidy|||
pad_undef|||
parse_body|||
parse_unicode_opts|||
parser_dup|||
parser_free|||
path_is_absolute|||n
peep|||
pending_Slabs_to_ro|||
#ifndef PERL_PV_PRETTY_REGPROP
# define PERL_PV_PRETTY_REGPROP PERL_PV_PRETTY_ELLIPSES|PERL_PV_PRETTY_LTGT|PERL_PV_ESCAPE_RE
#endif
/* Hint: pv_escape
* Note that unicode functionality is only backported to
* those perl versions that support it. For older perl
* versions, the implementation will fall back to bytes.
*/
#ifndef pv_escape
view all matches for this distribution
view release on metacpan or search on metacpan
easyxs/ppport.h view on Meta::CPAN
parser_free|5.009005||Viu
parser_free_nexttoke_ops|5.017006||Viu
parse_stmtseq|5.013006|5.013006|x
parse_subsignature|5.031003|5.031003|x
parse_termexpr|5.013008|5.013008|x
parse_unicode_opts|5.008001||Viu
parse_uniprop_string|5.027011||Viu
PATCHLEVEL|5.003007||Viu
path_is_searchable|5.019001||Vniu
Pause|5.003007||Viu
pause|5.005000||Viu
easyxs/ppport.h view on Meta::CPAN
PL_tokenbuf||5.003007|ponu
PL_top_env|5.005000||Viu
PL_toptarget|5.005000||Viu
PL_TR_SPECIAL_HANDLING_UTF8|5.031006||Viu
PL_underlying_numeric_obj|5.027009||Viu
PL_unicode|5.008001||Viu
PL_unitcheckav|5.009005||Viu
PL_unitcheckav_save|5.009005||Viu
PL_unlockhook|5.007003||Viu
PL_unsafe|5.005000||Viu
PL_UpperLatin1|5.019005||Viu
easyxs/ppport.h view on Meta::CPAN
#ifndef PERL_PV_PRETTY_REGPROP
# define PERL_PV_PRETTY_REGPROP PERL_PV_PRETTY_ELLIPSES|PERL_PV_PRETTY_LTGT|PERL_PV_ESCAPE_RE
#endif
/* Hint: pv_escape
* Note that unicode functionality is only backported to
* those perl versions that support it. For older perl
* versions, the implementation will fall back to bytes.
*/
#ifndef pv_escape
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DNS/ZoneParse.pm view on Meta::CPAN
}
if ( $self->_parse( $zonefile, $zone_contents, $origin ) ) { return 1; }
}
sub _parse {
# Support IsAlnum for unicode names.
use utf8;
my ( $self, $zonefile, $contents, $origin ) = @_;
$self->_initialize();
# Here's how we auto-detect the zonefile and origin. Note, the zonefile is
view all matches for this distribution
view release on metacpan or search on metacpan
test_data/big.log view on Meta::CPAN
2010-06-22 23:22:01 install rsync <keine> 3.0.3-2
2010-06-22 23:22:01 status half-installed rsync 3.0.3-2
2010-06-22 23:22:01 status half-installed rsync 3.0.3-2
2010-06-22 23:22:01 status unpacked rsync 3.0.3-2
2010-06-22 23:22:01 status unpacked rsync 3.0.3-2
2010-06-22 23:22:01 install rxvt-unicode <keine> 9.05-1+lenny1
2010-06-22 23:22:01 status half-installed rxvt-unicode 9.05-1+lenny1
2010-06-22 23:22:01 status triggers-pending menu 2.1.41
2010-06-22 23:22:01 status half-installed rxvt-unicode 9.05-1+lenny1
2010-06-22 23:22:01 status half-installed rxvt-unicode 9.05-1+lenny1
2010-06-22 23:22:01 status unpacked rxvt-unicode 9.05-1+lenny1
2010-06-22 23:22:01 status unpacked rxvt-unicode 9.05-1+lenny1
2010-06-22 23:22:01 install strace <keine> 4.5.17+cvs080723-2
2010-06-22 23:22:01 status half-installed strace 4.5.17+cvs080723-2
2010-06-22 23:22:01 status half-installed strace 4.5.17+cvs080723-2
2010-06-22 23:22:01 status unpacked strace 4.5.17+cvs080723-2
2010-06-22 23:22:01 status unpacked strace 4.5.17+cvs080723-2
test_data/big.log view on Meta::CPAN
2010-06-22 23:22:31 status unpacked rsync 3.0.3-2
2010-06-22 23:22:31 status unpacked rsync 3.0.3-2
2010-06-22 23:22:31 status unpacked rsync 3.0.3-2
2010-06-22 23:22:31 status half-configured rsync 3.0.3-2
2010-06-22 23:22:31 status installed rsync 3.0.3-2
2010-06-22 23:22:31 configure rxvt-unicode 9.05-1+lenny1 9.05-1+lenny1
2010-06-22 23:22:31 status unpacked rxvt-unicode 9.05-1+lenny1
2010-06-22 23:22:31 status unpacked rxvt-unicode 9.05-1+lenny1
2010-06-22 23:22:31 status half-configured rxvt-unicode 9.05-1+lenny1
2010-06-22 23:22:31 status installed rxvt-unicode 9.05-1+lenny1
2010-06-22 23:22:31 status triggers-pending menu 2.1.41
2010-06-22 23:22:31 status triggers-awaited menu 2.1.41
2010-06-22 23:22:31 configure strace 4.5.17+cvs080723-2 4.5.17+cvs080723-2
2010-06-22 23:22:31 status unpacked strace 4.5.17+cvs080723-2
2010-06-22 23:22:31 status half-configured strace 4.5.17+cvs080723-2
test_data/big.log view on Meta::CPAN
2010-07-13 12:20:30 status half-installed radeontool 1.6.0-1
2010-07-13 12:20:30 status half-installed radeontool 1.6.0-1
2010-07-13 12:20:30 status half-installed radeontool 1.6.0-1
2010-07-13 12:20:30 status unpacked radeontool 1.6.1-1
2010-07-13 12:20:30 status unpacked radeontool 1.6.1-1
2010-07-13 12:20:30 upgrade rxvt-unicode 9.05-1+lenny1 9.07-2
2010-07-13 12:20:30 status half-configured rxvt-unicode 9.05-1+lenny1
2010-07-13 12:20:30 status unpacked rxvt-unicode 9.05-1+lenny1
2010-07-13 12:20:30 status half-installed rxvt-unicode 9.05-1+lenny1
2010-07-13 12:20:31 update-alternatives: run with --remove x-terminal-emulator /usr/bin/urxvtcd
2010-07-13 12:20:31 status half-installed rxvt-unicode 9.05-1+lenny1
2010-07-13 12:20:31 status half-installed rxvt-unicode 9.05-1+lenny1
2010-07-13 12:20:31 status unpacked rxvt-unicode 9.07-2
2010-07-13 12:20:31 status unpacked rxvt-unicode 9.07-2
2010-07-13 12:20:31 upgrade strace 4.5.17+cvs080723-2 4.5.20-2
2010-07-13 12:20:31 status half-configured strace 4.5.17+cvs080723-2
2010-07-13 12:20:31 status unpacked strace 4.5.17+cvs080723-2
2010-07-13 12:20:31 status half-installed strace 4.5.17+cvs080723-2
2010-07-13 12:20:32 status half-installed strace 4.5.17+cvs080723-2
test_data/big.log view on Meta::CPAN
2010-07-13 12:24:10 status installed python-urlgrabber 3.9.1-4
2010-07-13 12:24:10 configure radeontool 1.6.1-1 1.6.1-1
2010-07-13 12:24:10 status unpacked radeontool 1.6.1-1
2010-07-13 12:24:10 status half-configured radeontool 1.6.1-1
2010-07-13 12:24:10 status installed radeontool 1.6.1-1
2010-07-13 12:24:10 configure rxvt-unicode 9.07-2 9.07-2
2010-07-13 12:24:10 status unpacked rxvt-unicode 9.07-2
2010-07-13 12:24:10 status unpacked rxvt-unicode 9.07-2
2010-07-13 12:24:10 status half-configured rxvt-unicode 9.07-2
2010-07-13 12:24:10 update-alternatives: run with --install /usr/bin/rxvt rxvt /usr/bin/urxvt 30 --slave /usr/share/man/man1/rxvt.1.gz rxvt.1.gz /usr/share/man/man1/urxvt.1.gz
2010-07-13 12:24:10 update-alternatives: run with --install /usr/bin/x-terminal-emulator x-terminal-emulator /usr/bin/urxvt 20 --slave /usr/share/man/man1/x-terminal-emulator.1.gz x-terminal-emulator.1.gz /usr/share/man/man1/urxvt.1.gz
2010-07-13 12:24:11 status installed rxvt-unicode 9.07-2
2010-07-13 12:24:11 configure strace 4.5.20-2 4.5.20-2
2010-07-13 12:24:11 status unpacked strace 4.5.20-2
2010-07-13 12:24:11 status half-configured strace 4.5.20-2
2010-07-13 12:24:11 status installed strace 4.5.20-2
2010-07-13 12:24:11 configure swig 1.3.40-3 1.3.40-3
test_data/big.log view on Meta::CPAN
2010-08-19 10:16:45 install libimage-exiftool-perl <keine> 8.15-1
2010-08-19 10:16:45 status half-installed libimage-exiftool-perl 8.15-1
2010-08-19 10:16:45 status half-installed libimage-exiftool-perl 8.15-1
2010-08-19 10:16:46 status unpacked libimage-exiftool-perl 8.15-1
2010-08-19 10:16:46 status unpacked libimage-exiftool-perl 8.15-1
2010-08-19 10:16:46 install libunicode-string-perl <keine> 2.09-3+b1
2010-08-19 10:16:46 status half-installed libunicode-string-perl 2.09-3+b1
2010-08-19 10:16:46 status half-installed libunicode-string-perl 2.09-3+b1
2010-08-19 10:16:46 status unpacked libunicode-string-perl 2.09-3+b1
2010-08-19 10:16:46 status unpacked libunicode-string-perl 2.09-3+b1
2010-08-19 10:16:46 install libmp3-info-perl <keine> 1.24-1
2010-08-19 10:16:46 status half-installed libmp3-info-perl 1.24-1
2010-08-19 10:16:46 status half-installed libmp3-info-perl 1.24-1
2010-08-19 10:16:47 status unpacked libmp3-info-perl 1.24-1
2010-08-19 10:16:47 status unpacked libmp3-info-perl 1.24-1
test_data/big.log view on Meta::CPAN
2010-08-19 10:16:56 status installed flac 1.2.1-3
2010-08-19 10:16:56 configure libimage-exiftool-perl 8.15-1 8.15-1
2010-08-19 10:16:56 status unpacked libimage-exiftool-perl 8.15-1
2010-08-19 10:16:56 status half-configured libimage-exiftool-perl 8.15-1
2010-08-19 10:16:56 status installed libimage-exiftool-perl 8.15-1
2010-08-19 10:16:56 configure libunicode-string-perl 2.09-3+b1 2.09-3+b1
2010-08-19 10:16:56 status unpacked libunicode-string-perl 2.09-3+b1
2010-08-19 10:16:56 status half-configured libunicode-string-perl 2.09-3+b1
2010-08-19 10:16:56 status installed libunicode-string-perl 2.09-3+b1
2010-08-19 10:16:56 configure libmp3-info-perl 1.24-1 1.24-1
2010-08-19 10:16:56 status unpacked libmp3-info-perl 1.24-1
2010-08-19 10:16:56 status half-configured libmp3-info-perl 1.24-1
2010-08-19 10:16:56 status installed libmp3-info-perl 1.24-1
2010-08-19 10:16:56 configure libmp3-tag-perl 1.12-1 1.12-1
test_data/big.log view on Meta::CPAN
2010-10-06 17:09:24 status unpacked python-pkg-resources 0.6.14-1
2010-10-06 17:09:24 status half-installed python-pkg-resources 0.6.14-1
2010-10-06 17:09:24 status half-installed python-pkg-resources 0.6.14-1
2010-10-06 17:09:24 status unpacked python-pkg-resources 0.6.14-4
2010-10-06 17:09:24 status unpacked python-pkg-resources 0.6.14-4
2010-10-06 17:09:24 upgrade rxvt-unicode 9.07-2 9.07-2+b1
2010-10-06 17:09:24 status half-configured rxvt-unicode 9.07-2
2010-10-06 17:09:24 status unpacked rxvt-unicode 9.07-2
2010-10-06 17:09:24 status half-installed rxvt-unicode 9.07-2
2010-10-06 17:09:25 status half-installed rxvt-unicode 9.07-2
2010-10-06 17:09:25 status unpacked rxvt-unicode 9.07-2+b1
2010-10-06 17:09:26 status unpacked rxvt-unicode 9.07-2+b1
2010-10-06 17:09:26 upgrade sane-utils 1.0.21-3 1.0.21-4
2010-10-06 17:09:26 status half-configured sane-utils 1.0.21-3
2010-10-06 17:09:26 status unpacked sane-utils 1.0.21-3
2010-10-06 17:09:26 status half-installed sane-utils 1.0.21-3
2010-10-06 17:09:26 status half-installed sane-utils 1.0.21-3
test_data/big.log view on Meta::CPAN
2010-10-06 17:21:17 status installed python-pam 0.4.2-12.2
2010-10-06 17:21:17 configure python-pkg-resources 0.6.14-4 0.6.14-4
2010-10-06 17:21:17 status unpacked python-pkg-resources 0.6.14-4
2010-10-06 17:21:18 status half-configured python-pkg-resources 0.6.14-4
2010-10-06 17:21:18 status installed python-pkg-resources 0.6.14-4
2010-10-06 17:21:18 configure rxvt-unicode 9.07-2+b1 9.07-2+b1
2010-10-06 17:21:18 status unpacked rxvt-unicode 9.07-2+b1
2010-10-06 17:21:18 status unpacked rxvt-unicode 9.07-2+b1
2010-10-06 17:21:18 status half-configured rxvt-unicode 9.07-2+b1
2010-10-06 17:21:19 status installed rxvt-unicode 9.07-2+b1
2010-10-06 17:21:19 configure sane-utils 1.0.21-4 1.0.21-4
2010-10-06 17:21:19 status unpacked sane-utils 1.0.21-4
2010-10-06 17:21:19 status unpacked sane-utils 1.0.21-4
2010-10-06 17:21:19 status unpacked sane-utils 1.0.21-4
2010-10-06 17:21:19 status unpacked sane-utils 1.0.21-4
test_data/big.log view on Meta::CPAN
2010-11-29 13:51:50 status half-installed python-mako 0.3.5-1
2010-11-29 13:51:50 status half-installed python-mako 0.3.5-1
2010-11-29 13:51:50 status half-installed python-mako 0.3.5-1
2010-11-29 13:51:50 status unpacked python-mako 0.3.6-1
2010-11-29 13:51:50 status unpacked python-mako 0.3.6-1
2010-11-29 13:51:50 upgrade rxvt-unicode 9.07-2+b1 9.09-1
2010-11-29 13:51:50 status half-configured rxvt-unicode 9.07-2+b1
2010-11-29 13:51:50 status unpacked rxvt-unicode 9.07-2+b1
2010-11-29 13:51:50 status half-installed rxvt-unicode 9.07-2+b1
2010-11-29 13:51:51 status half-installed rxvt-unicode 9.07-2+b1
2010-11-29 13:51:51 status half-installed rxvt-unicode 9.07-2+b1
2010-11-29 13:51:51 status half-installed rxvt-unicode 9.07-2+b1
2010-11-29 13:51:51 status unpacked rxvt-unicode 9.09-1
2010-11-29 13:51:51 status unpacked rxvt-unicode 9.09-1
2010-11-29 13:51:51 upgrade software-center 2.0.7debian5 2.0.7debian7
2010-11-29 13:51:51 status half-configured software-center 2.0.7debian5
2010-11-29 13:51:52 status unpacked software-center 2.0.7debian5
2010-11-29 13:51:52 status half-installed software-center 2.0.7debian5
2010-11-29 13:51:52 status half-installed software-center 2.0.7debian5
test_data/big.log view on Meta::CPAN
2010-11-29 13:56:50 status installed python2.5 2.5.5-11
2010-11-29 13:56:50 configure python-mako 0.3.6-1 0.3.6-1
2010-11-29 13:56:50 status unpacked python-mako 0.3.6-1
2010-11-29 13:56:50 status half-configured python-mako 0.3.6-1
2010-11-29 13:56:51 status installed python-mako 0.3.6-1
2010-11-29 13:56:51 configure rxvt-unicode 9.09-1 9.09-1
2010-11-29 13:56:51 status unpacked rxvt-unicode 9.09-1
2010-11-29 13:56:51 status unpacked rxvt-unicode 9.09-1
2010-11-29 13:56:51 status half-configured rxvt-unicode 9.09-1
2010-11-29 13:56:51 status installed rxvt-unicode 9.09-1
2010-11-29 13:56:51 configure software-center 2.0.7debian7 2.0.7debian7
2010-11-29 13:56:51 status unpacked software-center 2.0.7debian7
2010-11-29 13:56:51 status unpacked software-center 2.0.7debian7
2010-11-29 13:56:51 status half-configured software-center 2.0.7debian7
2010-11-29 13:57:38 status installed software-center 2.0.7debian7
test_data/big.log view on Meta::CPAN
2010-12-13 11:41:21 status half-installed qemu 0.12.5+dfsg-2
2010-12-13 11:41:21 status half-installed qemu 0.12.5+dfsg-2
2010-12-13 11:41:21 status half-installed qemu 0.12.5+dfsg-2
2010-12-13 11:41:21 status unpacked qemu 0.12.5+dfsg-3
2010-12-13 11:41:21 status unpacked qemu 0.12.5+dfsg-3
2010-12-13 11:41:22 upgrade rxvt-unicode 9.09-1 9.09-3
2010-12-13 11:41:22 status half-configured rxvt-unicode 9.09-1
2010-12-13 11:41:22 status unpacked rxvt-unicode 9.09-1
2010-12-13 11:41:22 status half-installed rxvt-unicode 9.09-1
2010-12-13 11:41:24 status half-installed rxvt-unicode 9.09-1
2010-12-13 11:41:24 status half-installed rxvt-unicode 9.09-1
2010-12-13 11:41:24 status unpacked rxvt-unicode 9.09-3
2010-12-13 11:41:24 status unpacked rxvt-unicode 9.09-3
2010-12-13 11:41:25 upgrade smbclient 2:3.5.6~dfsg-1 2:3.5.6~dfsg-3
2010-12-13 11:41:25 status half-configured smbclient 2:3.5.6~dfsg-1
2010-12-13 11:41:25 status unpacked smbclient 2:3.5.6~dfsg-1
2010-12-13 11:41:25 status half-installed smbclient 2:3.5.6~dfsg-1
2010-12-13 11:41:26 status half-installed smbclient 2:3.5.6~dfsg-1
test_data/big.log view on Meta::CPAN
2010-12-13 11:47:21 status installed qemu-system 0.12.5+dfsg-3
2010-12-13 11:47:21 configure qemu 0.12.5+dfsg-3 0.12.5+dfsg-3
2010-12-13 11:47:21 status unpacked qemu 0.12.5+dfsg-3
2010-12-13 11:47:21 status half-configured qemu 0.12.5+dfsg-3
2010-12-13 11:47:21 status installed qemu 0.12.5+dfsg-3
2010-12-13 11:47:21 configure rxvt-unicode 9.09-3 9.09-3
2010-12-13 11:47:21 status unpacked rxvt-unicode 9.09-3
2010-12-13 11:47:21 status unpacked rxvt-unicode 9.09-3
2010-12-13 11:47:21 status half-configured rxvt-unicode 9.09-3
2010-12-13 11:47:21 status installed rxvt-unicode 9.09-3
2010-12-13 11:47:21 configure samba-common 2:3.5.6~dfsg-3 2:3.5.6~dfsg-3
2010-12-13 11:47:21 status unpacked samba-common 2:3.5.6~dfsg-3
2010-12-13 11:47:21 status unpacked samba-common 2:3.5.6~dfsg-3
2010-12-13 11:47:21 status unpacked samba-common 2:3.5.6~dfsg-3
2010-12-13 11:47:21 status unpacked samba-common 2:3.5.6~dfsg-3
test_data/big.log view on Meta::CPAN
2011-01-12 14:57:46 status triggers-pending doc-base 0.9.5
2011-01-12 14:57:46 status half-installed libspreadsheet-writeexcel-perl 2.37-1
2011-01-12 14:57:46 status half-installed libspreadsheet-writeexcel-perl 2.37-1
2011-01-12 14:57:46 status unpacked libspreadsheet-writeexcel-perl 2.37-1
2011-01-12 14:57:46 status unpacked libspreadsheet-writeexcel-perl 2.37-1
2011-01-12 14:57:46 install libunicode-map-perl <keine> 0.112-10+b1
2011-01-12 14:57:46 status half-installed libunicode-map-perl 0.112-10+b1
2011-01-12 14:57:46 status half-installed libunicode-map-perl 0.112-10+b1
2011-01-12 14:57:47 status unpacked libunicode-map-perl 0.112-10+b1
2011-01-12 14:57:47 status unpacked libunicode-map-perl 0.112-10+b1
2011-01-12 14:57:47 install libspreadsheet-parseexcel-perl <keine> 0.5800-1
2011-01-12 14:57:47 status half-installed libspreadsheet-parseexcel-perl 0.5800-1
2011-01-12 14:57:47 status half-installed libspreadsheet-parseexcel-perl 0.5800-1
2011-01-12 14:57:47 status unpacked libspreadsheet-parseexcel-perl 0.5800-1
2011-01-12 14:57:47 status unpacked libspreadsheet-parseexcel-perl 0.5800-1
test_data/big.log view on Meta::CPAN
2011-01-12 14:58:19 status installed libole-storage-lite-perl 0.19-1
2011-01-12 14:58:19 configure libspreadsheet-writeexcel-perl 2.37-1 2.37-1
2011-01-12 14:58:19 status unpacked libspreadsheet-writeexcel-perl 2.37-1
2011-01-12 14:58:19 status half-configured libspreadsheet-writeexcel-perl 2.37-1
2011-01-12 14:58:19 status installed libspreadsheet-writeexcel-perl 2.37-1
2011-01-12 14:58:19 configure libunicode-map-perl 0.112-10+b1 0.112-10+b1
2011-01-12 14:58:19 status unpacked libunicode-map-perl 0.112-10+b1
2011-01-12 14:58:19 status half-configured libunicode-map-perl 0.112-10+b1
2011-01-12 14:58:19 status installed libunicode-map-perl 0.112-10+b1
2011-01-12 14:58:19 configure libspreadsheet-parseexcel-perl 0.5800-1 0.5800-1
2011-01-12 14:58:19 status unpacked libspreadsheet-parseexcel-perl 0.5800-1
2011-01-12 14:58:19 status half-configured libspreadsheet-parseexcel-perl 0.5800-1
2011-01-12 14:58:19 status installed libspreadsheet-parseexcel-perl 0.5800-1
2011-01-12 14:58:20 configure libsql-translator-perl 0.11007-1 0.11007-1
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DR/Tarantool.pm view on Meta::CPAN
=over
=item UTF8STR
A unicode string.
=item MONEY
Fixed decimal currency. Stores the value on the server in B<NUM> type,
by multiplying the given amount by 100. The largest amount
view all matches for this distribution
view release on metacpan or search on metacpan
t/010-comon/msgpack/020-unpack.t view on Meta::CPAN
fixstr => '',
fixstrmax => ('x' x 0x1F),
str8 => ('x' x 0xFF),
str16 => ('x' x 0xF000),
str32 => ('x' x 0x10000),
unicode => { 'пÑивеÑ' => 'медвед' },
deep => [
1 .. 10,
{
a => {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DSL/HTML/Compiler.pm view on Meta::CPAN
=item -
=item â
This one is unicode
=item a..z A..Z
If all else fails try a-z and A-Z.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DSP/ppport.h view on Meta::CPAN
parse_fullstmt||5.013005|
parse_label||5.013007|
parse_listexpr||5.013008|
parse_stmtseq||5.013006|
parse_termexpr||5.013008|
parse_unicode_opts|||
parser_dup|||
parser_free|||
path_is_absolute|||n
peep|||
pending_Slabs_to_ro|||
lib/DSP/ppport.h view on Meta::CPAN
#ifndef PERL_PV_PRETTY_REGPROP
# define PERL_PV_PRETTY_REGPROP PERL_PV_PRETTY_ELLIPSES|PERL_PV_PRETTY_LTGT|PERL_PV_ESCAPE_RE
#endif
/* Hint: pv_escape
* Note that unicode functionality is only backported to
* those perl versions that support it. For older perl
* versions, the implementation will fall back to bytes.
*/
#ifndef pv_escape
view all matches for this distribution
view release on metacpan or search on metacpan
CAB/Analyzer/Automaton.pm view on Meta::CPAN
## ##-- Analysis objects
## fst => $gfst, ##-- (child classes only) e.g. a Gfsm::Automaton object (default=new)
## lab => $lab, ##-- (child classes only) e.g. a Gfsm::Alphabet object (default=new)
## labh => \%sym2lab, ##-- (?) label hash: $sym2lab{$labSym} = $labId;
## laba => \@lab2sym, ##-- (?) label array: $lab2sym[$labId] = $labSym;
## labc => \@chr2lab, ##-- (?)chr-label array: $chr2lab[ord($chr)] = $labId;, by unicode char number (e.g. unpack('U0U*'))
## warned_symbols => \%sym2undef, ##-- tracks unknown symbols we've already warned about (for check_symbols != 0)
##
## ##-- INHERITED from DTA::CAB::Analyzer
## label => $label, ##-- analyzer label (default: from analyzer class name)
## typeKeys => \@keys, ##-- type-wise keys to expand
CAB/Analyzer/Automaton.pm view on Meta::CPAN
my ($i);
foreach $i (grep { defined($laba->[$_]) } 0..$#$laba) {
$laba->[$i] = decode($aut->{labenc}, $laba->[$i]) if ($aut->{labenc});
$aut->{labh}{$laba->[$i]} = $i;
}
##-- setup labc: $labId = $labc->[ord($c)]; ##-- single unicode characater
## : @labIds = @$labc[unpack('U0U*',$s)]; ##-- batch lookup for strings (fast)
my @csyms = grep {defined($_) && length($_)==1} @$laba; ##-- @csyms = ($sym1, ...) s.t. each sym has len==1
@{$aut->{labc}}[map {ord($_)} @csyms] = @{$aut->{labh}}{@csyms};
##
return $aut;
CAB/Analyzer/Automaton.pm view on Meta::CPAN
##-- Analysis objects
fst => $gfst, ##-- (child classes only) e.g. a Gfsm::Automaton object (default=new)
lab => $lab, ##-- (child classes only) e.g. a Gfsm::Alphabet object (default=new)
labh => \%sym2lab, ##-- (?) label hash: $sym2lab{$labSym} = $labId;
laba => \@lab2sym, ##-- (?) label array: $lab2sym[$labId] = $labSym;
labc => \@chr2lab, ##-- (?)chr-label array: $chr2lab[ord($chr)] = $labId;, by unicode char number (e.g. unpack('U0U*'))
##
##-- INHERITED from DTA::CAB::Analyzer
label => $label, ##-- analyzer label (default: from analyzer class name)
typeKeys => \@keys, ##-- type-wise keys to expand
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DVB/Epg.pm view on Meta::CPAN
my $self = {};
$self->{filename} = shift;
$self->{dbh} = DBI->connect( "dbi:SQLite:" . $self->{filename} ) or return;
$self->{dbh}->{sqlite_unicode} = 1;
$self->{dbh}->do( "PRAGMA synchronous = OFF; PRAGMA temp_store = MEMORY; PRAGMA auto_vacuum = NONE; PRAGMA cache_size = 4000000; " );
bless( $self, $class );
return $self;
}
view all matches for this distribution
view release on metacpan or search on metacpan
pad_sv||5.009005|
pad_swipe|||
pad_tidy|||
pad_undef|||
parse_body|||
parse_unicode_opts|||
parser_dup|||
parser_free|||
path_is_absolute|||n
peep|||
pending_Slabs_to_ro|||
view all matches for this distribution
view release on metacpan or search on metacpan
parse_label||5.013007|
parse_listexpr||5.013008|
parse_lparen_question_flags|||
parse_stmtseq||5.013006|
parse_termexpr||5.013008|
parse_unicode_opts|||
parser_dup|||
parser_free_nexttoke_ops|||
parser_free|||
path_is_searchable|||n
peep|||
#ifndef PERL_PV_PRETTY_REGPROP
# define PERL_PV_PRETTY_REGPROP PERL_PV_PRETTY_ELLIPSES|PERL_PV_PRETTY_LTGT|PERL_PV_ESCAPE_RE
#endif
/* Hint: pv_escape
* Note that unicode functionality is only backported to
* those perl versions that support it. For older perl
* versions, the implementation will fall back to bytes.
*/
#ifndef pv_escape
view all matches for this distribution
view release on metacpan or search on metacpan
t/lib/TestApp.pm view on Meta::CPAN
post '/form' => sub {
params->{foo};
};
get '/unicode' => sub {
"cyrillic shcha \x{0429}",
};
get '/forward_to_unavailable_route' => sub {
forward "/some_route_that_does_not_exist"
view all matches for this distribution