view release on metacpan or search on metacpan
=item F<--audio-client-name=yourappname>, to make sure audio streams are associated witht eh right program.
=item F<--wid=id>, to embed F<mpv> into another application.
=item F<--no-terminal>, F<--no-input-default-bindings>, F<--no-input-cursor>, F<--input-conf=/dev/null>, F<--input-vo-keyboard=no> - to ensure only you control input.
=back
The return value can be used to decide whether F<mpv> needs initializing:
local $ENV{LC_ALL} = "POSIX";
$self->{mpv}->start (
"--no-terminal",
"--no-input-terminal",
"--no-input-default-bindings",
"--no-input-cursor",
"--input-conf=/dev/null",
"--input-vo-keyboard=no",
"--loop-file=inf",
"--force-window=yes",
view all matches for this distribution
view release on metacpan or search on metacpan
=item AnyEvent::ReadLine::Gnu->show
Undos any hiding. Every call to C<hide> has to be followed to a call to
C<show>. The last call will redisplay the readline prompt, current input
line and cursor position. Keys entered while the prompt was hidden will be
processed again.
=cut
sub show {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/AnyEvent/HTTP/Spark.pm view on Meta::CPAN
};
return $self->que_get($code,$url,$args);
Pagination information can be found in the following result fields.
cursorPosition: last|next|prev|first
pageLink: (undef when cursorPosition eq 'last') Url to the next page
=cut
sub handle_paginate {
my ($self,$id,$result,$request,$response,$cb)=@_;
if($result) {
my $headers={$response->headers->flatten};
my $data=$result->get_data;
$data->{cursorPosition}='last';
$data->{pageLink}='';
if(exists $headers->{Link}) {
my $link=$headers->{Link};
if($link=~ /^<([^>]+)>;\s+rel="(\w+)"\s*$/s) {
$data->{pageLink}=$1;
$data->{cursorPosition}=$2;
}
}
}
$cb->(@_);
view all matches for this distribution
view release on metacpan or search on metacpan
benchmarks/bench.pl view on Meta::CPAN
$col->insert($doc);
};
my $sub_query = sub {
my ($col) = @_;
my $cursor = $col->find;
do {
} while($cursor->next);
};
my $mongo_con = MongoDB::Connection->new(host => 'mongodb://127.0.0.1');
my $any_con = AnyMongo->new_connection(host => 'mongodb://127.0.0.1');
benchmarks/bench.pl view on Meta::CPAN
'mongo-perl-driver' => sub { $sub_insert->($mongo_col,$large_doc) },
'anymongo' => sub{ $sub_insert->($any_col,$large_doc) }
});
say "bench query/cursor ...";
cmpthese(1,{
'mongo-perl-driver' => sub { $sub_query->($mongo_col) },
'anymongo' => sub{ $sub_query->($any_col) }
});
view all matches for this distribution
view release on metacpan or search on metacpan
site/articles/perlmonth1_intro.html view on Meta::CPAN
start_table({-border=>2, -bgcolor=>'blue'}),
Tr,td,
start_table({-border=>4, -bgcolor=>'white'})
;
# pretend we are reading from database cursor, so code
# would be written like so
my($data, $count);
while(@data) {
if($data and $count++ % 2) {
print end_table,td,start_table({-border=>4, -bgcolor=>'white'});
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/DBI.pm view on Meta::CPAN
# This function can be called from other handlers to perform tasks on all
# cached database handles.
sub all_handlers { return \%Connected }
# patch from Tim Bunce: Apache::DBI will not return a DBD ref cursor
@Apache::DBI::st::ISA = ('DBI::st');
# overload disconnect
{
package Apache::DBI::db;
view all matches for this distribution
view release on metacpan or search on metacpan
SQL_INTERVAL_DAY_TO_SECOND
SQL_INTERVAL_HOUR_TO_MINUTE
SQL_INTERVAL_HOUR_TO_SECOND
SQL_INTERVAL_MINUTE_TO_SECOND
) ],
sql_cursor_types => [ qw(
SQL_CURSOR_FORWARD_ONLY
SQL_CURSOR_KEYSET_DRIVEN
SQL_CURSOR_DYNAMIC
SQL_CURSOR_STATIC
SQL_CURSOR_TYPE_DEFAULT
) ], # for ODBC cursor types
utils => [ qw(
neat neat_list $neat_maxlen dump_results looks_like_number
data_string_diff data_string_desc data_diff
) ],
profile => [ qw(
values are 'connect', 'connect_cached', or some specialized case like
'Apache::DBI::connect' (which is automatically the default when running
within Apache).
Where possible, each session (C<$dbh>) is independent from the transactions
in other sessions. This is useful when you need to hold cursors open
across transactions--for example, if you use one session for your long lifespan
cursors (typically read-only) and another for your short update
transactions.
For compatibility with old DBI scripts, the driver can be specified by
passing its name as the fourth argument to C<connect> (instead of C<\%attr>):
print "First column may return NULL\n" if $sth->{NULLABLE}->[0];
=item C<CursorName> (string, read-only)
Returns the name of the cursor associated with the statement handle, if
available. If not available or if the database driver does not support the
C<"where current of ..."> SQL syntax, then it returns C<undef>.
=item C<Database> (dbh, read-only)
view all matches for this distribution
view release on metacpan or search on metacpan
apache_mp3/default.tmpl view on Meta::CPAN
Your Playlist Contains <TMPL_VAR NAME=CONTAINS_PLAYLIST> Song(s)
</font>
</td>
<td align=right>
<TMPL_IF NAME=ALLOW_STREAM>
<input type="button" value=" Play Playlist " STYLE="background:#cccc99; color:663300; font-size:8pt; cursor:hand; font-weight: bold;" onclick="location = '<TMPL_VAR NAME=PLAY_ALL_PLAYLIST_URL>';">
</TMPL_IF>
<input type="button" value=" Clear Playlist " STYLE="background:#cccc99; color:663300; font-size:8pt; cursor:hand;" onclick="location = '<TMPL_VAR NAME=CLEAR_ALL_PLAYLIST_URL>';">
</td>
</tr>
</table>
</td>
apache_mp3/default.tmpl view on Meta::CPAN
<td> </td>
<td colspan=4>
<table cellpadding=4 border=0 cellspacing=0>
<tr><td>
<TMPL_IF NAME=ALLOW_STREAM>
<input type="button" value=" Play Playlist " STYLE="background:#cccc99; color:663300; font-size:8pt; cursor:hand; font-weight: bold;" onclick="location = '<TMPL_VAR NAME=PLAY_ALL_PLAYLIST_URL>';">
<input tye="button" value=" Play Checked " STYLE="background:#cccc99; color:663300; font-size:8pt; cursor:hand;" onclick="<TMPL_VAR NAME=PLAY_SELECTED_SCRIPT>">
</TMPL_IF>
<input type="button" value=" Clear Playlist " STYLE="background:#cccc99; color:663300; font-size:8pt; cursor:hand;" onclick="location = '<TMPL_VAR NAME=CLEAR_ALL_PLAYLIST_URL>';">
<input type="button" value=" Clear Checked " STYLE="background:#cccc99; color:663300; font-size:8pt; cursor:hand;" onclick="<TMPL_VAR NAME=CLEAR_SELECTED_PLAYLIST_SCRIPT>">
</td></tr>
</table>
</td>
</tr>
</TMPL_IF>
apache_mp3/default.tmpl view on Meta::CPAN
<table cellpadding=4 border=0 cellspacing=0>
<tr><td>
<TMPL_IF NAME=CONTAINS_MP3S>
<TMPL_IF NAME=ALLOW_STREAM>
<input type="button" value=" Play All " STYLE="background:#cccc99; color:663300; font-size:8pt; cursor:hand; font-weight: bold;" onclick="<TMPL_VAR NAME=PLAY_ALL_SCRIPT>">
<input type="button" value="Play Checked" STYLE="background:#cccc99; color:663300; font-size:8pt; cursor:hand;" onclick="<TMPL_VAR NAME=PLAY_ALL_SCRIPT>">
</TMPL_IF>
<input type="button" value=" Save All " STYLE="background:#cccc99; color:663300; font-size:8pt; cursor:hand;" onclick="<TMPL_VAR NAME=ADD_TO_PLAYLIST_ALL_SCRIPT>">
<input type="button" value="Save Checked" STYLE="background:#cccc99; color:663300; font-size:8pt; cursor:hand;" onclick="<TMPL_VAR NAME=PLAY_ALL_SCRIPT>">
</TMPL_IF>
</td></tr>
</table>
</td>
</tr>
apache_mp3/default.tmpl view on Meta::CPAN
<table cellpadding=4 border=0 cellspacing=0>
<tr><td>
<TMPL_IF NAME=CONTAINS_MP3S>
<TMPL_IF NAME=ALLOW_STREAM>
<input type="button" value=" Play All " STYLE="background:#cccc99; color:663300; font-size:8pt; cursor:hand; font-weight: bold;" onclick="<TMPL_VAR NAME=PLAY_ALL_SCRIPT>">
<input type="button" value="Play Checked" STYLE="background:#cccc99; color:663300; font-size:8pt; cursor:hand;" onclick="<TMPL_VAR NAME=PLAY_ALL_SCRIPT>">
</TMPL_IF>
<input type="button" value=" Save All " STYLE="background:#cccc99; color:663300; font-size:8pt; cursor:hand;" onclick="<TMPL_VAR NAME=ADD_TO_PLAYLIST_ALL_SCRIPT>">
<input type="button" value="Save Checked" STYLE="background:#cccc99; color:663300; font-size:8pt; cursor:hand;" onclick="<TMPL_VAR NAME=PLAY_ALL_SCRIPT>">
</TMPL_IF>
</td></tr>
</table>
</td>
</tr>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/SdnFw/css/iphone/style.css view on Meta::CPAN
div.autotrim ul li {
list-style-type:none;
display:block;
margin:0;
padding:2px;
cursor:pointer;
}
div.autocomplete {
position:absolute;
width:250px;
lib/Apache/SdnFw/css/iphone/style.css view on Meta::CPAN
div.autocomplete ul li {
list-style-type:none;
display:block;
margin:0;
padding:2px;
cursor:pointer;
}
tbody th {
width: 1px;
white-space: nowrap;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/Session/Browseable/Redis.pm view on Meta::CPAN
sub searchOnExpr {
my ( $class, $args, $selectField, $value, @fields ) = @_;
my %res;
if ( $class->isIndexed( $args, $selectField ) ) {
my $redisObj = $class->_getRedis($args);
my $cursor = 0;
do {
my ( $new_cursor, $sets ) =
$redisObj->scan( $cursor, MATCH => "${selectField}_$value" );
foreach my $set (@$sets) {
next unless $redisObj->type($set) eq 'set';
my @keys = $redisObj->smembers($set);
foreach my $k (@keys) {
my $v = $redisObj->get($k);
lib/Apache/Session/Browseable/Redis.pm view on Meta::CPAN
if ($tmp) {
$res{$k} = $class->extractFields( $tmp, @fields );
}
}
}
$cursor = $new_cursor;
} while ( $cursor != 0 );
}
else {
$value = quotemeta($value);
$value =~ s/\\\*/\.\*/g;
$value = qr/^$value$/;
lib/Apache/Session/Browseable/Redis.pm view on Meta::CPAN
sub get_key_from_all_sessions {
my ( $class, $args, $data ) = @_;
my %res;
my $redisObj = $class->_getRedis($args);
my $cursor = 0;
do {
my ( $new_cursor, $keys ) = $redisObj->scan($cursor);
foreach my $k (@$keys) {
# Keep only our keys
next unless $class->isLlngKey( $args, $k );
lib/Apache/Session/Browseable/Redis.pm view on Meta::CPAN
# Don't delete, it may own to another app
#delete $res{$k};
}
}
$cursor = $new_cursor;
} while ( $cursor != 0 );
return \%res;
}
sub _getRedis {
my $class = shift;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/Session/MongoDB.pm view on Meta::CPAN
}
sub _query {
my ( $class, $args, $filter, @fields ) = @_;
my $col = $class->_col($args);
my $cursor = $col->find($filter);
if (@fields) {
$cursor =
$cursor->fields( { map { $_ => 1 } @fields, "_session_id" => 1 } );
}
my %res;
while ( my $r = $cursor->next ) {
my $id = $r->{_session_id};
delete $r->{_id};
$res{$id} = $r;
}
return \%res;
}
sub get_key_from_all_sessions {
my ( $class, $args, $data ) = @_;
my $col = $class->_col($args);
my $cursor = $col->find( {} );
my %res;
while ( my $r = $cursor->next ) {
my $id = $r->{_session_id};
delete $r->{_id};
if ( ref($data) eq 'CODE' ) {
$res{$id} = $data->( $r, $id );
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/Voodoo/Debug/html/debug.css view on Meta::CPAN
overflow-x: hidden;
overflow-y: auto;
}
div.voodooDebug ul {
cursor: default;
}
div.voodooDebug .vdClick {
cursor: pointer;
}
div.voodooDebug table {
padding: 5px 0px 5px 0px;
border-collapse: collapse;
view all matches for this distribution
view release on metacpan or search on metacpan
Wyrd/Interfaces/Columnize.pm view on Meta::CPAN
my $rows = scalar(@items) ? int(1 + (@items/$cols)) : 1;
if ($self->{'direction'} eq 'down') {#only re-map the array to the down-first direction if specified
my (@newitems, $counter, $rowcounter) = ();
my $count = $#items;
while (@items) {#map a new array by iterating across the old array horizontal-wise
my $cursor = $counter;
while ($cursor <= $count) {
my $item = shift @items;
$newitems[$cursor] = $item;
$cursor += $cols;
}
$counter++;
}
while (@newitems < ($cols * $rows)) {#fill in additional items;
push @newitems, ' ';
view all matches for this distribution
view release on metacpan or search on metacpan
xsl/apache-xbel.xsl view on Meta::CPAN
.navbar .navbar-item {
padding-right:25px;
}
.navbar .navbar-item a:hover { cursor:w-resize; }
.root {
background:#ffffff;
/* width : 60%; */
font-size:14pt;
xsl/apache-xbel.xsl view on Meta::CPAN
padding-top:5px;
display:none;
}
.folder a:hover {
cursor:e-resize;
}
.alias {
font-weight:normal;
font-size:10pt;
xsl/apache-xbel.xsl view on Meta::CPAN
text-decoration:underline;
}
.bookmark a:hover {
color:blue;
cursor:e-resize;
}
.bookmark-description {
color : #666666;
margin-bottom:10px;
view all matches for this distribution
view release on metacpan or search on metacpan
examples/demo-gate/gate.css view on Meta::CPAN
}
.gate-provider button
{
background: #FFFFFF;
cursor: pointer;
margin-right: 15px; /* IE only */
height: 45px;
width: 150px;
border-top : 1px solid #000000;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache2/Translation/BDB.pm view on Meta::CPAN
sub fetch {
my ($I, $key, $uri, $with_notes)=@_;
$key.="\t".$uri;
my (@l, $v, $c, $stat);
$c=$I->_db2->db_cursor;
if( $with_notes ) {
for( $stat=$c->c_get($key, $v, DB_SET);
$stat==0;
$stat=$c->c_get($key, $v, DB_NEXT_DUP) ) {
push @l, [@{decode($v)}[BLOCK,ORDER,ACTION,ID,NOTE]];
lib/Apache2/Translation/BDB.pm view on Meta::CPAN
sub list_keys {
my $I=$_[0];
my (%h, $k, $v, $c, $stat);
$c=$I->_db2->db_cursor;
for( $stat=$c->c_get($k, $v, DB_FIRST);
$stat==0;
$stat=$c->c_get($k, $v, DB_NEXT_NODUP) ) {
undef $h{(split /\t/, $k)[0]};
}
lib/Apache2/Translation/BDB.pm view on Meta::CPAN
sub list_keys_and_uris {
my ($I,$key)=@_;
$key='' unless( defined $key );
my (@l, $k, $v, $c, $stat);
$c=$I->_db2->db_cursor;
for( $stat=$c->c_get($k, $v, DB_FIRST);
$stat==0;
$stat=$c->c_get($k, $v, DB_NEXT_NODUP) ) {
my @v=split /\t/, $k;
lib/Apache2/Translation/BDB.pm view on Meta::CPAN
my $I=shift;
my $old=shift;
my $new=shift;
my ($v, $c, $stat, $rc);
$c=$I->_db1->db_cursor;
if( ($rc=$c->c_get($old->[oID], $v, DB_SET))==0 ) {
my $el=decode($v);
if( $el->[BLOCK]==$old->[oBLOCK] and $el->[ORDER]==$old->[oORDER] ) {
@{$el}[BLOCK,ORDER,ACTION,KEY,URI,NOTE]=
lib/Apache2/Translation/BDB.pm view on Meta::CPAN
sub insert {
my ($I, $new)=@_;
# fetch a new id
my ($k, $v, $c, $id, $rc);
$c=$I->extra_db->db_cursor;
if( ($rc=$c->c_get($k='id_seq', $v, DB_SET))==0 ) {
$rc=$c->c_put( $k, $id=$v+1, DB_CURRENT );
} else {
die "__RETRY__\n" if( $rc==DB_LOCK_DEADLOCK );
$rc=$I->extra_db->db_put( $k, $id=1 );
lib/Apache2/Translation/BDB.pm view on Meta::CPAN
sub delete {
my ($I, $old)=@_;
my ($v, $c, $stat, $rc);
$c=$I->_db1->db_cursor;
if( ($rc=$c->c_get($old->[oID], $v, DB_SET))==0 ) {
my $el=decode($v);
if( $el->[BLOCK]==$old->[oBLOCK] and $el->[ORDER]==$old->[oORDER] ) {
$rc=$c->c_del;
lib/Apache2/Translation/BDB.pm view on Meta::CPAN
my ($I)=@_;
my ($k, $v, $c, $stat, $count, $rc);
$count=0;
$c=$I->_db1->db_cursor;
while( ($rc=$c->c_get($k, $v, DB_NEXT))==0 ) {
$rc=$c->c_del;
die "__RETRY__\n" if( $rc==DB_LOCK_DEADLOCK );
$count+=($rc==0 ? 1 : 0);
}
lib/Apache2/Translation/BDB.pm view on Meta::CPAN
return $count;
}
sub iterator {
my $c=$_[0]->_db2->db_cursor;
my @blocklist;
return sub {
unless( @blocklist ) {
my ($key, $k, $v, $rc);
view all matches for this distribution
view release on metacpan or search on metacpan
usr/share/webapp-toolkit/extra/htdocs/admin/css/base.css view on Meta::CPAN
margin: 20px 20px 20px 25px;
}
a, a:visited {
color: #0000FF;
cursor: pointer;
text-decoration: none;
}
a:hover {
background-color: #EEEEEE;
view all matches for this distribution
view release on metacpan or search on metacpan
script/_acme-cpanauthors view on Meta::CPAN
# v => 1.1,
# summary => 'Return line with point marked by a marker',
# description => <<'_',
#
#This is a utility function useful for testing/debugging. `parse_cmdline()`
#expects a command-line and a cursor position (`$line`, `$point`). This routine
#expects `$line` with a marker character (by default it's the caret, `^`) and
#return (`$line`, `$point`) to feed to `parse_cmdline()`.
#
#Example:
#
script/_acme-cpanauthors view on Meta::CPAN
# description => <<'_',
#
#Optional. Known options:
#
#* `truncate_current_word` (bool). If set to 1, will truncate current word to the
# position of cursor, for example (`^` marks the position of cursor):
# `--vers^oo` to `--vers` instead of `--versoo`. This is more convenient when
# doing tab completion.
#
#_
# schema => 'hash*',
script/_acme-cpanauthors view on Meta::CPAN
# # this is a workaround. since bash breaks words using characters in
# # $COMP_WORDBREAKS, which by default is "'@><=;|&(: this presents a problem
# # we often encounter: if we want to provide with a list of strings
# # containing say ':', most often Perl modules/packages, if user types e.g.
# # "Text::AN" and we provide completion ["Text::ANSI"] then bash will change
# # the word at cursor to become "Text::Text::ANSI" since it sees the current
# # word as "AN" and not "Text::AN". the workaround is to chop /^Text::/ from
# # completion answers. btw, we actually chop /^text::/i to handle
# # case-insensitive matching, although this does not have the ability to
# # replace the current word (e.g. if we type 'text::an' then bash can only
# # replace the current word 'an' with 'ANSI).
script/_acme-cpanauthors view on Meta::CPAN
# % somecmd t<Tab>
# two three
#
#Another source is from a bash function (C<-F>). The function will receive input
#in two variables: C<COMP_WORDS> (array, command-line chopped into words) and
#C<COMP_CWORD> (integer, index to the array of words indicating the cursor
#position). It must set an array variable C<COMPREPLY> that contains the list of
#possible completion:
#
# % _foo()
# {
script/_acme-cpanauthors view on Meta::CPAN
# % foo <Tab>
# --help --verbose --version
#
#And yet another source is an external command (C<-C>) including, from a Perl
#script. The command receives two environment variables: C<COMP_LINE> (string,
#raw command-line) and C<COMP_POINT> (integer, cursor location). Program must
#split C<COMP_LINE> into words, find the word to be completed, complete that, and
#return the list of words one per-line to STDOUT. An example:
#
# % cat foo-complete
# #!/usr/bin/perl
script/_acme-cpanauthors view on Meta::CPAN
#Optional. Known options:
#
#=over
#
#=item * C<truncate_current_word> (bool). If set to 1, will truncate current word to the
#position of cursor, for example (C<^> marks the position of cursor):
#C<--vers^oo> to C<--vers> instead of C<--versoo>. This is more convenient when
#doing tab completion.
#
#=back
#
script/_acme-cpanauthors view on Meta::CPAN
# point($cmdline, $marker) -> any
#
#Return line with point marked by a marker.
#
#This is a utility function useful for testing/debugging. C<parse_cmdline()>
#expects a command-line and a cursor position (C<$line>, C<$point>). This routine
#expects C<$line> with a marker character (by default it's the caret, C<^>) and
#return (C<$line>, C<$point>) to feed to C<parse_cmdline()>.
#
#Example:
#
script/_acme-cpanauthors view on Meta::CPAN
#single dash will be completed. For example if you have `-foo=s` in your option
#specification, `-f<tab>` can complete it.
#
#This can be used to complete old-style programs, e.g. emacs which has options
#like `-nw`, `-nbc` etc (but also have double-dash options like
#`--no-window-system` or `--no-blinking-cursor`).
#
#_
# },
# },
# result_naked => 1,
script/_acme-cpanauthors view on Meta::CPAN
#single dash will be completed. For example if you have C<-foo=s> in your option
#specification, C<< -fE<lt>tabE<gt> >> can complete it.
#
#This can be used to complete old-style programs, e.g. emacs which has options
#like C<-nw>, C<-nbc> etc (but also have double-dash options like
#C<--no-window-system> or C<--no-blinking-cursor>).
#
#=item * B<completion> => I<code>
#
#Completion routine to complete option valueE<sol>argument.
#
script/_acme-cpanauthors view on Meta::CPAN
# summary => 'Command-line arguments',
# schema => ['array*' => {of=>'str*'}],
# req => 1,
# },
# cword => {
# summary => 'On which argument cursor is located (zero-based)',
# schema => 'int*',
# req => 1,
# },
# completion => {
# summary => 'Supply custom completion routine',
script/_acme-cpanauthors view on Meta::CPAN
#
#=back
#
#=item * B<cword>* => I<int>
#
#On which argument cursor is located (zero-based).
#
#=item * B<extras> => I<hash>
#
#Add extra arguments to completion routine.
#
view all matches for this distribution
view release on metacpan or search on metacpan
share/static/alice-dark.css view on Meta::CPAN
ul#tabs {
z-index: 20; }
ul#tabs li:hover {
cursor: default; }
ul#controls {
z-index: 30;
background: #444444; }
share/static/alice-dark.css view on Meta::CPAN
font-size: 11px;
margin: 0;
padding: 4px 3px 5px 3px;
text-align: center;
background: none;
cursor: pointer;
border: none; }
tr.input div.editor_toolbar button:hover {
color: black; }
share/static/alice-dark.css view on Meta::CPAN
.underline {
text-decoration: underline; }
tr.input div.editor_toolbar:hover {
opacity: 0.4;
cursor: pointer; }
tr.input div.editor_toolbar.visible:hover {
opacity: 1;
cursor: inherit; }
tr.input div.editor_toolbar.visible {
background-color: rgba(255, 255, 255, 0.6);
background-image: none;
right: -4px;
share/static/alice-dark.css view on Meta::CPAN
margin: 0;
padding: 0;
height: 16px;
width: 16px;
padding: 4px 3px 3px 3px;
cursor: pointer; }
ul#controls li:hover {
background-color: #3a3a3a; }
tr.topic td {
share/static/alice-dark.css view on Meta::CPAN
padding: 0;
position: relative;
display: block; }
div.msg img.audio {
cursor: pointer;
display: inline;
padding: 0 4px;
width: 16px;
height: 16px;
margin-bottom: -3px; }
share/static/alice-dark.css view on Meta::CPAN
ul#logresults li {
border-bottom: 1px solid #eee;
padding: 0;
font-size: 0.8em;
cursor: pointer; }
ul#logresults div.focus:hover {
background: #eee; }
ul#logresults li div.focus {
share/static/alice-dark.css view on Meta::CPAN
letter-spacing: 1px;
text-shadow: none;
text-transform: uppercase; }
div#help div#helpclose:hover {
cursor: pointer;
color: #fff; }
div#help div#topics {
position: absolute;
top: 34px;
share/static/alice-dark.css view on Meta::CPAN
margin: 0;
padding: 0;
z-index: 903; }
div.color_picker span {
cursor: pointer; }
div.color_picker div.colors {
clear: both; }
div.color_picker div.colors span {
share/static/alice-dark.css view on Meta::CPAN
background: #efefef;
text-transform: uppercase;
color: #777;
letter-spacing: 1px;
font-size: 0.7em;
cursor: default; }
div.config ul#connections li.header:hover {
background: #efefef; }
div.config ul#connections li {
padding: 5px 8px;
font-size: 0.9em;
cursor: pointer;
border: 1px solid #fff;
border-bottom: none; }
div.config ul#connections li:hover {
background: #ffffcc; }
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Asciio.pm view on Meta::CPAN
}
else
{
unless($self->is_element_selected($first_element))
{
# make the element under cursor the only selected element
$self->select_elements(0, @{$self->{ELEMENTS}}) ;
$self->select_elements(1, $first_element) ;
}
}
}
view all matches for this distribution
view release on metacpan or search on metacpan
script/block-web-flooders view on Meta::CPAN
OUTPUT:
{
last unless !$last_update_output_time ||
$last_update_output_time <= $now-2;
print "\e[2J\e[;H"; # clear screen + put cursor at top (0,0)
printf "Blocked IPs: %s%4d%s | Log lines: %s%6d%s | Running for: %s%s%s\n",
color('bold'), (scalar keys %Blocked), color('reset'),
color('bold'), $num_lines, color('reset'),
color('bold'), Time::Duration::concise(Time::Duration::duration($now-$^T, 2)), color('reset');
$last_update_output_time = $now;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/CamelPKI/CA.pm view on Meta::CPAN
-critical => 1);
$crl->set_extension("authorityKeyIdentifier",
{ keyid => $self->certificate->
as_crypt_openssl_ca_x509->get_subject_keyid });
for(my $cursor = $self->{db}->search(-initially_valid_at => "now",
-revoked => 1);
$cursor->has_more; $cursor->next) {
my $serial = $cursor->certificate->get_serial;
my $time = $cursor->revocation_time;
my $reason = $cursor->revocation_reason;
my $ctime = $cursor->compromise_time;
my $holdoid = $cursor->hold_instruction;
$crl->add_entry
($serial, $time,
(defined($reason) ? (-reason => $reason) : ()),
(defined($ctime) ? (-compromise_time => $ctime) : ()),
lib/App/CamelPKI/CA.pm view on Meta::CPAN
sub get_certificates_issued(){
my ($self) = @_;
my @certs;
for(my $cursor = $self->{db}->search();
$cursor->has_more; $cursor->next) {
push @certs, $cursor->certificate;
}
return @certs;
}
=head2 get_certificates_revoked()
lib/App/CamelPKI/CA.pm view on Meta::CPAN
sub get_certificates_revoked(){
my ($self) = @_;
my @certs;
for(my $cursor = $self->{db}->search(-revoked => 1);
$cursor->has_more; $cursor->next) {
push @certs, $cursor->certificate;
}
return @certs;
}
=head2 get_certificate_by_serial($serial)
lib/App/CamelPKI/CA.pm view on Meta::CPAN
=cut
sub get_certificate_by_serial(){
my ($self, $serial) = @_;
for(my $cursor = $self->{db}->search( -serial=>$serial, -revoked=>undef ); $cursor->has_more; $cursor->next) {
warn "on est bon";
return $cursor->certificate;
}
}
=head2 rescind()
lib/App/CamelPKI/CA.pm view on Meta::CPAN
$ca = load_ca->facet_certtemplate("App::CamelPKI::CertTemplate::Foo");
$ca->issue("App::CamelPKI::CertTemplate::Foo", $pubkey,
name => "user1", uid => 1);
# A new certificate for UID 43 must revoke the old one:
my $cursor = $ca->database->search(name => "Fred");
is($cursor->revocation_time(), undef,
"The Fred's certificate is not yet revoked");
is(my $fredid = $cursor->infos->{uid}->[0], 43,
"Using CADB to get the Fred's UID")
or warn Data::Dumper::Dumper(scalar($cursor->infos));
# Fred got his operation, so he need a new certificate:
$ca->issue("App::CamelPKI::CertTemplate::Foo", $pubkey,
name => "Frida", uid => $fredid);
$cursor = $ca->database->search(name => "Fred", -revoked => undef);
isnt($cursor->revocation_time(), undef,
"the Fred certificate is revoked");
is($ca->database->search(-revoked => undef, name => "Frida")->count, 0,
q"No means to use $ca->databae to get "
. q"new certificats in preview");
view all matches for this distribution
view release on metacpan or search on metacpan
t/sample/sample.html view on Meta::CPAN
<style>
.sptable h4{margin:0em 0 -.1em;color:#6666FF;font-size:14px;}
.sptable a{color:#339900;}
.sptable h4:hover{text-decoration:underline;}
.sptable td{cursor:pointer;text-align:left;}
</style>
<SCRIPT LANGUAGE="JavaScript">
<!--
var spdata = new Array(0);
spdata[0] = Array('http://pk555.net/?Extend=2218497','<h4>ÍøÂçÌåÓýͶעÊ×Ñ¡£¡(ÐÅÓþÍÆ¼ö)¡ª¡ª×¢²á¾ÍËÍ£¤2000(ʱ¼äÃû¶îÓÐÏÞ)</h4><p>Ó¢³¬¡¢Î÷¼×¡¢Òâ¼×¡¢µÂ¼×...£¬NBAÀºÇò£»ÕæÈËÃÀÅ®°Ù¼ÒÀÖ¡¢ÂÖÅÌ¡¢Áú»¢¶·¡¢ÎÂÖÝÅÆ¾Å¡¢21µãµÈ£»¸£²Ê3D¡¢Ïã¸ÛÁùºÏ²ÊµÈ£»¹ú¼Ê²ÆÁ¦×ʽð±£ÕÏ£¬...
t/sample/sample.html view on Meta::CPAN
<h4>[MP4/1.09GB]DV-1194 Ãô¸ÐÉíówÖ±¶ßà ÖÐÎ÷Àï²Ë(ÖÐÎÄ×ÖÄ»)</h4>
<div class="tips" style="width:auto"><SCRIPT LANGUAGE="JavaScript">spinit();</SCRIPT></div><div class="c"></div>
<br /><div class="tpc_content">¡¾Ó°Æ¬Ãû·Q¡¿: DV-1194 Ãô¸ÐÉíówÖ±¶ßà ÖÐÎ÷Àï²Ë(ÖÐÎÄ×ÖÄ»)<br>¡¾Ó°Æ¬¸ñʽ¡¿: MP4<br>¡¾Ó°Æ¬´óС¡¿: 1.09GB<br>¡¾ÑéÖ¤±àÂë¡¿: e33e0a53c9c6b8749b244bddd604afbab82e652a<br>¡¾²¥·ÅÈí¼þ¡¿: QQÓ°Òô ±©·çÓ°ÒôµÈ<br>¡¾ÓдaÓдa¡¿: Óдa<br>...
</td></tr></table>
</th></tr>
<tr class="tr1 r_one">
<th style="vertical-align:bottom; padding-left:1.5%; border:0">
t/sample/sample.html view on Meta::CPAN
<div class="tipad">
<span style="float:right">
<a href="javascript:scroll(0,0)">TOP</a></span>
Posted:2013-09-07 14:10 |
<span><a class="s3" title="»ØÍ´ËÇ" style="cursor:pointer;" onclick="postreply('»Ø ÇÖ÷(³¾·â×·Òä)µÄÌû×Ó');">[Ç Ö÷]</a></span>
</div></th></tr></table></div>
<div class="t t2" >
t/sample/sample.html view on Meta::CPAN
<div class="tipad">
<span style="float:right">
<a href="javascript:scroll(0,0)">TOP</a></span>
Posted:2013-09-07 14:12 |
<span><a class="s3" title="»ØÍ´ËÇ" style="cursor:pointer;" onclick="postreply('»Ø 1Ç(493403240)µÄÌû×Ó');">1 Ç</a></span>
</div></th></tr></table></div>
<div class="t t2" >
t/sample/sample.html view on Meta::CPAN
<div class="tipad">
<span style="float:right">
<a href="javascript:scroll(0,0)">TOP</a></span>
Posted:2013-09-07 14:17 |
<span><a class="s3" title="»ØÍ´ËÇ" style="cursor:pointer;" onclick="postreply('»Ø 2Ç(²»ÏëÉϰà)µÄÌû×Ó');">2 Ç</a></span>
</div></th></tr></table></div>
<div class="t t2" >
t/sample/sample.html view on Meta::CPAN
<div class="tipad">
<span style="float:right">
<a href="javascript:scroll(0,0)">TOP</a></span>
Posted:2013-09-07 14:42 |
<span><a class="s3" title="»ØÍ´ËÇ" style="cursor:pointer;" onclick="postreply('»Ø 3Ç(gordon.hs)µÄÌû×Ó');">3 Ç</a></span>
</div></th></tr></table></div>
<div class="t t2" >
t/sample/sample.html view on Meta::CPAN
<div class="tipad">
<span style="float:right">
<a href="javascript:scroll(0,0)">TOP</a></span>
Posted:2013-09-07 15:31 |
<span><a class="s3" title="»ØÍ´ËÇ" style="cursor:pointer;" onclick="postreply('»Ø 4Ç(237468)µÄÌû×Ó');">4 Ç</a></span>
</div></th></tr></table></div>
<div class="t t2" >
t/sample/sample.html view on Meta::CPAN
<div class="tipad">
<span style="float:right">
<a href="javascript:scroll(0,0)">TOP</a></span>
Posted:2013-09-07 15:33 |
<span><a class="s3" title="»ØÍ´ËÇ" style="cursor:pointer;" onclick="postreply('»Ø 5Ç(´²ÉÏСÐý·ç)µÄÌû×Ó');">5 Ç</a></span>
</div></th></tr></table></div>
<div class="t t2" >
t/sample/sample.html view on Meta::CPAN
<div class="tipad">
<span style="float:right">
<a href="javascript:scroll(0,0)">TOP</a></span>
Posted:2013-09-07 15:42 |
<span><a class="s3" title="»ØÍ´ËÇ" style="cursor:pointer;" onclick="postreply('»Ø 6Ç(jiaolvgang)µÄÌû×Ó');">6 Ç</a></span>
</div></th></tr></table></div>
<div class="t t2" >
t/sample/sample.html view on Meta::CPAN
<div class="tipad">
<span style="float:right">
<a href="javascript:scroll(0,0)">TOP</a></span>
Posted:2013-09-07 16:40 |
<span><a class="s3" title="»ØÍ´ËÇ" style="cursor:pointer;" onclick="postreply('»Ø 7Ç(ÅŹÇÀ¼)µÄÌû×Ó');">7 Ç</a></span>
</div></th></tr></table></div>
<div class="t t2" >
t/sample/sample.html view on Meta::CPAN
<div class="tipad">
<span style="float:right">
<a href="javascript:scroll(0,0)">TOP</a></span>
Posted:2013-09-07 17:47 |
<span><a class="s3" title="»ØÍ´ËÇ" style="cursor:pointer;" onclick="postreply('»Ø 8Ç(ÃλÃmilan)µÄÌû×Ó');">8 Ç</a></span>
</div></th></tr></table></div>
<div class="t t2" >
t/sample/sample.html view on Meta::CPAN
<div class="tipad">
<span style="float:right">
<a href="javascript:scroll(0,0)">TOP</a></span>
Posted:2013-09-07 18:47 |
<span><a class="s3" title="»ØÍ´ËÇ" style="cursor:pointer;" onclick="postreply('»Ø 9Ç(b4321)µÄÌû×Ó');">9 Ç</a></span>
</div></th></tr></table></div>
<div class="t3"><table cellspacing="0" cellpadding="0" width="100%" align="center">
<tr><td align="left"><div class="pages"><a href="../../../read.php?tid=951593&page=1" style="font-weight:bold">«</a><b> 1 </b><a href="../../../read.php?tid=951593&page=2">2</a><a href='../../../read.php?tid=951593&page=2' style='font-weight:bo...
t/sample/sample.html view on Meta::CPAN
<b>ÈÈÝ</b>£º<br />
<font face="verdana"> HTML ´ú´a²»¿ÉÓÃ<br /><br />
<input type="checkbox" name="atc_usesign" value="1" checked />ʹÓúÃû<br />
<input type="checkbox" name="atc_convert" value="1" checked />Wind Code×ÔÓÞDQ
<input type="hidden" name="atc_autourl" value="1" /><br /><br />
<a style="cursor:pointer;border:1px solid #A6CBE7;color:#2f5fa1;padding:2px 8px 2px 8px;" onclick="javascript:checklength(document.FORM,'50000');">×Öµz²é</a>
<a style="cursor:pointer;border:1px solid #A6CBE7;color:#2f5fa1;padding:2px 8px 2px 8px;" onclick="loadData('msg');">»Ö͵þ</a>
</td>
<td width="60%" bgcolor="#F9F9EC">
<div style="margin:5px 0">
<input class="input" type="text" name="atc_title" value="Re:[MP4/1.09GB]DV-1194 Ãô¸ÐÉíówÖ±¶ßà ÖÐÎ÷Àï²Ë(ÖÐÎÄ×ÖÄ»)" size="50" maxlength="45" readonly="readonly"/>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Chart/Gtk2/AnnDrag.pm view on Meta::CPAN
HERE
my $active = 0;
my $graph;
my $cursor;
my $drawn = 0;
my $wevents;
my $snooper;
my $orig_elem; # from database, or undef for new line
lib/App/Chart/Gtk2/AnnDrag.pm view on Meta::CPAN
use constant::defer init => sub {
$graph->signal_connect (motion_notify_event => \&_do_motion_notify_event);
$graph->signal_connect (button_release_event=> \&_do_button_release_event);
require Gtk2::Ex::WidgetCursor;
$cursor = Gtk2::Ex::WidgetCursor->new (widget => $graph,
cursor => 'left_ptr');
require Gtk2::Ex::WidgetEvents;
$wevents = Gtk2::Ex::WidgetEvents->new ($graph, ['key-press-mask',
'button-motion-mask',
'button-release-mask']);
lib/App/Chart/Gtk2/AnnDrag.pm view on Meta::CPAN
$drawn = 0;
draw(1);
}
$active = 1;
$cursor->active (1);
$snooper->install (\&_do_key_snooper);
}
sub _stop {
$active = 0;
$cursor->active (0);
$snooper->remove;
}
sub done {
if (! $active) { return; }
view all matches for this distribution
view release on metacpan or search on metacpan
# Get info about an xterm window
xprop -id <window_id>
xprop -id 0x2400022
# Get position of the cursor
perl -e '$/ = "R";' -e 'print "\033[6n";my $x=<STDIN>;my($n, $m)=$x=~m/(\d+)\;(\d+)/;print "Current position: $m, $n\n";'
# Print how many columns and rows an xterm window uses for its screen size
tput cols
tput lines
complete -p | grep ls # finds _longopt
complete -F _longopt my_function
# Bash autocomplete special variables
# COMP_WORDS is an array containing all individual words in the current command line.
# COMP_CWORD is an index of the word containing the current cursor position.
# COMPREPLY is an array variable from which Bash reads the possible completions.
# Tab completions source of bash commands (Bash,Tab,auto)
vi /etc/bash_completion
vi /usr/share/bash-completion/bash_completion
transform: translate(-50%, -50%);
}
.loading-svg {
width: 5.7375rem;
height: 2.23125rem;
cursor: pointer;
}
.loading-svg svg > path, .loading-svg svg > ellipse, .loading-svg svg > rect {
fill: #888;
}
.loading-svg svg > .thicker {
82 1080p 60Hz Original
83 1600x900 Reduced blanking. Too small. Must scroll, plus keyboard is mostly gone)
84 2048x1152 Reduced blanking. Double size. Unreadable
85 720p 60Hz Good. But need to scroll
# Smart toggle (enable/disable) mouse cursor (pi)
# Remove/add "-nocursor" to this line:
# MUST first mount / then restart
sudo mount -o remount,rw /
sudo vi /etc/lightdm/lightdm.conf
/ xserver-command=X -nocursor
sudo reboot
#############################################################
## PI - Shortcuts
#############################################################
## Ubuntu - Update Error
N#############################################################
# Problem: Did a partial upgrade,
# Ubuntu restarted to a black screen and a blinking cursor.
# Fix:
Control + Alt + F2 # At the same time
#
# Login to PC
#
#############################################################
## Vim Inserting Text
#############################################################
# Insert before cursor (Vim)
i
# Insert before line (Vim)
I
# Append after cursor (Vim)
a
# Append after line (Vim)
A
#############################################################
## Vim Deleting Text
#############################################################
# Delete character to the right of cursor (Vim)
x
# Delete character to the left of cursor (Vim)
X
# Delete to the end of the line (Vim)
D
inoremap <F9> <C-O>za
nnoremap <F9> za
onoremap <F9> <C-C>za
vnoremap <F9> zf
# Close a fold (depends on cursor) (Vim)
zc
# Close all fold (depends on cursor) (Vim)
zC
# Open a fold (depends on cursor) (Vim)
zo
# Open all fold (depends on cursor)
zO
# Toggle/Alternate a fold (depends on cursor) (Vim)
za
# Toggle/Alternate all fold (depends on cursor) (Vim)
zA
# Open a single level of folds (depends on cursor) (Vim)
zr
# Open all more level of folds (seems similar to zA) (Vim)
zR
# Create tags of all OMS functions (Vim)
sudo apt-get install exuberant-ctags
ctags `find ~/omspp/trunk/ -type f -name "*.[ch]" -o -name "*.cpp"`
ctags -f $tag_file $(find $oms_tree -type f -name "*.[ch]" -o -name "*.cpp")
# Jump to the tag/function underneath the cursor (Vim)
<Control> + ]
:tag
# Search for a particular tag (Vim)
:ts <tag>
# Show line numbers in vim (vimrc)
set number
# Vim resource (vimrc) file. other features.
set nowrap
set cursorline
hi CursorLine term=bold cterm=bold guibg=Grey40
set cursorcolumn
# Do not go past the end of the file when searching (Vim)
set nowrapscan
# View the current file type of a Vim file
3~
# Toggle case of the next three words (Vim)
g~3w
# Toggle case of the current word (inner word - cursor anywhere in word (Vim)
g~iw
# Toggle case of all characters to end of line (Vim)
g~$
view all matches for this distribution
view release on metacpan or search on metacpan
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
cursor: pointer;
-webkit-appearance: button;
}
label,
select,
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
cursor: pointer;
}
input[type="search"] {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
border-bottom: 1px solid #ffffff;
}
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #999999;
}
abbr.initialism {
font-size: 90%;
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
}
.uneditable-input,
.uneditable-textarea {
color: #999999;
cursor: not-allowed;
background-color: #fcfcfc;
border-color: #cccccc;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
cursor: not-allowed;
background-color: #eeeeee;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
text-decoration: none;
cursor: default;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
.close:hover,
.close:focus {
color: #000000;
text-decoration: none;
cursor: pointer;
opacity: 0.4;
filter: alpha(opacity=40);
}
button.close {
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
}
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
line-height: 20px;
color: #333333;
text-align: center;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
vertical-align: middle;
cursor: pointer;
background-color: #f5f5f5;
*background-color: #e6e6e6;
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn.disabled,
.btn[disabled] {
cursor: default;
background-image: none;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
-moz-box-shadow: none;
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
box-shadow: none;
}
.btn-link {
color: #0088cc;
cursor: pointer;
border-color: transparent;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
.nav-tabs > .active > a,
.nav-tabs > .active > a:hover,
.nav-tabs > .active > a:focus {
color: #555555;
cursor: default;
background-color: #ffffff;
border: 1px solid #ddd;
border-bottom-color: transparent;
}
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
border-bottom-color: #555555;
}
.nav > .dropdown.active > a:hover,
.nav > .dropdown.active > a:focus {
cursor: pointer;
}
.nav-tabs .open .dropdown-toggle,
.nav-pills .open .dropdown-toggle,
.nav > li.dropdown.open.active > a:hover,
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
}
.nav > .disabled > a:hover,
.nav > .disabled > a:focus {
text-decoration: none;
cursor: default;
background-color: transparent;
}
.navbar {
*position: relative;
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
}
.pagination ul > .active > a,
.pagination ul > .active > span {
color: #999999;
cursor: default;
}
.pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus {
color: #999999;
cursor: default;
background-color: transparent;
}
.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span {
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
color: #999999;
cursor: default;
background-color: #fff;
}
.modal-backdrop {
position: fixed;
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
a.label:focus,
a.badge:hover,
a.badge:focus {
color: #ffffff;
text-decoration: none;
cursor: pointer;
}
.label-important,
.badge-important {
background-color: #b94a48;
themes/bs2/static/css/bootstrap.css view on Meta::CPAN
display: block;
padding: 8px 15px;
}
.accordion-toggle {
cursor: pointer;
}
.accordion-inner {
padding: 9px 15px;
border-top: 1px solid #e5e5e5;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Codeowners/Options.pm view on Meta::CPAN
=head2 completions
$options->completions($current_arg_index, @args);
Print completions to C<STDOUT> for the given argument list and cursor position, and exit.
May also exit with status 9 and a compgen action printed to C<STDOUT> to indicate that the shell
should generate its own completions.
Doesn't return.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Codit/Plugins/PerlSubs.pm view on Meta::CPAN
PerlSubs scans the current selected document for lines that begin
with 'sub someName' and displays it in a list with the line number.
The list is refreshed after an edit.
When you click on and item in the list, the insert cursor is moved to that
line and it is scrolled into visibility.
Both colums are sizable and sortable.
=cut
view all matches for this distribution
view release on metacpan or search on metacpan
script/testcomp view on Meta::CPAN
This document describes version 0.180 of testcomp (from Perl distribution App-CompleteUtils), released on 2022-01-16.
=head1 SYNOPSIS
Usage (place caret sign (C<^>) somewhere to place cursor):
% testcomp [testcomp-options] -- <your-script> [your-script-options]^ ...
% testcomp [testcomp-options] -- <your-script> '[your-script-options]^ ...'
Examples:
script/testcomp view on Meta::CPAN
directory) while setting C<COMP_LINE> and C<COMP_POINT> to test how your script
will perform shell completion. In addition to that, it will also load
L<Log::ger::Output::Screen> and set C<TRACE=1> to let you see trace log
messages.
You can place caret sign (C<^>) somewhere in the argument to place cursor (set
C<COMP_POINT>)>. If no caret sign is present, C<COMP_POINT> is put at the end of
C<COMP_LINE>.
=head1 OPTIONS
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/DBBrowser.pm view on Meta::CPAN
s_back => '<<',
ok => '-OK-',
menu_addition => '%%',
info_thsd_sep => ',',
};
$info->{tc_default} = { hide_cursor => 0, clear_screen => 1, page => 2, keep => 6, undef => $info->{s_back}, prompt => 'Your choice:' },
$info->{tcu_default} = { hide_cursor => 0, clear_screen => 1, page => 2, keep => 6, confirm => $info->{ok}, back => $info->{s_back} },
$info->{tf_default} = { hide_cursor => 2, clear_screen => 1, page => 2, keep => 6, auto_up => 1, skip_items => qr/^\s*\z/ },
$info->{tr_default} = { hide_cursor => 2, clear_screen => 1, page => 2, history => [ 0 .. 1000 ] },
$info->{lyt_h} = { order => 0, alignment => 2 },
$info->{lyt_v} = { undef => $info->{_back}, layout => 2 },
return bless { i => $info }, $class;
}
view all matches for this distribution