Result:
found more than 662 distributions - search limited to the first 2001 files matching your query ( run in 1.392 )


Tk-DirSelect

 view release on metacpan or  search on metacpan

lib/Tk/DirSelect.pm  view on Meta::CPAN

		],
	);
	$menu->bind('<FocusOut>' => sub {$menu->unpost});
	$w->{tree}->bind('<Button-3>' => [\&_context, $menu, Ev('X'), Ev('Y')]);

	# popup overlay for renaming directories
	$w->{renameval} = undef;
	$w->{popup}     = $w->Toplevel();
	$w->{rename}    = $w->{popup}->Entry(
		-relief       => 'groove',
		-borderwidth  => 1,

 view all matches for this distribution


Tk-Getopt

 view release on metacpan or  search on metacpan

t/getopt2.t  view on Meta::CPAN

BEGIN { $| = 1; print "1..5\n";}
END {print "not ok 1\n" unless $loaded;}

use Tk::Getopt;
use vars qw(%xrange $yrange $func $c_width $c_height $file $datastyle
	    $overlay $lang $grid $precision $seperator
	    $opt %options);
$loaded = 1;

@ARGV = qw(--xfrom=12 -xto 13 -overlay --nogrid --codetest);


%options = ("xfrom=f" => \$xrange{from},
	    "yfrom=f" => \$yrange{from},
	    "xto=f"   => \$xrange{to},

t/getopt2.t  view on Meta::CPAN

	    "func=s"  => \$func,
	    "width=i" => \$c_width,
	    "height=i" => \$c_height,
	    "file=s"  => \$file,
	    "datastyle=s" => \$datastyle,
	    "overlay" => \$overlay,
	    "lang=s"  => \$lang,
	    "grid!"    => \$grid,
	    "precision=f" => \$precision,
	    "debug"   => \$^W,
	    "seperator=s" => \$seperator,

t/getopt2.t  view on Meta::CPAN


$opt->process_options;

print( ($xrange{from} != 12 ? "not " : "") . "ok 2\n");
print( ($xrange{to} != 13 ? "not " : "") . "ok 3\n");
print( ($overlay != 1 ? "not " : "") . "ok 4\n");
print( ($grid != 0 ? "not " : "") . "ok 5\n");

 view all matches for this distribution


Tk-StyledButton

 view release on metacpan or  search on metacpan

lib/Tk/StyledButton.pm  view on Meta::CPAN

}

sub _bindFromImage {
	my ($self, $w, $h, $xscale, $yscale) = @_;
#
#	embed image in center of canvas, then draw transparent overlay
#	to tag for binding
#
	my @tags = ();
	my $shape = $self->cget('-shape');
	if (($self->cget('-style') eq 'image') && (ref $shape) && (ref $shape eq 'ARRAY')) {

 view all matches for this distribution


UAV-Pilot-SDL

 view release on metacpan or  search on metacpan

lib/UAV/Pilot/SDL/Video.pm  view on Meta::CPAN

    writer => '_set_bg_rect',
);
has '_bg_color' => (
    is  => 'rw',
);
has 'video_overlays' => (
    is      => 'ro',
    isa     => 'ArrayRef[UAV::Pilot::SDL::VideoOverlay]',
    default => sub {[]},
    traits  => [ 'Array' ],
    handles => {
        _add_video_overlay => 'push',
    },
);

with 'UAV::Pilot::SDL::WindowEventHandler';

lib/UAV/Pilot/SDL/Video.pm  view on Meta::CPAN


sub add_to_window
{
    my ($self, $window, $location) = @_;
    $location //= $window->TOP;
    $window->add_child_with_yuv_overlay( $self,
        $self->SDL_OVERLAY_FLAG, $location );

    my @bg_color_parts = @{ $self->BG_COLOR };
    my $sdl = $window->sdl;
    my $bg_color = SDL::Video::map_RGB( $sdl->format, @bg_color_parts );

lib/UAV/Pilot/SDL/Video.pm  view on Meta::CPAN

    return 1;
}

sub update_window_rect
{
    # Do nothing, since YUV overlay updates the area for us
    return 1;
}


sub process_raw_frame

lib/UAV/Pilot/SDL/Video.pm  view on Meta::CPAN

{
    my ($self, $window) = @_;
    my $last_vid_frame = $self->_last_vid_frame;
    return 1 unless defined $last_vid_frame;

    my $bg_rect     = $window->yuv_overlay_rect;
    my $sdl_overlay = $window->yuv_overlay;
    SDL::Video::fill_rect(
        $window->sdl,
        $bg_rect,
        $self->_bg_color,
    );

    $self->_draw_last_video_frame(
        $sdl_overlay,
        $bg_rect,
        $last_vid_frame->get_last_frame_c_obj,
    );

    my @overlays = @{ $self->video_overlays };
    if( @overlays ) {
        foreach my $overlay (@overlays) {
            $overlay->process_video_overlay( $window );
        }
        
        SDL::Video::update_rects( $window->sdl, $bg_rect );
    }

lib/UAV/Pilot/SDL/Video.pm  view on Meta::CPAN

        . ',' . join( ',', Time::HiRes::gettimeofday ) );

    return 1;
}

sub register_video_overlay
{
    my ($self, $overlay, $window) = @_;
    $overlay->init_video_overlay( $self, $window );
    $self->_add_video_overlay( $overlay );
    return 1;
}


sub _set_width_height

lib/UAV/Pilot/SDL/Video.pm  view on Meta::CPAN

    my ($self, $width, $height) = @_;
    # TODO inform UAV::Pilot::SDL::Window of size change
    my $sdl         = $self->sdl_app;
    $sdl->resize( $width, $height );
    my $bg_rect     = SDL::Rect->new( 0, 0, $width, $height );
    my $sdl_overlay = SDL::Overlay->new( $width, $height, $self->SDL_OVERLAY_FLAG, $sdl );

    $self->_set_bg_rect( $bg_rect );
    $self->_set_sdl_overlay( $sdl_overlay );
    $self->_set_width( $width );
    $self->_set_height( $height );

    return 1;
}

