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 => 8, undef => $info->{s_back}, prompt => 'Your choice:' }; ##
$info->{tcu_default} = { hide_cursor => 0, clear_screen => 1, page => 2, keep => 8, confirm => $info->{ok}, back => $info->{s_back} };
$info->{tf_default} = { hide_cursor => 2, clear_screen => 1, page => 2, keep => 8, 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
view release on metacpan or search on metacpan
lib/App/Devel/MAT/Explorer/GTK/Shell.pm view on Meta::CPAN
$scrolledwindow->set_policy( 'never', 'always' );
$scrolledwindow->add( $textview = Gtk2::TextView->new );
$textview->set_editable( FALSE );
$textview->set_cursor_visible( FALSE );
$textview->set_wrap_mode( 'word-char' );
$textview->modify_font( Gtk2::Pango::FontDescription->from_string( 'monospace' ) );
$buffer = $textview->get_buffer;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/DrivePlayer/GUI.pm view on Meta::CPAN
$self->sidebar_store($store);
my $view = Gtk3::TreeView->new($store);
$view->set_headers_visible(FALSE);
$view->get_selection()->set_mode('single');
$view->signal_connect('cursor-changed' => sub { $self->_sidebar_activated($view) });
$view->signal_connect('button-press-event' => sub { $self->_sidebar_button_press($view, $_[1]) });
$self->sidebar_view($view);
$view->set_size_request(100, 1);
lib/App/DrivePlayer/GUI.pm view on Meta::CPAN
my $matches = $letter eq '#' ? ($first lt 'A' || $first gt 'Z')
: $first eq $letter;
next unless $matches;
my $path = $store->get_path($child);
$view->expand_to_path($path);
$view->set_cursor($path, undef, FALSE);
$view->scroll_to_cell($path, undef, TRUE, 0.0, 0.0);
return;
}
}
lib/App/DrivePlayer/GUI.pm view on Meta::CPAN
$c->set_fixed_width($width);
$view->append_column($c);
}
# Take full control of left-click so GTK's default handler (which
# calls set_cursor and auto-scrolls the clicked row into view) doesn't
# shift the viewport between the clicks of a double-click.
$view->signal_connect('button-press-event' => sub {
my ($w, $event) = @_;
if ($event->button == 3) {
lib/App/DrivePlayer/GUI.pm view on Meta::CPAN
# ---- Sidebar activation ----
sub _sidebar_activated {
my ($self, $view) = @_;
my ($path) = $view->get_cursor();
return unless $path;
my $store = $self->sidebar_store;
my $iter = $store->get_iter($path);
my $type = $store->get($iter, 1);
my $value = $store->get($iter, 2);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/EditorTools/Vim.pod view on Meta::CPAN
EditorToolsMenu - Brings up a menu to choose the following routines
=item ,pL
RenameVariable - Placing the cursor over a variable and pressing this
mapping will prompt for a new variable name, then rename all occurrences
of the varialbe within that lexical scope to the new name.
See L<App::EditorTools> for more.
view all matches for this distribution
view release on metacpan or search on metacpan
share/status/app/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,
share/status/app/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;
share/status/app/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%;
share/status/app/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);
share/status/app/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],
share/status/app/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);
}
share/status/app/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;
}
share/status/app/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);
share/status/app/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;
share/status/app/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;
}
share/status/app/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;
}
share/status/app/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,
share/status/app/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;
share/status/app/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 {
share/status/app/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;
share/status/app/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;
share/status/app/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/FQStat/Actions.pm view on Meta::CPAN
);
# print instructions
locate(1,1);
clline();
print get_color("selected_cursor");
print "Select Sort Field:";
print RESET;
print " (left/right to select, s/Enter to confirm, n for none, q to cancel)\n";
while (1) {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Fasops/Command/xlsx.pm view on Meta::CPAN
my $section_start = $opt->{section};
my $color_loop = $opt->{colors};
my %variations = %{$vars};
my $section_cur = $section_start;
my $col_cursor = 1;
my $section_height = ( scalar( @{$name_refs} ) + 1 ) + $opt->{spacing};
my $seq_count = scalar @{$name_refs};
$seq_count-- if $opt->{outgroup};
for my $pos ( sort { $a <=> $b } keys %variations ) {
lib/App/Fasops/Command/xlsx.pm view on Meta::CPAN
# write SNPs
if ( $var->{var_type} eq 'snp' ) {
# write position
$sheet->write( $pos_row, $col_cursor, $var->{snp_pos}, $format_of->{pos} );
for my $i ( 1 .. $seq_count ) {
my $base = substr $var->{snp_all_bases}, $i - 1, 1;
my $occ
lib/App/Fasops/Command/xlsx.pm view on Meta::CPAN
if ( $occ eq "1" ) {
my $bg_idx = oct( '0b' . $var->{snp_occured} ) % $color_loop;
my $base_color = $base . $bg_idx;
$sheet->write( $pos_row + $i,
$col_cursor, $base, $format_of->{snp}{$base_color} );
}
else {
my $base_color = $base . "unknown";
$sheet->write( $pos_row + $i,
$col_cursor, $base, $format_of->{snp}{$base_color} );
}
}
# outgroup bases with no background colors
if ( $opt->{outgroup} ) {
my $base_color = $var->{snp_outgroup_base} . "unknown";
$sheet->write(
$pos_row + $seq_count + 1,
$col_cursor,
$var->{snp_outgroup_base},
$format_of->{snp}{$base_color}
);
}
# increase column cursor
$col_cursor++;
}
# write indels
if ( $var->{var_type} eq 'indel' ) {
# how many column does this indel take up
my $col_taken = List::Util::min( $var->{indel_length}, 3 );
# if exceed the wrap limit, start a new section
if ( $col_cursor + $col_taken > $opt->{wrap} ) {
$col_cursor = 1;
$section_cur++;
$pos_row = $section_height * ( $section_cur - 1 );
}
my $indel_string = "$var->{indel_type}$var->{indel_length}";
lib/App/Fasops/Command/xlsx.pm view on Meta::CPAN
if ($flag) {
if ( $col_taken == 1 ) {
# write position
$sheet->write( $pos_row, $col_cursor, $var->{indel_start},
$format_of->{pos} );
# write in indel occured lineage
$sheet->write( $pos_row + $i,
$col_cursor, $indel_string, $format_of->{indel}{$bg_idx} );
}
elsif ( $col_taken == 2 ) {
# write indel_start position
$sheet->write( $pos_row, $col_cursor, $var->{indel_start},
$format_of->{pos} );
# write indel_end position
$sheet->write( $pos_row, $col_cursor + 1,
$var->{indel_end}, $format_of->{pos} );
# merge two indel position
$sheet->merge_range(
$pos_row + $i,
$col_cursor,
$pos_row + $i,
$col_cursor + 1,
$indel_string, $format_of->{indel}{$bg_idx},
);
}
else {
# write indel_start position
$sheet->write( $pos_row, $col_cursor, $var->{indel_start},
$format_of->{pos} );
# write middle sign
$sheet->write( $pos_row, $col_cursor + 1, '|', $format_of->{pos} );
# write indel_end position
$sheet->write( $pos_row, $col_cursor + 2,
$var->{indel_end}, $format_of->{pos} );
# merge two indel position
$sheet->merge_range(
$pos_row + $i,
$col_cursor,
$pos_row + $i,
$col_cursor + 2,
$indel_string, $format_of->{indel}{$bg_idx},
);
}
}
}
# increase column cursor
$col_cursor += $col_taken;
}
if ( $col_cursor > $opt->{wrap} ) {
$col_cursor = 1;
$section_cur++;
}
}
# write names
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Followme/Initialize.pm view on Meta::CPAN
.dropbtn {
font-size: 1.75em;
background-color: #222;
color: #aaa;
border: none;
cursor: pointer;
}
.dropdown {
position: relative;
display: inline-block;
}
lib/App/Followme/Initialize.pm view on Meta::CPAN
background-color: #333;
border: solid 3px #777;
padding: 5px 15px;
border-radius: 1px;
text-decoration: none;
cursor: pointer;
vertical-align: middle;
position: absolute;
top: 45%;
z-index: 99;
}
view all matches for this distribution
view release on metacpan or search on metacpan
scripts/generate_index.pl view on Meta::CPAN
.med { background-color: #ffd; }
.high { background-color: #dfd; }
.badges img { margin-right: 10px; }
.disabled-icon {
opacity: 0.4;
cursor: default;
}
.icon-link {
text-decoration: none;
}
.icon-link:hover {
opacity: 0.7;
cursor: pointer;
}
.coverage-badge {
padding: 2px 6px;
border-radius: 4px;
font-weight: bold;
scripts/generate_index.pl view on Meta::CPAN
background-color: #f0f0f0;
}
td.positive { color: green; font-weight: bold; }
td.negative { color: red; font-weight: bold; }
td.neutral { color: gray; }
/* Show cursor points on the headers to show that they are clickable */
th { background-color: #f2f2f2; cursor: pointer; }
th.sortable {
cursor: pointer;
user-select: none;
white-space: nowrap;
}
th .arrow {
color: #aaa; /* dimmed for inactive */
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/GUI/Cellgraph/Frame/Panel/Board.pm view on Meta::CPAN
my @brush = map { Wx::Brush->new( $_, &Wx::wxBRUSHSTYLE_SOLID ) } @color;
my $grid = App::GUI::Cellgraph::Compute::Grid::create( $self->{'state'}, $self->{'cells'}{'x'}, $sketch_length );
my $rows = $sketch_length ? ($sketch_length - 1) : ($self->{'cells'}{'x'} - 1);
my $cell_size_iterator = [0 .. $self->{'state'}{'global'}{'cell_size'}-1];
my $cl = $cell_size - 1;
my $y_cursor = 1;
#my $t1 = Benchmark->new;
if ($self->{'state'}{'global'}{'fill_cells'}){
for my $y (0 .. $rows) {
my $x_cursor = 1;
for my $x (0 .. $self->{'cells'}{'x'}-1) {
$dc->SetPen( $pen[$grid->[$y][$x] // 0] );
$dc->DrawLine( $x_cursor, $y_cursor+$_, $x_cursor + $cl, $y_cursor+$_) for @$cell_size_iterator;
#$dc->SetBrush( $brush[$grid->[$y][$x]] );
#$dc->DrawRectangle( $x_cursor, $y_cursor, $cell_size, $cell_size );
$x_cursor += $grid_d;
}
$y_cursor += $grid_d;
}
} else {
for my $y (0 .. $rows) {
my $x_cursor = 1;
for my $x (0 .. $self->{'cells'}{'x'}-1) {
$dc->SetPen( $pen[$grid->[$y][$x]] );
$dc->DrawLine( $x_cursor, $y_cursor, $x_cursor + $cl, $y_cursor);
$dc->DrawLine( $x_cursor, $y_cursor + $cl, $x_cursor + $cl, $y_cursor + $cl);
# $dc->DrawLine( $x_cursor, $y_cursor, $x_cursor, $y_cursor + $cl);
# $dc->DrawLine( $x_cursor + $cl, $y_cursor, $x_cursor + $cl, $y_cursor + $cl);
$x_cursor += $grid_d;
}
$y_cursor += $grid_d;
}
}
#say "paint took:",timestr( timediff(Benchmark->new, $t1) );
delete $self->{'flag'};
$dc;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/GUI/GoLP.pm view on Meta::CPAN
I<Dead cell color> allows the user to select the color of a 'dead' cell.
I<Grid color> allows the user to select the color of the grid.
I<Edit mode> can be used to switch in and out of 'edit mode'. When in edit mode clicking the left mouse button on the board will toggle the state of the cell under the cursor (indicated by a highlighted cell). Entering edit mode pauses the simulation...
=head3 About
Provides a small 'about' dialog.
view all matches for this distribution
view release on metacpan or search on metacpan
script/_genpass-id 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/_genpass-id 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/_genpass-id 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/_genpass-id 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',
view all matches for this distribution
view release on metacpan or search on metacpan
script/_genpass-wordlist 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/_genpass-wordlist 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/_genpass-wordlist 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/_genpass-wordlist 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',
view all matches for this distribution
view release on metacpan or search on metacpan
data/bladder_cancer_GEO.txt view on Meta::CPAN
Type: Expression profiling by array
Platform: GPL96 19 Samples
FTP download: GEO (CEL) ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE37nnn/GSE37317/
Series Accession: GSE37317 ID: 200037317
279. Gene expression signatures in a human bladder cancer cell line SW780 transfected with miR-137 precursor molecule
(Submitter supplied) To clarify the effect of miRNAs, we carried out a gene expression microarray analysis of SW780 cells transfected with a miR-137 precursor or a negative control. We found that 1,326 probe sets (1,016 unique genes) were downregula...
Organism: Homo sapiens
Type: Expression profiling by array
Platform: GPL13607 2 Samples
FTP download: GEO (TXT) ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE41nnn/GSE41760/
Series Accession: GSE41760 ID: 200041760
data/bladder_cancer_GEO.txt view on Meta::CPAN
Dataset: GDS1479 Platform: GPL96 60 Samples
FTP download: GEO (CEL) ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE3nnn/GSE3167/
Series Accession: GSE3167 ID: 200003167
335. Carcinoma in situ lesions of the urinary bladder
Analysis of bladder biopsies of superficial transitional cell carcinomas with or without surrounding carcinoma in situ (CIS) lesions and muscle invasive carcinomas (mTCC). CIS is a common mTCC precursor. Results provide insight into which tumors in e...
Organism: Homo sapiens
Type: Expression profiling by array, count, 6 specimen sets
Platform: GPL96 Series: GSE3167 60 Samples
FTP download: GEO (CEL) ftp://ftp.ncbi.nlm.nih.gov/geo/datasets/GDS1nnn/GDS1479/
DataSet Accession: GDS1479 ID: 1479
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/GhaInstall/YAML.pm view on Meta::CPAN
return '' unless @$self;
# Iterate over the documents
my $indent = 0;
my @lines = ();
foreach my $cursor ( @$self ) {
push @lines, '---';
# An empty document
if ( ! defined $cursor ) {
# Do nothing
# A scalar document
} elsif ( ! ref $cursor ) {
$lines[-1] .= ' ' . $self->_write_scalar( $cursor, $indent );
# A list at the root
} elsif ( ref $cursor eq 'ARRAY' ) {
unless ( @$cursor ) {
$lines[-1] .= ' []';
next;
}
push @lines, $self->_write_array( $cursor, $indent, {} );
# A hash at the root
} elsif ( ref $cursor eq 'HASH' ) {
unless ( %$cursor ) {
$lines[-1] .= ' {}';
next;
}
push @lines, $self->_write_hash( $cursor, $indent, {} );
} else {
Carp::croak("Cannot serialize " . ref($cursor));
}
}
join '', map { "$_\n" } @lines;
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Git/Ribbon.pm view on Meta::CPAN
=over 4
=item To open and close folds type `zo` and `zo`. For more help type `:help fold-commands`.
=item To switch windows type `ctl-w l` and `ctl-w h`. For more help type `:help window-move-cursor`.
=item To quickly exit vimdiff type `ZZ`.
=back
view all matches for this distribution
view release on metacpan or search on metacpan
share/jtca-katakana-guide-3.pl view on Meta::CPAN
ã«ãã©ã¼ coupler ï¼ï¼ï¼
ã«ã©ã¼ color ï¼ï¼ï¼
ã«ã«ãã£ã¼ culture ï¼ï¼ï¼
ã«ã¬ã³ãã¼ calendar ï¼ï¼ï¼
ã«ã³ãã© candela ï¼ï¼ï¼
ã«ã¼ã½ã« cursor ï¼ï¼ï¼ä¾å¤ãï¼ï¼ï¼
ã«ã¼ãã³ curtain ï¼ï¼ï¼
ã«ã¼ãã£ã¬ã³ cardigan ï¼ï¼ï¼ãï¼ï¼ï¼
ã«ã¼ã card ï¼ï¼ï¼
ã«ã¼ãã³ã° kerning ï¼ï¼ï¼
ã«ã¼ã curve ï¼ï¼ï¼ãï¼
view all matches for this distribution
view release on metacpan or search on metacpan
0.09 2022-03-08T08:38:52Z
- fixed bugs in 0.08
* option --random did not make random answer
* wrong cursor movement
0.08 2022-03-08T01:05:18Z
- use oo interface to keep game status
view all matches for this distribution
view release on metacpan or search on metacpan
8.4301 2021-04-24T02:37:35Z
[ -dfn related update ]
- Use STDERR->printflush for status update.
- Use VT100 ESC 7/8 save/restore cursor sequence.
8.43 2021-04-04T02:28:49Z
- Update Regions.pm to include generic &filter_regions.
view all matches for this distribution
view release on metacpan or search on metacpan
convert guiio stencil to new format
? shortcut to display popup menu
shift + click should deselect the object under the cursor
Error: previously saved files (network) do not load new stencils
connected, non auto-connect, arrows loose their connection if the connectee is resized
=> this is because resize doesn't keep the connection. The
# multi wirl extension as if we were drawing the arrow
when the mouse takes a turn, a wirl point is added
=> or add section when clicked
#Add section to cursor position
#add easy way, through a shortcut, to:
#change arrow type
dots, equal, star, ...
!make an arrow a muti wirl arow
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Hack/Exe.pm view on Meta::CPAN
# Float; Number of seconds to display "loading" animation for
DOTS_DURATION => 1,
# Int; Number of characters to draw each "loading" animation line
# 77 = Width of demon
DOTS_WIDTH => 77,
# ANSI escape codes for cursor manipulation
MEMORIZE_CURSOR => "\e\x{37}",
RECALL_CURSOR => "\e\x{38}",
};
use Carp qw/ croak /;
view all matches for this distribution
view release on metacpan or search on metacpan
share/static/jquery.jgrowl.css view on Meta::CPAN
div.jGrowl div.jGrowl-notification div.close {
z-index: 99;
float: right;
font-weight: bold;
font-size: 1em;
cursor: pointer;
}
div.jGrowl div.jGrowl-closer {
padding-top: 4px;
padding-bottom: 4px;
cursor: pointer;
font-size: .9em;
font-weight: bold;
text-align: center;
}
view all matches for this distribution
view release on metacpan or search on metacpan
bin/ikachan view on Meta::CPAN
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
cursor: pointer;
-webkit-appearance: button;
}
label,
select,
bin/ikachan 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;
bin/ikachan 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%;
bin/ikachan 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);
bin/ikachan 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],
bin/ikachan 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);
}
bin/ikachan 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;
}
bin/ikachan 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);
bin/ikachan 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;
bin/ikachan 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;
}
bin/ikachan 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;
}
bin/ikachan 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,
bin/ikachan view on Meta::CPAN
}
.nav > .disabled > a:hover,
.nav > .disabled > a:focus {
text-decoration: none;
cursor: default;
background-color: transparent;
}
.navbar {
*position: relative;
bin/ikachan 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 {
bin/ikachan 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;
bin/ikachan 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;
bin/ikachan 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/Jiffy/TimeEntry.pm view on Meta::CPAN
# Return undef if nothing was found
return unless $entries;
my $LocalTZ = DateTime::TimeZone->new( name => 'local' ); # For caching
# @TODO create a subclass of the MongoDB cursor that allows chaining of results like MongoDB
map {
$_->{start_time}->set_time_zone($LocalTZ); # Convert to local tz
App::Jiffy::TimeEntry->new(
id => $_->{_id},
title => $_->{title},
view all matches for this distribution
view release on metacpan or search on metacpan
t/mockup-files/dpkg.status view on Meta::CPAN
Suggests: gstreamer1.0-tools
Package: libgtk-3-0
Status: install ok installed
Architecture: amd64
Depends: adwaita-icon-theme, hicolor-icon-theme, shared-mime-info, libatk-bridge2.0-0 (>= 2.15.1), libatk1.0-0 (>= 2.35.1), libc6 (>= 2.34), libcairo-gobject2 (>= 1.14.0), libcairo2 (>= 1.14.0), libcolord2 (>= 0.1.10), libcups2 (>= 1.7.0), libepoxy0 ...
Recommends: libgtk-3-bin, librsvg2-common
Suggests: gvfs
Package: libgtk-3-common
Status: install ok installed
t/mockup-files/dpkg.status view on Meta::CPAN
Package: libwayland-client0
Status: install ok installed
Architecture: amd64
Depends: libc6 (>= 2.28), libffi8 (>= 3.4)
Package: libwayland-cursor0
Status: install ok installed
Architecture: amd64
Depends: libc6 (>= 2.28), libwayland-client0 (>= 1.20.0)
Package: libwayland-egl1
t/mockup-files/dpkg.status view on Meta::CPAN
Package: libxcomposite1
Status: install ok installed
Architecture: amd64
Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.4.99.1)
Package: libxcursor1
Status: install ok installed
Architecture: amd64
Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.4.99.1), libxfixes3, libxrender1
Package: libxdamage1
view all matches for this distribution
view release on metacpan or search on metacpan
share/css/qunit-1.15.0.css view on Meta::CPAN
#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running {
display: none;
}
#qunit-tests li strong {
cursor: pointer;
}
#qunit-tests li a {
padding: 0.5em;
color: #C2CCD1;
view all matches for this distribution
view release on metacpan or search on metacpan
share/public_html/static/hls.js view on Meta::CPAN
}
return empty;
};
/**
* Set the cursor to a valid column.
*/
Row.prototype.setCursor = function setCursor(absPos) {
if (this.pos !== absPos) {
this.pos = absPos;
}
if (this.pos < 0) {
cea_608_parser_logger.log('ERROR', 'Negative cursor position ' + this.pos);
this.pos = 0;
} else if (this.pos > NR_COLS) {
cea_608_parser_logger.log('ERROR', 'Too large cursor position ' + this.pos);
this.pos = NR_COLS;
}
};
/**
* Move the cursor relative to current position.
*/
Row.prototype.moveCursor = function moveCursor(relPos) {
var newPos = this.pos + relPos;
view all matches for this distribution