view release on metacpan or search on metacpan
lib/CGI/Bus.pm view on Meta::CPAN
      if (!exists($p{$k})) {$p{$k} =$s->{-htmlstart}->{$k}}
    }
 }
 $p{-style} ={code=>
	".Form, .List, .Help, .MenuArea, .FooterArea {margin-top:0px; font-size: 8pt; font-family: Verdana, Helvetica, Arial, sans-serif; }\n"
	#."a:link.ListTable {font-weight: bold}\n"
	.".MenuButton {background-color: buttonface; color: black; text-decoration: none; font-size: 7pt;}\n"
	#."td.MenuButton {background-color: activeborder;}\n"
	#.".MenuArea {background-color: blue; color: white;}"
	#.".MenuButton {background-color: blue; color: white; text-decoration: none; font-size: 7pt;}\n"
	.".PaneLeft, .PaneForm, .PaneList {margin-top:0px; font-size: 8pt; font-family: Verdana, Helvetica, Arial, sans-serif; }\n"
view release on metacpan or search on metacpan
lib/CGI/Carp/DebugScreen.pm view on Meta::CPAN
  }
  h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: medium;
    font-weight: bold;
    text-decoration: underline;
  }
  table.code {
    font-size: .8em;
    line-height: 120%;
lib/CGI/Carp/DebugScreen.pm view on Meta::CPAN
    margin: 8px;
    width: 90%;
    border-collapse: collapse;
  }
  table.code tr.hit {
    font-weight: bold;
    color: #000;
    background-color: #f90;
  }
  table.code td {
    padding-left: 1em;
view release on metacpan or search on metacpan
lib/CGI/Carp/WarningsToBrowser.pm view on Meta::CPAN
=pod
=head1 NAME
CGI::Carp::WarningsToBrowser - A version of L<CGI::Carp>'s warningsToBrowser()
that displays the warnings loudly and boldly
=head1 RATIONALE
The author feels that it's important to expose warnings as early as possible in
the software development lifecycle, preferably by the same developer who created
view release on metacpan or search on metacpan
lib/CGI/ContactForm.pm view on Meta::CPAN
                      "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>$args->{title} $args->{recname}</title>
<style type="text/css">
.error { font-weight: bold }
</style>
${ stylesheet( $args->{styleurl} ) }
</head>
<body>
HEAD
view release on metacpan or search on metacpan
#ifndef IVSIZE
#  ifdef LONGSIZE
#    define IVSIZE LONGSIZE
#  else
#    define IVSIZE 4 /* A bold guess, but the best we can make. */
#  endif
#endif
#ifndef UVTYPE
#  define UVTYPE                         unsigned IVTYPE
#endif
view release on metacpan or search on metacpan
examples/default.css view on Meta::CPAN
border-left-width: 1px;
border-right-width: 1px;
color: navy;
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 8pt;
font-weight: bold;
width: auto;
}
-->
</style>
view release on metacpan or search on metacpan
lib/CGI/Ex/Validate.pod view on Meta::CPAN
error is set or cleared.  The following hooks are used in
samples/validate_js_2_onchange.html to highlight the row and set an icon.
    document.validate_set_hook = function (args) {
      document.getElementById(args.key+'_img').innerHTML
        = '<span style="font-weight:bold;color:red">!</span>';
      document.getElementById(args.key+'_row').style.background
        = '#ffdddd';
    };
    document.validate_clear_hook = function (args) {
      if (args.was_valid) {
        document.getElementById(args.key+'_img').innerHTML
            = '<span style="font-weight:bold;color:green">+</span>';
        document.getElementById(args.key+'_row').style.background
            = '#ddffdd';
      } else {
        document.getElementById(args.key+'_img').innerHTML = '';
        document.getElementById(args.key+'_row').style.background = '#fff';
lib/CGI/Ex/Validate.pod view on Meta::CPAN
    };
If you have jquery that looks like:
    document.validate_set_hook = function (args) {
      $('#'+args.key+'_img').html('<span style="font-weight:bold;color:red">!</span>');
      $('#'+args.key+'_row').css('backgroundColor', '#ffdddd');
    };
    document.validate_clear_hook = function (args) {
      if (args.was_valid) {
        $('#'+args.key+'_img').html('<span style="font-weight:bold;color:green">+</span>');
        $('#'+args.key+'_row').css('backgroundColor', '#ddffdd');
      } else {
        $('#'+args.key+'_img').html('');
        $('#'+args.key+'_row').css('backgroundColor', '#fff');
      }
view release on metacpan or search on metacpan
examples/htdocs/example.css view on Meta::CPAN
    margin-bottom:20px;
}
h2 {
    font-size:14px;
    color:#333;
    font-weight:bold;
    margin:10px 0;
}
.example-info{
    width:150px;
    border:1px solid #c3daf9;
examples/htdocs/example.css view on Meta::CPAN
    padding: 10px 15px;
    color: #555;
}
#msg-div .msg h3 {
    margin: 0 0 8px;
    font-weight: bold;
    font-size: 15px;
}
#msg-div .msg p {
    margin: 0;
}
view release on metacpan or search on metacpan
FastTemplate.pm view on Meta::CPAN
=head2 define_nofile(HASH)   alias: define_raw(HASH)
Sometimes it is desireable to not have to create a separate template file
for each template (though in the long run it is usually better to do so).
The method define_nofile() allows you to do this.  For example, if you
were writing a news tool where you wanted to bold an item if it was
"new" you could do something like the following:
    my $tpl = new FastTemplate();
    $tpl->define_nofile(    new   => '<b>$ITEM_NAME</b> <BR>',
view release on metacpan or search on metacpan
lib/CGI/FileManager/Templates.pm view on Meta::CPAN
.mybutton {
    color: #4a4d4a;
	background-color:#8080FF;
	font-size:12px;
	font-weight:bold;
    /*
	FONT-FAMILY: Verdana,arial;
    TEXT-DECORATION: none
	*/
}
.choosebutton {
    color: #4a4d4a;
	font-size:12px;
	font-weight:bold;
    /*
	FONT-FAMILY: Verdana,arial;
    TEXT-DECORATION: none
	*/
}
view release on metacpan or search on metacpan
cgi/cgi-upload.css view on Meta::CPAN
a { color: #A62423; text-decoration: none; font-weight: bold }
a:active { color: #A62423; text-decoration: none }
a:link { color: #A62423; text-decoration: none }
a:visited { color: #A62423;text-decoration: none }
a:hover { color: #A62423; text-decoration: underline; font-weight: bold }
body {background-color: white}
.small { font-family: Verdana, Arial, Geneva, sans-serif; color: #A62423; font-size: 9px }
.small a:hover { color: #A62423; text-decoration: underline}
view release on metacpan or search on metacpan
        required: ALL
        messages:
            form_invalid_text:  Please correct the following fields:
            form_required_text: Please fill in all <b>bold</b> fields.
    You can even pre-parse this file, and generate a module from it which
    you can then reuse in multiple scripts using the "write_module()"
    function. For more details, see CGI::FormBuilder::Source::File.
view release on metacpan or search on metacpan
GuruMeditation.pm view on Meta::CPAN
                    border-bottom:    6px solid #000000;
                    padding:          10px 10px 10px 10px;
                  }
                  DIV.title {
                    font-size:        150%;
                    font-weight:      bold;
                    text-align:       center;
                    width:            100%;
                  }
                  DIV.sig {
                    color:            #ff0000;
GuruMeditation.pm view on Meta::CPAN
                    color:            #ff0000;
                    text-decoration:  none;
                  }
                  SPAN.debug {
                    font-size:        120%;
                    font-weight:      bold;
                    color:            #f0f0f0;
                  }
                  PRE.debug {
                    color:            #f0f0f0;
                    padding:          0px 0px 0px 20px;
GuruMeditation.pm view on Meta::CPAN
                  }
                  PRE.debug SPAN.escaped {
                    color:            #000000;
                    background-color: #cc9966;
                    padding:          0px 1px 0px 1px;
                    font-weight:      bold;
                  }
                </style>
                <script language="JavaScript">
                  var count = 0;
                  function blinker() {
view release on metacpan or search on metacpan
scripts/generate_index.pl view on Meta::CPAN
			cursor: pointer;
		}
		.coverage-badge {
			padding: 2px 6px;
			border-radius: 4px;
			font-weight: bold;
			color: white;
			font-size: 0.9em;
		}
		.badge-good { background-color: #4CAF50; }
		.badge-warn { background-color: #FFC107; }
		.badge-bad { background-color: #F44336; }
		.summary-row {
			font-weight: bold;
			background-color: #f0f0f0;
		}
		td.positive { color: green; font-weight: bold; }
		td.negative { color: red; font-weight: bold; }
		td.neutral { color: gray; }
		// Show cursor points on the headers to show that they are clickable
		th { background-color: #f2f2f2; cursor: pointer; }
		th.sortable {
			cursor: pointer;
scripts/generate_index.pl view on Meta::CPAN
			color: #aaa;	/* dimmed for inactive */
			font-weight: normal;
		}
		th .arrow.active {
			color: #000;	/* dark for active */
			font-weight: bold;
		}
		.sparkline {
			display: inline-block;
			vertical-align: middle;
		}
scripts/generate_index.pl view on Meta::CPAN
				labels: {
					boxWidth: 12,
					padding: 10,
					font: {
						size: 12,
						weight: 'bold'
					}
				}
			}, tooltip: {
				callbacks: {
					label: function(context) {
scripts/generate_index.pl view on Meta::CPAN
	const headers = table.tHead.rows[0].cells;
	for (let i = 0; i < headers.length; i++) {
		const arrow = headers[i].querySelector(".arrow");
		if (!arrow) continue;
		if (i === n) {
			// active column: bold arrow, direction â² or â¼
			arrow.textContent = asc ? "â²" : "â¼";
			arrow.classList.add("active");
		} else {
			// inactive column: always â², dimmed
			arrow.textContent = "â²";
view release on metacpan or search on metacpan
lib/CGI/Inspect/htdocs/js/themes/default/ui.all.css view on Meta::CPAN
.ui-progressbar-text {
	color:#fff;
	overflow: hidden;
	white-space: nowrap;
	font-size: 11px;
	font-weight: bold;
	padding-left: 5px;
}
.ui-progressbar-text-back {
	color:#000;
lib/CGI/Inspect/htdocs/js/themes/default/ui.all.css view on Meta::CPAN
	border-bottom:1px solid #EFEFEF;
	border-right:0pt none;
	border-top:1px solid #BEBEBE;
	height:15px;
}
.bold {
	color: red !important;
}
.ui-hidden {
	left:-10000px;
	position:absolute;
view release on metacpan or search on metacpan
lib/CGI/Kwiki.pm view on Meta::CPAN
This is a list of all the classes that make up the kwiki. You can change
anyone of them to be a class of your own.
Let's say that you wanted to change the B<BOLD> format indicator from
C<*bold*> to C<'''bold'''>. You just need to override the C<bold()>
method of the Formatter class. Start by changing C<config.yaml>.
    formatter_class: MyKwikiFormatter
Then write a module called C<MyKwikiFormatter.pm>. You can put this
lib/CGI/Kwiki.pm view on Meta::CPAN
module might look like this:
    package MyKwikiFormatter;
    use base 'CGI::Kwiki::Formatter';
    sub bold {
        my ($self, $text) = @_;
        $text =~ s!'''(.*?)'''!<b>$1</b>!g;
        return $text;
    }
view release on metacpan or search on metacpan
scripts/generate_index.pl view on Meta::CPAN
			cursor: pointer;
		}
		.coverage-badge {
			padding: 2px 6px;
			border-radius: 4px;
			font-weight: bold;
			color: white;
			font-size: 0.9em;
		}
		.badge-good { background-color: #4CAF50; }
		.badge-warn { background-color: #FFC107; }
		.badge-bad { background-color: #F44336; }
		.summary-row {
			font-weight: bold;
			background-color: #f0f0f0;
		}
		td.positive { color: green; font-weight: bold; }
		td.negative { color: red; font-weight: bold; }
		td.neutral { color: gray; }
		// Show cursor points on the headers to show that they are clickable
		th { background-color: #f2f2f2; cursor: pointer; }
		th.sortable {
			cursor: pointer;
scripts/generate_index.pl view on Meta::CPAN
			color: #aaa;	/* dimmed for inactive */
			font-weight: normal;
		}
		th .arrow.active {
			color: #000;	/* dark for active */
			font-weight: bold;
		}
		.sparkline {
			display: inline-block;
			vertical-align: middle;
		}
scripts/generate_index.pl view on Meta::CPAN
				labels: {
					boxWidth: 12,
					padding: 10,
					font: {
						size: 12,
						weight: 'bold'
					}
				}
			}, tooltip: {
				callbacks: {
					label: function(context) {
scripts/generate_index.pl view on Meta::CPAN
	const headers = table.tHead.rows[0].cells;
	for (let i = 0; i < headers.length; i++) {
		const arrow = headers[i].querySelector(".arrow");
		if (!arrow) continue;
		if (i === n) {
			// active column: bold arrow, direction â² or â¼
			arrow.textContent = asc ? "â²" : "â¼";
			arrow.classList.add("active");
		} else {
			// inactive column: always â², dimmed
			arrow.textContent = "â²";
view release on metacpan or search on metacpan
MxScreen/HTML.pm view on Meta::CPAN
For instance:
    print p(big(strong(red("WARNING:"))));
would print a big boldface (usually) WARNING: in red.
=head2 Non-portable HTML tags
The following routine add non-portable HTML tags that were introduced by
Netscape.  I don't recommend their use, but if you can't avoid it, they are:
view release on metacpan or search on metacpan
lib/CGI/OptimalQuery/InteractiveQuery.pm view on Meta::CPAN
}
.OQcolHeadTitle {
  font-size: 1.1em;
  color: black;
  font-weight: bold;
}
#OQdata tr td {
  border-right: 1px solid #efefef;
}
lib/CGI/OptimalQuery/InteractiveQuery.pm view on Meta::CPAN
#cmdOptions button.closeButton {
  position: absolute;
  right: 0;
  color: black;
  font-weight: bold;
  padding: 0px;
  margin: 0px;
  background-color: white;
  border: 1px outset black;
  text-align: center;
view release on metacpan or search on metacpan
QuickForm.pm view on Meta::CPAN
sub show_form {
    my %form = (
        -LANGUAGE         => 'en',         # Language to use for default messages
        -USER_REQUIRED    => undef,
        -USER_INVALID     => undef,
        -REQUIRED_HTML    => '<span style="font-weight:bold;color:BLUE">+</span>',
        -INVALID_HTML     => '<span style="font-weight:bold;color:RED">*</span>',
        -TITLE            => 'Quick Form', # Default page title and heading
        -INTRO            => undef,
        -HEADER           => undef,      
        -FOOTER           => undef,
        -NAME             => '',
QuickForm.pm view on Meta::CPAN
        -INTRO            => undef,
        -LANGUAGE         => 'en',
        -USER_REQUIRED    => undef,
        -USER_INVALID     => undef,
        -TITLE            => 'Test Form',
        -REQUIRED_HTML    => '<span style="font-weight:bold;color:BLUE">+</span>',
        -INVALID_HTML     => '<span style="font-weight:bold;color:RED">*</span>',
        -VALIDATE         => undef,       # Set this to validate the entire record
        -SIZE             => undef,
        -MAXLENGTH        => undef,
        -ROWS             => undef,
        -COLUMNS          => undef,
QuickForm.pm view on Meta::CPAN
=item C<-INVALID_HTML> 
Optional HTML string. Default is:
    <span style="font-weight:bold;color:RED">*</span>
You can over-ride this to set your own marker to indicate an invalid field.
You could use an image tag for example:
    <img src="/images/invalid.jpg" alt="*" />
QuickForm.pm view on Meta::CPAN
=item C<-REQUIRED_HTML> 
Optional HTML string. Default is:
    <span style="font-weight:bold;color:BLUE">+</span>
You can over-ride this to set your own marker to indicate a required field.
Note that if you use your own C<-USER_REQUIRED> or C<-USER_INVALID> strings,
this string will replace the sequence C<~R~> if it occurs.
QuickForm.pm view on Meta::CPAN
    {
        -LABEL           => 'General Information',
        -HEADLINE        => 1,
        -COLSPAN         => 2, # Probably needs to be more for -MULTI_COLUMN
        -END_ROW         => 1,
        -STYLE_FIELDNAME => 'style="background-color:black;color:white;font-weight:bold"', 
    },
=item C<-LABEL> 
view release on metacpan or search on metacpan
t/bug21952.t view on Meta::CPAN
#    My idea is that the custom data, here $opt_dsn, *should not* be altered 
#    by the underlying CGI::Session logic.
#    My suggestion to restore a good behavior is to prevent 
#    CGI::Session::Driver to turn its argument into an object.
#    This is easily done by patching CGI::Forge::Driver::new() as follows
#    ( *bold* shows the suggested patch, /*bold italic*/ shows my other 
#    "perturbations" ) :
#
#    sub new {
#    /*my ($class, $args) = @_;
#    croak "Invalid argument type passed to driver: " . Dumper($args) if 
view release on metacpan or search on metacpan
With a single parameter, which will be the content of the tag, for
example;
       Perl code                           WML Result
     ---------------------            ---------------------
     $query->b("Bold text);               <b>bold</b>
     $query->p("Hello");                  <p>Hello</p>
     $query->p($query->b("Hello"));       <p><b>Hello</b></p> 
     $query->br();                        <br/> # "No-close" tags are
view release on metacpan or search on metacpan
t/private/javascripts/wz_jsgraphics.js view on Meta::CPAN
}
function jsgFont()
{
	this.PLAIN = 'font-weight:normal;';
	this.BOLD = 'font-weight:bold;';
	this.ITALIC = 'font-style:italic;';
	this.ITALIC_BOLD = this.ITALIC + this.BOLD;
	this.BOLD_ITALIC = this.ITALIC_BOLD;
}
var Font = new jsgFont();
view release on metacpan or search on metacpan
lib/CGI/Widget/Tabs/Style.pm view on Meta::CPAN
                  { descr  => "Google look-a-like",
                    author => "" ,
                    style  => <<EOT
table.my_tab     { border-spacing: 0; border-bottom: solid thin #C0D4E6; text-align: center }
td.my_tab        { no-wrap; padding: 2 12 2 12; width: 80; background-color: #FAFAD2 }
td.my_tab_actv   { padding: 2 12 2 12; width: 80; background-color: #C0D4E6; font-weight: bold }
td.my_tab_spc    { width: 5 }
td.my_tab_ind    { width: 15 }
EOT
                  },
lib/CGI/Widget/Tabs/Style.pm view on Meta::CPAN
                  { descr  => "Dark green-light green, heavy rule",
                    author => "" ,
                    style  => <<EOT
a  { color: #aa00ff }
table.my_tab     { no-wrap; border-spacing: 0; border-bottom: medium solid #6FA579; margin-bottom: 6px }
td.my_tab_actv   { padding: 2 15 2 15; background-color: #6FA579; text-align: center; font-weight: bold }
td.my_tab        { padding: 2 15 2 15; background-color: #8CCF98; text-align: center; font-weight: bold }
td.my_tab_spc    { width: 10 }
td.my_tab_ind    { width: 15 }
EOT
                  },
lib/CGI/Widget/Tabs/Style.pm view on Meta::CPAN
                  { descr  => "Light purple-dark purple, heavy rule",
                    author => "" ,
                    style  => <<EOT
a  { color: White }
table.my_tab     { no-wrap; border-spacing: 0; border-bottom: medium solid #8b0a50; margin-bottom: 6px }
td.my_tab_actv   { padding: 2 15 2 15; background-color: #ee1289; text-align: center; font-weight: bold }
td.my_tab        { padding: 2 15 2 15; background-color: #8b0a50; text-align: center; font-weight: bold }
td.my_tab_spc    { width: 10 }
td.my_tab_ind   { width: 15 }
EOT
                  },
lib/CGI/Widget/Tabs/Style.pm view on Meta::CPAN
                  { descr  => "Light purple-grey, heavy rule",
                    author => "" ,
                    style  => <<EOT
a  { color: White }
table.my_tab     { no-wrap; border-spacing: 0; border-bottom: medium solid #cf0f76; margin-bottom: 6px }
td.my_tab_actv   { padding: 2 15 2 15; background-color: #cf0f76; text-align: center; font-weight: bold }
td.my_tab        { padding: 2 15 2 15; background-color: DarkGrey; text-align: center; font-weight: bold }
td.my_tab_spc    { width: 10 }
td.my_tab_ind    { width: 15 }
EOT
                  },
lib/CGI/Widget/Tabs/Style.pm view on Meta::CPAN
                  { descr  => "Brown-blue, heavy rule",
                    author => "" ,
                    style  => <<EOT
a  { color: White }
table.my_tab     { no-wrap; border-spacing: 0; border-bottom: medium solid #00688b; margin-bottom: 6px }
td.my_tab_actv   { padding: 2 15 2 15; background-color: #cd8162; text-align: center; font-weight: bold }
td.my_tab        { padding: 2 15 2 15; background-color: #00688b; text-align: center; font-weight: bold }
td.my_tab_spc    { width: 10 }
td.my_tab_ind    { width: 15 }
EOT
                  },
lib/CGI/Widget/Tabs/Style.pm view on Meta::CPAN
                  { descr  => "Bold font-light font, dark blue, heavy rule",
                    author => "" ,
                    style  => <<EOT
a  { color: Yellow }
table.my_tab     { no-wrap; border-spacing: 0; border-bottom: medium solid #000080; margin-bottom: 6px }
td.my_tab_actv   { padding: 2 15 2 15; background-color: #000080; text-align: center; font-weight: bold }
td.my_tab        { padding: 2 15 2 15; background-color: #000080; text-align: center; font-weight: normal }
td.my_tab_spc    { width: 10 }
td.my_tab_ind    { width: 15 }
EOT
                  },
lib/CGI/Widget/Tabs/Style.pm view on Meta::CPAN
                  { descr  => "Red frame, grey, thin rule",
                    author => "" ,
                    style  => <<EOT
a  { color: Black }
table.my_tab     { no-wrap; border-spacing: 0; border-bottom: thin solid Grey; margin-bottom: 6px }
td.my_tab_actv   { padding: 2 15 2 15; background-color: Grey; text-align: center; font-weight: bold ; border: thin solid red }
td.my_tab        { padding: 2 15 2 15; background-color: Grey; text-align: center; font-weight: bold }
td.my_tab_spc    { width: 10 }
td.my_tab_ind    { width: 15 }
EOT
                  },
lib/CGI/Widget/Tabs/Style.pm view on Meta::CPAN
                  { descr  => "Red top line,  grey, thin rule",
                    author => "" ,
                    style  => <<EOT
a  { color: Black }
table.my_tab     { no-wrap; border-spacing: 0; border-bottom: thin solid #bebebe; margin-bottom: 6px }
td.my_tab_actv   { padding: 2 15 2 15; background-color: #bebebe; text-align: center; font-weight: bold ; border-top: medium solid red }
                    td.my_tab        { padding: 2 15 2 15; background-color: #bebebe; text-align: center; font-weight: bold ; border-top: medium solid #bebebe }
td.my_tab_spc    { width: 1 }
td.my_tab_ind    { width: 15 }
EOT
                  },
lib/CGI/Widget/Tabs/Style.pm view on Meta::CPAN
                  { descr  => "Yellow/black top line, grey, thin rule",
                    author => "" ,
                    style  => <<EOT
a  { color: Black }
table.my_tab     { no-wrap; border-spacing: 0; border-bottom: thin solid #bebebe; margin-bottom: 6px }
td.my_tab_actv   { padding: 2 15 2 15; background-color: #bebebe; text-align: center; font-weight: bold ; border-top: medium solid Yellow }
td.my_tab        { padding: 2 15 2 15; background-color: #bebebe; text-align: center; font-weight: bold ; border-top: medium solid black }
td.my_tab_spc    { width: 1 }
td.my_tab_ind    { width: 15 }
EOT
                  },
lib/CGI/Widget/Tabs/Style.pm view on Meta::CPAN
                  { descr  => "Blue underline, grey underline",
                    author => "" ,
                    style  => <<EOT
a  { color: Black }
table.my_tab     { no-wrap; border-spacing: 0; margin-bottom: 6px }
td.my_tab_actv   { padding: 2 15 2 20; text-align: center; font-weight: bold ; border-bottom: medium solid MediumBlue }
td.my_tab        { padding: 2 15 2 20; text-align: center; font-weight: bold ; border-bottom: medium solid Grey }
td.my_tab_spc    { width: 1 }
td.my_tab_ind    { width: 15 }
EOT
                  }
                 );
view release on metacpan or search on metacpan
HTML-pWiki/style.moz view on Meta::CPAN
<head>
<title>%TITLE%</title>
</head>
<body background="/pWiki/background.png" bgcolor="#FFFFFF" text="#000000">
<STYLE type="text/css">
A.button:link, A.button:visited, A.button:active { margin-left: .5em; color: #075507; font-style: italic; font-weight: bold; text-decoration: none; }
A:link, A:visited, A:active { color: blue; text-decoration: underline; }
</STYLE>
<table with="790" border=0 cellpadding=0 cellspacing=0><tr>
  <td width=150 valign=top>
    <img src="/icons/blank.gif" alt="" width=130 height=1"><p>
view release on metacpan or search on metacpan
#ifndef IVSIZE
#  ifdef LONGSIZE
#    define IVSIZE LONGSIZE
#  else
#    define IVSIZE 4 /* A bold guess, but the best we can make. */
#  endif
#endif
#ifndef UVTYPE
#  define UVTYPE                         unsigned IVTYPE
#endif
view release on metacpan or search on metacpan
 * capable of those should have IVSIZE already. */
#if !defined(IVSIZE) && defined(LONGSIZE)
#   define IVSIZE LONGSIZE
#endif
#ifndef IVSIZE
#   define IVSIZE 4 /* A bold guess, but the best we can make. */
#endif
#ifndef UVSIZE
#   define UVSIZE IVSIZE
#endif
view release on metacpan or search on metacpan
lib/CIPP/Manual.pm view on Meta::CPAN
 
 <?PERL>
   #-- Simple variable assignment
   my $translated = <?l age="42">You You are {age} year(s) old.<?/l>;
   #-- Assign a bold message to a variable
   my $translated_bold =
   	"<b>".
	<?l age="42">You are {age} year(s) old.<?/l>.
	"</b>";
   #-- Throw a translated error message
view release on metacpan or search on metacpan
lib/CLDR/Number/Data/System.pm view on Meta::CPAN
    lanatham => [qw( ᪠᪠᪠᪠᪠᪠᪠᪠᪠᪠)],
    laoo     => [qw( à» à» à» à» à» à» à» à» à» à» )],
    latn     => [qw( 0 1 2 3 4 5 6 7 8 9 )],
    lepc     => [qw( á± á± á± á± á± á±
 á± á± á± á± )],
    limb     => [qw( ᥠᥠᥠᥠᥠᥠᥠᥠᥠᥠ)],
    mathbold => [qw( ð ð ð ð ð ð ð ð ð ð )],
    mathdbl  => [qw( ð ð ð ð ð ð ð ð ð  ð¡ )],
    mathmono => [qw( ð¶ ð· ð¸ ð¹ ðº ð» ð¼ ð½ ð¾ ð¿ )],
    mathsanb => [qw( ð¬ ð ð® ð¯ ð° ð± ð² ð³ ð´ ðµ )],
    mathsans => [qw( ð¢ ð£ ð¤ ð¥ ð¦ ð§ ð¨ ð© ðª ð« )],
    mlym     => [qw( ൦ ൧ ൨ ൩ ൪ ൫ ൬ ൠ൮ ൯ )],