lib/UAV/Pilot/SDL/Video.pm  view on Meta::CPAN

Process raw video frames and displays them to an SDL surface.  This does the roles
C<UAV::Pilot::Video::RawHandler> and C<UAV::Pilot::EventHandler>.

=head1 METHODS

=head1 register_video_overlay

    register_video_overlay( $overlay )

Adds an object that does the C<UAV::Pilot::SDL::VideoOverlay> role.  This allows an 
object to draw things on top of the video, like telemetry information.

Not to be confused with C<SDL::Overlay>.

 view all matches for this distribution


UAV-Pilot

 view release on metacpan or  search on metacpan

bin/uav_video_display  view on Meta::CPAN

    'fps=i'    => \$FPS,
);



sub set_reticle_overlay
{
    my ($video, $window) = @_;
    my $reticle = UAV::Pilot::SDL::VideoOverlay::Reticle->new;
    $video->register_video_overlay( $reticle, $window );
    return 1;
}

sub set_driver_config
{

bin/uav_video_display  view on Meta::CPAN

        });
        push @h264_handlers, $file_handler;
    }

    $events->register( $window );
    set_reticle_overlay( $displays[0], $window ) if $RETICLE;

    my %video_args = (
        handlers => \@h264_handlers,
        condvar => $cv,
        driver  => $ardrone,

 view all matches for this distribution


UI-KeyboardLayout

 view release on metacpan or  search on metacpan

lib/UI/KeyboardLayout.pm  view on Meta::CPAN

  http://misc.openbsd.narkive.com/UK2Xlptl/shift-backspace-in-x
	NoSymbol (do not change; do not make array longer; if alphabetic, may be extended to width 2)
	  vs VoidSymbol (undefine; may actually extend the array.  Undocumented in xkbproto??? )
		compare with http://kotoistus.tksoft.com/linux/void_no_symbol-en.html

	  overlay1=<KO7> overlay2=<KO7>		How to switch to overlay: see compat/keypad
	  RadioGroup ???

Problems on X11:

  http://www.x.org/releases/X11R7.7/doc/kbproto/xkbproto.html			(definition of XKB protocol)

 view all matches for this distribution


UMMF

 view release on metacpan or  search on metacpan

lib/UMMF/XForm/Merge.pm  view on Meta::CPAN

  my $xform = UMMF::XForm::Merge->new();
  $model = $xform->apply_Model([ $model1, $model2, ... ]);

=head1 DESCRIPTION

This UML transform merges Models by overlaying elements from $model2 on top of $model1.  ModelElements that have a TaggedValue 'ummf.Merge.placeholder' with a true value, will be used as a placeholder (i.e. a pointer) to a non-placeholder ModelElemen...

=head1 USAGE

=head1 PATTERNS

 view all matches for this distribution


Unicode-CharWidth

 view release on metacpan or  search on metacpan

lib/Unicode/CharWidth.pm  view on Meta::CPAN

=over 4

=item InZerowidth

C</\p{InZerowidth}/> matches the characters that don't occupy 
column space of their own. Most of these are modifying or overlay
characters that add accents or overstrokes to the preceding character.
C<"\0"> also has zero width. It is the only zero width character in
the ASCII range.

=item InSinglewidth

 view all matches for this distribution


Unicode-Tussle

 view release on metacpan or  search on metacpan

script/uninames  view on Meta::CPAN

	x (raised dot - 2E33)
	x (stenographic full stop - 2E3C)
	x (ideographic full stop - 3002)
002F	SOLIDUS
	= slash, forward slash, virgule
	x (combining long solidus overlay - 0338)
	x (fraction slash - 2044)
	x (division slash - 2215)
	x (mathematical rising diagonal - 27CB)
	x (big solidus - 29F8)
	x (dotted solidus - 2E4A)

script/uninames  view on Meta::CPAN

005B	LEFT SQUARE BRACKET
	= opening square bracket (1.0)
	* other bracket characters: 27E6-27EB, 2983-2998, 3008-301B
005C	REVERSE SOLIDUS
	= backslash
	x (combining reverse solidus overlay - 20E5)
	x (set minus - 2216)
	x (mathematical falling diagonal - 27CD)
	x (big reverse solidus - 29F9)
005D	RIGHT SQUARE BRACKET
	= closing square bracket (1.0)

script/uninames  view on Meta::CPAN

	* also used as an unpaired separator or as a fence
	x (broken bar - 00A6)
	x (latin letter dental click - 01C0)
	x (hebrew punctuation paseq - 05C0)
	x (devanagari danda - 0964)
	x (combining long vertical line overlay - 20D2)
	x (divides - 2223)
	x (light vertical bar - 2758)
007D	RIGHT CURLY BRACKET
	= closing curly bracket (1.0)
	= right brace
007E	TILDE
	* this is a spacing character
	x (small tilde - 02DC)
	x (combining tilde - 0303)
	x (combining tilde overlay - 0334)
	x (swung dash - 2053)
	x (tilde operator - 223C)
	x (tilde with ring above - 2E1B)
	x (vertical tilde - 2E2F)
	x (wave dash - 301C)

script/uninames  view on Meta::CPAN

	: 0049 0308
00D0	LATIN CAPITAL LETTER ETH
	* lowercase is 00F0
	x (latin capital letter d with stroke - 0110)
	x (latin capital letter african d - 0189)
	x (latin capital letter d with short stroke overlay - A7C7)
00D1	LATIN CAPITAL LETTER N WITH TILDE
	: 004E 0303
00D2	LATIN CAPITAL LETTER O WITH GRAVE
	: 004F 0300
00D3	LATIN CAPITAL LETTER O WITH ACUTE

script/uninames  view on Meta::CPAN

0335	COMBINING SHORT STROKE OVERLAY
0336	COMBINING LONG STROKE OVERLAY
	= strikethrough
	* connects on left and right
0337	COMBINING SHORT SOLIDUS OVERLAY
	= short slash overlay
0338	COMBINING LONG SOLIDUS OVERLAY
	= long slash overlay
@		Miscellaneous additions
0339	COMBINING RIGHT HALF RING BELOW
033A	COMBINING INVERTED BRIDGE BELOW
	* IPA: apical
	x (combining wide inverted bridge below - 1DF9)

script/uninames  view on Meta::CPAN

	= quotation dash
	* long dash introducing quoted text
@		General punctuation
2016	DOUBLE VERTICAL LINE
	* used in pairs to indicate norm of a matrix
	x (combining double vertical stroke overlay - 20E6)
	x (parallel to - 2225)
	x (double vertical bar - 23F8)
2017	DOUBLE LOW LINE
	* this is a spacing character
	x (low line - 005F)

script/uninames  view on Meta::CPAN

	* extends the full width of the base character
	x (combining bridge above - 0346)
20EA	COMBINING LEFTWARDS ARROW OVERLAY
	x (leftwards arrow - 2190)
20EB	COMBINING LONG DOUBLE SOLIDUS OVERLAY
	= long double slash overlay
20EC	COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS
20ED	COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS
20EE	COMBINING LEFT ARROW BELOW
20EF	COMBINING RIGHT ARROW BELOW
20F0	COMBINING ASTERISK ABOVE

script/uninames  view on Meta::CPAN

	x (euler constant - 2107)
	x (latin small letter tresillo - A72B)
@@	2190	Arrows	21FF
@		Simple arrows
2190	LEFTWARDS ARROW
	x (combining leftwards arrow overlay - 20EA)
2191	UPWARDS ARROW
	* IPA: egressive airflow
2192	RIGHTWARDS ARROW
	= z notation total function
2193	DOWNWARDS ARROW

script/uninames  view on Meta::CPAN

2205	EMPTY SET
	= null set
	* used in linguistics to indicate a null morpheme or phonological "zero"
	x (latin capital letter o with stroke - 00D8)
	x (diameter sign - 2300)
	~ 2205 FE00 zero with long diagonal stroke overlay form
2206	INCREMENT
	= Laplace operator
	= forward difference
	= symmetric difference (in set theory)
	* other symbols may also be used for symmetric difference

script/uninames  view on Meta::CPAN

267B	BLACK UNIVERSAL RECYCLING SYMBOL
	x (clockwise rightwards and leftwards open circle arrows - 1F501)
267C	RECYCLED PAPER SYMBOL
	* used to indicate 100% recycled paper content
267D	PARTIALLY-RECYCLED PAPER SYMBOL
	* percentage of recycled paper content indicated in overlay or next to this symbol
@		Miscellaneous symbols
267E	PERMANENT PAPER SIGN
	= non-acid paper
267F	WHEELCHAIR SYMBOL
	= accessible place

script/uninames  view on Meta::CPAN

293C	TOP ARC CLOCKWISE ARROW WITH MINUS
293D	TOP ARC ANTICLOCKWISE ARROW WITH PLUS
293E	LOWER RIGHT SEMICIRCULAR CLOCKWISE ARROW
293F	LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW
2940	ANTICLOCKWISE CLOSED CIRCLE ARROW
	x (combining anticlockwise ring overlay - 20DA)
2941	CLOCKWISE CLOSED CIRCLE ARROW
	x (combining clockwise ring overlay - 20D9)
@		Arrows combined with operators
2942	RIGHTWARDS ARROW ABOVE SHORT LEFTWARDS ARROW
2943	LEFTWARDS ARROW ABOVE SHORT RIGHTWARDS ARROW
2944	SHORT RIGHTWARDS ARROW ABOVE LEFTWARDS ARROW
2945	RIGHTWARDS ARROW WITH PLUS BELOW

script/uninames  view on Meta::CPAN

1342F	EGYPTIAN HIEROGLYPH V011D
	* knotted beginning of cartouche
	* not to be confused with 13378
@~	!
@@	13430	Egyptian Hieroglyph Format Controls	1345F
@+		These format controls are used to render Egyptian hieroglyphic spatial arrangements, including quadrats, overlays, insertions, and blank, lost or damaged sections.
@		Joiners
13430	EGYPTIAN HIEROGLYPH VERTICAL JOINER
	= sign separator: subordination (Manuel de Codage)
13431	EGYPTIAN HIEROGLYPH HORIZONTAL JOINER
	= sign separator: juxtaposition (Manuel de Codage)

 view all matches for this distribution


VMOMI

 view release on metacpan or  search on metacpan

lib/VMOMI/SoftwarePackageCapability.pm  view on Meta::CPAN


our @class_members = ( 
    ['liveInstallAllowed', 'boolean', 0, 1],
    ['liveRemoveAllowed', 'boolean', 0, 1],
    ['statelessReady', 'boolean', 0, 1],
    ['overlay', 'boolean', 0, 1],
);

sub get_class_ancestors {
    return @class_ancestors;
}

 view all matches for this distribution


VMS-IndexedFile

 view release on metacpan or  search on metacpan

IndexedFile/IndexedFile.xs  view on Meta::CPAN


/* For some strange reason, DEC created these nice macros and then completely messed them up in XABKEYDEF.H */
#undef xab$w_pos
#undef xab$b_siz
/* The following lines are copied from the XABKEYDEF.H file, BEFORE they're "corrupted" */
#define xab$w_pos xab$r_pos_overlay.xab$w_pos
#define xab$b_siz xab$r_siz_overlay.xab$b_siz

typedef struct _VMSMDBM_STRUCT_
{
  struct FAB      fab;
  struct NAM      nam;

 view all matches for this distribution


VSGDR-StaticData

 view release on metacpan or  search on metacpan

lib/VSGDR/StaticData.pm  view on Meta::CPAN

        $i++;
    }

#warn Dumper $colList;
#exit;
    #need to overlay tables with columns apart from those which are 'hidden'
    my @valuesTable     ;
    my $valuesClause    = "values\n\t\t\t";

    my $lno             = 1;
    foreach my $ra_row (@{$ra_data}){

 view all matches for this distribution


Validation-Class

 view release on metacpan or  search on metacpan

lib/Validation/Class/Prototype.pm  view on Meta::CPAN


        delete $signature->{$key} unless $new eq $key;

    }

    my $overlay = clone $signature;

    $_ = undef for values %{$overlay};

    # handle regex expansions

    for my $key (keys %{$document}) {

lib/Validation/Class/Prototype.pm  view on Meta::CPAN

    my $_dmap = {};
    my $_pmap = {};
    my $_xmap = {};

    my $_zata = flatten $data;
    my $_data = merge $overlay, $_zata;

    # remove overlaid patterns if matching nodes exist

    for my $key (keys %{$_data}) {

 view all matches for this distribution


Video-Capture-V4l

 view release on metacpan or  search on metacpan

V4l/V4l.pm  view on Meta::CPAN

package Video::Capture::V4l::Capability;

sub capture   ($){ shift->type & &Video::Capture::V4l::TYPE_CAPTURE   }
sub tuner     ($){ shift->type & &Video::Capture::V4l::TYPE_TUNER     }
sub teletext  ($){ shift->type & &Video::Capture::V4l::TYPE_TELETEXT  }
sub overlay   ($){ shift->type & &Video::Capture::V4l::TYPE_OVERLAY   }
sub chromakey ($){ shift->type & &Video::Capture::V4l::TYPE_CHROMAKEY }
sub clipping  ($){ shift->type & &Video::Capture::V4l::TYPE_CLIPPING  }
sub frameram  ($){ shift->type & &Video::Capture::V4l::TYPE_FRAMERAM  }
sub scales    ($){ shift->type & &Video::Capture::V4l::TYPE_SCALES    }
sub monochrome($){ shift->type & &Video::Capture::V4l::TYPE_MONOCHROME}

 view all matches for this distribution


Video-FrameGrab

 view release on metacpan or  search on metacpan

FrameGrab.pm  view on Meta::CPAN

            }
            push @images, $img;
        }
    }

    # average all snapshots to obtain a single overlay image
    my $overlay;

    my $i = 1;

    for my $img (@images) {
        $img->filter(type=>"gaussian", stddev=>10)
               or die $overlay->errstr;

        if(! defined $overlay) {
            $overlay = $img;
            next;
        }
        $overlay->compose( src => $img, combine => 'add' );
        $overlay->filter(type=>"postlevels", levels=>3) or
            die $overlay->errstr;

        if(get_logger()->is_trace()) {
            $overlay->write(file => "i-$i.jpg");
        }
        $i++;
    }

    my @params = $self->cropdetect( 0, { image => $overlay } );

    return @params;

