view release on metacpan or search on metacpan
ex/LIDO-Example_FMobj00154983-LaPrimavera.xml view on Meta::CPAN
<lido:term>96 A 23 51</lido:term>
<lido:term lido:addedSearchTerm="yes">Flora in her realm: a garden full of flowers, given to her by Zephyrus</lido:term>
<lido:term lido:addedSearchTerm="yes">garden & flower & Zephyrus</lido:term>
<lido:term lido:addedSearchTerm="yes">classical mythology und ancient history</lido:term>
<lido:term lido:addedSearchTerm="yes">mythology & ancient history & history & classical antiquity & religion & Greek & Roman</lido:term>
<lido:term lido:addedSearchTerm="yes">Roman gods and legends</lido:term>
<lido:term lido:addedSearchTerm="yes">Roman & legend & god (non-christian)</lido:term>
<lido:term lido:addedSearchTerm="yes">Roman deities, and foreign deities included in the classical Pantheon</lido:term>
<lido:term lido:addedSearchTerm="yes">Roman gods & god (non-christian)</lido:term>
<lido:term lido:addedSearchTerm="yes">female roman deities</lido:term>
<lido:term lido:addedSearchTerm="yes">god (non-christian)</lido:term>
<lido:term lido:addedSearchTerm="yes">(story of) Flora</lido:term>
view all matches for this distribution
view release on metacpan or search on metacpan
t/bu_bibs.mrc view on Meta::CPAN
02009cam 2200289 a 45000010018000000050017000180080039000350100016000740150015000900200079001050350093001840400033002770430012003100490009003220500024003312450098003552600053004533000021005065040064005275050739005916500132013307000146014628520054016...
view all matches for this distribution
view release on metacpan or search on metacpan
example/overaxis-bar.pl view on Meta::CPAN
$cc->background_color(
Graphics::Color::RGB->new(red => .95, green => .94, blue => .92)
);
$cc->plot->grid->visible(0);
$cc->legend->visible(0);
$defctx->renderer(Chart::Clicker::Renderer::Bar->new);
$defctx->range_axis->baseline(0);
$defctx->range_axis->hidden(1);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Chart/ECharts.pm view on Meta::CPAN
sub set_toolbox {
my ($self, %params) = @_;
$self->set_option(toolbox => \%params);
}
sub set_legend {
my ($self, %params) = @_;
$self->set_option(legend => \%params);
}
sub set_timeline {
my ($self, %params) = @_;
$self->set_option(timeline => \%params);
lib/Chart/ECharts.pm view on Meta::CPAN
=item $chart->set_tooltip(%params)
Set the chart tooltip
=item $chart->set_legend(%params)
Set the chart legend
=item $chart->set_timeline(%params)
Set the chart timeline
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Chart/EPS_graph.pm view on Meta::CPAN
$str .= "/data_sets 1 def \n";
# This is an ugly, ex-post-facto hack.
# When chans skipped, patch up the bottom string to cover up remove gap in
# channel ID's. In short, make legend ID match the gap-free curve ID.
if ($self->{close_gap}) {
$self->{shown} = [ @{ $self->{y1} }, @{ $self->{y2} } ];
my @gap_free = gap_free_skip( $self->{shown}, $self->{not_shown} );
for my $i ( 0 .. $#gap_free ) {
$self->{label_x_proc} =~ s/ $self->{shown}->[$i] / $gap_free[$i] /m;
lib/Chart/EPS_graph.pm view on Meta::CPAN
);
for (@ps_string_list) { $self->{$_} = $self->ps_str_esc($self->{$_}) }
# Collect list of shown-channel names
# Prettify them into a graph legend good for B&W, not just color.
for (@{ $self->{y1} }, @{ $self->{y2} }) {
my $arrow = $self->y_arrow($_);
$self->{label_x_proc} .= " ($arrow$_) $_ show_color_id ($self->{names}->[$_] ) show ";
}
view all matches for this distribution
view release on metacpan or search on metacpan
examples/geom_point_01_05.pl view on Meta::CPAN
#!/usr/bin/env perl
# Do not show legend.
use 5.016;
use warnings;
use Getopt::Long;
examples/geom_point_01_05.pl view on Meta::CPAN
my $p = ggplot(
data => $mtcars,
mapping => aes( x => 'wt', y => 'mpg' )
)->geom_point(
mapping => aes( color => 'factor($cyl)' ),
show_legend => 0
);
if (defined $save_as) {
$p->save($save_as);
} else {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Chart/Gnuplot/Pie.pm view on Meta::CPAN
timeaxis
grid
Besides, the following options, though can be meaningful, are not supported yet.
legend
size
bg
plotbg
Supported options are:
view all matches for this distribution
view release on metacpan or search on metacpan
examples/chartFmt_3.pl view on Meta::CPAN
output => 'gallery/chartFmt_3.png',
);
my $data = Chart::Gnuplot::DataSet->new(
func => "tanh(x)",
title => 'legend', # legend
);
# Plot the graph
$chart->plot2d($data);
view all matches for this distribution
view release on metacpan or search on metacpan
Graph/Xmgrace.pm view on Meta::CPAN
my $def_graph_appearance = new Chart::Graph::Xmgrace::Graph_Presentation_Type;
my %def_xmgrace_data_opts = (
"set presentation" => "XY",
"options" => $def_graph_appearance->{"XY graph"},
"title" => "untitled data set", # comment, legend
"data format" => undef, # columns, matrix, or file
);
# New Hash of array references to hold list of options that might need to
# be checked against options. If Xmgrace program changes. Update here
Graph/Xmgrace.pm view on Meta::CPAN
$handle->close();
_cleanup_tmpdir();
return 0;
}
# change the "title" into "comment" and "legend"
_set_title($data_options_ref);
# set data options in the dataset object
$data_set_object->options($data_options_ref);
Graph/Xmgrace.pm view on Meta::CPAN
sub _set_title ($ ) {
my $ds_ref = shift;
my $title = $ds_ref->{title};
$ds_ref->{options}->{options}->{comment} = $title;
$ds_ref->{options}->{options}->{legend} = $title;
return 1;
}
####################################################################
#
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Chart/OFC/AxisLabel.pm view on Meta::CPAN
sub _ofc_data_lines
{
my $self = shift;
my $name = shift;
return $self->_data_line( $name . '_legend', $self->label(), $self->text_size(), $self->text_color() );
}
no Moose;
__PACKAGE__->meta()->make_immutable();
view all matches for this distribution
view release on metacpan or search on metacpan
$chart->x_axis->labels->colour('#555555');
my $bar = Chart::OFC2::Bar->new(
'values' => [ map { (12 - $_).q() } 0..5 ],
'colour' => '#40FF0D',
'text' => 'some legend',
);
$bar->values();
$chart->add_element($bar);
eq_or_diff(
$bar->TO_JSON,
{
'colour' => '#40FF0D',
'type' => 'bar',
'values' => [ 12,11,10,9,8,7 ],
'text' => 'some legend'
},
'bar element TO_JSON'
);
my $bar2 = Chart::OFC2::Bar::Filled->new(
'colour' => '#186000',
'text' => 'some other legend',
);
$bar2->values([ 10..15 ]);
$chart->add_element($bar2);
my $chart_data = $chart->render_chart_data();
view all matches for this distribution
view release on metacpan or search on metacpan
samples/sample12.pl view on Meta::CPAN
y_tick_number => 8,
y_label_skip => 2,
bar_spacing => 4,
);
$my_graph->set_legend( 'Data set 1', 'Data set 2' );
$my_graph->plot_to_png( "sample12.png", \@data );
exit;
view all matches for this distribution
view release on metacpan or search on metacpan
# - _getOM reports >= max instead of >;
# - fixed bug in setData() data check
# v 0.02 - 10 March 1998;
# - changed error handling in setData() (public method) which
# now returns undef on success and sets $self->error ;
# - changed legend to title (public method)
# - adjusted horizontal tick labels up a bit
# v 0.03 - 15 March 1998
# - added colors and dashed line options to dataset graph style
# - added option to pass dataset as two arrays (@xdata, @ydata)
# - added hack for case om == max
You will probably be unhappy with axis tick labels running together if
you use scientific notation. Controlling tick label formatting and
length for scientific notation seems doable but challenging.
Future versions might incorporate a legend, control of font size, word
wrap and dynamic adjustment of axis labels and title. Better code, a
better pod page.
=head1 AUTHOR
view all matches for this distribution
view release on metacpan or search on metacpan
examples/traces/barpolar.pl view on Meta::CPAN
my $plot = Chart::Plotly::Plot->new(
traces => [ $trace1, $trace2, $trace3, $trace4 ],
layout => {
title => 'Wind Speed Distribution in Laurel, NE',
font => { size => 16 },
legend => { font => { size => 16 } },
polar => {
radialaxis => { ticksuffix => '%', angle => 45, dtick => 20 },
barmode => "overlay",
angularaxis => { direction => "clockwise" },
bargap => 0
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Chart/Scientific.pm view on Meta::CPAN
subtitle => undef,
x_label => '',
y_label => '',
residuals_label => '',
residuals_pos => 0,
nolegend => 0,
legend_location => '.02,-.05',
residuals_size => 0.25,
x_range => undef,
y_range => undef,
x_log => 0,
lib/Chart/Scientific.pm view on Meta::CPAN
axis => 1,
axis_residuals => 1,
char_size => 1,
colors => 1,
defaults => 1,
#derived_legend => 1,
device => 1,
filename => 1,
font => 1,
function => 1,
group_col => 1,
help => 1,
legend_location => 1,
legend_text => 1,
#limits => 1,
line_width => 1,
nopoints => 1,
nolegend => 1,
noline => 1,
#only => 1,
#opts => 1,
#pdls => 1,
#PlotPosition => 1,
lib/Chart/Scientific.pm view on Meta::CPAN
( defined $self->{split} )
? $self->read_file ()
: $self->read_RDB ();
print "read-in points: ", Dumper $self->{points}, "\n",
"Legend array: ", Dumper $self->{derived_legend}
if $self->{verbose} > 1;
}
sub read_RDB {
my $self = shift () or die "no self in read_RDB";
lib/Chart/Scientific.pm view on Meta::CPAN
my $rdb = RDB->new ( $self->{filename} )
or die "RDB open failed on file '$self->{filename}' $!";
my $r_line = {};
$self->{derived_legend} = {};
tie %{$self->{derived_legend}}, "Tie::IxHash";
# Read each line of the RDB file, and stuff it into the
# $self->{points}{$group_col}[$i] structure:
#
while ( $rdb->read( $r_line ) ) {
lib/Chart/Scientific.pm view on Meta::CPAN
my $leg_key = $self->{y_col}[$_];
$leg_key .= $brk
if $brk ne $self->{only};
$self->{derived_legend}{$leg_key} = 1;
}
}
$self->{derived_legend} = [ keys %{$self->{derived_legend}} ];
}
sub get_fh {
my $self = shift () or die "no self";
lib/Chart/Scientific.pm view on Meta::CPAN
print "reading from regular file\n"
if $self->{verbose} > 0;
my ( $fh, @col_names, %col_number ) = ( $self->get_fh (), (), () );
$self->{derived_legend} = {};
tie %{$self->{derived_legend}}, "Tie::IxHash";
while ( <$fh> ) {
next if /^#/ || /^[#SNM\t]+$/; # skip comments and definition lines (if
# you're kludge-reading an RDB file)
lib/Chart/Scientific.pm view on Meta::CPAN
push @{$self->{points}{$brk}{y_err}[$_]}, $vals[ $cur_ecol ]
if defined $self->{y_err_col};
my $leg_key = $self->{y_col}[$_] .
( $brk eq $self->{only} ? "" : ", $brk:" );
$self->{derived_legend}{$leg_key} = 1;
}
}
$self->{derived_legend} = [ keys %{$self->{derived_legend}} ];
close $fh if $self->{filename} ne 'stdin';
}
sub plot {
lib/Chart/Scientific.pm view on Meta::CPAN
$font_charsize_opts
);
PGPLOT::pgmtxt ( 'T', 0.5, 0.5, 0.5, $self->{subtitle} )
if defined $self->{subtitle};
$self->write_legend () if ! $self->{nolegend};
$self->plot_residuals ( $font_charsize_opts )
if defined $self->{residuals};
$self->{win}->close ();
lib/Chart/Scientific.pm view on Meta::CPAN
if ! $self->{residuals_pos};
$self->{win}->env ( @env_pars );
}
sub write_legend {
my $self = shift () or die "no self in write_legend";
my @loc = ( $self->{limits}{x}{lo}, $self->{limits}{y}{hi} );
my @deltas = ( $self->{limits}{x}{hi} - $self->{limits}{x}{lo},
$self->{limits}{y}{hi} - $self->{limits}{y}{lo} );
@{$self->{legend_location}} = [ .1, -.1 ]
if ! $self->{legend_location};
@loc = map { $loc[$_] + $self->{legend_location}[$_] * $deltas[$_] } 0..1;
# Legend Usage:
#
# [ names ],
# x,y
# { option hash }
#
my $text = ( $self->{legend_text}
? $self->{legend_text}
: $self->{derived_legend} );
$self->{win}->legend (
$text, @loc,
{
LineStyle => $self->{opts}{ln_sty},
Color => $self->{opts}{ln_col},
},
);
$self->{win}->legend (
$text, @loc,
{
Symbol => $self->{opts}{symbol},
LineStyle => $self->{opts}{ln_sty},
Color => $self->{opts}{ln_col},
lib/Chart/Scientific.pm view on Meta::CPAN
$self->setup_RDB_split () if not defined $self->{split};
$self->read_nonfile_points () if defined $self->{x_data};
# Split data params on commas if they are defined:
#
foreach ( qw/y_col y_err_col x_range y_range legend_location legend_text/ ) {
$self->{$_} = [ split /,/, $self->{$_} ]
if exists $self->{$_} &&
defined $self->{$_};
}
lib/Chart/Scientific.pm view on Meta::CPAN
}
}
else {
die "in read_nonfile_points: this should NEVER be reached";
}
$self->{derived_legend} = ( defined $self->{y_col} )
? [ split /,/, $self->{y_col} ]
: [ map { "y$_" }
0..scalar @{$self->{y_data}} - 1 ];
}
lib/Chart/Scientific.pm view on Meta::CPAN
=item I<Legend options>
=over 8
=item B<nolegend>
Setting this to a true value will suppress legend drawing. The
default is 0.
=item B<legend_location>
A comma-separated list that to specify a location for the plot's
legend. The default is .02,-.05. The coordates are in the range
[0-1] for x, and [0,-1] for y, with the origin in the upper-left
corner of the plot.
=item B<legend_text>
A comma-separated list, with one item to specify the text for each
set of dependent data. The list must be given in in the same order
as the data sets are given.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Chart/Weather/Forecast/Temperature.pm view on Meta::CPAN
# Tufte influenced customizations (maximize data-to-ink)
$chart->grid_over(1);
$chart->plot->grid->show_range(0);
$chart->plot->grid->show_domain(0);
$chart->legend->visible(0);
$chart->border->width(0);
return $chart;
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Chart/Bars.pm view on Meta::CPAN
my $misccolor = $self->_color_role_to_index('misc');
my ( $x1, $x2, $x3, $y1, $y2, $y3 );
my ( $width, $height, $delta1, $delta2, $map, $mod, $cut, $pink );
my ( $i, $j, $color );
my $temp = 0;
my $font = $self->{'legend_font'};
my $fontW = $self->{'legend_font'}->width;
my $fontH = $self->{'legend_font'}->height;
my $textcolor = $self->_color_role_to_index('text');
# init the imagemap data field if they wanted it
if ( $self->true( $self->{'imagemap'} ) )
{
view all matches for this distribution
view release on metacpan or search on metacpan
eg/element-property.pl view on Meta::CPAN
my $height = shift || 400;
my $chart = Chart::Lines->new($width, $height);
$chart->set(
legend => 'none',
title => "$property per element",
x_label => 'Element',
y_label => 'Value',
include_zero => 'true',
precision => 2,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Chess/PGN/EPD.pm view on Meta::CPAN
}
$parameters{'epd'} = epd( 0, 0, 0, 0, 0, 0, %board );
}
my $epd = $parameters{'epd'};
my $type = lc( $parameters{'type'} );
my ( $border, $corner, $legend ) = ( 'single', 'square', 'no' );
$border = lc( $parameters{'border'} ) if exists( $parameters{'border'} );
$corner = lc( $parameters{'corner'} ) if exists( $parameters{'corner'} );
$legend = lc( $parameters{'legend'} ) if exists( $parameters{'legend'} );
my @array = split( /\/|\s/, $epd );
my @board;
if ( $type eq 'diagram' ) {
for ( 0 .. 7 ) {
$array[$_] =~ s/(\d+)/'_' x $1/ge;
lib/Chess/PGN/EPD.pm view on Meta::CPAN
\335","\340\344\350\354\360\364\336\342\346\352\356\362\334")/ge;
push( @board, $array[$_] );
}
}
else {
@board = _configureboard( $type, $border, $corner, $legend );
for ( 0 .. 7 ) {
$array[$_] =~ s/(\d+)/'_' x $1/ge;
$array[$_]
=~ s/([pnbrqkPNBRQK_])/_mappiece(pos $array[$_],$_,$1,$FontMap{$type}{'OnBlack'},$FontMap{$type}
{'OnWhite'})/ge;
lib/Chess/PGN/EPD.pm view on Meta::CPAN
sub _configureboard {
my $type = shift;
my $border = shift;
my $corner = shift;
my $legend = shift;
my $single = $border eq 'single';
my $box = $FontMap{$type}{ $single ? 'SingleBox' : 'DoubleBox' };
my @board;
if ( $corner eq 'rounded' ) {
lib/Chess/PGN/EPD.pm view on Meta::CPAN
}
push( @board,
substr( $box, 5, 1 )
. substr( $box, 6, 1 ) x 8
. substr( $box, 7, 1 ) );
if ( $legend eq 'yes' ) {
my $left = $FontMap{$type}{
$single
? 'SingleLeftLegend'
: 'DoubleLeftLegend'
};
lib/Chess/PGN/EPD.pm view on Meta::CPAN
For those instances where the game in question does not begin
with a complete move list, this function allows the user to
set the starting position using a 'EPD' string as described
elsewhere in the document.
=head2 epdstr(I<epd>|I<board>,I<type> [I<border>,I<corner>,I<legend>])
Returns an array of strings that represent a diagramatic conversion of the
specified B<epd> string or board postion to the specified B<type>. Parameters are passed as
a anonymous hash, i.e. epdstr(epd => $position,type => 'diagram') or similar.
lib/Chess/PGN/EPD.pm view on Meta::CPAN
\end{document}
=item 'linares'
Alpine Electronics' LinaresDiagram font. Mapping also works with both HastingsDiagram
and ZurichDiagram fonts. Single or double border, With or without algebraic legend.
=item 'linares1'
Standard mapping, single border, squares offset.
lib/Chess/PGN/EPD.pm view on Meta::CPAN
=head3 Borders and Such Like
Some fonts, for example those designed by Armondo H. Marroquin support a variety of border
styles and decorations. The border may be single or double, with square corners or rounded,
and with an algebraic legend. These effects are supported by the addition of the necessary
parameters to the allowed parameter list. In particular:
=over
=item * Border, values can be either 'single' or 'double' (default is 'single')
view all matches for this distribution
view release on metacpan or search on metacpan
_fen => $arg{fen} || 'no',
_position => $arg{position} || 'yes',
_type => $arg{type} || ($arg{font} || 'marroquin'),
_border => $arg{single} || 'single',
_corner => $arg{square} || 'square',
_legend => $arg{legend} || 'no',
_size => $arg{size} || '5',
_font => $arg{font} || 'Chess Kingdom',
_ECO => $arg{ECO} || 'yes',
_NIC => $arg{NIC} || 'no',
_Opening => $arg{Opening} || 'yes',
my @rows = epdstr(
epd => $element,
type => $parms->get_type(),
border => $parms->get_border(),
corner => $parms->get_corner(),
legend => $parms->get_legend()
);
my $text = '';
$text .= qq|$tabs\t<POSITION FONT="|.$parms->get_font().'" SIZE="'.($parms->get_size() - 2).qq|">\n|;
foreach my $row (@rows) {
=item * border, values can be either 'single' or 'double' (default is 'single'.)
=item * corner, values can be either 'square' or 'rounded' (default is 'square'.)
=item * legend, values can be either 'yes' or 'no' (default is 'no'.)
=item * size, value ranging from 1 to 6 that controls the size of the embedded diagram (default is 5.)
=back
B<Note> -- not all fonts support all combinations of 'border', 'corner' and 'legend'. No warnings or
errors will be generated by unsupported options, you get the best a font can do, no more!
=back
=head2 EXPORT
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Class/DBI/Plugin/FilterOnClick.pm view on Meta::CPAN
$filteronclick->cdbi_class( 'Baseball::Master' );
# indicate the style of navigation to provide
$filteronclick->navigation_style( 'both' );
print qq~<fieldset><legend>Filter by First Letter of Last Name</legend>~;
print $filteronclick->string_filter_navigation(
-column => 'lastname',
-position => 'begins',
);
view all matches for this distribution
view release on metacpan or search on metacpan
cgi-bin/login view on Meta::CPAN
}
sub login_form {
my $decor = shift;
return q[<h2>Login with a registered account</h2><fieldset class="content" style="width:300px"><legend>Login</legend>] .
$decor->site_login_form() .
q[</fieldset>];
}
view all matches for this distribution
view release on metacpan or search on metacpan
examples/jquery-1.6.2.min.js view on Meta::CPAN
* Released under the MIT, BSD, and GPL Licenses.
*
* Date: Thu Jun 30 14:16:56 2011 -0400
*/
(function(a,b){function cv(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cs(a){if(!cg[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("ifram...
shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\...
)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bi(a,d),e=bj(a),g=bj(d);for(h=0;e[h];++...
view all matches for this distribution
view release on metacpan or search on metacpan
modules/CommonMark/src/scanners.re view on Meta::CPAN
escaped_char = [\\][!"#$%&'()*+,./:;<=>?@[\\\]^_`{|}~-];
tagname = [A-Za-z][A-Za-z0-9-]*;
blocktagname = 'address'|'article'|'aside'|'base'|'basefont'|'blockquote'|'body'|'caption'|'center'|'col'|'colgroup'|'dd'|'details'|'dialog'|'dir'|'div'|'dl'|'dt'|'fieldset'|'figcaption'|'figure'|'footer'|'form'|'frame'|'frameset'|'h1'|'head'|'head...
attributename = [a-zA-Z_:][a-zA-Z0-9:._-]*;
unquotedvalue = [^\"'=<>`\x00]+;
singlequotedvalue = ['][^'\x00]*['];
view all matches for this distribution
view release on metacpan or search on metacpan
examples/helloworld/htdocs/dwarf/bootstrap/css/bootstrap.css view on Meta::CPAN
fieldset {
padding: .35em .625em .75em;
margin: 0 2px;
border: 1px solid #c0c0c0;
}
legend {
padding: 0;
border: 0;
}
textarea {
overflow: auto;
examples/helloworld/htdocs/dwarf/bootstrap/css/bootstrap.css view on Meta::CPAN
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 20px;
font-size: 21px;
view all matches for this distribution
view release on metacpan or search on metacpan
share/css/reset.css view on Meta::CPAN
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend*/,
table/*, caption*/, tbody/*, tfoot, thead*/, tr, th, td/*,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video*/ {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Config/Manager/Conf.pm view on Meta::CPAN
Parameter: -
(wie bei allen Objektmethoden;
eine Objekt-Referenz "$self")
Rueckgabe: Die Objekt-Referenz "$self"
Ich erledige die grundlegende Initialisierung eines jeden
Konfigurations-Objekts ("SPECIAL"-Variablen).
=item *
C<_add(file, [ line1, line2, ... ])>
view all matches for this distribution
view release on metacpan or search on metacpan
libucl-0.8.1/Makefile.am view on Meta::CPAN
coverage-report: coverage-lcov
@echo "Start to create coverage reports..."
$(GENHTML) --prefix "$(top_srcdir)" \
--output-directory $(COVERAGE_REPORT_DIR) \
--title $(PACKAGE_NAME) \
--legend --show-details \
$(GENHTML_OPTIONS) \
$(COVERAGE_INFO_FILE)
@echo "Successfully created coverage reports into $(COVERAGE_REPORT_DIR) directory."
clean-coverage-report:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Convos/public/js/jquery.js view on Meta::CPAN
rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,
// We have to close these tags to support XHTML (#13200)
wrapMap = {
option: [ 1, "<select multiple='multiple'>", "</select>" ],
legend: [ 1, "<fieldset>", "</fieldset>" ],
area: [ 1, "<map>", "</map>" ],
param: [ 1, "<object>", "</object>" ],
thead: [ 1, "<table>", "</table>" ],
tr: [ 2, "<table><tbody>", "</tbody></table>" ],
col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ],
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Crypt/Diceware/Wordlist/NL/ModHex.pm view on Meta::CPAN
46425 leertijd
46426 leertje
46431 legde
46432 legden
46433 legen
46434 legend
46435 legende
46436 legenden
46441 leger
46442 legerchef
46443 legerclub
46444 legere
46445 legeren
view all matches for this distribution