view release on metacpan or search on metacpan
share/docs/app-1c3b39672c292d36e4a5ff05c1bb7035.js view on Meta::CPAN
If you are unsure which license is appropriate for your use, please contact the sales department
at http://www.sencha.com/contact.
Build date: 2013-04-03 15:07:25
*/
var CodeMirror=(function(){function v(aN,aK){var b2={},bk=v.defaults;for(var aA in bk){if(bk.hasOwnProperty(aA)){b2[aA]=(aK&&aK.hasOwnProperty(aA)?aK:bk)[aA]}}var aE=document.createElement("div");aE.className="CodeMirror"+(b2.lineWrapping?" CodeMirro...
view all matches for this distribution
view release on metacpan or search on metacpan
share/styles.css view on Meta::CPAN
height: 100px;
}
.links .btn {
padding: 2px 5px 2px;
font-size: 12px;
line-height: 14px;
}
body table.table {
font-size: 11px;
}
.location-bar-container {
line-height: 30px;
}
share/styles.css view on Meta::CPAN
}
.ajax-loader.visible {
opacity: 1;
}
.embedded-resource-title {
font-style: italic;
}
.embedded-resource-title:before {
content: "\"";
}
.embedded-resource-title:after {
view all matches for this distribution
view release on metacpan or search on metacpan
xgboost/R-package/R/xgb.plot.multi.trees.R view on Meta::CPAN
attr = c("layout", "rankdir"),
value = c("dot", "LR")
) %>%
DiagrammeR::add_global_graph_attrs(
attr_type = "node",
attr = c("color", "fillcolor", "style", "shape", "fontname"),
value = c("DimGray", "beige", "filled", "rectangle", "Helvetica")
) %>%
DiagrammeR::add_global_graph_attrs(
attr_type = "edge",
attr = c("color", "arrowsize", "arrowhead", "fontname"),
value = c("DimGray", "1.5", "vee", "Helvetica"))
DiagrammeR::render_graph(graph, width = plot_width, height = plot_height)
}
view all matches for this distribution
view release on metacpan or search on metacpan
libcares/ares_platform.c view on Meta::CPAN
{"iwg1", {NULL}, 7071, "udp"},
{"empowerid", {NULL}, 7080, "tcp"},
{"empowerid", {NULL}, 7080, "udp"},
{"lazy-ptop", {NULL}, 7099, "tcp"},
{"lazy-ptop", {NULL}, 7099, "udp"},
{"font-service", {NULL}, 7100, "tcp"},
{"font-service", {NULL}, 7100, "udp"},
{"elcn", {NULL}, 7101, "tcp"},
{"elcn", {NULL}, 7101, "udp"},
{"aes-x170", {NULL}, 7107, "udp"},
{"virprot-lm", {NULL}, 7121, "tcp"},
{"virprot-lm", {NULL}, 7121, "udp"},
view all matches for this distribution
view release on metacpan or search on metacpan
libuv/.mailmap view on Meta::CPAN
Sam Roberts <vieuxtech@gmail.com> <sam@strongloop.com>
San-Tai Hsu <vanilla@fatpipi.com>
Santiago Gimeno <santiago.gimeno@quantion.es> <santiago.gimeno@gmail.com>
Saúl Ibarra Corretgé <saghul@gmail.com>
Shigeki Ohtsu <ohtsu@iij.ad.jp> <ohtsu@ohtsu.org>
Timothy J. Fontaine <tjfontaine@gmail.com>
Yasuhiro Matsumoto <mattn.jp@gmail.com>
Yazhong Liu <yorkiefixer@gmail.com>
Yuki Okumura <mjt@cltn.org>
jBarz <jBarz@users.noreply.github.com> <jbarboza@ca.ibm.com>
jBarz <jBarz@users.noreply.github.com> <jbarz@users.noreply.github.com>
view all matches for this distribution
view release on metacpan or search on metacpan
patches/data-3.0.0
patches/data-3.0.1
patches/data-3.0.2
patches/wxGTK-2.8.12-dirdialog.patch
patches/wxGTK-2.9.4-dirdialog.patch
patches/wxMac-2.8.10-fontdlg.patch
patches/wxMac-2.8.3-brokengcc.patch
patches/wxMac-2.9.0-textctrl.patch
patches/wxMSW-2.8.0-config.patch
patches/wxMSW-2.8.0-makefiles.patch
patches/wxMSW-2.8.0-setup.patch
view all matches for this distribution
view release on metacpan or search on metacpan
lib/AlignDB/ToXLSX.pm view on Meta::CPAN
# worksheet cursor
has row => ( is => 'rw', isa => 'Num', default => sub {0}, );
has column => ( is => 'rw', isa => 'Num', default => sub {0}, );
# charts
has font_name => ( is => 'rw', isa => 'Str', default => sub {'Arial'}, );
has font_size => ( is => 'rw', isa => 'Num', default => sub {10}, );
has width => ( is => 'rw', isa => 'Num', default => sub {320}, );
has height => ( is => 'rw', isa => 'Num', default => sub {320}, );
has max_ticks => ( is => 'rw', isa => 'Int', default => sub {6} );
# Replace texts in titles
lib/AlignDB/ToXLSX.pm view on Meta::CPAN
return;
}
$self->{workbook} = $workbook;
# set $workbook format
my %font = (
font => $self->{font_name},
size => $self->{font_size},
);
my %header = (
align => 'center',
bg_color => 42,
bold => 1,
bottom => 2,
);
my $format = {
HEADER => $workbook->add_format( %header, %font, ),
HIGHLIGHT => $workbook->add_format( color => 'blue', %font, ),
NORMAL => $workbook->add_format( color => 'black', %font, ),
NAME => $workbook->add_format( bold => 1, color => 57, %font, ),
TOTAL => $workbook->add_format( bold => 1, top => 2, %font, ),
DATE => $workbook->add_format(
align => 'left',
bg_color => 42,
bold => 1,
num_format => 'yyyy-mm-dd hh:mm',
%font,
),
URL => $workbook->add_format( color => 'blue', underline => 1, %font, ),
URLHEADER => $workbook->add_format( color => 'blue', underline => 1, %header, %font, ),
};
$self->{format} = $format;
return;
}
lib/AlignDB/ToXLSX.pm view on Meta::CPAN
#@type Excel::Writer::XLSX::Workbook
my $workbook = $self->{workbook};
my $sheet_name = $sheet->get_name;
my $font_name = $opt->{font_name} || $self->{font_name};
my $font_size = $opt->{font_size} || $self->{font_size};
my $height = $opt->{height} || $self->{height};
my $width = $opt->{width} || $self->{width};
# E2
my $top = $opt->{top} || 1;
lib/AlignDB/ToXLSX.pm view on Meta::CPAN
$chart->show_blanks_as('gap');
# set axis
$chart->set_x_axis(
name => $self->_replace_text( $opt->{x_title} ),
name_font => { name => $font_name, size => $font_size, },
num_font => { name => $font_name, size => $font_size, },
line => { color => 'black', },
major_gridlines => { visible => 0, },
minor_gridlines => { visible => 0, },
major_tick_mark => 'inside',
min => $x_min_scale,
max => $x_max_scale,
exists $opt->{cross} ? ( crossing => $opt->{cross}, ) : (),
);
$chart->set_y_axis(
name => $self->_replace_text( $opt->{y_title} ),
name_font => { name => $font_name, size => $font_size, },
num_font => { name => $font_name, size => $font_size, },
line => { color => 'black', },
major_gridlines => { visible => 0, },
minor_gridlines => { visible => 0, },
major_tick_mark => 'inside',
defined $y_scale
lib/AlignDB/ToXLSX.pm view on Meta::CPAN
#@type Excel::Writer::XLSX::Workbook
my $workbook = $self->{workbook};
my $sheet_name = $sheet->get_name;
my $font_name = $opt->{font_name} || $self->{font_name};
my $font_size = $opt->{font_size} || $self->{font_size};
my $height = $opt->{height} || $self->{height};
my $width = $opt->{width} || $self->{width};
# E2
my $top = $opt->{top} || 1;
lib/AlignDB/ToXLSX.pm view on Meta::CPAN
$chart->show_blanks_as('gap');
# set axis
$chart->set_x_axis(
name => $self->_replace_text( $opt->{x_title} ),
name_font => { name => $font_name, size => $font_size, },
num_font => { name => $font_name, size => $font_size, },
line => { color => 'black', },
major_gridlines => { visible => 0, },
minor_gridlines => { visible => 0, },
major_tick_mark => 'inside',
min => $x_min_scale,
max => $x_max_scale,
);
$chart->set_y_axis(
name => $self->_replace_text( $opt->{y_title} ),
name_font => { name => $font_name, size => $font_size, },
num_font => { name => $font_name, size => $font_size, },
line => { color => 'black', },
major_gridlines => { visible => 0, },
minor_gridlines => { visible => 0, },
major_tick_mark => 'inside',
defined $y_scale
? ( min => $y_scale->{min}, max => $y_scale->{max}, major_unit => $y_scale->{unit}, )
: (),
);
$chart->set_y2_axis(
name => $self->_replace_text( $opt->{y2_title} ),
name_font => { name => $font_name, size => $font_size, },
num_font => { name => $font_name, size => $font_size, },
line => { color => 'black', },
major_gridlines => { visible => 0, },
minor_gridlines => { visible => 0, },
major_tick_mark => 'inside',
defined $y2_scale
lib/AlignDB/ToXLSX.pm view on Meta::CPAN
#@type Excel::Writer::XLSX::Workbook
my $workbook = $self->{workbook};
my $sheet_name = $sheet->get_name;
my $font_name = $opt->{font_name} || $self->{font_name};
my $font_size = $opt->{font_size} || $self->{font_size};
my $height = $opt->{height} || $self->{height};
my $width = $opt->{width} || $self->{width};
# trendline
my $add_trend = $opt->{add_trend};
lib/AlignDB/ToXLSX.pm view on Meta::CPAN
$chart->show_blanks_as('gap');
# set axis
$chart->set_x_axis(
name => $self->_replace_text( $opt->{x_title} ),
name_font => { name => $font_name, size => $font_size, },
num_font => { name => $font_name, size => $font_size, },
line => { color => 'black', },
major_gridlines => { visible => 0, },
minor_gridlines => { visible => 0, },
major_tick_mark => 'inside',
defined $x_scale
? ( min => $x_scale->{min}, max => $x_scale->{max}, major_unit => $x_scale->{unit}, )
: (),
);
$chart->set_y_axis(
name => $self->_replace_text( $opt->{y_title} ),
name_font => { name => $font_name, size => $font_size, },
num_font => { name => $font_name, size => $font_size, },
line => { color => 'black', },
major_gridlines => { visible => 0, },
minor_gridlines => { visible => 0, },
major_tick_mark => 'inside',
defined $y_scale
lib/AlignDB/ToXLSX.pm view on Meta::CPAN
#@type Excel::Writer::XLSX::Workbook
my $workbook = $self->{workbook};
my $sheet_name = $sheet->get_name;
my $font_name = $opt->{font_name} || $self->{font_name};
my $font_size = $opt->{font_size} || $self->{font_size};
my $height = $opt->{height} || $self->{height};
my $width = $opt->{width} || $self->{width};
# E2
my $top = $opt->{top} || 1;
lib/AlignDB/ToXLSX.pm view on Meta::CPAN
$chart->show_blanks_as('gap');
# set axis
$chart->set_x_axis(
name => $self->_replace_text( $opt->{x_title} ),
name_font => { name => $font_name, size => $font_size, },
num_font => { name => $font_name, size => $font_size, },
line => { color => 'black', },
major_gridlines => { visible => 0, },
minor_gridlines => { visible => 0, },
major_tick_mark => 'inside',
min => $x_min_scale,
max => $x_max_scale,
exists $opt->{cross} ? ( crossing => $opt->{cross}, ) : (),
);
$chart->set_y_axis(
name => $self->_replace_text( $opt->{y_title} ),
name_font => { name => $font_name, size => $font_size, },
num_font => { name => $font_name, size => $font_size, },
line => { color => 'black', },
major_gridlines => { visible => 0, },
minor_gridlines => { visible => 0, },
major_tick_mark => 'inside',
defined $y_scale
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CWB/CEQL/Parser.pm view on Meta::CPAN
C<wildcard_expression> or C<part_of_speech> rather than C<rule1723a>.
The B<HtmlErrorMessage> method will automatically convert HTML metacharacters
and non-ASCII characters to entities, so it is safe to include the returned
HTML code directly in a Web page. Error messages may use basic wiki-style
formatting: C<''...''> for typewriter font, C<//...//> for italics and
C<**...**> for bold font. Note that such markup is non-recursive and nested
formatting will be ignored. User input should always be enclosed in
C<''...''> in error messages so that C<//> and C<**> sequences in the input
are not mistaken as formatting instructions.
=head2 Calling subrules
lib/CWB/CEQL/Parser.pm view on Meta::CPAN
of the callstack. The string I<$html_code> is valid HTML and can directly be
included in a generated Web page. In particular, unsafe and non-ASCII
characters have been encoded as HTML entities. Simple, non-recursive
wiki-style markup in an error message is interpreted in the following way:
**<text>** <text> is shown in bold font (<b> ... </b>)
//<text>// <text> is displayed in italics (<i> ... </i>)
''<text>'' <text> is shown in typewriter font (<code> ... </code>)
Lines starting with C< - > (note the two blanks) are converted into list items.
=cut
lib/CWB/CEQL/Parser.pm view on Meta::CPAN
C<< //<text>// >> - <text> is displayed in italics (C<< <i> ... </i> >>)
=item *
C<< ''<text>'' >> - <text> is shown in typewriter font (C<< <code> ... </code> >>)
=item *
lines starting with C< - > (note the two blanks before and after the
hyphen) are converted into list items
lib/CWB/CEQL/Parser.pm view on Meta::CPAN
=back
The wiki markup is non-recursive, i.e. no substitutions will be applied to
the text wrapped in C<''...''> etc. This behaviour is intentional, so that
e.g. B<**> in a query expression will not be mistaken for a bold face marker,
(as long as the query is displayed in typewriter font, i.e. as C<''<query>''>).
=cut
sub formatHtmlText {
my $self = shift;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Tickit/Widget/Frame.pm view on Meta::CPAN
ascii single double thick solid_inside solid_outside
The C<ascii> linetype is default, and uses only the C<-|+> ASCII characters.
Other linetypes use Unicode box-drawing characters. These may not be supported
by all terminals or fonts.
=item linetype_top => STRING
=item linetype_bottom => STRING
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alvis/HTML.pm view on Meta::CPAN
{
$html=~s/<\/?(?:(?i)a|frame|iframe|h[1-6]|p|div|dl|ul|ol|table|li|dd|dt|th|td|caption)(?=\W)/\0/sgo;
}
if ($self->{alvisRemove})
{
$html=~s/<\/?(?:(?i)tr|blockquote|hr|br|dir|menu|form|fieldset|legend|label|input|select|option|textarea|isindex|noframes|frameset|tfoot|body|tbody|html|head|abbr|acronym|address|applet|area|b|base|basefont|bdo|big|button|center|cite|code|col|colgro...
}
if ($self->{obsolete})
{
$html=~s/<\/?(?:(?i)header|nextid|section|listing|xmp|plaintext)(?=\W)/\0/sgo;
}
lib/Alvis/HTML.pm view on Meta::CPAN
# If we have some tags left, do some fixing
if (!$self->{alvisKeep}||!$self->{alvisRemove}||!$self->{obsolete}||
!$self->{proprietary}||!$self->{xhtml}||!$self->{wml})
{
# Often we have <TAG ... </TAG>. Fix that.
$html=~s/(<\/?(?:(?i)a|frame|iframe|h[1-6]|p|div|dl|ul|ol|table|li|dd|dt|th|td|caption|tr|blockquote|hr|br|dir|menu|form|fieldset|legend|label|input|select|option|textarea|isindex|noframes|frameset|tfoot|body|tbody|html|head|abbr|acronym|address|app...
$html=~s/(?<=\0)([^>]*?)(?=\0)/$1>/sgo;
$html=~s/(?<=\0)([^\0>]*?)$/$1>/sgo;
$html=~s/\0/ /go;
}
view all matches for this distribution
view release on metacpan or search on metacpan
etc/alvis-nlpplatform/mime/magic.TeX view on Meta::CPAN
0 string \367\002 TeX DVI file
0 string \367\203 TeX generic font data
0 string \367\131 TeX packed font data
0 string \367\312 TeX virtual font data
0 string This\ is\ TeX, TeX transcript text
# There is no way to detect TeX Font Metric (*.tfm) files without
2 string \000\021 TeX font metric data
2 string \000\022 TeX font metric data
# TeX documents, from Daniel Quinlan (quinlan@yggdrasil.com)
0 string \\input text/x-tex
0 string \\section text/x-tex
0 string \\setlength text/x-tex
0 string \\documentstyle text/x-tex
etc/alvis-nlpplatform/mime/magic.TeX view on Meta::CPAN
0 string/c @unpublished{ BibTeX text file
73 string %%%\ \ BibTeX-file{ BibTex text file (with full header)
73 string %%%\ \ @BibTeX-style-file{ BibTeX style text file (with full header)
0 string %\ BibTeX\ standard\ bibliography\ BibTeX standard bibliography style text file
0 string %\ BibTeX\ ` BibTeX custom bibliography style text file
0 string @c\ @mapfile{ TeX font aliases text file
# Extensible markup language (XML), a subset of SGML
0 string \<html text/html
0 string/cb \<?xml text/xml
0 string \<?xml\ version\ \" text/xml
0 string \<?xml\ version=" text/xml
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alzabo/Display/SWF.pm view on Meta::CPAN
In the bottom of the movie there is a label with the name of the Alzabo
schema. Clicking on this label toggles the display of all relations
between tables.
Individual configuration of the colors, fonts and linestyles in the movie
can be done via a YAML configuration file (see SYNOPSIS).
=head1 TODO
=over 4
view all matches for this distribution
view release on metacpan or search on metacpan
mason/alzabo.css view on Meta::CPAN
body
{
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
font-family: verdana, arial, helvetica, sans-serif;
color: black;
background-color: #ffffff;
}
a
mason/alzabo.css view on Meta::CPAN
text-decoration: none;
}
strong, b
{
font-weight: bold;
}
p
{
color: #333;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 12px;
line-height: 14px;
margin-top: 2px;
margin-bottom: 10px;
}
h2
{
color: #A80806;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 12px;
line-height: 18px;
font-weight: bold;
margin-top: 0;
margin-bottom: 0;
}
h3
{
color: #336600;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 10px;
line-height: 14px;
margin-top: 0;
margin-bottom: 0;
}
h4
{
color: #333;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 10px;
line-height: 18px;
font-weight: bold;
margin-top: 0;
margin-bottom: 0;
}
h4.error { color:red; }
.h4
{
color: #333;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 10px;
line-height: 18px;
font-weight: normal;
margin-top: 0;
margin-bottom: 0;
}
h5
{
color: #666633;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 10px;
line-height: 14px;
margin-top: 0;
margin-bottom: 0;
}
h6
{
color: #A80806;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 10px;
text-align: right;
line-height: 24px;
font-weight: bold;
margin-top: 0;
margin-bottom: 0;
}
h7
{
color: #333;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 10px;
line-height: 10px;
font-weight: bold;
margin-top: 0;
margin-bottom: 0;
}
#top
mason/alzabo.css view on Meta::CPAN
}
pre
{
color: #555;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 12px;
line-height: 22px;
margin-top: 20px;
margin-bottom: 10px;
}
mason/alzabo.css view on Meta::CPAN
padding: 10px;
}
.text
{
font-family: verdana, arial, helvetica, sans-serif;
font-size: 10px;
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alzabo/Exceptions.pm view on Meta::CPAN
$msg = HTML::Entities::encode_entities($msg);
$msg =~ s/\n/<br>/;
my $html = <<"EOF";
<html><body>
<p align="center"><font face="Verdana, Arial, Helvetica, sans-serif"><b>System error</b></font></p>
<table border="0" cellspacing="0" cellpadding="1">
<tr>
<td nowrap align="left" valign="top"><b>error:</b> </td>
<td align="left" valign="top" nowrap>$msg</td>
</tr>
view all matches for this distribution
view release on metacpan or search on metacpan
share/Templates/Templates/XSLT+DOJO/edit_json.xsl view on Meta::CPAN
</xsl:value-of>
</xsl:attribute>
</input>
</xslt:for-each>
<table>
<tr><td colspan="2" align="center" style="font-size: 1.2em;">
<b>Edit <xslt:value-of select="$label" /></b>
</td></tr>
<xslt:apply-templates select="atns:Field"/>
<xslt:variable name="EId" select="@Id" />
view all matches for this distribution
view release on metacpan or search on metacpan
Amethyst/Brain/Infobot/Module/Google.pm view on Meta::CPAN
$title = "No Title" if ($title =~ /^\s+/);
$hit->title(WWW::Search::strip_tags($title));
$state = $HITS;
}
elsif ($state == $HITS && m|Description:</font></span>\s*(.*)<br>|i) {
print STDERR "**Parsing Description Line**\n" if ($self->{_debug});
if ($hit) {
my $desc = $1;
$desc =~ s/<.*?>//g;
$desc =~ s/Category.*//;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Amon2/Setup/Asset/Blueprint.pm view on Meta::CPAN
----------------------------------------------------------------------- */
/* reset.css */
html {margin:0;padding:0;border:0;}
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside...
article, aside, details, figcaption, figure, dialog, footer, header, hgroup, menu, nav, section {display:block;}
body {line-height:1.5;background:white;}
table {border-collapse:separate;border-spacing:0;}
caption, th, td {text-align:left;font-weight:normal;float:none !important;}
table, th, td {vertical-align:middle;}
blockquote:before, blockquote:after, q:before, q:after {content:\'\';}
blockquote, q {quotes:"" "";}
a img {border:none;}
:focus {outline:0;}
/* typography.css */
html {font-size:100.01%;}
body {font-size:75%;color:#222;background:#fff;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;}
h1, h2, h3, h4, h5, h6 {font-weight:normal;color:#111;}
h1 {font-size:3em;line-height:1;margin-bottom:0.5em;}
h2 {font-size:2em;margin-bottom:0.75em;}
h3 {font-size:1.5em;line-height:1;margin-bottom:1em;}
h4 {font-size:1.2em;line-height:1.25;margin-bottom:1.25em;}
h5 {font-size:1em;font-weight:bold;margin-bottom:1.5em;}
h6 {font-size:1em;font-weight:bold;}
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {margin:0;}
p {margin:0 0 1.5em;}
.left {float:left !important;}
p .left {margin:1.5em 1.5em 1.5em 0;padding:0;}
.right {float:right !important;}
p .right {margin:1.5em 0 1.5em 1.5em;padding:0;}
a:focus, a:hover {color:#09f;}
a {color:#06c;text-decoration:underline;}
blockquote {margin:1.5em;color:#666;font-style:italic;}
strong, dfn {font-weight:bold;}
em, dfn {font-style:italic;}
sup, sub {line-height:0;}
abbr, acronym {border-bottom:1px dotted #666;}
address {margin:0 0 1.5em;font-style:italic;}
del {color:#666;}
pre {margin:1.5em 0;white-space:pre;}
pre, code, tt {font:1em \'andale mono\', \'lucida console\', monospace;line-height:1.5;}
li ul, li ol {margin:0;}
ul, ol {margin:0 1.5em 1.5em 0;padding-left:1.5em;}
ul {list-style-type:disc;}
ol {list-style-type:decimal;}
dl {margin:0 0 1.5em 0;}
dl dt {font-weight:bold;}
dd {margin-left:1.5em;}
table {margin-bottom:1.4em;width:100%;}
th {font-weight:bold;}
thead th {background:#c3d9ff;}
th, td, caption {padding:4px 10px 4px 5px;}
tbody tr:nth-child(even) td, tbody tr.even td {background:#e5ecf9;}
tfoot {font-style:italic;}
caption {background:#eee;}
.small {font-size:.8em;margin-bottom:1.875em;line-height:1.875em;}
.large {font-size:1.2em;line-height:2.5em;margin-bottom:1.25em;}
.hide {display:none;}
.quiet {color:#666;}
.loud {color:#000;}
.highlight {background:#ff0;}
.added {background:#060;color:#fff;}
lib/Amon2/Setup/Asset/Blueprint.pm view on Meta::CPAN
.last {margin-right:0;padding-right:0;}
.top {margin-top:0;padding-top:0;}
.bottom {margin-bottom:0;padding-bottom:0;}
/* forms.css */
label {font-weight:bold;}
fieldset {padding:0 1.4em 1.4em 1.4em;margin:0 0 1.5em 0;border:1px solid #ccc;}
legend {font-weight:bold;font-size:1.2em;margin-top:-0.2em;margin-bottom:1em;}
fieldset, #IE8#HACK {padding-top:1.4em;}
legend, #IE8#HACK {margin-top:0;margin-bottom:0;}
input[type=text], input[type=password], input[type=url], input[type=email], input.text, input.title, textarea {background-color:#fff;border:1px solid #bbb;color:#000;}
input[type=text]:focus, input[type=password]:focus, input[type=url]:focus, input[type=email]:focus, input.text:focus, input.title:focus, textarea:focus {border-color:#666;}
select {background-color:#fff;border-width:1px;border-style:solid;}
input[type=text], input[type=password], input[type=url], input[type=email], input.text, input.title, textarea, select {margin:0.5em 0;}
input.text, input.title {width:300px;padding:5px;}
input.title {font-size:1.5em;}
textarea {width:390px;height:250px;padding:5px;}
form.inline {line-height:3;}
form.inline p {margin-bottom:0;}
.error, .alert, .notice, .success, .info {padding:0.8em;margin-bottom:1em;border:2px solid #ddd;}
.error, .alert {background:#fbe3e4;color:#8a1f11;border-color:#fbc2c4;}
lib/Amon2/Setup/Asset/Blueprint.pm view on Meta::CPAN
* This is a compressed file. See the sources in the \'src\' directory.
----------------------------------------------------------------------- */
/* print.css */
body {line-height:1.5;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;color:#000;background:none;font-size:10pt;}
.container {background:none;}
hr {background:#ccc;color:#ccc;width:100%;height:2px;margin:2em 0;padding:0;border:none;}
hr.space {background:#fff;color:#fff;visibility:hidden;}
h1, h2, h3, h4, h5, h6 {font-family:"Helvetica Neue", Arial, "Lucida Grande", sans-serif;}
code {font:.9em "Courier New", Monaco, Courier, monospace;}
a img {border:none;}
p img.top {margin-top:0;}
blockquote {margin:1.5em;padding:1em;font-style:italic;font-size:.9em;}
.small {font-size:.9em;}
.large {font-size:1.1em;}
.quiet {color:#999;}
.hide {display:none;}
a:link, a:visited {background:transparent;font-weight:700;text-decoration:underline;}
a:link:after, a:visited:after {content:" (" attr(href) ")";font-size:90%;}'
}
sub ie_css {
'/* -----------------------------------------------------------------------
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Analizo/Metric/AfferentConnections.pm view on Meta::CPAN
=head1 DESCRIPTION
The metric calculation is based on the following article and calculates the
class connectivity.
PhD Thesis: I<Monitoramento de metricas de codigo-fonte em projetos de software livre>
by Paulo Roberto Miranda Meirelles.
See the adaptation of the paragraph about Afferent Connections per Class in
the article:
lib/Analizo/Metric/AfferentConnections.pm view on Meta::CPAN
=over
=item *
L<Monitoramento de metricas de codigo-fonte em projetos de software livre|https://www.teses.usp.br/teses/disponiveis/45/45134/tde-27082013-090242>
=back
=cut
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Anki/Import.pm view on Meta::CPAN
# add a couple of blank lines to previous line
if ($$last_line) {
$$last_line .= '<br><br>';
}
$$last_line .= '<div style="text-align: left; font-family: courier; white-space: pre;">';
next;
}
# exit whitespace mode, close out HTML, add blank lines
if ($line =~ /^`{3,3}$/ && $ws_mode) {
lib/Anki/Import.pm view on Meta::CPAN
}
$field = join '`', @$parts;
# backticked characters
$field =~ s/(?<!\\)`(.*?)`/<span style="font-family: courier; weight: bold;">$1<\/span>/gm;
$field =~ s/\\`/`/g;
# bold
$field =~ s/(?<!\\)\*(.*?)\*/<span style="weight: bold;">$1<\/span>/gm;
$field =~ s/\\\*/*/g;
view all matches for this distribution
view release on metacpan or search on metacpan
p.desc, td.links, a {
line-height: 17pt;
}
thead tr td {
align: left;
font-weight: bold;
font-style: italic;
}
a {
font-weight: bold;
text-decoration: none;
aborder-bottom: 1px dotted white;
}
a:hover {
font-weight: bold;
text-decoration: underline;
atext-decoration: none;
aborder-bottom: 1px solid white;
}
</style>
view all matches for this distribution
view release on metacpan or search on metacpan
html/annocpan.css view on Meta::CPAN
/* general styles */
html { margin: 0; padding: 0; }
body {
background: white;
color: black;
font-family: arial,sans-serif;
margin: 1ex;
padding: 1ex 0;
/* border: 1px solid black; */
position: relative;
}
h1 { padding: 0; margin: 0 10px 5px; }
h2 { font-size: 135%; border-bottom: 2px solid black; margin-right: 12em;
padding-right: 5em;}
h2 a { text-decoration: none;
color: #007733;
}
h3 { font-size: 120%; color: #007733; }
img { border: none; }
a { color: #007733; }
a:visited { color: #005518; }
html/annocpan.css view on Meta::CPAN
#content { padding: 0 1ex; }
/* messages */
.error {
font-weight: bold;
color: red;
}
.message {
font-weight: bold;
color: green;
}
.message a, .error a {
font-size: 80%;
color: inherit;
}
.motd {
margin: 1em 10% 0 10%;
font-size: 95%;
}
.motd h3 {
background-color: #6c9;
width: 50%;
html/annocpan.css view on Meta::CPAN
padding: 0.5ex;
}
.motd_more {
margin: 3px 10%;
font-size: 75%;
text-align: right;
font-style: italic;
}
.hidden { display: none; }
.sisters { font-size: 80%; }
#plswait { padding: 1ex; font-size: 115%; font-style: italic;
border: 3px dotted black; }
/* notes */
.noteblock, .noteblock_inline {
font-size: 80%;
}
.note {
margin: 0 0 5px;
}
.note p { text-align: left; }
.note_header {
background-color: #F0DDBB;
font-weight: bold;
padding: 0.5ex;
height: 1.3em;
}
.note_body {
html/annocpan.css view on Meta::CPAN
}
#pod2html .note_body p { margin: 0.75ex 0; }
#pod2html .note_body pre { background: none; border: none; }
.button { display: none; font-size: 85%; }
/* nav */
#nav { background-color: #042; color: white; font-weight: bold;
padding: 0.1em 1em;
list-style: none;
height: 1.3em;
margin: 1.5ex 0;
}
html/annocpan.css view on Meta::CPAN
padding-top: 1em;
white-space: pre;
}
#pod2html h3, #pod2html h4 { color: #007733; }
#pod2html h3 { font-size: large; margin: 2ex 0 1ex; }
#pod2html h4 { font-size: medium; }
#pod2html p a { font-weight: bold; }
.line_cont { color: red; }
#pod2html .cb { display: none; }
/* forms */
label { font-weight: bold; }
form.float label {
display: block;
float: left;
width: 6em;
html/annocpan.css view on Meta::CPAN
position: absolute;
right: 20px;
top: 10px;
}
#login_form form {
font-size: 80%;
}
/* preferences form */
#prefs input.checkbox {
display: block;
html/annocpan.css view on Meta::CPAN
#searchform {
padding: 1ex 0;
}
/* footer */
#footer { border-top: 2px solid black; font-size: 80%; text-align: right;
clear: both; margin: 1em 0;
padding: 0.5ex;
}
#pod2html ul {
html/annocpan.css view on Meta::CPAN
background: url('/img/bullet.gif') no-repeat top left;
}
/* note form */
.save_button, .del_button, .hide_button {
font-size: 85%;
}
#save_button { background-color: #9D9; }
#del_button { background-color: #E99; }
#hide_button { background-color: #AAA; }
#noteform textarea { background: #FEFFD7;
html/annocpan.css view on Meta::CPAN
/* misc */
table { border-collapse: collapse; }
tr.even { background: #e7f7e2; }
td, th { padding: 0.25ex 1em; border: none; }
.date { font-size: small; }
a:hover { color: #c50; }
.mtime { font-size: 85%; }
.pager { text-align: center; margin: 10px 0; }
/* note_help */
#note_help { font-size: 85% }
#note_help h2 { color: #007733; }
#note_help table {
border-top: 2px solid black;
border-bottom: 2px solid black;
}
#note_help th { border-bottom: 1px solid black; text-align: left; }
#note_help dt { font-weight: bold; }
view all matches for this distribution
view release on metacpan or search on metacpan
lib/AnyEvent/MSN.pm view on Meta::CPAN
Get by with a little help...
=head2 Text Format
Messages sent and recieved may contain a special parameter defining how the
message should be displayed. The message format specifies the font (FN),
effect (EF), color (CO), character set (CS) and pitch and family (PF) used for
rendering the text message. The value of the Format element is a string of the
following key/value pairs:
=for url http://msdn.microsoft.com/en-us/library/bb969558(v=office.12).aspx
=over
=item FN
Specifies a font name. The font name must be URL-encoded. For example, to have
a font of "MS Sans Serif", you would have to specify C<FN=MS%20Sans%20Serif>.
Font names are not case-sensitive and only spaces should be URL-encoded.
URL-encoding other characters such as numbers and letters cause unpredictable
results in other clients.
According to MS, if the receiving client does not have the specified font, it
should make judgment based on the PF and CS parameters. Basically, the client
should select whichever available font supports the character set specified in
CS and is closest to the category specified in PF. If those parameters are not
present, the client should just use a default font.
=item EF
Specifies optional style effects. Possible effects are bold, italic,
underline, and strikethrough. Each effect is referred to by its first letter.
lib/AnyEvent/MSN.pm view on Meta::CPAN
C<EF=BI>. The order does not matter. Any unknown effects are to be ignored.
If there are no effects, just leave the parameter value blank.
=item CO
Specifies a font color. The value of the CO field is a six-character
hex BGR (Note that this is I<blue-green-red>, the I<reverse> of the standard
RGB order seen in HTML) string. The first two characters represent a hex
number from C<00> to C<ff> for the intensity of blue, the second two are for
green, and the third two are for red. For example, to make a full red color,
send C<CO=0000ff>.
lib/AnyEvent/MSN.pm view on Meta::CPAN
are included with the Microsoft® Windows® operating system.
Val Description
-------------------------------------------------------------------------
00 ANSI characters
01 Font is chosen based solely on name and size. If the described font is
not available on the system, you should substitute another font.
02 Standard symbol set
4d Macintosh characters
80 Japanese shift-JIS characters
81 Korean characters (Wansung)
82 Korean characters (Johab)
lib/AnyEvent/MSN.pm view on Meta::CPAN
character sets. This character set is arbitrary, but it is advisable to make
it the one that causes the most characters to be displayed correctly.
=item PF
The PF family defines the category that the font specified in the FN parameter
falls into. This parameter is used by the receiving client if it does not have
the specified font installed. The value is a two-digit hexadecimal number.
If you're familiar with the Windows APIs, this value is the PitchAndFamily
value in RichEdit and LOGFONT.
The first digit of the value represents the font family. Below is a list of
numbers for the first digit and the font families they represent.
First Digit Description
-------------------------------------------------------------------------
0_ Specifies a generic family name. This name is used when
information about a font does not exist or does not
matter. The default font is used.
1_ Specifies a proportional (variable-width) font with
serifs. An example is Times New Roman.
2_ Specifies a proportional (variable-width) font without
serifs. An example is Arial.
3_ Specifies a Monospace font with or without serifs.
Monospace fonts are usually modern; examples include Pica,
Elite, and Courier New.
4_ Specifies a font that is designed to look like
handwriting; examples include Script and Cursive.
5_ Specifies a novelty font. An example is Old English.
The second digit represents the pitch of the font â in other words, whether it
is monospace or variable-width.
Second Digit Description
-------------------------------------------------------------------------
_0 Specifies a generic font pitch. This name is used when
information about a font does not exist or does not
matter. The default font pitch is used.
_1 Specifies a fixed-width (Monospace) font. Examples are
Courier New and Bitstream Vera Sans Mono.
_2 Specifies a variable-width (proportional) font. Examples
are Times New Roman and Arial.
Below are some PF values and example fonts that fit the category.
Examples of PF Value Description
-------------------------------------------------------------------------
12 Times New Roman, MS Serif, Bitstream Vera Serif
22 Arial, Verdana, MS Sans Serif, Bitstream Vera Sans
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Aozora2Epub/XHTML.pm view on Meta::CPAN
my ($men, $ku, $ten) = @_;
# åæ¿ç¹ä»ãã«ã¿ã«ã ã kindleã ã¨2æåã«è¦ããã®ãªãã¨ããªãããï¼
return if $men == 1 && $ku == 6 && $ten == 88;
# kindle font of these characters are broken.
return if $men == 1 && $ku == 90 && $ten == 61;
return if $men == 2 && $ku == 15 && $ten == 73;
return jisx0213_to_utf8($men, $ku, $ten);
}
# kindle font of these characters are broken.
our %kindle_broken_font_unicode = map { $_ => 1 } (
0x2152,
0x2189,
0x26bd,
0x26be,
0x3244,
);
our %kindle_ok_font_over0xffff = map { $_ => 1 } (
0x20d58, 0x20e97, 0x20ed7, 0x210e4, 0x2124f, 0x2296b,
0x22d07, 0x22e42, 0x22feb, 0x233fe, 0x23cbe, 0x249ad,
0x24e04, 0x24ff2, 0x2546e, 0x2567f, 0x259cc, 0x2688a,
0x279b4, 0x280e9, 0x28e17, 0x29170, 0x2a2b2,
);
sub kindle_unicode_hex2chr {
my $unicode_hex = shift;
my $unicode = hex($unicode_hex);
return if $kindle_broken_font_unicode{$unicode};
# kindle font is almost not avaliable in this range.
return if $unicode > 0xffff && !$kindle_ok_font_over0xffff{$unicode};
return chr($unicode);
}
sub _conv_gaiji_title_author {
view all matches for this distribution
view release on metacpan or search on metacpan
=begin html
<table class="noescape" border="0"><tr><td>
<b>Apache::ASP's features include:</b>
<font face=verdana,helvetica,arial size=-1>
<ul>
<li> Scripting SYNTAX is Natural and Powerful
<li> Rich OBJECTS Developer API
<li> Web Application EVENTS Model
<li> Modular SSI Decomposition, Code Sharing
<li> XML/XSLT Rendering & Custom Tag Technology
<li> CGI Compatibility
<li> PERLSCRIPT Compatibility
<li> Great Open Source SUPPORT
</ul>
</font>
</table>
=end html
This module works under the Apache Web Server
A simple asp page would look like:
<!-- sample here -->
<html>
<body>
For loop incrementing font size: <p>
<% for(1..5) { %>
<!-- iterated html text -->
<font size="<%=$_%>" > Size = <%=$_%> </font> <br>
<% } %>
</body>
</html>
<!-- end sample here -->
=item $VERSION = 2.63; $DATE="03/14/2018"
+ Added section ``raw'' to MailErrors.inc to debug POSTs without
form fields
- MailErrorsHTML now uses monospaced fonts for errors. Easier on
the eyes and more informative
=item $VERSION = 2.62; $DATE="08/16/2011"
- Fixed 'application/x-www-form-urlencoded' for AJAX POSTs post
one already existed. It would create one before by default.
+Script_OnFlush global.asa event handler, and $Response->{BinaryRef}
member which is a scalar reference to the content about to be flushed.
See ./site/eg/global.asa for example usage, used in this case to
insert font tags on the fly into the output.
+Highlighting and linking of line error when Debug is set to 2 or -2.
--removed fork() call from flock() backup routine? How did
that get in there? Oh right, testing on Win32. :(
modules. This is just for modules that Apache::ASP relies on.
Old modules that are changed or updated with an installation
are still reloaded with the StatINC settings if so configured.
+ASP web site wraps <font face="courier new"> around <pre>
tags now to override the other font used for the text
areas. The spacing was all weird in Netscape before
for <pre> sections.
-Fixed Content-Length calculation when using the Clean
option, so that the length is calculated after the HTML
view all matches for this distribution
view release on metacpan or search on metacpan
Mercury/Controller.pm view on Meta::CPAN
my ($self) = @_;
my $q = $self->{q};
return
($q->div({-align => 'center'},
$q->font({-color => '#ff0000'}, $q->b($self->{msg}))) .
$q->br . $q->hr({-size => 1, -width => '80%', -align => 'center'}) .
$q->br
);
}
view all matches for this distribution
view release on metacpan or search on metacpan
examples/htdocs/login.html view on Meta::CPAN
color: #aaaa66;
}
.logintext
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: x-small;
font-weight: bold;
}
.textbox
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 8pt;
color: #aa0000;
background-color: #ffffff;
border: 1px solid;
padding: 2px;
width: 200px
}
.loginbutton
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14pt;
color: #aa0000;
padding: 2px;
background-color: #ffffcc;
border: 1px dashed;
border-color: #000000;
examples/htdocs/login.html view on Meta::CPAN
border-bottom: 1px solid;
}
.infonormal
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: x-small;
font-weight: bold;
}
.infored
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: x-small;
font-weight: bold;
color: #cc0000;
}
td.infoboxbot
{
view all matches for this distribution
view release on metacpan or search on metacpan
<center>
<BR><BR><BR>
<FORM METHOD="POST" ACTION="/LOGIN">
<TABLE ALIGN=CENTER VALIGN=CENTER>
<TR><TD colspan=2 align=center>
<font color=red>$reason</font>
</TD></TR>
<INPUT TYPE=hidden NAME=destination VALUE="$uri">
<TR><TD colspan=2 align=center>
<!--login-->
view all matches for this distribution
view release on metacpan or search on metacpan
examples/login_form.cgi view on Meta::CPAN
print "<pre>\n";
print "Login form.<br />\n";
print "</pre>\n";
my $msg = $$fields{msg};
if (defined($msg)) {
print qq{<p><font color="#ff0000">$msg</font></p>};
}
my $ref_dir = $cgi->getSelfRefUrlDir;
my $form = qq{<form action="$ref_dir/login.cgi" method="POST">\n};
$form .= qq{<input type="hidden" name="ref_url" value="$$fields{ref_url}" />\n};
view all matches for this distribution
view release on metacpan or search on metacpan
Auth/Auth.pm view on Meta::CPAN
a PIN yet just enter the 6 digit SecurID code.
};
$extra_input = qq{
<tr>
<td>
<font color=000000 face="Arial, Helvetica, sans-serif">
<b>
Passcode :
</b>
</font>
</td>
<td>
<input type=password name=passcode>
<input type=hidden name=type value=check>
<input type=hidden name=a value=$uri>
Auth/Auth.pm view on Meta::CPAN
<tr>
<td>
<table cellspacing=2 bgcolor=dddddd width=100%>
<tr>
<td align=center>
<font size=+2 color=000000 face="Arial, Helvetica, sans-serif">
<b>
SecurID Authorization
</b>
</font>
</td>
</tr>
<tr>
<td>
<font color=000000 face="Arial, Helvetica, sans-serif">
$message
</font>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align=right>
<table cellspacing=0 cellpadding=0 bgcolor=dddddd width=100%>
<tr>
<td>
<font color=000000 face="Arial, Helvetica, sans-serif">
<b>
Username :
</b>
</font>
</td>
<td>
<input type=text name=username value=$username>
</td>
</tr>
Auth/Auth.pm view on Meta::CPAN
my $message;
my $extra_info = qq{
<tr>
<td>
<font color=000000 face="Arial, Helvetica, sans-serif">
<b>
PIN :
</b>
</font>
</td>
<td>
<input type=password name=pin1>
<input type=hidden name=type value=pin>
<input type=hidden name=alphanumeric value=$alphanumeric>
Auth/Auth.pm view on Meta::CPAN
<input type=hidden name=a value=$uri>
</td>
</tr>
<tr>
<td>
<font color=000000 face="Arial, Helvetica, sans-serif">
<b>
PIN ( Again ) :
</b>
</font>
</td>
<td>
<input type=password name=pin2>
</td>
</tr>
Auth/Auth.pm view on Meta::CPAN
a PIN yet just enter the 6 digit SecurID code.
};
$extra_input = qq{
<tr>
<td>
<font color=000000 face="Arial, Helvetica, sans-serif">
<b>
Passcode :
</b>
</font>
</td>
<td>
<input type=password name=passcode>
<input type=hidden name=type value=check>
<input type=hidden name=a value=$uri>
Auth/Auth.pm view on Meta::CPAN
a PIN yet just enter the 6 digit SecurID code.
};
$extra_input = qq{
<tr>
<td>
<font color=000000 face="Arial, Helvetica, sans-serif">
<b>
Passcode :
</b>
</font>
</td>
<td>
<input type=password name=passcode>
<input type=hidden name=type value=check>
<input type=hidden name=a value=$uri>
Auth/Auth.pm view on Meta::CPAN
administrator.
};
$extra_input = qq{
<tr>
<td>
<font color=000000 face="Arial, Helvetica, sans-serif">
<b>
Passcode :
</b>
</font>
</td>
<td>
<input type=password name=passcode>
<input type=hidden name=type value=check>
<input type=hidden name=a value=$uri>
Auth/Auth.pm view on Meta::CPAN
the 6 digit SecurID token code.
};
$extra_input = qq{
<tr>
<td>
<font color=000000 face="Arial, Helvetica, sans-serif">
<b>
Next Token Code :
</b>
</font>
</td>
<td>
<input type=password name=passcode>
<input type=hidden name=type value=next>
<input type=hidden name=a value=$uri>
Auth/Auth.pm view on Meta::CPAN
Please enter a $$info{min_pin_len} to $$info{max_pin_len} digit pin.
};
$extra_input = qq{
<tr>
<td>
<font color=000000 face="Arial, Helvetica, sans-serif">
<b>
PIN :
</b>
</font>
</td>
<td>
<input type=password name=pin1>
<input type=hidden name=type value=pin>
<input type=hidden name=a value=$uri>
Auth/Auth.pm view on Meta::CPAN
<input type=hidden name=max_pin_len value=$$info{max_pin_len}>
</td>
</tr>
<tr>
<td>
<font color=000000 face="Arial, Helvetica, sans-serif">
<b>
PIN ( Again ) :
</b>
</font>
</td>
<td>
<input type=password name=pin2>
</td>
</tr>
Auth/Auth.pm view on Meta::CPAN
6 digit SecurID code.
};
$extra_input = qq{
<tr>
<td>
<font color=000000 face="Arial, Helvetica, sans-serif">
<b>
Passcode :
</b>
</font>
</td>
<td>
<input type=password name=passcode>
<input type=hidden name=type value=check>
<input type=hidden name=a value=$uri>
Auth/Auth.pm view on Meta::CPAN
6 digit SecurID code.
};
$extra_input = qq{
<tr>
<td>
<font color=000000 face="Arial, Helvetica, sans-serif">
<b>
Passcode :
</b>
</font>
</td>
<td>
<input type=password name=passcode>
<input type=hidden name=type value=check>
<input type=hidden name=a value=$uri>
Auth/Auth.pm view on Meta::CPAN
6 digit SecurID code.
};
$extra_input = qq{
<tr>
<td>
<font color=000000 face="Arial, Helvetica, sans-serif">
<b>
Passcode :
</b>
</font>
</td>
<td>
<input type=password name=passcode>
<input type=hidden name=type value=check>
<input type=hidden name=a value=$uri>
view all matches for this distribution