#        my @params = $self->cropdetect( $probe, $opts );
#        if(! defined $params[0] ) {

FrameGrab.pm  view on Meta::CPAN

pixel lines of the snapped frame average an intensity of less than 
C<$opts-E<gt>{min_intensity_average}>, which defaults to 20.

Note that this is just a guess and might be incorrect at times. In a
dark scene, black pixels might protrude far into the video, making it
impossible to detect the border reliably. However, if you overlay a number
of frames, obtained at several times during the movie (e.g. by using
the equidistant_snap_times method described above), the result
is fairly predicatblye and accurate. C<cropdetect_average>, 
described below, does exactly that.

FrameGrab.pm  view on Meta::CPAN

spots within the dark bars.

=item cropdetect_average( $number_of_probes, [$opts] )

Takes C<$number_of_probes> from the movie at equidistant intervals,
overlays the frames and performs a border detection on the resulting
images, which is almost white in the viewing area.

See C<equidistant_snap_times> for setting the movie length in
the optional C<$opts> parameter.

 view all matches for this distribution


Video-Xine

 view release on metacpan or  search on metacpan

t/test_config  view on Meta::CPAN


# autopaint colour key
# bool, default: 0
#video.device.xv_autopaint_colorkey:0

# video overlay colour key
# [0..16777215], default: 2110
#video.device.xv_colorkey:2110

