view release on metacpan or search on metacpan
use warnings;
use Algorithm::NeedlemanWunsch;
use Test::More tests => 6;
my @haystack = qw(div span font /font /span a /a table tr td font span /span a /a br span a /a /span br br span /span nobr a /a /nobr /font /td /tr /table /div);
my @needle = qw(div a /a table tr td font br span /span nobr a /a a /a /nobr /font /td /tr /table /div);
my @background;
my @foreground;
sub score_sub {
shift_a => \&prepend_first_only,
shift_b => \&prepend_second_only
});
is($score, 5);
is_deeply(\@background,
[ 'div', 'span', 'font', '/font', '/span', '-', 'a', '/a',
'table', 'tr', 'td', 'font', '-', 'span', '/span',
'a', '/a', 'br', 'span', 'a', '/a', '/span', 'br', 'br',
'span', '/span', 'nobr', 'a', '/a', '/nobr', '/font',
'/td', '/tr', '/table', '/div' ]);
is_deeply(\@foreground,
[ '-', '-', '-', '-', '-', 'div', 'a', '/a', 'table', 'tr',
'td', 'font', 'br', 'span', '/span', '-', '-', '-',
'nobr', 'a', '/a', '-', '-', '-', '-', '-', '-', 'a',
'/a', '/nobr', '/font', '/td', '/tr', '/table', '/div' ]);
@background = ();
@foreground = ();
$matcher = Algorithm::NeedlemanWunsch->new(\&score_sub);
$matcher->local(1);
shift_a => \&prepend_first_only,
shift_b => \&prepend_second_only
});
is($score, 3);
is_deeply(\@background,
[ 'div', 'span', 'font', '/font', '/span', 'a', '/a',
'table', 'tr', 'td', 'font', 'span', '/span',
'a', '/a', 'br', 'span', '-', 'a', '/a', '-', '-', '/span',
'br', 'br', 'span', '/span', 'nobr', '-', '-', 'a', '/a',
'/nobr', '/font', '/td', '/tr', '/table', '/div' ]);
is_deeply(\@foreground,
[ '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-',
'-', '-', '-', '-', '-', 'div', 'a', '/a', 'table', 'tr',
'td', 'font', 'br', 'span', '/span', 'nobr', 'a', '/a',
'a', '/a', '/nobr', '/font', '/td', '/tr', '/table',
'/div' ]);
view all matches for this distribution
view release on metacpan or search on metacpan
examples/generate_demo.pl view on Meta::CPAN
<meta charset="utf-8">
<title>Timeline Demo</title>
<script src="https://d3js.org/d3.v7.min.js"></script>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
margin: 20px;
background: #f5f5f5;
}
h1 {
color: #333;
view all matches for this distribution
view release on metacpan or search on metacpan
examples/corpus/FontFamilies.java view on Meta::CPAN
public void paintComponent( Graphics g ) {
super.paintComponent( g );
g.translate( getInsets().left, getInsets().top );
GraphicsEnvironment ge =
GraphicsEnvironment.getLocalGraphicsEnvironment();
String[] fontList = ge.getAvailableFontFamilyNames();
Font defaultFont = g.getFont();
for (int i = 0; i < fontList.length; i++ ) {
g.setFont( defaultFont );
g.drawString( fontList[ i ], 10, i * 14 );
Font f = new Font( fontList[ i ], Font.PLAIN, 12 );
g.setFont( f );
g.drawString( "Purdue", 200 , i * 14 );
}
}
view all matches for this distribution
view release on metacpan or search on metacpan
share/static/alice-dark.css view on Meta::CPAN
@charset "UTF-8";
tr.input, div.msg {
-webkit-font-smoothing: antialiased; }
input[type="hidden"] {
display: none; }
body {
share/static/alice-dark.css view on Meta::CPAN
right: -1px;
left: auto; }
.dropdown li.selectedset,
.dropdown li.unread {
font-weight: bold; }
.tab_menu.active {
background: url(image/sprites.png) 4px -275px no-repeat; }
#tab_menu_left.tab_menu.active {
share/static/alice-dark.css view on Meta::CPAN
z-index: 904;
background-color: #444444;
border-top: 1px solid #222222; }
body {
font-family: "Lucida Grande", Helvetica, sans-serif;
text-rendering: optimizeLegibility;
background: #222222; }
a:link, a:visited, a:active {
color: #f09740; }
share/static/alice-dark.css view on Meta::CPAN
-moz-transition-property: opacity, width;
-moz-transition-duration: 0.3s, 0.2s;
-moz-transition-timing-function: ease-in-out;
border-radius: 2px;
color: white;
font-size: 14px;
z-index: 902;
cursor: pointer;
opacity: 0; }
div#nicklist_toggle:hover {
share/static/alice-dark.css view on Meta::CPAN
padding: 3px 5px 0px 5px; }
ul#nicklist li a {
cursor: pointer;
color: white;
font-size: 0.8em; }
div#input {
background: #333333;
border-bottom: 1px solid #222222;
border-top: 1px solid #444444;
share/static/alice-dark.css view on Meta::CPAN
display: block;
padding: 3px 0;
border: none;
margin: 0;
outline: 0 none;
font-size: 12px;
overflow: hidden;
resize: none;
font-family: "Lucida Grande", Helvetica, sans-serif;
background: black; }
div#input textarea {
width: 100%; }
share/static/alice-dark.css view on Meta::CPAN
div#input div.editor_toolbar button {
display: block;
float: left;
color: white;
line-height: 12px;
font-size: 12px;
margin: 0;
padding: 4px 4px;
text-align: center;
background: none;
cursor: pointer;
share/static/alice-dark.css view on Meta::CPAN
div#input div.editor_toolbar button.selected {
color: white; }
.bold {
font-weight: bold; }
.italic {
font-style: italic; }
.underline {
text-decoration: underline; }
div.editor div,
share/static/alice-dark.css view on Meta::CPAN
div.editor h2,
div.editor h3,
div.editor h4,
div.editor h5,
div.editor span {
font-size: 1em !important;
margin: 0 !important;
padding: 0 !important; }
div.editor img {
display: none !important; }
share/static/alice-dark.css view on Meta::CPAN
ul#tabs {
list-style: none;
margin: 0;
padding: 0;
padding-left: 1px;
font-size: 11px;
position: absolute;
left: 0px;
height: 25px;
overflow: hidden;
width: 5000px;
share/static/alice-dark.css view on Meta::CPAN
text-align: center;
border-top: 1px solid #666666;
border-bottom: 1px solid #333333;
padding: 1px 0;
padding-left: 50px;
font-size: 11px;
height: 15px;
min-height: 15px;
overflow: hidden;
z-index: 901;
text-decoration: none;
share/static/alice-dark.css view on Meta::CPAN
margin: 0;
padding: 3px 0;
margin: 0; }
ul.messages > li {
font-size: 13px;
display: block;
position: relative;
background-color: #111111; }
ul.messages > li:not(.consecutive) {
share/static/alice-dark.css view on Meta::CPAN
div.left {
float: left;
width: 95px;
overflow: hidden;
font-weight: bold;
text-align: right;
padding: 4px 0;
padding-right: 4px;
padding-bottom: 0;
text-overflow: ellipsis;
share/static/alice-dark.css view on Meta::CPAN
background: rgba(0, 0, 0, 0.5);
color: #fff;
opacity: 0; }
div.timehint {
font-size: 10px;
float: right;
padding: 6px 5px 0 5px;
color: #666666;
opacity: 0; }
share/static/alice-dark.css view on Meta::CPAN
-khtml-nbsp-mode: space;
border-top: 1px solid #111111;
border-left: 1px solid black; }
div.msg div.oembed {
font-size: 12px;
padding: 5px;
word-break: default;
white-space: normal;
display: none; }
share/static/alice-dark.css view on Meta::CPAN
sup.external a {
text-decoration: none;
color: #444;
text-shadow: 1px 1px 1px white;
margin-left: 1px;
font-size: 0.7em;
background-color: #CCC;
border-radius: 3px;
padding: 1px 2px 1px 3px;
font-weight: normal;
letter-spacing: 0;
border-right: 1px solid #aaa;
border-bottom: 1px solid #aaa; }
sup.external a:hover {
share/static/alice-dark.css view on Meta::CPAN
sup.external a:after {
content: " â¸"; }
div.oembed iframe {
min-height: 250px;
font-size: 0.8em;
border: none;
margin: 0;
padding: 0; }
li.message div.msg > span {
share/static/alice-dark.css view on Meta::CPAN
text-align: center;
opacity: 0;
color: #fff;
padding: 4px 0px;
cursor: pointer;
font-size: 11px;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }
div.image a:hover a.hideimg {
opacity: 1;
background: rgba(0, 0, 0, 0.25); }
share/static/alice-dark.css view on Meta::CPAN
ul.messages li.monospaced + li.monospaced.consecutive {
padding-top: 0px; }
ul.messages li.monospaced div.msg {
font-family: Monaco, monospace;
font-size: 10px;
line-height: 12px;
word-wrap: normal; }
li.monospaced div.msg span[style*="bold"] {
letter-spacing: -1px; }
ul.messages li.event {
font-size: 11px;
background: #333333;
border-bottom: 1px solid #111111; }
ul.messages li.event.notice {
background: #eb2222;
share/static/alice-dark.css view on Meta::CPAN
ul.messages li.event div.msg {
background: none;
border-left: none; }
ul.messages li.event div.left {
font-weight: normal; }
ul.messages li.announce div.msg {
color: #777;
white-space: pre-wrap; }
share/static/alice-dark.css view on Meta::CPAN
div#help div#helpclose {
position: absolute;
top: 17px;
right: 20px;
color: rgba(255, 255, 255, 0.75);
font-size: 9px;
letter-spacing: 1px;
text-shadow: none;
text-transform: uppercase; }
div#help div#helpclose:hover {
share/static/alice-dark.css view on Meta::CPAN
overflow-y: auto;
overflow-x: hidden; }
div#help h1 {
margin: 0;
font-size: 20px;
border-bottom: 1px solid #999;
font-weight: normal; }
div#help dl {
width: 47%;
font-size: 12px;
margin-top: 0;
padding-top: 10px;
float: left;
display: block;
border-right: 1px solid #666;
share/static/alice-dark.css view on Meta::CPAN
padding-left: 2%; }
div#help h2 {
color: yellow;
margin-top: 0;
font-weight: normal; }
div#help dt {
font-weight: bold; }
div#help dd {
font-weight: normal;
margin: 0;
margin-bottom: 10px; }
div.color_picker {
position: absolute;
share/static/alice-dark.css view on Meta::CPAN
height: 18px; }
div.color_picker div.toggle span.blank {
float: right;
color: red;
font-weight: bold;
text-align: center;
width: 20px;
line-height: 9px; }
div.color_picker div.toggle span#fg,
div.color_picker div.toggle span#bg {
float: left;
font-size: 9px;
background: none;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
color: white;
share/static/alice-dark.css view on Meta::CPAN
div.config_body table table td {
padding: 0 0 5px 0; }
div.config label, div.config input {
display: block;
font-size: 0.8em; }
div.config span {
font-size: 0.8em; }
div.config select {
width: 135px;
font-size: 0.8em;
outline: 0 none; }
div.config select[multiple] {
height: 70px;
background: black;
share/static/alice-dark.css view on Meta::CPAN
div.config_body table {
width: 100%; }
div.config .controls {
clear: both;
font-size: 0.7em !important; }
div.config .controls a {
text-decoration: none;
margin: 0 5px 0 0; }
div.config .controls a:hover {
text-decoration: underline; }
div.config label {
color: #cccccc;
font-size: 0.8em; }
div.config input[type="text"] {
background: black;
color: white; }
share/static/alice-dark.css view on Meta::CPAN
top: 5px;
bottom: 29px;
left: 155px;
right: 0px;
overflow: auto;
font-size: 0.8em; }
div.config div#tabset_data ul {
display: none;
margin: 0;
padding: 0;
share/static/alice-dark.css view on Meta::CPAN
div.config div.sidebar h2 {
text-transform: uppercase;
color: #cccccc;
letter-spacing: 1px;
font-size: 0.7em;
cursor: default;
font-weight: normal;
padding: 5px 8px;
margin: 0; }
div.config div.sidebar li {
padding: 5px 8px;
cursor: pointer;
font-size: 0.8em; }
div.config div.sidebar li:hover {
background: #3a3a3a; }
div.config div.sidebar li.active,
share/static/alice-dark.css view on Meta::CPAN
div.config div.sidebar li.connected {
color: white; }
/* auto-generated css classes for irc->html */
.bold {
font-weight: bold; }
.ul {
text-decoration: underline; }
.italic {
font-style: italic; }
.fg-fff {
color: #fff; }
.bg-fff {
share/static/alice-dark.css view on Meta::CPAN
position: absolute;
left: 0px;
list-style: none;
margin: 0;
padding: 0;
font-size: 12px;
background: #444444;
border: 1px solid #222222;
-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
view all matches for this distribution
view release on metacpan or search on metacpan
inc/My/Builder/Unix.pm view on Meta::CPAN
sub new {
my ($class, %args) = @_;
check_lib_or_exit(
header => [
'X11/cursorfont.h',
'GL/glx.h',
'GL/gl.h',
],
incpath => [
'/usr/local/include',
view all matches for this distribution
view release on metacpan or search on metacpan
examples/csfml.pl view on Meta::CPAN
{
sfVideoMode mode = {800, 600, 32};
sfRenderWindow* window;
sfTexture* texture;
sfSprite* sprite;
sfFont* font;
sfText* text;
sfMusic* music;
sfEvent event;
/* Create the main window */
examples/csfml.pl view on Meta::CPAN
return -1;
sprite = sfSprite_create();
sfSprite_setTexture(sprite, texture, sfTrue);
/* Create a graphical text to display */
// https://github.com/googlefonts/roboto/releases
font = sfFont_createFromFile("Roboto-Regular.ttf");
if (!font)
return -1;
text = sfText_create();
sfText_setString(text, "Hello SFML");
sfText_setFont(text, font);
sfText_setCharacterSize(text, 50);
/* Load a music to play */
// https://en.wikipedia.org/wiki/File:Binbeat_sample.ogg
music = sfMusic_createFromFile("Binbeat_sample.ogg");
examples/csfml.pl view on Meta::CPAN
}
/* Cleanup resources */
sfMusic_destroy(music);
sfText_destroy(text);
sfFont_destroy(font);
sfSprite_destroy(sprite);
sfTexture_destroy(texture);
sfRenderWindow_destroy(window);
return 0;
view all matches for this distribution
view release on metacpan or search on metacpan
cp/codepress/codepress.css view on Meta::CPAN
body {
margin-top:13px;
_margin-top:14px;
background:white;
margin-left:32px;
font-family:monospace;
font-size:13px;
white-space:pre;
background-image:url("images/line-numbers.png");
background-repeat:repeat-y;
background-position:0 3px;
line-height:16px;
height:100%;
}
pre {margin:0;}
html>body{background-position:0 2px;}
P {margin:0;padding:0;border:0;outline:0;display:block;white-space:pre;}
b, i, s, u, a, em, tt, ins, big, cite, strong, var, dfn {text-decoration:none;font-weight:normal;font-style:normal;font-size:13px;}
body.hide-line-numbers {background:white;margin-left:16px;}
body.show-line-numbers {background-image:url("images/line-numbers.png");margin-left:32px;}
view all matches for this distribution
view release on metacpan or search on metacpan
examples/opengl.pl view on Meta::CPAN
// so text draws /over/ object.
//
glDisable(GL_DEPTH_TEST);
{
const char *p;
gl_font(1, 12);
glColor3f(1.0, 1.0, 1.0);
glRasterPos3f(TOP); p = "+ top"; gl_draw(p, strlen(p));
glRasterPos3f(LEFT); p = "+ left"; gl_draw(p, strlen(p));
glRasterPos3f(RIGHT); p = "+ right"; gl_draw(p, strlen(p));
glRasterPos3f(BACK); p = "+ back"; gl_draw(p, strlen(p));
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alien/Font/Uni.pm view on Meta::CPAN
our $VERSION = '0.3';
use File::ShareDir 'dist_dir';
use File::Spec;
sub get_path { File::Spec->catfile( dist_dir('Alien-Font-Uni') , 'unifont-'.font_version().'.ttf') }
sub font_version { '15.0.01' }
sub font_vstring { v15.0.01 }
1;
__END__
=pod
=head1 NAME
Alien::Font::Uni - access to Unifont truetype file
=head1 SYNOPSIS
use Alien::Font::Uni;
my $path = Alien::Font::Uni::get_path();
my $vstring = Alien::Font::Uni::font_vstring();
my $string = Alien::Font::Uni::font_version();
=head1 DESCRIPTION
This module was created as an optional dependency of L<Chart>
to have access to an unicode complete scaleable font file.
Thus only the .ttf file is provided since this is what L<GD> can read.
Distros might redirect to pre-existing resources.
=head1 FONT
Unifont 15, Copyright(c) 1998 - 2022 by Roman Czyborra, Paul Hardy
and contributors - Licensed under OFL 1.1
=head1 AUTHOR
Herbert Breunung (lichtkind@cpan.org)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alien/Font/Vera.pm view on Meta::CPAN
my $path = Alien::Font::Vera::path;
=head1 DESCRIPTION
This module was created as an optional dependency of L<Project2::Gantt>
to have access to a ttf font file.
Thus only the .ttf file is provided since this is what L<Imager> can read.
Distros might redirect to pre-existing resources.
=head1 FONT
L<Vera font|https://en.wikipedia.org/wiki/Bitstream_Vera> is provided using the Bitstream license (share/License.txt) also present in this
package.
=head1 AUTHOR
Bruno Ramos <bramos@cpan.org>
lib/Alien/Font/Vera.pm view on Meta::CPAN
=head1 LICENSE
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
The included Vera font is licensed under the Bitstream License (see share/License.txt)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alien/FontForge.pm view on Meta::CPAN
version 0.001
=head1 SEE ALSO
L<FontForge|http://fontforge.github.io/>
L<Repository information|http://project-renard.github.io/doc/development/repo/p5-Alien-FontForge/>
=head1 AUTHOR
view all matches for this distribution
view release on metacpan or search on metacpan
src/Source/FreeImage/PluginPICT.cpp view on Meta::CPAN
static OpDef optable[] =
{
/* 0x00 */ { "NOP", 0, "nop" },
/* 0x01 */ { "Clip", NA, "clip" },
/* 0x02 */ { "BkPat", 8, "background pattern" },
/* 0x03 */ { "TxFont", 2, "text font (word)" },
/* 0x04 */ { "TxFace", 1, "text face (byte)" },
/* 0x05 */ { "TxMode", 2, "text mode (word)" },
/* 0x06 */ { "SpExtra", 4, "space extra (fixed point)" },
/* 0x07 */ { "PnSize", 4, "pen size (point)" },
/* 0x08 */ { "PnMode", 2, "pen mode (word)" },
view all matches for this distribution
view release on metacpan or search on metacpan
doc/html/CustomButtons.html view on Meta::CPAN
.gva-btn-container .btn {width:1pt;overflow:visible;}
/* END: IE specific */
.gva-actionsbar {background-color:#E8E8E8;border:1px solid #8c8c8c;border-width:1px 0px;height:25px;padding:4px 0 1px;}
.gva-btn-container {display:inline;}
.gva-btn-container .btn {margin:0 3px;font-size:12px;cursor:pointer;}
.gva-btn-container .btn {
font-family:verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif;
background:none;
border:none;
cursor:pointer;
padding:1px 2px;
color:#000;
view all matches for this distribution
view release on metacpan or search on metacpan
patches/Makefile_cd.mingw view on Meta::CPAN
CF_cd = -c -Wall -O2 -I. -Idrv -Ix11 -Iwin32 -Iintcgm -Isim -Icairo -Isvg -I../include -I../../freetype/include -I../../zlib/include -DUNICODE $(CF_cd_EXTRA)
LF_cd = -lfreetype6 -lzlib1 -lkernel32 -luser32 -lgdi32 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -luuid -loleaut32 -lole32 -lcomctl32 $(LF_cd_EXTRA)
SLIB_cd = ../lib/$(BUILDNICK)/libcd.a
DLIB_cd = ../lib/$(BUILDNICK)/libcd.dll.a
ILIB_cd = ../lib/$(BUILDNICK)/cd_alien_.dll
OBJS_cd = ../obj/$(BUILDNICK)/cd/cd.o ../obj/$(BUILDNICK)/cd/wd.o ../obj/$(BUILDNICK)/cd/wdhdcpy.o ../obj/$(BUILDNICK)/cd/rgb2map.o ../obj/$(BUILDNICK)/cd/cd_vectortext.o ../obj/$(BUILDNICK)/cd/cd_active.o ../obj/$(BUILDNICK)/cd/cd_attributes.o ../ob...
../obj/$(BUILDNICK)/cd/cd.o : ./cd.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
../obj/$(BUILDNICK)/cd/wd.o : ./wd.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
../obj/$(BUILDNICK)/cd/wdhdcpy.o : ./wdhdcpy.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
../obj/$(BUILDNICK)/cd/rgb2map.o : ./rgb2map.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
patches/Makefile_cd.mingw view on Meta::CPAN
../obj/$(BUILDNICK)/cd/cdpptx.o : ./drv/cdpptx.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
../obj/$(BUILDNICK)/cd/pptx.o : ./drv/pptx.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
../obj/$(BUILDNICK)/cd/ioapi.o : ./minizip/ioapi.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
../obj/$(BUILDNICK)/cd/minizip.o : ./minizip/minizip.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
../obj/$(BUILDNICK)/cd/zip.o : ./minizip/zip.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
../obj/$(BUILDNICK)/cd/cdfontex.o : ./sim/cdfontex.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
../obj/$(BUILDNICK)/cd/sim.o : ./sim/sim.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
../obj/$(BUILDNICK)/cd/cd_truetype.o : ./sim/cd_truetype.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
../obj/$(BUILDNICK)/cd/sim_primitives.o : ./sim/sim_primitives.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
../obj/$(BUILDNICK)/cd/sim_text.o : ./sim/sim_text.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
../obj/$(BUILDNICK)/cd/sim_linepolyfill.o : ./sim/sim_linepolyfill.c ; gcc $(CF_ALL) $(CF_cd) $^ -o $@
patches/Makefile_cd.mingw view on Meta::CPAN
cd-static: build-dirs $(SLIB_cd)
cd-dynamic: build-dirs $(ILIB_cd) $(DLIB_cd)
### START OF cd_pdflib ###
CF_cd_pdflib = -c -Wall -O2 -Ipdflib/font -Ipdflib/pdcore -Ipdflib/pdflib -I../../zlib/include $(CF_cd_pdflib_EXTRA)
LF_cd_pdflib = -lzlib1 -lkernel32 -luser32 -lgdi32 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -luuid -loleaut32 -lole32 -lcomctl32 $(LF_cd_pdflib_EXTRA)
SLIB_cd_pdflib = ../lib/$(BUILDNICK)/libpdflib.a
DLIB_cd_pdflib = ../lib/$(BUILDNICK)/libpdflib.dll.a
ILIB_cd_pdflib = ../lib/$(BUILDNICK)/pdflib_alien_.dll
OBJS_cd_pdflib = ../obj/$(BUILDNICK)/cd_pdflib/pdflib.o ../obj/$(BUILDNICK)/cd_pdflib/p_3d.o ../obj/$(BUILDNICK)/cd_pdflib/p_actions.o ../obj/$(BUILDNICK)/cd_pdflib/p_afm.o ../obj/$(BUILDNICK)/cd_pdflib/p_annots.o ../obj/$(BUILDNICK)/cd_pdflib/p_bloc...
../obj/$(BUILDNICK)/cd_pdflib/pdflib.o : ./pdflib/pdflib/pdflib.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/p_3d.o : ./pdflib/pdflib/p_3d.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/p_actions.o : ./pdflib/pdflib/p_actions.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/p_afm.o : ./pdflib/pdflib/p_afm.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
patches/Makefile_cd.mingw view on Meta::CPAN
../obj/$(BUILDNICK)/cd_pdflib/p_document.o : ./pdflib/pdflib/p_document.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/p_draw.o : ./pdflib/pdflib/p_draw.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/p_encoding.o : ./pdflib/pdflib/p_encoding.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/p_fields.o : ./pdflib/pdflib/p_fields.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/p_filter.o : ./pdflib/pdflib/p_filter.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/p_font.o : ./pdflib/pdflib/p_font.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/p_gif.o : ./pdflib/pdflib/p_gif.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/p_gstate.o : ./pdflib/pdflib/p_gstate.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/p_hyper.o : ./pdflib/pdflib/p_hyper.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/p_icc.o : ./pdflib/pdflib/p_icc.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/p_icclib.o : ./pdflib/pdflib/p_icclib.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
patches/Makefile_cd.mingw view on Meta::CPAN
../obj/$(BUILDNICK)/cd_pdflib/pc_scope.o : ./pdflib/pdcore/pc_scope.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/pc_string.o : ./pdflib/pdcore/pc_string.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/pc_unicode.o : ./pdflib/pdcore/pc_unicode.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/pc_util.o : ./pdflib/pdcore/pc_util.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/pc_xmp.o : ./pdflib/pdcore/pc_xmp.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/ft_cid.o : ./pdflib/font/ft_cid.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/ft_corefont.o : ./pdflib/font/ft_corefont.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/ft_font.o : ./pdflib/font/ft_font.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/ft_hostfont.o : ./pdflib/font/ft_hostfont.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/ft_pdffont.o : ./pdflib/font/ft_pdffont.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/ft_truetype.o : ./pdflib/font/ft_truetype.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
../obj/$(BUILDNICK)/cd_pdflib/ft_type1.o : ./pdflib/font/ft_type1.c ; gcc $(CF_ALL) $(CF_cd_pdflib) $^ -o $@
$(SLIB_cd_pdflib): $(OBJS_cd_pdflib)
$(AR) $(ARFLAGS) $@ $^
$(ILIB_cd_pdflib) $(DLIB_cd_pdflib) : $(OBJS_cd_pdflib)
view all matches for this distribution
view release on metacpan or search on metacpan
src/judy-1.0.5/tool/jhton.c view on Meta::CPAN
// Highest line number + 1, and last input line number that caused output:
int g_linenumlim;
int g_prevlinenum = 0;
// <PRE> block equivalents in nroff need some special handling for bold font
// and for continuing a tagged paragraph; these are bit flags:
#define INPRE_BLOCK 0x1 // came from <PRE>.
#define INPRE_BOLD 0x2 // came from <B><PRE>.
#define INPRE_INDENT 0x4 // under <DL> below top level.
src/judy-1.0.5/tool/jhton.c view on Meta::CPAN
}
// Check for nested text (anchor label):
//
// TBD: The error message lies a little. If the text is something like,
// "foo<B>bar</B>", it passes this test; and later, all font tags in the anchor
// label are marked no-emit; and any other embedded tags, who knows what
// happens?
if (((Pdn2 = Pdn->dn_Pchild)->dn_type) != DN_TYPE_TEXT)
{
src/judy-1.0.5/tool/jhton.c view on Meta::CPAN
"further nested tags; this translator cannot support "
"nested tags in anchor labels", Pdn->dn_linenum);
}
assert((Pdn2->dn_text) != PCNULL);
// If the anchor is within a <B><PRE>, do nothing special with fonts, as
// explained earlier:
if (ParentPre(Pdn, /* BoldOnly = */ TRUE)) break;
// Since anchor label text font will be forced in a moment, ignore any nested
// font directives so they don't mess up nroff:
MarkNoEmit(Pdn->dn_Pchild, /* Font = */ TRUE);
// See if anchor label appears to be a reference to the current page, to some
// other page, or else just make it italicized text:
src/judy-1.0.5/tool/jhton.c view on Meta::CPAN
len = strlen(PageName);
if (strncmp(Pdn2->dn_text, PageName, len) == 0) // self-reference.
{
CHECKPREV;
PUTS("\\fB"); // bold font.
SETPREVNONL;
suffix = "\\fP"; // revert to previous font.
break;
}
// Contains '(' and no whitespace => appears to reference some other page:
//
src/judy-1.0.5/tool/jhton.c view on Meta::CPAN
if (((Pch = strchr(Pdn2->dn_text, '(')) != PCNULL)
&& NoWhiteSpace(Pdn2->dn_text))
{
CHECKPREV;
PUTS("\\fI"); // italic font.
*Pch = CHNULL; // terminate briefly.
PUTS(Pdn2->dn_text);
*Pch = '(';
PUTS("\\fP"); // revert to previous font.
PUTS(Pch);
SETPREV(Pdn2->dn_text);
(Pdn2->dn_noemit) = TRUE; // skip later.
break;
}
// Just make the anchor label italicized text:
CHECKPREV;
PUTS("\\fI"); // italic font.
SETPREVNONL;
suffix = "\\fP"; // revert to previous font.
break;
} // case DN_TYPE_A
// BOLD TEXT:
//
// If the first child is <PRE>, use a "hard" font change; otherwise an in-line
// change.
//
// Note: For <DT><B>, this node is already marked dn_noemit and not seen here.
//
// Note: For <B><PRE>, nroff seems to reset font upon .PP, so mark the bold
// for later emission.
case DN_TYPE_B:
if (((Pdn->dn_Pchild) != PDNNULL)
src/judy-1.0.5/tool/jhton.c view on Meta::CPAN
(Pdn->dn_Pchild->dn_bold) = TRUE; // see above.
break;
}
CHECKPREV;
PUTS("\\fB"); // bold font.
SETPREVNONL;
suffix = "\\fP"; // revert to previous font.
break;
// ITALIC TEXT:
case DN_TYPE_I:
CHECKPREV;
PUTS("\\fI"); // italic font.
SETPREVNONL;
suffix = "\\fP"; // revert to previous font.
break;
// PREFORMATTED TEXT:
//
src/judy-1.0.5/tool/jhton.c view on Meta::CPAN
// ****************************************************************************
// M A R K N O E M I T
//
// Given a docnode (can be null), and a flag, recursively mark the node and all
// children and siblings as do-not-emit, unless the flag is set, only mark font
// docnodes.
FUNCTION void MarkNoEmit(
Pdn_t Pdn, // top node to mark.
bool_t Font) // flag: only mark font docnodes.
{
if (Pdn == PDNNULL) return;
if ((! Font)
|| ((Pdn->dn_type) == DN_TYPE_B)
src/judy-1.0.5/tool/jhton.c view on Meta::CPAN
// Given a text string, a bitflag for <PRE> status, and an input line number
// for error reporting, copy the text string to stdout with no added newlines,
// but translating selected HTML escape codes to simple characters, doubling
// any backslashes, and if InPRE, inserting .IP (if INPRE_INDENT) or .PP at
// blank lines (between successive newlines), and if INPRE_BOLD, putting back
// bold font since .IP/.PP seems to reset the font. Warn about unrecognized
// escape codes.
struct et_list {
char * et_escape; // expected text.
size_t et_len; // of expected text.
src/judy-1.0.5/tool/jhton.c view on Meta::CPAN
if (*(Pch = Pch2 + 1) == '\n') // successive newline.
{
// emit before next newline:
PUTS((InPRE & INPRE_INDENT) ? ".IP" : ".PP");
// also reset font:
if (InPRE & INPRE_BOLD) PUTS("\n.ft B");
}
}
EmitTextBS(Pch); // emit trailing part.
view all matches for this distribution
view release on metacpan or search on metacpan
libjit/doc/libjit.texi view on Meta::CPAN
Copyright @copyright{} 2004 Southern Storm Software, Pty Ltd
@end ifinfo
@titlepage
@sp 10
@center @titlefont{Just-In-Time Compiler Library}
@vskip 0pt plus 1fill
@center{Copyright @copyright{} 2004 Southern Storm Software, Pty Ltd}
@end titlepage
view all matches for this distribution
view release on metacpan or search on metacpan
See <https://github.com/project-renard/p5-Alien-MuPDF/issues/47>,
<https://github.com/project-renard/p5-Alien-MuPDF/pull/48>,
<https://github.com/project-renard/p5-Alien-MuPDF/pull/51>.
- Skip embedding some fonts to decrease build size (-DTOFU -DTOFU_CJK).
- Several Windows build fixes.
0.010 2018-01-04 20:40:51-0600
- Expand the download regex so that x.y.z versions match. This change was
Fixes <https://github.com/project-renard/p5-Alien-MuPDF/issues/24>.
- Sets the Inline parameter `MYEXTLIB` to the path for the mupdf archive
files so that it can be found via Inline::C.
- Remove the FreeBSD patch to `fontdump.c` that is no longer needed with
mupdf-1.11.
Fixes <https://github.com/project-renard/p5-Alien-MuPDF/issues/32>,
RT#121218 <https://rt.cpan.org/Ticket/Display.html?id=121218>.
Thanks to SREZIC++ for the bug report.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alien/Plotly/Orca.pm view on Meta::CPAN
mostly need L<xvfb|https://en.wikipedia.org/wiki/Xvfb>, either ran as a
service, or ran as a wrapper every time like C<xvfb-run orca ...>.
=item *
"open sans" font
Not having this font won't cause installation to fail, but texts could be
not properly rendered in the exported image file. See also
L<https://github.com/plotly/orca/issues/148>.
=back
view all matches for this distribution
view release on metacpan or search on metacpan
maint/devops.yml view on Meta::CPAN
macos-homebrew:
packages:
- cmake
- pkg-config
- cairo
- fontconfig
- freetype
- gettext
- glib
- gobject-introspection
- jpeg
view all matches for this distribution
view release on metacpan or search on metacpan
carousel.css view on Meta::CPAN
position:relative;
}
/**
* Safe to override. It is safe to override background, padding, margin, color,
* text alignment, fonts, etc. Define a separate CSS file and override your style
* preferences.
**/
.carousel-component {
background:#3F3F3F;
carousel.css view on Meta::CPAN
}
.carousel-component .carousel-list li {
text-align:center;
margin:0px 0px 0px 0px;
padding:0px;
font:10px verdana,arial,sans-serif;
color:#666;
}
.carousel-component .carousel-vertical li {
}
.carousel-component ul.carousel-vertical {
view all matches for this distribution
view release on metacpan or search on metacpan
patch/v1.4.7.patch view on Meta::CPAN
--- a/src/rrd_graph.c 2012-01-24 19:08:48.000000000 +0900
+++ b/src/rrd_graph.c 2013-03-29 14:13:53.000000000 +0900
@@ -4066,6 +4066,8 @@
static PangoFontMap *fontmap = NULL;
PangoContext *context;
+ g_type_init();
+
#ifdef HAVE_TZSET
view all matches for this distribution
view release on metacpan or search on metacpan
inc/My/Builder.pm view on Meta::CPAN
$cfg->{ld_paths} = [ keys %tmp ];
$cfg->{ld_shlib_map} = \%shlib_map;
my $have_libs = $self->notes('have_libs');
for(qw(pthread z jpeg tiff png ogg vorbis vorbisfile freetype
pangoft2 pango gobject gmodule glib fontconfig expat )) {
if( !$shlib_map{$_} && $have_libs->{$_}->[0] ) {
next unless defined $have_libs->{$_}->[1];
if ($_ eq 'pthread' && $^O eq 'openbsd') {
my $osver = `uname -r 2>/dev/null`;
if ($self->notes('perl_libs')->{pthread} || ($osver && $osver < 5.0)) {
view all matches for this distribution
view release on metacpan or search on metacpan
inc/My/Builder.pm view on Meta::CPAN
$cfg->{ld_paths} = [ keys %tmp ];
$cfg->{ld_shlib_map} = \%shlib_map;
my $have_libs = $self->notes('have_libs');
for(qw(pthread z jpeg tiff png ogg vorbis vorbisfile freetype
pangoft2 pango gobject gmodule glib fontconfig expat )) {
if( !$shlib_map{$_} && $have_libs->{$_}->[0] ) {
next unless defined $have_libs->{$_}->[1];
push @{ $cfg->{ld_shared_libs} }, $have_libs->{$_}->[1];
$shlib_map{$_} = $have_libs->{$_}->[1];
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alien/SDL3_ttf.pm view on Meta::CPAN
Returns a list of the dynamic library or shared object files.
=head1 Prerequisites
Depending on your platform, certain development dependencies must be for TrueType font support:
Linux (Debian/Ubuntu):
$ sudo apt-get install libfreetype-dev
view all matches for this distribution
view release on metacpan or search on metacpan
src/subversion/tools/client-side/svn-graph.pl view on Meta::CPAN
}
print "\n";
}
}
# Complete the descriptor (delaying write of font size to avoid
# inheritance by any subgraphs).
#my $title = "Family Tree\n$startpath, $startrev through $youngest";
#print "\tgraph [label=\"$title\", fontsize=18];\n";
print "}\n";
}
view all matches for this distribution
view release on metacpan or search on metacpan
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
dark grey: #7F7396
purple-ish grey: #9FA6B4
light grey: #F5F5F5 (Menu dropdown blocks)
font-family: Verdana, Arial, Helvetica, sans-serif;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
"Lucida Console", Monaco, monospace;
Georgia,"Times New Roman",Times,serif;
*/
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* Prevent mobile browsers from default adapting font sizes of content to make it readable */
body{
-webkit-text-size-adjust: 100%;
}
/** SAXONICA PAGE STYLING */
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
body{
-webkit-text-size-adjust: 100%;
padding:0;
margin:0;
background:white;
font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
#footer{
height:22px;
clear:both;
bottom:0;
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
text-align:left;
/*min-height:10%;*/
}
#footer p{
font-size:8pt;
background:white;
padding:0 0 0 0;
margin:0;
}
/* wrapper for whole page body, fixed width positioned centrally in available space */
#wrapper{
width:980px;
margin-left:auto;
margin-right:auto;
font-size:10pt;
background:white;
box-shadow:0px 0px 15px #3D5B96;
min-height:100%;
}
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
padding-top:5px;
padding-bottom:5px;
background-color:#E4EEF0;
}
#breadcrumbs p{
font-size:8pt;
color:#3D5B96;
padding-left:15px;
padding-right:15px;
margin:0px;
}
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
padding-top:5px;
padding-bottom:5px;
background-color:#E4EEF0;
}
#submenu p{
font-size:8pt;
color:#3D5B96;
padding-left:15px;
padding-right:15px;
margin:0px;
}
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
border:2px solid #F5F5F5;
}
#click-list{
list-style-image:url('img/triangleClosedGray.png');
font-size:inherit;
padding-left:20px;
padding-right:10px;
}
#click-list li.open{
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
#click-list ul li{
padding:3px;
}
#click-list a{
font-size:10pt;
}
#click-list ul.sub-list-tech,
#click-list ul.sub-list-product,
#click-list ul.sub-list-commercial,
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
height:40px;
padding-top:10px;
padding-bottom:10px;
}
/* font-awesome icons (social media links, etc.) */
.fa{
display:inline-block;
font-family:FontAwesome;
font-style:normal;
font-weight:400;
line-height:1;
color:#B1CCC7;
padding:8px 8px 8px 8px;
}
.fa:hover,
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
}
.nav a:link,
.nav a:visited{
display:block;
width:110px;
font-size:10.5pt;
font-weight:normal;
color:#3D5B96;
text-align:center;
padding:3px;
text-decoration:none;
}
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
border:none;
}
.nav ul li a:link,
.nav ul li a:visited{
width:110px;
font-size:10pt;
color:#3D5B96;
background-color:#F5F5F5;
}
.nav ul li a:hover,
.nav ul li a:active{
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
/* Body general content */
/* Any link (e.g. links within a page) */
a{
font-family:inherit;
font-size:inherit;
font-style:normal;
color:#3D5B96;
font-weight:normal;
text-decoration:none;
}
/* used for in body links */
a.bodylink{
font-family:inherit;
font-size:inherit;
font-style:inherit;
color:#96433D;
font-weight:normal;
text-decoration:none;
}
/* used for anchor links within a page */
a.anchor{
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
}
/* Used for 'Return to top of page' links (e.g. FAQ page) */
a.top-of-page p{
font-size:10pt;
font-style:italic;
text-align:right;
}
/* used for main page headings */
h1,
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
margin-bottom:0.7em;
line-height:1.6em;
}
h1{
font-size:13pt;
font-style:normal;
color:#3D5B96;
font-weight:bold;
}
h2{
font-size:11pt;
font-style:normal;
color:#3D5B96;
font-weight:bold;
}
h3{
font-size:10pt;
font-style:italic;
color:#3D5B96;
font-weight:normal;
}
/* used for subheads in pref. to H2 etc, to limit underlining width */
.subhead{
font-size:inherit;
font-style:normal;
color:#3D5B96;
font-weight:normal;
border-bottom:thin dashed #3D5B96;
padding-right:5px;
}
/* used for standard text */
p{
font-family:inherit;
font-size:10pt;
font-style:normal;
color:#3D5B96;
font-weight:normal;
text-decoration:none;
line-height:1.4em;
padding-right:15px;
padding-left:15px;
margin-top:10px;
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
.align-right{
text-align:right;
}
strong, b{
font-family:inherit;
font-weight:bold;
}
i{
font-family:inherit;
font-size:inherit;
font-style:italic;
font-weight:normal;
text-decoration:none;
}
blockquote{
margin: 15px 30px;
}
code{
font-family:"lucida sans typewriter", courier, monospace;
font-size:inherit;
font-style:normal;
font-weight:normal;
text-decoration:none;
color:#3D5B96;
}
/* Used for general lists */
ul{
font-family:inherit;
font-size:10pt;
font-style:normal;
color:#3D5B96;
font-weight:normal;
text-decoration:none;
line-height:1.4em;
list-style-type:disc;
list-style-position:outside;
padding-right:15px;
padding-left:40px;
margin-top:10px;
margin-bottom:10px;
}
li{
font-family:inherit;
font-size:inherit;
font-style:normal;
color:#3D5B96;
font-weight:normal;
}
ul ul{
margin-top:5px;
margin-bottom:5px;
}
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
}
/* Documentation table of contents */
/* used for table of contents level 1 */
.toc1{
font-family:inherit;
font-size:10pt;
font-style:normal;
color:#3D5B96;
font-weight:bold;
text-decoration:none;
}
/* used for table of contents level 2 */
.toc2{
font-family:inherit;
font-size:10pt;
font-style:normal;
color:#3D5B96;
font-weight:normal;
text-decoration:none;
}
/* should only be used for table of contents links level 3+ */
ul ul a{
font-size:9pt;
}
/* used for aside section contents */
.aside *{
font-size:10pt;
padding:0 0 0 0;
margin:0;
text-decoration:none;
color:#3D5B96;
border-collapse:collapse;
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
}
.aside h2{
margin-top:0px;
margin-bottom:5px;
font-size:11pt;
}
.aside p{
margin:5px;
}
.aside a.bodylink{
font-size:inherit;
font-style:inherit;
color:#96433D;
font-weight:normal;
text-decoration:none;
}
/* Platform logos appear on Products page */
.platform-logo{
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
width:auto;
/*border-collapse:collapse;*/
}
th,
td{
font-family:inherit;
font-size:inherit;
font-style:normal;
color:#3D5B96;
text-decoration:none;
padding-left:15px;
padding-right:15px;
padding-top:0px;
padding-bottom:10px;
}
th{
font-weight:bold;
line-height:1.3em;
}
td{
font-weight:normal;
text-decoration:none;
line-height:1.4em;
}
/* Homepage news table */
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
.news-table a.block-link:active{
background-color:#F5F5F5;
}
.highlight{
color:#96433D;
font-weight:normal;
}
/* Main page block buttons - purchase, download, products */
table.buttons{
margin-top:10px;
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
text-align:center;
overflow:hidden;
}
table.buttons tr{
text-align:left;
font-size:10pt;
vertical-align:top;
margin-top:5px;
border:8px solid white;
}
table.buttons td{
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
width:160px;
padding-right:15px;
padding-left:15px;
}
.MainPageButton{
font-size:14pt;
padding-top:20px;
padding-bottom:20px;
padding-right:10px;
padding-left:10px;
color:white;
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
border-collapse:separate;
}
table#one-button td{
padding-bottom:0px;
font-size:14pt;
}
table#one-button td+td{
width:230px;
text-align:left;
vertical-align:middle;
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
}
/* Download buttons table */
.download-table{
font-size:11pt;
margin:0px;
padding:0px;
text-align:center;
vertical-align:middle;
border-collapse:collapse;
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
text-align:right;
}
/* used for example code */
.codeblock{
font-family:"lucida sans typewriter", courier, monospace;
font-size:9pt;
font-style:normal;
font-weight:normal;
color:#3D5B96;
background-color:#F5F5F5;
text-decoration:none;
line-height:1.4em;
white-space:pre-wrap;
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
padding:10px;
}
/* used for example commands */
.command{
font-size:8pt;
font-style:normal;
color:#96433D;
font-weight:bold;
text-decoration:none;
padding-right:15px;
}
/* used for feature matrix table */
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
}
.feature-matrix tr.feature-heading{
background-color:#F5F5F5;
}
.feature-matrix tr.feature-heading td, .feature-matrix tr.feature-heading th{
font-weight:bold;
}
.feature-matrix th{
padding-top:5px;
padding-bottom:5px;
padding-left:5px;
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
/*text-align: right;*/
/*padding: 0 10px;*/
/*margin: 0;*/
/*border: 1px solid #666;*/
/*text-decoration: none;*/
/*font-size: 1em;*/
/*font-weight: bold;*/
}
#overview tr #popup span {
display: none;
}
#overview tr:hover #popup span {
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
width: 320px;
margin: 0px;
padding: 5px 10px 8px 10px;
background-color:#F5F5F5;
/*color: #335500;*/
font-weight: normal;
/*background: white;*/ /*#e5e5e5;*/
/*text-align: left;*/
border: 1px solid #C0C0C0;
}
#overview tr:hover #popup span h2 {
margin: 0px 0px 4px 0px;
font-size:10pt;
}
#overview tr:hover #popup span p {
margin: 4px 0px 4px 0px;
/*padding:3px;*/
font-size:10pt;
}
.feature-matrix td.feature-name{
width:100px;
}
.feature-matrix td.feature-description{
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
body.license{
margin: 20px;
max-width:800px;
}
h1.license{
font-family:inherit;
font-size:12pt;
font-style:normal;
color:#96433D;
font-weight:bold;
text-decoration:none;
line-height:15pt;
}
h2.license{
font-family:inherit;
font-size:10pt;
font-style:normal;
color:#96433D;
font-weight:bold;
text-decoration:none;
line-height:12pt;
}
.licence{
font-family:inherit;
font-size:8pt;
font-style:normal;
color:#3D5B96;
font-weight:normal;
text-decoration:none;
line-height:11pt;
margin-top:8px;
margin-bottom:8px;
}
.licencelink{
font-family:inherit;
font-size:8pt;
font-style:normal;
color:#3D5B96;
font-weight:normal;
text-decoration:underline;
line-height:11pt;
}
/*hr {
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
}*/
/* used for text in boxed areas - which pages? DL */
.boxed{
font-family:inherit;
font-size:8pt;
font-style:normal;
color:#96433D;
font-weight:bold;
text-decoration:none;
margin-top:5px;
margin-bottom:5px;
}
/* Is this used? */
ital{
font-family:inherit;
font-size:inherit;
font-style:italic;
font-weight:normal;
text-decoration:none;
}
/* Is this used? */
italb{
font-family:inherit;
font-size:inherit;
font-style:italic;
font-weight:bold;
text-decoration:none;
}
/* used for links in boxed areas - which pages? DL */
a.rust{
font-family:inherit;
font-size:8pt;
font-style:normal;
color:#96433D;
font-weight:bold;
text-decoration:underline;
}
/* used for links at the end of a page - which pages? DL */
a.nav{
font-family:inherit;
font-size:8pt;
font-style:normal;
color:#96433D;
font-weight:bold;
}
view all matches for this distribution
view release on metacpan or search on metacpan
smoke/qt/qtcore/tests/test.cpp view on Meta::CPAN
}
#endif
#ifdef TEST_QT_NO_COMPAT
#include "QtGui/qfontmetrics.h"
int main(int argc, char ** argv)
{
QFontMetrics *foo= new QFontMetrics( QFont() );
int bar = foo->width( 'c' );
smoke/qt/qtcore/tests/test.cpp view on Meta::CPAN
#endif
#ifdef TEST_QT_NO_FONTDATABASE
#include "QtGui/qfontdatabase.h"
int main(int argc, char ** argv)
{
QFontDatabase foo;
}
#endif
#ifdef TEST_QT_NO_FONTDIALOG
#include "QtGui/qfontdialog.h"
int main(int argc, char ** argv)
{
QFontDialog::getFont( (bool *)NULL );
}
view all matches for this distribution
view release on metacpan or search on metacpan
share/swagger-ui-bundle.js view on Meta::CPAN
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(function(){try{return require("esprima")}catch(e){}}()):"function"==typeof define&&define.amd?define(["esprima"],t):"object"==typeof exports?exports.SwaggerUIBundle=t(f...
/*
object-assign
(c) Sindre Sorhus
@license MIT
*/var r=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function()...
share/swagger-ui-bundle.js view on Meta::CPAN
/*!
* https://github.com/Starcounter-Jack/JSON-Patch
* (c) 2017 Joachim Wester
* MIT license
*/
var n=this&&this.__extends||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);function r(){this.constructor=e}e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)},r=Object.prototype.hasOwnProperty;function o(e,t){return ...
/** @license React v16.8.6
* react-is.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/Object.defineProperty(t,"__esModule",{value:!0});var r="function"==typeof Symbol&&Symbol.for,o=r?Symbol.for("react.element"):60103,i=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,s=r?Symbol.for("react.strict_mode"):6010...
/*!
* https://github.com/Starcounter-Jack/JSON-Patch
* (c) 2017 Joachim Wester
* MIT license
*/
share/swagger-ui-bundle.js view on Meta::CPAN
*
* Copyright(c) 2016 Gregory Jacobs <greg@greg-jacobs.com>
* MIT License
*
* https://github.com/gregjacobs/Autolinker.js
*/o=[],void 0===(i="function"==typeof(r=function(){var e,t,n,r,o,i,a,s=function(e){e=e||{},this.version=s.version,this.urls=this.normalizeUrlsCfg(e.urls),this.email="boolean"!=typeof e.email||e.email,this.twitter="boolean"!=typeof e.twitter||e.twitt...
//# sourceMappingURL=swagger-ui-bundle.js.map
view all matches for this distribution
view release on metacpan or search on metacpan
src/tcc-doc.texi view on Meta::CPAN
@iftex
@titlepage
@afourpaper
@sp 7
@center @titlefont{Tiny C Compiler Reference Documentation}
@sp 3
@end titlepage
@headings double
@end iftex
view all matches for this distribution
view release on metacpan or search on metacpan
src/tcc-doc.texi view on Meta::CPAN
@iftex
@titlepage
@afourpaper
@sp 7
@center @titlefont{Tiny C Compiler Reference Documentation}
@sp 3
@end titlepage
@headings double
@end iftex
view all matches for this distribution