# enable double buffering
# bool, default: 1
#video.device.xv_double_buffer:1

# disable exact alpha blending of overlays
# bool, default: 0
#video.output.disable_exact_alphablend:0

# disable all video scaling
# bool, default: 0

 view all matches for this distribution


WL

 view release on metacpan or  search on metacpan

lib/WL/input_method.pm  view on Meta::CPAN

		shift), $file);

	return $retval;
}

sub set_overlay_panel
{
	my $self = shift;
	my $file;
	my $retval;

 view all matches for this distribution


WWW-Asg

 view release on metacpan or  search on metacpan

t/fixture/contentsPage.html  view on Meta::CPAN

                <div class="boxbody-white">

                                    <script type="text/javascript" src="/js/uraui.js"></script>
                    <div id="movie_frame" >
                        <div class="flash player">
                            <div class="overlay">
                                <a href="#" class="bookmark add">お気に入り追加</a>
                                <a class="replay" href="#">Replay</a>
                                <div class="likes">
                                    <div class="line">
                                        <a href="#" class="like">9</a>

 view all matches for this distribution


WWW-AzimuthAero

 view release on metacpan or  search on metacpan

t/ua_mock.json  view on Meta::CPAN

[{"txn_num":0,"class":"Mojo::Transaction::HTTP","response":{"body":"HTTP/1.1 200 OK\r\nContent-Type: text/html; charset=Windows-1251\r\nExpires: Thu, 19 Nov 1981 08:52:00 GMT\r\nX-Powered-CMS: Bitrix Site Manager (DEMO)\r\nStrict-Transport-Security: ...

 view all matches for this distribution


WWW-Crawl

 view release on metacpan or  search on metacpan

t/mock_html.dat  view on Meta::CPAN

[{"method":"GET","args":{"_redirects":[{"success":"","status":"301","content":"<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\n<html><head>\n<title>301 Moved Permanently</title>\n</head><body>\n<h1>Moved Permanently</h1>\n<p>The document has mo...

 view all matches for this distribution


WWW-Mechanize-Chrome-DOMops

 view release on metacpan or  search on metacpan

t/t-data/json-dom-selectors/success.perl  view on Meta::CPAN

#		'element-class' => ['panel', 'intro', 'intro-map'],
#		'element-tag' => 'aside',
#		'&&' => 1
#	},
#	{
#		'element-class' => ['group', 'overlays'],
#		'element-tag' => 'div',
#		'&&' => 1
#	},
#	{
#		'element-class' => ['group', 'zoom'],

 view all matches for this distribution


WWW-Mechanize-Firefox

 view release on metacpan or  search on metacpan

t/50-mech-save-dialog.t  view on Meta::CPAN

    plan tests => 1;
};

isa_ok $mech, 'WWW::Mechanize::Firefox';

# This is if we implement our own "overlay" for the SaveAs dialog
#    // Now, "close" the dialog
#    document.documentElement.removeAttribute('ondialogaccept');
#    document.documentElement.cancelDialog();


 view all matches for this distribution


WWW-Search-ValentinskaCZ

 view release on metacpan or  search on metacpan

t/data/valentinska_cz-20151030-Capek.html  view on Meta::CPAN

}
//--></script>  
<script type="text/javascript"><!--
$(document).ready(function() {
	$('.colorbox').colorbox({
		overlayClose: true,
		opacity: 0.5,
		rel: false,
		onLoad:function(){
			$("#cboxNext").remove(0);
			$("#cboxPrevious").remove(0);

 view all matches for this distribution


WWW-Shopify-Liquid

 view release on metacpan or  search on metacpan

t/01lexer.t  view on Meta::CPAN

@tokens = $lexer->parse_text('{{ a }} {{ b }}!'); is(int(@tokens), 4);

@tokens = $lexer->parse_text('Hi{% if customer %}{{ customer.first_name }} {{ customer.lastname }}{%endif%}!'); is(int(@tokens), 7);

@tokens = $lexer->parse_text('{% unless template == \'cart\' %}
<div class="cart-overlay" style="display: none;">
<style>
	.cart-body-interior {
		overflow-y: scroll;
	}
</style>

 view all matches for this distribution


WWW-Spinn3r

 view release on metacpan or  search on metacpan

t/02.xml  view on Meta::CPAN


	&lt;div id=&quot;header-box&quot;&gt;
	&lt;div id=&quot;header-image&quot;&gt;
		&lt;img src=&quot;http://augustafreepress.files.wordpress.com/2007/09/afpbanner07.gif&quot; alt=&quot;&quot; /&gt;
	&lt;/div&gt;
	&lt;div id=&quot;header-overlay&quot;&gt;
		&lt;img src=&quot;http://s.wordpress.com/wp-content/themes/pub/digg3/images/bg_header_overlay.png&quot; alt=&quot;&quot; /&gt;
	&lt;/div&gt;

	&lt;div id=&quot;pagetitle&quot;&gt;
		&lt;h1&gt;&lt;a href=&quot;http://augustafreepress.com/&quot; title=&quot;The Augusta Free Press&quot;&gt;The Augusta Free Press&lt;/a&gt;&lt;/h1&gt;
	&lt;/div&gt;

t/02.xml  view on Meta::CPAN


	&lt;div id=&quot;header-box&quot;&gt;
	&lt;div id=&quot;header-image&quot;&gt;
		&lt;img src=&quot;http://augustafreepress.files.wordpress.com/2007/09/afpbanner07.gif&quot; alt=&quot;&quot; /&gt;
	&lt;/div&gt;
	&lt;div id=&quot;header-overlay&quot;&gt;
		&lt;img src=&quot;http://s.wordpress.com/wp-content/themes/pub/digg3/images/bg_header_overlay.png&quot; alt=&quot;&quot; /&gt;
	&lt;/div&gt;

	&lt;div id=&quot;pagetitle&quot;&gt;
		&lt;h1&gt;&lt;a href=&quot;http://augustafreepress.com/&quot; title=&quot;The Augusta Free Press&quot;&gt;The Augusta Free Press&lt;/a&gt;&lt;/h1&gt;
	&lt;/div&gt;

 view all matches for this distribution


WWW-Wappalyzer

 view release on metacpan or  search on metacpan

lib/WWW/wappalyzer_src/technologies/a.json  view on Meta::CPAN

  },
  "AccessiBe": {
    "cats": [
      68
    ],
    "description": "AccessiBe is an accessibility overlay which claims to provide ADA and WCAG compliance. The system scans and analyzes a website, and applies adjustments which they claim make your website ADA and WCAG 2.1 compliant.",
    "icon": "AccessiBe.svg",
    "js": {
      "acsb": "\\;confidence:50",
      "acsbJS": "\\;confidence:50"
    },

lib/WWW/wappalyzer_src/technologies/a.json  view on Meta::CPAN

  },
  "Accessibly": {
    "cats": [
      76
    ],
    "description": "Accessily is an app which is designed to assist with meeting certain requirements of WCAG 2.1 using an overlay solution.",
    "icon": "Accessibly.svg",
    "pricing": [
      "low",
      "recurring"
    ],

lib/WWW/wappalyzer_src/technologies/a.json  view on Meta::CPAN

  },
  "AudioEye": {
    "cats": [
      68
    ],
    "description": "AudioEye is an accessibility overlay which claims to provide ADA and WCAG accessibility compliance.",
    "dom": "iframe[scr*='.audioeye.com/']",
    "icon": "AudioEye.svg",
    "js": {
      "$ae.attrHooks": "",
      "window.AudioEye.version": "^([\\d.]+)-\\d+$\\;version:\\1"

 view all matches for this distribution


WWW-YouTube-Download

 view release on metacpan or  search on metacpan

t/data/player_response.html  view on Meta::CPAN

    <script >var ytplayer = ytplayer || {};ytplayer.config = {"args":{"enablejsapi":"1","innertube_api_key":"AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8","vss_host":"s.youtube.com","hl":"en_US","gapi_hint_params":"m;\/_\/scs\/abc-static\/_\/js\/k=gapi.ga...

 view all matches for this distribution


Wcpancover

 view release on metacpan or  search on metacpan

share/files/public/skins/default/jquery-ui-1.9.1.custom/css/redmond/jquery-ui-1.9.1.custom.css  view on Meta::CPAN


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.ui-resizable { position: relative;}
.ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; }
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }

share/files/public/skins/default/jquery-ui-1.9.1.custom/css/redmond/jquery-ui-1.9.1.custom.css  view on Meta::CPAN

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; -khtml-border-top-right-radius: 5px; border-top-right-radius: 5px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; -khtml-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -khtml-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; }

/* Overlays */
.ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .3;filter:Alpha(Opacity=30); }
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .3;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius:...

 view all matches for this distribution


Weather-GHCN-Fetch

 view release on metacpan or  search on metacpan

lib/Weather/GHCN/StationTable.pm  view on Meta::CPAN

    #    bb=blue (00 to ff)
    #    gg=green (00 to ff)
    #    rr=red (00 to ff).
    #
    # For example, if you want to apply a blue color with 50 percent opacity
    #  to an overlay, you would specify the following:
    #    <color>7fff0000</color>,
    #  where alpha=0x7f, blue=0xff, green=0x00, and red=0x00.

    my %kml_colors = (
        b => [ 'blue',  'ff780000' ],

 view all matches for this distribution


( run in 1.392 second using v1.01-cache-2.11-cpan-49f99fa48dc )