path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
core-js/src/main/javascript/cdf/components/filter/styles/filter.css | webdetails/cdf | /*
* Effects
*/
.filter-root-container.collapsed {
transition: z-index 10ms cubic-bezier(0.25, 0.25, 0.75, 0.75) 0.3s;
}
.filter-root-container.collapsed > .filter-root-body {
transition: max-height 0.3s cubic-bezier(0.42, 0, 0.58, 1);
}
.filter-root-container.expanded > .filter-root-body {
transition: max-height 0.3s cubic-bezier(0.42, 0, 0.58, 1);
}
/*
* Layout, positioning
*/
.filter-root-container {
position: relative;
z-index: 10;
color: #616161;
}
.filter-root-container.expanded {
z-index: 1000;
}
.filter-overlay.expanded {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: #fff;
opacity: 0.5;
}
.filter-overlay.collapsed {
display: none;
}
.filter-title {
font-size: 10px;
color: #616161;
margin-bottom: 5px;
}
.filter-root-header {
position: relative;
cursor: pointer;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
font-size: 14px;
}
.filter-root-container.disabled .filter-root-header {
cursor: default;
}
.filter-root-header-label {
padding: 5px 0 5px 15px;
line-height: 22px;
margin-right: 30px;
}
.filter-root-header-label .filter-root-info-selected-items {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
}
.filter-collapse-icon {
position: absolute;
bottom: 0;
top: 0;
margin: auto 0;
right: 10px;
background: url("../images/filter-arrow.svg") no-repeat left center;
width: 10px;
height: 10px;
}
.no-svg .filter-collapse-icon {
background: url("../images/filter-arrow.png") no-repeat left center;
}
.filter-collapse-icon.collapsed {
background-position: left center;
}
.filter-root-header:hover > .filter-collapse-icon.collapsed,
.filter-collapse-icon.collapsed:hover {
background-position: -10px center;
}
.filter-collapse-icon.expanded {
background-position: -20px center;
}
.filter-root-header:hover > .filter-collapse-icon.expanded,
.filter-collapse-icon.expanded:hover {
background-position: -30px center;
}
.filter-collapse-icon.always-expanded,
.filter-collapse-icon.disabled {
display: none;
}
.filter-root-body {
position: absolute;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
padding-bottom: 0;
font-size: 13px;
}
.filter-root-body.filter-expand-relative {
position: relative;
}
.filter-root-body.filter-expand-absolute {
position: absolute;
}
.filter-root-container.always-expanded > .filter-root-body {
position: relative;
}
.filter-root-container.disabled > .filter-root-body {
display: none;
}
.filter-root-container.collapsed > .filter-root-body {
max-height: 0;
overflow: hidden;
border-bottom: none;
}
.filter-root-container.expanded > .filter-root-body {
max-height: 600px;
overflow: hidden;
}
.filter-root-control {
width: 100%;
}
.filter-controls {
position: relative;
padding: 15px 15px 0;
}
.filter-controls .filter-control-buttons {
padding-bottom: 15px;
position: relative;
}
.filter-controls .filter-control-button {
width: 50%;
position: relative;
display: inline-block;
}
.filter-controls .filter-control-button:first-child {
width: 40%;
padding: 0 7px 0 0;
float: left;
}
.filter-controls .filter-control-button:last-child {
width: 58%;
padding: 0 0 0 7px;
float: right;
}
.filter-controls .filter-control-button > .pristine {
cursor: default;
}
.filter-controls .filter-control-button > .dirty {
cursor: pointer;
}
.filter-controls .filter-btn-cancel,
.filter-controls .filter-btn-apply {
padding: 4px 0;
outline: none;
width: 100%;
font-size: 10px;
}
.filter-controls .filter-btn-cancel,
.filter-controls .filter-btn-apply.dirty {
background: #616161;
border: 1px solid #616161;
color: #fff;
}
.filter-controls .filter-btn-cancel:hover,
.filter-controls .filter-btn-apply.dirty:hover {
background: #7e7e7e;
border: 1px solid #7e7e7e;
cursor: pointer;
}
.filter-controls .filter-btn-apply.pristine {
background: #efefef;
border: 1px solid #e7e7e7;
color: #cecece;
cursor: default;
}
.filter-controls .filter-filter {
position: relative;
padding-bottom: 15px;
}
.filter-controls .filter-filter .filter-filter-input {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0 30px;
width: 100%;
line-height: 22px;
}
.filter-controls .filter-filter .filter-filter-icon,
.filter-controls .filter-filter .filter-filter-clear {
position: absolute;
top: -15px;
bottom: 0;
margin: auto 0;
}
.filter-controls .filter-filter .filter-filter-icon {
width: 12px;
height: 12px;
pointer-events: none;
left: 10px;
background: url("../images/search-icon.svg") no-repeat center center;
}
.filter-controls .filter-filter .no-svg .filter-filter-icon {
background: url("../images/search-icon.png") no-repeat center center;
}
.filter-controls .filter-filter .filter-filter-clear {
width: 10px;
height: 10px;
cursor: pointer;
right: 10px;
background: url("../images/close-icon.svg");
background-repeat: no-repeat;
background-position: left center;
}
.filter-controls .filter-filter .filter-filter-clear:hover {
background-position: right center;
}
.filter-controls .filter-filter .no-svg .filter-filter-clear {
background: url("../images/close-icon.png");
}
.filter-root-selection {
position: relative;
}
.multi-select .filter-root-selection {
padding: 7px 10px;
margin-right: 20px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
margin-top: 10px;
}
.filter-selected-items {
padding: 10px;
}
.filter-selected-item {
padding: 5px 10px;
background: #f4f4f4;
border: 1px solid #005ca7;
margin: 5px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.filter-group-container .filter-group-header,
.filter-group-container .filter-group-footer {
position: relative;
}
.filter-group-container .filter-group-title {
font-size: 16px;
padding: 10px 5px;
}
.filter-group-container .filter-btn-more-data {
padding: 10px;
width: 100%;
}
.filter-group-container .filter-group-selection {
padding: 5px 10px;
position: relative;
}
.filter-item-container {
padding: 0;
}
.filter-item-body {
position: relative;
padding: 7px 10px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
}
.single-select .filter-item-container.all-selected .filter-item-body {
cursor: default;
}
.filter-root-selection-label,
.filter-group-label,
.filter-item-label {
margin: 0 29px;
line-height: 18px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.no-icons .filter-root-selection-label,
.no-icons .filter-group-label,
.no-icons .filter-item-label {
margin: 0 5px;
}
.filter-root-selection-label,
.filter-group-label {
font-weight: 600;
}
.filter-item-only-this,
.filter-item-value {
position: absolute;
top: 0;
bottom: 0;
margin: auto 0;
height: 22px;
line-height: 22px;
font-size: 10px;
}
.filter-item-value {
right: 30px;
}
.filter-root-selection-value,
.filter-group-selection-value {
position: absolute;
right: 40px;
bottom: 0;
line-height: 18px;
font-weight: 600;
}
.filter-item-only-this {
color: #808080;
right: 5px;
visibility: hidden;
}
.filter-item-container:hover .filter-item-only-this {
color: #005ca7;
visibility: visible;
}
.filter-item-only-this:hover {
text-decoration: underline;
cursor: pointer;
}
/****************************
* Item shading
*/
.filter-item-container:hover,
.filter-item-container.all-selected:hover {
background: #e6e6e6;
}
.filter-root-control .filter-root-selection:hover,
.filter-group-header .filter-group-selection:hover,
.filter-item-container:hover {
background: #e6e6e6;
cursor: pointer;
}
.filter-root-control.some-selected .filter-root-selection,
.filter-group-header.some-selected .filter-group-selection,
.filter-item-container.some-selected,
.filter-root-control.all-selected .filter-root-selection,
.filter-group-header.all-selected .filter-group-selection,
.filter-item-container.all-selected {
background: #f4f4f4;
color: #005ca7;
}
.filter-root-control.some-selected .filter-root-selection:hover,
.filter-group-header.some-selected .filter-group-selection:hover,
.filter-item-container.some-selected:hover,
.filter-root-control.all-selected .filter-root-selection:hover,
.filter-group-header.all-selected .filter-group-selection:hover,
.filter-item-container.all-selected:hover {
background: #e6e6e6;
}
/*
* Checkboxes
*/
.filter-root-selection-icon,
.filter-group-selection-icon,
.filter-item-selection-icon {
float: left;
width: 14px;
height: 14px;
cursor: pointer;
pointer-events: none;
border: 1px solid #c6c6c6;
position: absolute;
left: 15px;
top: 0;
bottom: 0;
margin: auto 0;
}
.no-icons .filter-root-selection-icon,
.no-icons .filter-group-selection-icon,
.no-icons .filter-item-selection-icon {
display: none;
}
.filter-root-selection:hover .filter-root-selection-icon,
.filter-group-container:hover .filter-group-selection-icon,
.filter-item-container:hover .filter-item-selection-icon {
border-color: #005ca7;
}
.filter-root-selection-icon.all-selected,
.filter-group-selection-icon.all-selected,
.filter-item-container.all-selected .filter-item-selection-icon {
border-color: #005ca7;
}
.filter-root-container.multi-select .filter-root-selection-icon,
.filter-root-container.multi-select .filter-group-selection-icon,
.filter-root-container.multi-select .filter-item-selection-icon {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
background-color: #fff;
background-image: url("../images/checkbox-sprite.svg");
background-repeat: no-repeat;
background-position: left center;
}
.filter-root-container.multi-select .filter-root-selection-icon.all-selected,
.filter-root-container.multi-select .filter-group-selection-icon.all-selected,
.filter-root-container.multi-select .filter-item-container.all-selected .filter-item-selection-icon {
background-color: #005ca7;
background-position: center center;
}
.filter-root-container.multi-select .filter-root-selection-icon.some-selected,
.filter-root-container.multi-select .filter-group-selection-icon.some-selected,
.filter-root-container.multi-select .filter-item-container.some-selected .filter-item-selection-icon {
background-position: right center;
}
.no-svg .filter-root-container.multi-select .filter-root-selection-icon,
.no-svg .filter-root-container.multi-select .filter-group-selection-icon,
.no-svg .filter-root-container.multi-select .filter-item-selection-icon {
background-image: url("../images/checkbox-sprite.png");
}
.filter-root-container.single-select .filter-root-selection-icon,
.filter-root-container.single-select .filter-group-selection-icon,
.filter-root-container.single-select .filter-item-container .filter-item-selection-icon {
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
border: 1px solid #c6c6c6;
}
.filter-root-container.single-select .filter-item-container:hover .filter-item-selection-icon {
border: 1px solid #005ca7;
}
.filter-root-container.single-select .filter-item-container.all-selected .filter-item-selection-icon {
border: 1px solid #c6c6c6 !important;
}
.filter-root-container.single-select .filter-root-selection-icon.none-selected,
.filter-root-container.single-select .filter-group-selection-icon.none-selected,
.filter-root-container.single-select .filter-item-container.none-selected .filter-item-selection-icon {
background: #fff;
}
.filter-root-container.single-select .filter-root-selection-icon.all-selected > div,
.filter-root-container.single-select .filter-group-selection-icon.all-selected > div,
.filter-root-container.single-select .filter-item-container.all-selected .filter-item-selection-icon > div {
width: 6px;
height: 6px;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
background: #005ca7;
}
.filter-root-container.single-select .filter-root-selection-icon.some-selected,
.filter-root-container.single-select .filter-group-selection-icon.some-selected,
.filter-root-container.single-select .filter-item-container.some-selected .filter-item-selection-icon {
background: url("../images/24px/collapse.png") no-repeat 50% 50%;
background-position: -24px 50%;
background: #005ca7;
}
/***************************
* Colors
*/
.filter-root-container {
background: #fff;
}
.filter-root-header {
border: 1px solid #c6c6c6;
}
.filter-root-header:hover {
border-color: #005ca7;
}
.always-expanded .filter-root-header,
.always-expanded .filter-root-header:hover,
.disabled .filter-root-header,
.disabled .filter-root-header:hover {
border-color: #c6c6c6;
cursor: default;
}
.filter-root-body {
background: #fff;
border: 1px solid #c6c6c6;
border-top: none;
}
.filter-controls {
background: #f2f2f2;
}
.filter-controls .filter-filter .filter-filter-input {
outline: none;
border: 1px solid #c6c6c6;
}
.filter-controls .filter-filter .filter-filter-input:hover,
.filter-controls .filter-filter .filter-filter-input:focus {
border-color: #005ca7;
}
.filter-group-container .filter-controls {
display: none;
}
.filter-root-notification {
padding: 20px;
border-top: 1px solid #808080;
}
.filter-root-info-number-selected-items {
color: #616161;
}
.filter-root-info-number-items {
color: #B3B3B3;
}
.filter-item-container {
font-size: 13px;
}
/************************
* Scrollbar
*****/
.filter-root-items-container.mCustomScrollbar {
height: 180px;
padding: 10px 0;
}
.filter-root-items-container.mCustomScrollbar .mCSB_inside > .mCSB_container {
margin-right: 20px;
}
.filter-root-items-container.mCustomScrollbar .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 6px;
}
/************************
* Notifications
*/
.filter-busy {
background: rgba(0, 92, 167, .1);
padding: 10px;
}
.filter-busy-info {
float: left;
font-size: 13px;
line-height: 17px;
color: #616161;
}
.filter-root-container .floatingBarsG{
position: relative;
width: 14px;
height: 17px;
margin: 0 9px 0 6px;
float: left;
}
.filter-root-container .blockG{
position: absolute;
background-color: rgba(0, 92, 167, 0);
width: 2px;
height: 5px;
border-radius: 2px 2px 0 0;
-o-border-radius: 2px 2px 0 0;
-ms-border-radius: 2px 2px 0 0;
-webkit-border-radius: 2px 2px 0 0;
-moz-border-radius: 2px 2px 0 0;
transform: scale(0.4);
-o-transform: scale(0.4);
-ms-transform: scale(0.4);
-webkit-transform: scale(0.4);
-moz-transform: scale(0.4);
animation-name: fadeG;
-o-animation-name: fadeG;
-ms-animation-name: fadeG;
-webkit-animation-name: fadeG;
-moz-animation-name: fadeG;
animation-duration: 1.2s;
-o-animation-duration: 1.2s;
-ms-animation-duration: 1.2s;
-webkit-animation-duration: 1.2s;
-moz-animation-duration: 1.2s;
animation-iteration-count: infinite;
-o-animation-iteration-count: infinite;
-ms-animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
animation-direction: normal;
-o-animation-direction: normal;
-ms-animation-direction: normal;
-webkit-animation-direction: normal;
-moz-animation-direction: normal;
}
.filter-root-container .blockG.rotateG_01{
left: 0;
top: 6px;
animation-delay: 0.45s;
-o-animation-delay: 0.45s;
-ms-animation-delay: 0.45s;
-webkit-animation-delay: 0.45s;
-moz-animation-delay: 0.45s;
transform: rotate(-90deg);
-o-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
}
.filter-root-container .blockG.rotateG_02{
left: 2px;
top: 2px;
animation-delay: 0.6s;
-o-animation-delay: 0.6s;
-ms-animation-delay: 0.6s;
-webkit-animation-delay: 0.6s;
-moz-animation-delay: 0.6s;
transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
}
.filter-root-container .blockG.rotateG_03{
left: 6px;
top: 1px;
animation-delay: 0.75s;
-o-animation-delay: 0.75s;
-ms-animation-delay: 0.75s;
-webkit-animation-delay: 0.75s;
-moz-animation-delay: 0.75s;
transform: rotate(0deg);
-o-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
}
.filter-root-container .blockG.rotateG_04{
right: 2px;
top: 2px;
animation-delay: 0.9s;
-o-animation-delay: 0.9s;
-ms-animation-delay: 0.9s;
-webkit-animation-delay: 0.9s;
-moz-animation-delay: 0.9s;
transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
}
.filter-root-container .blockG.rotateG_05{
right: 0;
top: 6px;
animation-delay: 1.05s;
-o-animation-delay: 1.05s;
-ms-animation-delay: 1.05s;
-webkit-animation-delay: 1.05s;
-moz-animation-delay: 1.05s;
transform: rotate(90deg);
-o-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
}
.filter-root-container .blockG.rotateG_06{
right: 2px;
bottom: 2px;
animation-delay: 1.2s;
-o-animation-delay: 1.2s;
-ms-animation-delay: 1.2s;
-webkit-animation-delay: 1.2s;
-moz-animation-delay: 1.2s;
transform: rotate(135deg);
-o-transform: rotate(135deg);
-ms-transform: rotate(135deg);
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
}
.filter-root-container .blockG.rotateG_07{
bottom: 0;
left: 6px;
animation-delay: 1.35s;
-o-animation-delay: 1.35s;
-ms-animation-delay: 1.35s;
-webkit-animation-delay: 1.35s;
-moz-animation-delay: 1.35s;
transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
}
.filter-root-container .blockG.rotateG_08{
left: 2px;
bottom: 2px;
animation-delay: 1.5s;
-o-animation-delay: 1.5s;
-ms-animation-delay: 1.5s;
-webkit-animation-delay: 1.5s;
-moz-animation-delay: 1.5s;
transform: rotate(-135deg);
-o-transform: rotate(-135deg);
-ms-transform: rotate(-135deg);
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
}
@keyframes fadeG{
0%{
background-color: rgb(97, 97, 97);
}
100%{
background-color: rgba(0, 92, 167, 0);
}
}
@-o-keyframes fadeG{
0%{
background-color: rgb(97, 97, 97);
}
100%{
background-color: rgba(0, 92, 167, 0);
}
}
@-ms-keyframes fadeG{
0%{
background-color: rgb(97, 97, 97);
}
100%{
background-color: rgba(0, 92, 167, 0);
}
}
@-webkit-keyframes fadeG{
0%{
background-color: rgb(97, 97, 97);
}
100%{
background-color: rgba(0, 92, 167, 0);
}
}
@-moz-keyframes fadeG{
0%{
background-color: rgb(97, 97, 97);
}
100%{
background-color: rgba(0, 92, 167, 0);
}
}
.filter-root-notification {
background: #ffffe0;
padding: 20px;
border-top: 1px solid #808080;
}
/**
* Preserve filter length, at the cost of hiding items
*/
.filter-notification-highlight {
color: #f00;
}
/************************
* Custom
*/
|
third_party/blink/web_tests/external/wpt/webxr/xrDevice_requestSession_immersive_no_gesture.https.html | scheib/chromium | <!DOCTYPE html>
<body>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src="resources/webxr_util.js"></script>
<script src="resources/webxr_test_constants.js"></script>
<script>
xr_promise_test(
"Requesting immersive session outside of a user gesture rejects",
(t) => {
return navigator.xr.test.simulateDeviceConnection(TRACKED_IMMERSIVE_DEVICE)
.then( (controller) => promise_rejects_dom(
t, 'SecurityError', navigator.xr.requestSession('immersive-vr')));
});
</script>
</body>
|
src/deps/db/docs/api_reference/C/envget_open_flags.html | mxrrow/zaicoin | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>DB_ENV->get_open_flags()</title>
<link rel="stylesheet" href="apiReference.css" type="text/css" />
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
<link rel="start" href="index.html" title="Berkeley DB C API Reference" />
<link rel="up" href="env.html" title="Chapter 5. The DB_ENV Handle" />
<link rel="prev" href="envget_msgfile.html" title="DB_ENV->get_msgfile()" />
<link rel="next" href="envget_shm_key.html" title="DB_ENV->get_shm_key()" />
</head>
<body>
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr>
<th colspan="3" align="center">DB_ENV->get_open_flags()</th>
</tr>
<tr>
<td width="20%" align="left"><a accesskey="p" href="envget_msgfile.html">Prev</a> </td>
<th width="60%" align="center">Chapter 5.
The DB_ENV Handle
</th>
<td width="20%" align="right"> <a accesskey="n" href="envget_shm_key.html">Next</a></td>
</tr>
</table>
<hr />
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="envget_open_flags"></a>DB_ENV->get_open_flags()</h2>
</div>
</div>
</div>
<pre class="programlisting">#include <db.h>
int
DB_ENV->get_open_flags(DB_ENV *dbenv, u_int32_t *flagsp); </pre>
<p>
The <code class="methodname">DB_ENV->get_open_flags()</code> method returns the open method flags
originally used to create the database environment.
</p>
<p>
The <code class="methodname">DB_ENV->get_open_flags()</code> method may not be called before the
<code class="methodname">DB_ENV->open()</code> method is called.
</p>
<p>
The <code class="methodname">DB_ENV->get_open_flags()</code> <span>
<span>
method returns a non-zero error value on failure and 0 on success.
</span>
</span>
</p>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="id1663680"></a>Parameters</h3>
</div>
</div>
</div>
<div class="sect3" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h4 class="title"><a id="id1663751"></a>flagsp</h4>
</div>
</div>
</div>
<p>
The <code class="methodname">DB_ENV->get_open_flags()</code> method returns the open method flags
originally used to create the database environment in <span class="bold"><strong>flagsp</strong></span>.
</p>
</div>
</div>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="id1663917"></a>Class</h3>
</div>
</div>
</div>
<p>
<a class="link" href="env.html" title="Chapter 5. The DB_ENV Handle">DB_ENV</a>
</p>
</div>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="id1663741"></a>See Also</h3>
</div>
</div>
</div>
<p>
<a class="xref" href="env.html#envlist" title="Database Environments and Related Methods">Database Environments and Related Methods</a>,
<a class="xref" href="envopen.html" title="DB_ENV->open()">DB_ENV->open()</a>
</p>
</div>
</div>
<div class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="envget_msgfile.html">Prev</a> </td>
<td width="20%" align="center">
<a accesskey="u" href="env.html">Up</a>
</td>
<td width="40%" align="right"> <a accesskey="n" href="envget_shm_key.html">Next</a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top">DB_ENV->get_msgfile() </td>
<td width="20%" align="center">
<a accesskey="h" href="index.html">Home</a>
</td>
<td width="40%" align="right" valign="top"> DB_ENV->get_shm_key()</td>
</tr>
</table>
</div>
</body>
</html>
|
src/deps/db/docs/api_reference/STL/stldb_multisetoperator_ueq.html | mxrrow/zaicoin | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>operator!=</title>
<link rel="stylesheet" href="apiReference.css" type="text/css" />
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
<link rel="start" href="index.html" title="Berkeley DB C++ Standard Template Library API Reference" />
<link rel="up" href="db_multiset.html" title="Chapter 8. Db_multiset" />
<link rel="prev" href="stldb_multisetoperator_eq.html" title="operator==" />
<link rel="next" href="dbstl_iterators.html" title="Chapter 9. Dbstl Iterator Classes" />
</head>
<body>
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr>
<th colspan="3" align="center">
operator!=
</th>
</tr>
<tr>
<td width="20%" align="left"><a accesskey="p" href="stldb_multisetoperator_eq.html">Prev</a> </td>
<th width="60%" align="center">Chapter 8.
Db_multiset </th>
<td width="20%" align="right"> <a accesskey="n" href="dbstl_iterators.html">Next</a></td>
</tr>
</table>
<hr />
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="stldb_multisetoperator_ueq"></a>
operator!=
</h2>
</div>
</div>
</div>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="func_details"></a>
Function Details</h3>
</div>
</div>
</div>
<pre class="programlisting">
bool operator!=(const self &m2) const
</pre>
<div class="sect3" lang="en" xml:lang="en">
<div class="titlepage"></div>
<p>Inequality comparison operator. </p>
</div>
</div>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="id1557333"></a>
Class</h3>
</div>
</div>
</div>
<p>
<a class="link" href="db_multiset.html" title="Chapter 8. Db_multiset">
db_multiset</a>
</p>
</div>
</div>
<div class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="stldb_multisetoperator_eq.html">Prev</a> </td>
<td width="20%" align="center">
<a accesskey="u" href="db_multiset.html">Up</a>
</td>
<td width="40%" align="right"> <a accesskey="n" href="dbstl_iterators.html">Next</a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top">
operator==
</td>
<td width="20%" align="center">
<a accesskey="h" href="index.html">Home</a>
</td>
<td width="40%" align="right" valign="top"> Chapter 9.
Dbstl Iterator Classes </td>
</tr>
</table>
</div>
</body>
</html>
|
third_party/blink/web_tests/external/wpt/css/css-text/word-boundary/word-boundary-117.html | chromium/chromium | <!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text level 4 Test: word-boundary-detection:auto() forbidden</title>
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
<link rel="help" href="https://drafts.csswg.org/css-text-4/#word-boundary-detection">
<link rel="help" href="https://drafts.csswg.org/css-text-4/#word-boundary-expansion">
<link rel="match" href="reference/word-boundary-117-ref.html">
<meta name="assert" content="The UA must not insert a virtual word boundary immediately adjacent to an other space separator.">
<style>
@supports (word-boundary-detection:auto(ja)) {
.warn { display:none; }
}
div {
font-size: 2em;
border: solid black;
margin: 5px;
width: 30ch;
}
#test {
word-boundary-detection: auto(ja);
word-boundary-expansion: ideographic-space;
}
</style>
<p class=warn><strong>This test is not relevant, because this UA does not support <code>word-boundary-detection:auto(ja)</code>.</strong>
<p>Test passes if the two boxes below are identical.
<div id=test lang=ja>東京 へ 行きましょう。</div>
<div id=ref lang=ja>東京 へ 行きましょう。</div>
|
vendor/leaflet/debug/map/zoom-delta.html | aivankovich/zo | <!DOCTYPE html>
<html>
<head>
<title>Leaflet debug page</title>
<meta name="viewport" content="initial-scale=1.0" />
<link rel="stylesheet" href="../../dist/leaflet.css" />
<link rel="stylesheet" href="../css/mobile.css" />
<script type="text/javascript" src="../../build/deps.js"></script>
<script src="../leaflet-include.js"></script>
<style>
.container {
float:left; width: 600px; height: 600px;
position: relative;
border: 1px solid gray;
}
#map1, #map2 {
position:absolute;
top:2em;
bottom:2em;
left:0;
right:0;
}
#zoom1, #zoom2 {
position:absolute;
bottom:0;
left:0;
right:0;
}
</style>
</head>
<body>
<h1>Zoom delta test.</h1>
<p>Zooming with touch zoom, box zoom or flyTo then <code>map.stop()</code> must make the zoom level snap to the value of the <code>zoomSnap</code> option. Zoom interactions (keyboard, mouse wheel, zoom control buttons must change the zoom by the amount in the <code>zoomDelta</code> option.</p>
<div>
<button id="sf">SF</button>
<button id="trd">TRD</button>
<button id="stop">stop</button>
</div>
<div class='container'>
Snap: 0.25. Delta: 0.5.
<div id="map1"></div>
<span id="zoom1"></span>
</div>
<div class='container'>
Snap: 0 (off). Delta: 0.25.
<div id="map2"></div>
<span id="zoom2"></span>
</div>
<script type="text/javascript">
var sf = [37.77, -122.42],
trd = [63.41, 10.41];
var osmUrl = 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
osmAttrib = '© <a href="http://openstreetmap.org/copyright">OpenStreetMap</a> contributors',
osm1 = L.tileLayer(osmUrl, {maxZoom: 18, attribution: osmAttrib}),
osm2 = L.tileLayer(osmUrl, {maxZoom: 18, attribution: osmAttrib}),
center = L.latLng(63.41, 10.41);
var map1 = new L.Map('map1', {
center: center,
layers: [osm1],
zoom: 5,
zoomSnap: 0.25,
zoomDelta: 0.5,
wheelPxPerZoomLevel: 50
});
var map2 = new L.Map('map2', {
center: center,
layers: [osm2],
zoom: 5,
zoomSnap: 0,
zoomDelta: 0.25,
wheelPxPerZoomLevel: 50
});
map1.on('zoomend',function(){
document.getElementById('zoom1').innerHTML = "Zoom level: " + map1.getZoom();
});
map2.on('zoomend',function(){
document.getElementById('zoom2').innerHTML = "Zoom level: " + map2.getZoom();
});
document.getElementById('sf').onclick = function () {
map1.flyTo(sf, 10, {duration: 20});
map2.flyTo(sf, 10, {duration: 20});
};
document.getElementById('trd').onclick = function () {
map1.flyTo(trd, 10, {duration: 20});
map2.flyTo(trd, 10, {duration: 20});
};
document.getElementById('stop').onclick = function () {
map1.stop();
map2.stop();
};
</script>
</body>
</html>
|
third_party/blink/web_tests/external/wpt/svg/animations/svglengthlist-animation-4.html | scheib/chromium | <!doctype html>
<html>
<meta charset="utf-8">
<title>Test 'by' animation of SVGLengthList.</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/SVGAnimationTestCase-testharness.js"></script>
<svg>
</svg>
<script>
var rootSVGElement = document.querySelector("svg");
var epsilon = 1.0;
// Setup test document
var text = createSVGElement("text");
text.setAttribute("id", "text");
text.textContent = "ABCD";
text.setAttribute("x", "50 60 70 80");
text.setAttribute("y", "50");
text.setAttribute("onclick", "executeTest()");
rootSVGElement.appendChild(text);
var animate = createSVGElement("animate");
animate.setAttribute("id", "animation");
animate.setAttribute("attributeName", "x");
animate.setAttribute("begin", "0s");
animate.setAttribute("dur", "4s");
animate.setAttribute("from", "50 60 70 80");
animate.setAttribute("by", "20 20 20 20");
text.appendChild(animate);
// Setup animation test
function sample1() {
assert_equals(text.x.animVal.numberOfItems, 4);
assert_approx_equals(text.x.animVal.getItem(0).value, 50, epsilon);
assert_approx_equals(text.x.animVal.getItem(1).value, 60, epsilon);
assert_approx_equals(text.x.animVal.getItem(2).value, 70, epsilon);
assert_approx_equals(text.x.animVal.getItem(3).value, 80, epsilon);
assert_equals(text.x.baseVal.numberOfItems, 4);
assert_equals(text.x.baseVal.getItem(0).value, 50);
assert_equals(text.x.baseVal.getItem(1).value, 60);
assert_equals(text.x.baseVal.getItem(2).value, 70);
assert_equals(text.x.baseVal.getItem(3).value, 80);
}
function sample2() {
assert_equals(text.x.animVal.numberOfItems, 4);
assert_approx_equals(text.x.animVal.getItem(0).value, 60, epsilon);
assert_approx_equals(text.x.animVal.getItem(1).value, 70, epsilon);
assert_approx_equals(text.x.animVal.getItem(2).value, 80, epsilon);
assert_approx_equals(text.x.animVal.getItem(3).value, 90, epsilon);
assert_equals(text.x.baseVal.numberOfItems, 4);
assert_equals(text.x.baseVal.getItem(0).value, 50);
assert_equals(text.x.baseVal.getItem(1).value, 60);
assert_equals(text.x.baseVal.getItem(2).value, 70);
assert_equals(text.x.baseVal.getItem(3).value, 80);
}
function sample3() {
assert_equals(text.x.animVal.numberOfItems, 4);
assert_approx_equals(text.x.animVal.getItem(0).value, 70, epsilon);
assert_approx_equals(text.x.animVal.getItem(1).value, 80, epsilon);
assert_approx_equals(text.x.animVal.getItem(2).value, 90, epsilon);
assert_approx_equals(text.x.animVal.getItem(3).value, 100, epsilon);
assert_equals(text.x.baseVal.numberOfItems, 4);
assert_equals(text.x.baseVal.getItem(0).value, 50);
assert_equals(text.x.baseVal.getItem(1).value, 60);
assert_equals(text.x.baseVal.getItem(2).value, 70);
assert_equals(text.x.baseVal.getItem(3).value, 80);
}
smil_async_test((t) => {
const expectedValues = [
// [animationId, time, sampleCallback]
["animation", 0.0, sample1],
["animation", 2.0, sample2],
["animation", 3.999, sample3],
["animation", 4.001, sample1]
];
runAnimationTest(t, expectedValues);
});
</script> |
web/js/google-closure/closure/goog/testing/editor/testhelper_test.html | marcelohg/NasajonWebTeamplateProject | <!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--
-->
<title>Closure Unit Tests - goog.testing.editor.TestHelper</title>
<script src="../../base.js"></script>
<script>
goog.require('goog.dom');
goog.require('goog.dom.TagName');
goog.require('goog.editor.node');
goog.require('goog.testing.editor.TestHelper');
goog.require('goog.testing.jsunit');
</script>
</head>
<body>
<div id="root"></div>
<div id="root2">Root 2</div>
<script type="text/javascript">
var root = goog.dom.getElement('root');
var helper;
function setUp() {
root.innerHTML = '';
helper = new goog.testing.editor.TestHelper(root);
}
function tearDown() {
helper.dispose();
}
function testSetRoot() {
helper.setRoot(goog.dom.getElement('root2'));
helper.assertHtmlMatches('Root 2');
}
function testSetupEditableElement() {
helper.setUpEditableElement();
assertTrue(goog.editor.node.isEditableContainer(root));
}
function testTearDownEditableElement() {
helper.tearDownEditableElement();
assertFalse(goog.editor.node.isEditableContainer(root));
}
function testFindNode() {
// Test the easiest case.
root.innerHTML = 'a<br>b';
assertEquals(helper.findTextNode('a'), root.firstChild);
assertEquals(helper.findTextNode('b'), root.lastChild);
assertNull(helper.findTextNode('c'));
}
function testFindNodeDuplicate() {
// Test duplicate.
root.innerHTML = 'c<br>c';
assertEquals('Should return first duplicate', helper.findTextNode('c'),
root.firstChild);
}
function findNodeWithHierarchy() {
// Test a more complicated hierarchy.
root.innerHTML = '<div>a<p>b<span>c</span>d</p>e</div>';
assertEquals(goog.dom.TagName.DIV,
helper.findTextNode('a').parentNode.tagName);
assertEquals(goog.dom.TagName.P,
helper.findTextNode('b').parentNode.tagName);
assertEquals(goog.dom.TagName.SPAN,
helper.findTextNode('c').parentNode.tagName);
assertEquals(goog.dom.TagName.P,
helper.findTextNode('d').parentNode.tagName);
assertEquals(goog.dom.TagName.DIV,
helper.findTextNode('e').parentNode.tagName);
}
function setUpAssertHtmlMatches() {
var tag1, tag2;
if (goog.userAgent.IE) {
tag1 = goog.dom.TagName.DIV;
} else if (goog.userAgent.WEBKIT) {
tag1 = goog.dom.TagName.P;
tag2 = goog.dom.TagName.BR;
} else if (goog.userAgent.GECKO) {
tag1 = goog.dom.TagName.SPAN;
tag2 = goog.dom.TagName.BR;
}
var parent = goog.dom.createDom(goog.dom.TagName.DIV);
root.appendChild(parent);
parent.style.fontSize = '2em';
parent.style.display = 'none';
if (goog.userAgent.IE || goog.userAgent.GECKO) {
parent.appendChild(goog.dom.createTextNode('NonWebKitText'));
}
if (tag1) {
var e1 = goog.dom.createDom(tag1);
parent.appendChild(e1);
parent = e1;
}
if (tag2) {
parent.appendChild(goog.dom.createDom(tag2));
}
parent.appendChild(goog.dom.createTextNode('Text'));
if (goog.userAgent.WEBKIT) {
root.firstChild.appendChild(goog.dom.createTextNode('WebKitText'));
}
}
function testAssertHtmlMatches() {
setUpAssertHtmlMatches();
helper.assertHtmlMatches('<div style="display: none; font-size: 2em">' +
'[[IE GECKO]]NonWebKitText<div class="IE"><p class="WEBKIT">' +
'<span class="GECKO"><br class="GECKO WEBKIT">Text</span></p></div>' +
'</div>[[WEBKIT]]WebKitText');
}
function testAssertHtmlMismatchText() {
setUpAssertHtmlMatches();
var e = assertThrows('Should fail due to mismatched text', function() {
helper.assertHtmlMatches('<div style="display: none; font-size: 2em">' +
'[[IE GECKO]]NonWebKitText<div class="IE"><p class="WEBKIT">' +
'<span class="GECKO"><br class="GECKO WEBKIT">Bad</span></p></div>' +
'</div>[[WEBKIT]]Extra');
});
assertContains('Text should match', e.message);
}
function testAssertHtmlMismatchTag() {
setUpAssertHtmlMatches();
var e = assertThrows('Should fail due to mismatched tag', function() {
helper.assertHtmlMatches('<span style="display: none; font-size: 2em">' +
'[[IE GECKO]]NonWebKitText<div class="IE"><p class="WEBKIT">' +
'<span class="GECKO"><br class="GECKO WEBKIT">Text</span></p></div>' +
'</span>[[WEBKIT]]Extra');
});
assertContains('Tag names should match', e.message);
}
function testAssertHtmlMismatchStyle() {
setUpAssertHtmlMatches();
var e = assertThrows('Should fail due to mismatched style', function() {
helper.assertHtmlMatches('<div style="display: none; font-size: 3em">' +
'[[IE GECKO]]NonWebKitText<div class="IE"><p class="WEBKIT">' +
'<span class="GECKO"><br class="GECKO WEBKIT">Text</span></p></div>' +
'</div>[[WEBKIT]]Extra');
});
assertContains('Should have same styles', e.message);
}
function testAssertHtmlMismatchOptionalText() {
setUpAssertHtmlMatches();
var e = assertThrows('Should fail due to mismatched style', function() {
helper.assertHtmlMatches('<div style="display: none; font-size: 2em">' +
'[[IE GECKO]]Bad<div class="IE"><p class="WEBKIT">' +
'<span class="GECKO"><br class="GECKO WEBKIT">Text</span></p></div>' +
'</div>[[WEBKIT]]Bad');
});
assertContains('Text should match', e.message);
}
</script>
</body>
</html>
<!--
Copyright 2008 The Closure Library Authors. All Rights Reserved.
Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
|
src/deps/db/docs/api_reference/TCL/tclapi.html | mxrrow/zaicoin | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Chapter 1. Berkeley DB Tcl APIs</title>
<link rel="stylesheet" href="apiReference.css" type="text/css" />
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
<link rel="start" href="index.html" title="Berkeley DB TCL API Reference" />
<link rel="up" href="index.html" title="Berkeley DB TCL API Reference" />
<link rel="prev" href="preface.html" title="Preface" />
<link rel="next" href="db_close.html" title="db close" />
</head>
<body>
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr>
<th colspan="3" align="center">Chapter 1.
Berkeley DB Tcl APIs
</th>
</tr>
<tr>
<td width="20%" align="left"><a accesskey="p" href="preface.html">Prev</a> </td>
<th width="60%" align="center"> </th>
<td width="20%" align="right"> <a accesskey="n" href="db_close.html">Next</a></td>
</tr>
</table>
<hr />
</div>
<div class="chapter" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title"><a id="tclapi"></a>Chapter 1.
Berkeley DB Tcl APIs
</h2>
</div>
</div>
</div>
<p>
This book documents the Tcl APIs that are available for
working with Berkeley DB databases. This book assumes you
have some familiarity with Berkeley DB.
</p>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="tcllist"></a>Tcl Methods</h2>
</div>
</div>
</div>
<div class="navtable">
<table border="1" width="80%">
<thead>
<tr>
<th>Database Methods</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a class="xref" href="db_close.html" title="db close"><span class="emphasis"><em>db</em></span> close</a>
</td>
<td>Close a database</td>
</tr>
<tr>
<td>
<a class="xref" href="db_count.html" title="db count"><span class="emphasis"><em>db</em></span> count</a>
</td>
<td>Return a count of the key's data items</td>
</tr>
<tr>
<td>
<a class="xref" href="db_del.html" title="db del"><span class="emphasis"><em>db</em></span> del</a>
</td>
<td>Delete items from the database</td>
</tr>
<tr>
<td>
<a class="xref" href="db_get.html" title="db get"><span class="emphasis"><em>db</em></span> get</a>
</td>
<td>Get items from a database</td>
</tr>
<tr>
<td>
<a class="xref" href="db_get_join.html" title="db get_join"><span class="emphasis"><em>db</em></span> get_join</a>
</td>
<td>Get items from a database join</td>
</tr>
<tr>
<td>
<a class="xref" href="db_get_type.html" title="db get_type"><span class="emphasis"><em>db</em></span> get_type</a>
</td>
<td>Return the database type</td>
</tr>
<tr>
<td>
<a class="xref" href="db_is_byteswapped.html" title="db is_byteswapped"><span class="emphasis"><em>db</em></span> is_byteswapped</a>
</td>
<td>Return if the underlying database is in host order</td>
</tr>
<tr>
<td>
<a class="xref" href="db_open.html" title="berkdb open">berkdb open</a>
</td>
<td>Create and open a database handle</td>
</tr>
<tr>
<td>
<a class="xref" href="db_put.html" title="db put"><span class="emphasis"><em>db</em></span> put</a>
</td>
<td>Store items into a database</td>
</tr>
<tr>
<td>
<a class="xref" href="db_remove.html" title="berkdb dbremove">berkdb dbremove</a>
</td>
<td>Remove a database</td>
</tr>
<tr>
<td>
<a class="xref" href="db_rename.html" title="berkdb dbrename">berkdb dbrename</a>
</td>
<td>Rename a database</td>
</tr>
<tr>
<td>
<a class="xref" href="db_stat.html" title="db stat"><span class="emphasis"><em>db</em></span> stat</a>
</td>
<td>Return database statistics</td>
</tr>
<tr>
<td>
<a class="xref" href="db_sync.html" title="db sync"><span class="emphasis"><em>db</em></span> sync</a>
</td>
<td>Flush a database to stable storage</td>
</tr>
<tr>
<td>
<a class="xref" href="db_truncate.html" title="db truncate"><span class="emphasis"><em>db</em></span> truncate</a>
</td>
<td>Truncate a database</td>
</tr>
<tr>
<td>
<a class="xref" href="version.html" title="berkdb version">berkdb version</a>
</td>
<td>Return version information</td>
</tr>
<tr>
<td colspan="2">
<span class="bold">
<strong>Cursor Methods</strong>
</span>
</td>
</tr>
<tr>
<td>
<a class="xref" href="db_cursor.html" title="db cursor"><span class="emphasis"><em>db</em></span> cursor</a>
</td>
<td>Open a cursor in the database</td>
</tr>
<tr>
<td>
<a class="xref" href="db_join.html" title="db join"><span class="emphasis"><em>db</em></span> join</a>
</td>
<td>Perform a database join on cursors</td>
</tr>
<tr>
<td>
<a class="xref" href="dbc_close.html" title="dbc close"><span class="emphasis"><em>dbc</em></span> close</a>
</td>
<td>Close a cursor</td>
</tr>
<tr>
<td>
<a class="xref" href="dbc_del.html" title="dbc del"><span class="emphasis"><em>dbc</em></span> del</a>
</td>
<td>Delete by cursor</td>
</tr>
<tr>
<td>
<a class="xref" href="dbc_dup.html" title="dbc dup"><span class="emphasis"><em>dbc</em></span> dup</a>
</td>
<td>Duplicate a cursor</td>
</tr>
<tr>
<td>
<a class="xref" href="dbc_get.html" title="dbc get"><span class="emphasis"><em>dbc</em></span> get</a>
</td>
<td>Retrieve by cursor</td>
</tr>
<tr>
<td>
<a class="xref" href="dbc_put.html" title="dbc put"><span class="emphasis"><em>dbc</em></span> put</a>
</td>
<td>Store by cursor</td>
</tr>
<tr>
<td colspan="2">
<span class="bold">
<strong>Environment Methods</strong>
</span>
</td>
</tr>
<tr>
<td>
<a class="xref" href="env_close.html" title="env close"><span class="emphasis"><em>env</em></span> close</a>
</td>
<td>Close an environment</td>
</tr>
<tr>
<td>
<a class="xref" href="env_dbremove.html" title="env dbremove"><span class="emphasis"><em>env</em></span> dbremove</a>
</td>
<td>Remove an environment</td>
</tr>
<tr>
<td>
<a class="xref" href="env_dbrename.html" title="env dbrename"><span class="emphasis"><em>env</em></span> dbrename</a>
</td>
<td>Rename a database</td>
</tr>
<tr>
<td>
<a class="xref" href="env_open.html" title="berkdb env">berkdb env</a>
</td>
<td>Create and open an environment handle</td>
</tr>
<tr>
<td>
<a class="xref" href="env_remove.html" title="berkdb envremove">berkdb envremove</a>
</td>
<td>Remove an environment handle</td>
</tr>
<tr>
<td colspan="2">
<span class="bold">
<strong>Transaction Methods</strong>
</span>
</td>
</tr>
<tr>
<td>
<a class="xref" href="txn.html" title="env txn"><span class="emphasis"><em>env</em></span> txn</a>
</td>
<td>Begin a transaction</td>
</tr>
<tr>
<td>
<a class="xref" href="txn_abort.html" title="txn abort"><span class="emphasis"><em>txn</em></span> abort</a>
</td>
<td>Abort a transaction</td>
</tr>
<tr>
<td>
<a class="xref" href="txn_checkpoint.html" title="env txn_checkpoint"><span class="emphasis"><em>env</em></span> txn_checkpoint</a>
</td>
<td>Checkpoint the environment</td>
</tr>
<tr>
<td>
<a class="xref" href="txn_commit.html" title="txn commit"><span class="emphasis"><em>txn</em></span> commit</a>
</td>
<td>Commit a transaction</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="preface.html">Prev</a> </td>
<td width="20%" align="center"> </td>
<td width="40%" align="right"> <a accesskey="n" href="db_close.html">Next</a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top">Preface </td>
<td width="20%" align="center">
<a accesskey="h" href="index.html">Home</a>
</td>
<td width="40%" align="right" valign="top"> <span class="emphasis"><em>db</em></span> close</td>
</tr>
</table>
</div>
</body>
</html>
|
wp-content/plugins/dojo/dojox/charting/resources/Legend.css | hariomkumarmth/champaranexpress | .dojoxLegendNode {
background-color:#F7F7F7;
border:1px solid #CCCCCC;
margin:0;
padding:0;
}
.dojoxLegendNode td{
padding: 6px 4px 6px 6px;
}
.dojoxLegendIcon {
padding: 0px;
margin: 0 2px 0 4px;
}
.dojoxLegendIcon div{
float: left;
}
.dj_ie .dojoxLegendNode td{
padding: 5px;
}
.dj_ie .dojoxLegendIcon {
padding: 0px;
margin: 0 2px 0 5px;
vertical-align: middle;
}
|
www/test/symbols.html | lepermessiah57/dompdf | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
"http://www.w3.org/TR/REC-html40/strict.dtd">
<html lang=en>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>HTML 4.0 Entities for Symbols and Greek Letters</title>
<link rev=Made href="mailto:liam@htmlhelp.com">
<link rel=Start href="../index.html">
<link rel=Prev href="latin1.html">
<link rel=Next href="special.html">
<style>
body {
background: white;
color: black;
font-family: verdana;
}
h1 {
color: #c33;
background: none;
font-weight: bold;
text-align: center;
}
h2 {
color: #00008b;
background: none;
font-weight: bold;
}
h3 {
color: #006400;
background: none;
margin-left: 4%;
margin-right: 4%;
font-weight: bold;
}
h4 {
margin-left: 6%;
margin-right: 6%;
font-weight: bold;
}
h5 {
margin-left: 6%;
margin-right: 6%;
font-weight: bold;
}
ul, ol, dl, p {
margin-left: 6%;
margin-right: 6%;
}
ul ul, table ol, table ul, dl ol, dl ul {
margin-left: 1.2em;
margin-right: 1%;
padding-left: 0;
}
pre {
margin-left: 10%;
white-space: pre;
}
table caption {
font-size: larger;
font-weight: bolder;
}
table p, table dl, ol p, ul p, dl p, blockquote p, .note p, .note ul, .note ol, .note dl, li pre, dd pre {
margin-left: 0;
margin-right: 0;
}
p.top {
margin-left: 1%;
margin-right: 1%;
}
blockquote {
margin-left: 8%;
margin-right: 8%;
border: thin ridge #dc143c;
}
blockquote pre {
margin-left: 1%;
margin-right: 1%;
}
dt a {
font-weight: bold;
margin-top: .8em;
}
a:link {
color: #00f;
background: none;;
}
a:visited {
color: #800080;
background: none;;
}
a:active {
color: green;
background: #FFD700;
}
.html {
color: #000080;
background: none;
}
.css {
color: #800000;
background: none;
}
.javascript {
color: #008000;
background: none;
}
.example { margin-left: 10% }
dfn {
font-style: normal;
font-weight: bolder;
}
var sub { font-style: normal }
.note {
font-size: 85%;
margin-left: 10%;
}
.SMA {
color: fuchsia;
background: none;
font-family: Kids, "Comic Sans MS", Jester;
}
.oops {
font-family: Jester, "Comic Sans MS";
}
.author {
font-style: italic;
}
.copyright {
font-size: smaller;
text-align: right;
clear: right;
}
.toolbar {
text-align: center;
}
.toolbar IMG {
float: right;
}
.error {
color: #DC143C;
background: none;
text-decoration: none;
}
.warning {
color: #FF4500;
background: none;
text-decoration: none;
}
.error strong {
color: #DC143C;
background: #FFD700;
text-decoration: none;
}
.warning strong {
color: #FF4500;
background: #FFD700;
text-decoration: none;
}
.warning a:link, .warning a:visited, .warning a:active {
color: #FF4500;
background: none;
text-decoration: underline;
}
.error a:link, .error a:visited, .error a:active {
color: #DC143C;
background: none;
text-decoration: underline;
}
.error strong a:link, .error strong a:visited, .error strong a:active {
color: #DC143C;
background: #FFD700;
}
.warning strong a:link, .warning strong a:visited, .warning strong a:active {
color: #FF4500;
background: #FFD700;
}
colgroup.entity { text-align: center }
.default { text-decoration: underline; font-style: normal }
.required { font-weight: bold }
td li.transitional, .elements li.transitional {
font-weight: lighter;
color: #696969;
background: none;
}
td li.frameset, .elements li.frameset {
font-weight: lighter;
color: #808080;
background: none;
}
.footer, .checkedDocument {
margin-top: 2em;
padding-top: 1em;
border-top: solid thin black;
}
strong.legal {
font-weight: normal;
text-transform: uppercase;
}
@media print {
input#toggler, .toolbar { display: none }
}
table { border-collapse: collapse; width: 100%; }
td { border: 0.5pt solid black; }
</style>
<meta name="author" content="Liam Quinn">
<meta name="description" content="A table of the HTML 4.0 entities for symbols and Greek letters.">
<meta name="keywords" content="symbols, mathematical symbols, math, Greek letters, alpha, beta, Unicode, entities, characters, character set, HTML, HyperText Markup Language, HTML 4.0, HTML4, character entity reference, decimal, hexadecimal, hex, browser test, WDG, Web Design Group">
<body>
<h1>Entities for Symbols and Greek Letters</h1>
<p>The following table gives the character entity reference, decimal character reference, and hexadecimal character reference for symbols and Greek letters, as well as the rendering of each in your browser. <a href="http://www.unicode.org/charts/">Glyphs</a> of the characters are available at the <a href="http://www.unicode.org/">Unicode Consortium</a>.</p>
<p>Browser support for these entities is generally quite poor, but recent browsers support some of the character entity references and decimal character references.</p>
<table>
<thead>
<tr>
<th scope=col rowspan=2>Character</th>
<th scope=col rowspan=2>Entity</th>
<th scope=col rowspan=2>Decimal</th>
<th scope=col rowspan=2>Hex</th>
<th scope=colgroup colspan=3>Rendering in Your Browser</th>
</tr>
<tr>
<th scope=col>Entity</th>
<th scope=col>Decimal</th>
<th scope=col>Hex</th>
</tr>
</thead>
<tbody>
<tr>
<td scope=row>Latin small f with hook = function = florin</td>
<td>&fnof;</td>
<td>&#402;</td>
<td>&#x192;</td>
<td>ƒ</td>
<td>ƒ</td>
<td>ƒ</td>
</tr>
<tr>
<td scope=row>Greek capital letter alpha</td>
<td>&Alpha;</td>
<td>&#913;</td>
<td>&#x391;</td>
<td>Α</td>
<td>Α</td>
<td>Α</td>
</tr>
<tr>
<td scope=row>Greek capital letter beta</td>
<td>&Beta;</td>
<td>&#914;</td>
<td>&#x392;</td>
<td>Β</td>
<td>Β</td>
<td>Β</td>
</tr>
<tr>
<td scope=row>Greek capital letter gamma</td>
<td>&Gamma;</td>
<td>&#915;</td>
<td>&#x393;</td>
<td>Γ</td>
<td>Γ</td>
<td>Γ</td>
</tr>
<tr>
<td scope=row>Greek capital letter delta</td>
<td>&Delta;</td>
<td>&#916;</td>
<td>&#x394;</td>
<td>Δ</td>
<td>Δ</td>
<td>Δ</td>
</tr>
<tr>
<td scope=row>Greek capital letter epsilon</td>
<td>&Epsilon;</td>
<td>&#917;</td>
<td>&#x395;</td>
<td>Ε</td>
<td>Ε</td>
<td>Ε</td>
</tr>
<tr>
<td scope=row>Greek capital letter zeta</td>
<td>&Zeta;</td>
<td>&#918;</td>
<td>&#x396;</td>
<td>Ζ</td>
<td>Ζ</td>
<td>Ζ</td>
</tr>
<tr>
<td scope=row>Greek capital letter eta</td>
<td>&Eta;</td>
<td>&#919;</td>
<td>&#x397;</td>
<td>Η</td>
<td>Η</td>
<td>Η</td>
</tr>
<tr>
<td scope=row>Greek capital letter theta</td>
<td>&Theta;</td>
<td>&#920;</td>
<td>&#x398;</td>
<td>Θ</td>
<td>Θ</td>
<td>Θ</td>
</tr>
<tr>
<td scope=row>Greek capital letter iota</td>
<td>&Iota;</td>
<td>&#921;</td>
<td>&#x399;</td>
<td>Ι</td>
<td>Ι</td>
<td>Ι</td>
</tr>
<tr>
<td scope=row>Greek capital letter kappa</td>
<td>&Kappa;</td>
<td>&#922;</td>
<td>&#x39A;</td>
<td>Κ</td>
<td>Κ</td>
<td>Κ</td>
</tr>
<tr>
<td scope=row>Greek capital letter lambda</td>
<td>&Lambda;</td>
<td>&#923;</td>
<td>&#x39B;</td>
<td>Λ</td>
<td>Λ</td>
<td>Λ</td>
</tr>
<tr>
<td scope=row>Greek capital letter mu</td>
<td>&Mu;</td>
<td>&#924;</td>
<td>&#x39C;</td>
<td>Μ</td>
<td>Μ</td>
<td>Μ</td>
</tr>
<tr>
<td scope=row>Greek capital letter nu</td>
<td>&Nu;</td>
<td>&#925;</td>
<td>&#x39D;</td>
<td>Ν</td>
<td>Ν</td>
<td>Ν</td>
</tr>
<tr>
<td scope=row>Greek capital letter xi</td>
<td>&Xi;</td>
<td>&#926;</td>
<td>&#x39E;</td>
<td>Ξ</td>
<td>Ξ</td>
<td>Ξ</td>
</tr>
<tr>
<td scope=row>Greek capital letter omicron</td>
<td>&Omicron;</td>
<td>&#927;</td>
<td>&#x39F;</td>
<td>Ο</td>
<td>Ο</td>
<td>Ο</td>
</tr>
<tr>
<td scope=row>Greek capital letter pi</td>
<td>&Pi;</td>
<td>&#928;</td>
<td>&#x3A0;</td>
<td>Π</td>
<td>Π</td>
<td>Π</td>
</tr>
<tr>
<td scope=row>Greek capital letter rho</td>
<td>&Rho;</td>
<td>&#929;</td>
<td>&#x3A1;</td>
<td>Ρ</td>
<td>Ρ</td>
<td>Ρ</td>
</tr>
<tr>
<td scope=row>Greek capital letter sigma</td>
<td>&Sigma;</td>
<td>&#931;</td>
<td>&#x3A3;</td>
<td>Σ</td>
<td>Σ</td>
<td>Σ</td>
</tr>
<tr>
<td scope=row>Greek capital letter tau</td>
<td>&Tau;</td>
<td>&#932;</td>
<td>&#x3A4;</td>
<td>Τ</td>
<td>Τ</td>
<td>Τ</td>
</tr>
<tr>
<td scope=row>Greek capital letter upsilon</td>
<td>&Upsilon;</td>
<td>&#933;</td>
<td>&#x3A5;</td>
<td>Υ</td>
<td>Υ</td>
<td>Υ</td>
</tr>
<tr>
<td scope=row>Greek capital letter phi</td>
<td>&Phi;</td>
<td>&#934;</td>
<td>&#x3A6;</td>
<td>Φ</td>
<td>Φ</td>
<td>Φ</td>
</tr>
<tr>
<td scope=row>Greek capital letter chi</td>
<td>&Chi;</td>
<td>&#935;</td>
<td>&#x3A7;</td>
<td>Χ</td>
<td>Χ</td>
<td>Χ</td>
</tr>
<tr>
<td scope=row>Greek capital letter psi</td>
<td>&Psi;</td>
<td>&#936;</td>
<td>&#x3A8;</td>
<td>Ψ</td>
<td>Ψ</td>
<td>Ψ</td>
</tr>
<tr>
<td scope=row>Greek capital letter omega</td>
<td>&Omega;</td>
<td>&#937;</td>
<td>&#x3A9;</td>
<td>Ω</td>
<td>Ω</td>
<td>Ω</td>
</tr>
<tr>
<td scope=row>Greek small letter alpha</td>
<td>&alpha;</td>
<td>&#945;</td>
<td>&#x3B1;</td>
<td>α</td>
<td>α</td>
<td>α</td>
</tr>
<tr>
<td scope=row>Greek small letter beta</td>
<td>&beta;</td>
<td>&#946;</td>
<td>&#x3B2;</td>
<td>β</td>
<td>β</td>
<td>β</td>
</tr>
<tr>
<td scope=row>Greek small letter gamma</td>
<td>&gamma;</td>
<td>&#947;</td>
<td>&#x3B3;</td>
<td>γ</td>
<td>γ</td>
<td>γ</td>
</tr>
<tr>
<td scope=row>Greek small letter delta</td>
<td>&delta;</td>
<td>&#948;</td>
<td>&#x3B4;</td>
<td>δ</td>
<td>δ</td>
<td>δ</td>
</tr>
<tr>
<td scope=row>Greek small letter epsilon</td>
<td>&epsilon;</td>
<td>&#949;</td>
<td>&#x3B5;</td>
<td>ε</td>
<td>ε</td>
<td>ε</td>
</tr>
<tr>
<td scope=row>Greek small letter zeta</td>
<td>&zeta;</td>
<td>&#950;</td>
<td>&#x3B6;</td>
<td>ζ</td>
<td>ζ</td>
<td>ζ</td>
</tr>
<tr>
<td scope=row>Greek small letter eta</td>
<td>&eta;</td>
<td>&#951;</td>
<td>&#x3B7;</td>
<td>η</td>
<td>η</td>
<td>η</td>
</tr>
<tr>
<td scope=row>Greek small letter theta</td>
<td>&theta;</td>
<td>&#952;</td>
<td>&#x3B8;</td>
<td>θ</td>
<td>θ</td>
<td>θ</td>
</tr>
<tr>
<td scope=row>Greek small letter iota</td>
<td>&iota;</td>
<td>&#953;</td>
<td>&#x3B9;</td>
<td>ι</td>
<td>ι</td>
<td>ι</td>
</tr>
<tr>
<td scope=row>Greek small letter kappa</td>
<td>&kappa;</td>
<td>&#954;</td>
<td>&#x3BA;</td>
<td>κ</td>
<td>κ</td>
<td>κ</td>
</tr>
<tr>
<td scope=row>Greek small letter lambda</td>
<td>&lambda;</td>
<td>&#955;</td>
<td>&#x3BB;</td>
<td>λ</td>
<td>λ</td>
<td>λ</td>
</tr>
<tr>
<td scope=row>Greek small letter mu</td>
<td>&mu;</td>
<td>&#956;</td>
<td>&#x3BC;</td>
<td>μ</td>
<td>μ</td>
<td>μ</td>
</tr>
<tr>
<td scope=row>Greek small letter nu</td>
<td>&nu;</td>
<td>&#957;</td>
<td>&#x3BD;</td>
<td>ν</td>
<td>ν</td>
<td>ν</td>
</tr>
<tr>
<td scope=row>Greek small letter xi</td>
<td>&xi;</td>
<td>&#958;</td>
<td>&#x3BE;</td>
<td>ξ</td>
<td>ξ</td>
<td>ξ</td>
</tr>
<tr>
<td scope=row>Greek small letter omicron</td>
<td>&omicron;</td>
<td>&#959;</td>
<td>&#x3BF;</td>
<td>ο</td>
<td>ο</td>
<td>ο</td>
</tr>
<tr>
<td scope=row>Greek small letter pi</td>
<td>&pi;</td>
<td>&#960;</td>
<td>&#x3C0;</td>
<td>π</td>
<td>π</td>
<td>π</td>
</tr>
<tr>
<td scope=row>Greek small letter rho</td>
<td>&rho;</td>
<td>&#961;</td>
<td>&#x3C1;</td>
<td>ρ</td>
<td>ρ</td>
<td>ρ</td>
</tr>
<tr>
<td scope=row>Greek small letter final sigma</td>
<td>&sigmaf;</td>
<td>&#962;</td>
<td>&#x3C2;</td>
<td>ς</td>
<td>ς</td>
<td>ς</td>
</tr>
<tr>
<td scope=row>Greek small letter sigma</td>
<td>&sigma;</td>
<td>&#963;</td>
<td>&#x3C3;</td>
<td>σ</td>
<td>σ</td>
<td>σ</td>
</tr>
<tr>
<td scope=row>Greek small letter tau</td>
<td>&tau;</td>
<td>&#964;</td>
<td>&#x3C4;</td>
<td>τ</td>
<td>τ</td>
<td>τ</td>
</tr>
<tr>
<td scope=row>Greek small letter upsilon</td>
<td>&upsilon;</td>
<td>&#965;</td>
<td>&#x3C5;</td>
<td>υ</td>
<td>υ</td>
<td>υ</td>
</tr>
<tr>
<td scope=row>Greek small letter phi</td>
<td>&phi;</td>
<td>&#966;</td>
<td>&#x3C6;</td>
<td>φ</td>
<td>φ</td>
<td>φ</td>
</tr>
<tr>
<td scope=row>Greek small letter chi</td>
<td>&chi;</td>
<td>&#967;</td>
<td>&#x3C7;</td>
<td>χ</td>
<td>χ</td>
<td>χ</td>
</tr>
<tr>
<td scope=row>Greek small letter psi</td>
<td>&psi;</td>
<td>&#968;</td>
<td>&#x3C8;</td>
<td>ψ</td>
<td>ψ</td>
<td>ψ</td>
</tr>
<tr>
<td scope=row>Greek small letter omega</td>
<td>&omega;</td>
<td>&#969;</td>
<td>&#x3C9;</td>
<td>ω</td>
<td>ω</td>
<td>ω</td>
</tr>
<tr>
<td scope=row>Greek small letter theta symbol</td>
<td>&thetasym;</td>
<td>&#977;</td>
<td>&#x3D1;</td>
<td>ϑ</td>
<td>ϑ</td>
<td>ϑ</td>
</tr>
<tr>
<td scope=row>Greek upsilon with hook symbol</td>
<td>&upsih;</td>
<td>&#978;</td>
<td>&#x3D2;</td>
<td>ϒ</td>
<td>ϒ</td>
<td>ϒ</td>
</tr>
<tr>
<td scope=row>Greek pi symbol</td>
<td>&piv;</td>
<td>&#982;</td>
<td>&#x3D6;</td>
<td>ϖ</td>
<td>ϖ</td>
<td>ϖ</td>
</tr>
<tr>
<td scope=row>bullet = black small circle</td>
<td>&bull;</td>
<td>&#8226;</td>
<td>&#x2022;</td>
<td>•</td>
<td>•</td>
<td>•</td>
</tr>
<tr>
<td scope=row>horizontal ellipsis = three dot leader</td>
<td>&hellip;</td>
<td>&#8230;</td>
<td>&#x2026;</td>
<td>…</td>
<td>…</td>
<td>…</td>
</tr>
<tr>
<td scope=row>prime = minutes = feet</td>
<td>&prime;</td>
<td>&#8242;</td>
<td>&#x2032;</td>
<td>′</td>
<td>′</td>
<td>′</td>
</tr>
<tr>
<td scope=row>double prime = seconds = inches</td>
<td>&Prime;</td>
<td>&#8243;</td>
<td>&#x2033;</td>
<td>″</td>
<td>″</td>
<td>″</td>
</tr>
<tr>
<td scope=row>overline = spacing overscore</td>
<td>&oline;</td>
<td>&#8254;</td>
<td>&#x203E;</td>
<td>‾</td>
<td>‾</td>
<td>‾</td>
</tr>
<tr>
<td scope=row>fraction slash</td>
<td>&frasl;</td>
<td>&#8260;</td>
<td>&#x2044;</td>
<td>⁄</td>
<td>⁄</td>
<td>⁄</td>
</tr>
<tr>
<td scope=row>script capital P = power set = Weierstrass p</td>
<td>&weierp;</td>
<td>&#8472;</td>
<td>&#x2118;</td>
<td>℘</td>
<td>℘</td>
<td>℘</td>
</tr>
<tr>
<td scope=row>blackletter capital I = imaginary part</td>
<td>&image;</td>
<td>&#8465;</td>
<td>&#x2111;</td>
<td>ℑ</td>
<td>ℑ</td>
<td>ℑ</td>
</tr>
<tr>
<td scope=row>blackletter capital R = real part symbol</td>
<td>&real;</td>
<td>&#8476;</td>
<td>&#x211C;</td>
<td>ℜ</td>
<td>ℜ</td>
<td>ℜ</td>
</tr>
<tr>
<td scope=row>trade mark sign</td>
<td>&trade;</td>
<td>&#8482;</td>
<td>&#x2122;</td>
<td>™</td>
<td>™</td>
<td>™</td>
</tr>
<tr>
<td scope=row>alef symbol = first transfinite cardinal</td>
<td>&alefsym;</td>
<td>&#8501;</td>
<td>&#x2135;</td>
<td>ℵ</td>
<td>ℵ</td>
<td>ℵ</td>
</tr>
<tr>
<td scope=row>leftwards arrow</td>
<td>&larr;</td>
<td>&#8592;</td>
<td>&#x2190;</td>
<td>←</td>
<td>←</td>
<td>←</td>
</tr>
<tr>
<td scope=row>upwards arrow</td>
<td>&uarr;</td>
<td>&#8593;</td>
<td>&#x2191;</td>
<td>↑</td>
<td>↑</td>
<td>↑</td>
</tr>
<tr>
<td scope=row>rightwards arrow</td>
<td>&rarr;</td>
<td>&#8594;</td>
<td>&#x2192;</td>
<td>→</td>
<td>→</td>
<td>→</td>
</tr>
<tr>
<td scope=row>downwards arrow</td>
<td>&darr;</td>
<td>&#8595;</td>
<td>&#x2193;</td>
<td>↓</td>
<td>↓</td>
<td>↓</td>
</tr>
<tr>
<td scope=row>left right arrow</td>
<td>&harr;</td>
<td>&#8596;</td>
<td>&#x2194;</td>
<td>↔</td>
<td>↔</td>
<td>↔</td>
</tr>
<tr>
<td scope=row>downwards arrow with corner leftwards = carriage return</td>
<td>&crarr;</td>
<td>&#8629;</td>
<td>&#x21B5;</td>
<td>↵</td>
<td>↵</td>
<td>↵</td>
</tr>
<tr>
<td scope=row>leftwards double arrow</td>
<td>&lArr;</td>
<td>&#8656;</td>
<td>&#x21D0;</td>
<td>⇐</td>
<td>⇐</td>
<td>⇐</td>
</tr>
<tr>
<td scope=row>upwards double arrow</td>
<td>&uArr;</td>
<td>&#8657;</td>
<td>&#x21D1;</td>
<td>⇑</td>
<td>⇑</td>
<td>⇑</td>
</tr>
<tr>
<td scope=row>rightwards double arrow</td>
<td>&rArr;</td>
<td>&#8658;</td>
<td>&#x21D2;</td>
<td>⇒</td>
<td>⇒</td>
<td>⇒</td>
</tr>
<tr>
<td scope=row>downwards double arrow</td>
<td>&dArr;</td>
<td>&#8659;</td>
<td>&#x21D3;</td>
<td>⇓</td>
<td>⇓</td>
<td>⇓</td>
</tr>
<tr>
<td scope=row>left right double arrow</td>
<td>&hArr;</td>
<td>&#8660;</td>
<td>&#x21D4;</td>
<td>⇔</td>
<td>⇔</td>
<td>⇔</td>
</tr>
<tr>
<td scope=row>for all</td>
<td>&forall;</td>
<td>&#8704;</td>
<td>&#x2200;</td>
<td>∀</td>
<td>∀</td>
<td>∀</td>
</tr>
<tr>
<td scope=row>partial differential</td>
<td>&part;</td>
<td>&#8706;</td>
<td>&#x2202;</td>
<td>∂</td>
<td>∂</td>
<td>∂</td>
</tr>
<tr>
<td scope=row>there exists</td>
<td>&exist;</td>
<td>&#8707;</td>
<td>&#x2203;</td>
<td>∃</td>
<td>∃</td>
<td>∃</td>
</tr>
<tr>
<td scope=row>empty set = null set = diameter</td>
<td>&empty;</td>
<td>&#8709;</td>
<td>&#x2205;</td>
<td>∅</td>
<td>∅</td>
<td>∅</td>
</tr>
<tr>
<td scope=row>nabla = backward difference</td>
<td>&nabla;</td>
<td>&#8711;</td>
<td>&#x2207;</td>
<td>∇</td>
<td>∇</td>
<td>∇</td>
</tr>
<tr>
<td scope=row>element of</td>
<td>&isin;</td>
<td>&#8712;</td>
<td>&#x2208;</td>
<td>∈</td>
<td>∈</td>
<td>∈</td>
</tr>
<tr>
<td scope=row>not an element of</td>
<td>&notin;</td>
<td>&#8713;</td>
<td>&#x2209;</td>
<td>∉</td>
<td>∉</td>
<td>∉</td>
</tr>
<tr>
<td scope=row>contains as member</td>
<td>&ni;</td>
<td>&#8715;</td>
<td>&#x220B;</td>
<td>∋</td>
<td>∋</td>
<td>∋</td>
</tr>
<tr>
<td scope=row>n-ary product = product sign</td>
<td>&prod;</td>
<td>&#8719;</td>
<td>&#x220F;</td>
<td>∏</td>
<td>∏</td>
<td>∏</td>
</tr>
<tr>
<td scope=row>n-ary sumation</td>
<td>&sum;</td>
<td>&#8721;</td>
<td>&#x2211;</td>
<td>∑</td>
<td>∑</td>
<td>∑</td>
</tr>
<tr>
<td scope=row>minus sign</td>
<td>&minus;</td>
<td>&#8722;</td>
<td>&#x2212;</td>
<td>−</td>
<td>−</td>
<td>−</td>
</tr>
<tr>
<td scope=row>asterisk operator</td>
<td>&lowast;</td>
<td>&#8727;</td>
<td>&#x2217;</td>
<td>∗</td>
<td>∗</td>
<td>∗</td>
</tr>
<tr>
<td scope=row>square root = radical sign</td>
<td>&radic;</td>
<td>&#8730;</td>
<td>&#x221A;</td>
<td>√</td>
<td>√</td>
<td>√</td>
</tr>
<tr>
<td scope=row>proportional to</td>
<td>&prop;</td>
<td>&#8733;</td>
<td>&#x221D;</td>
<td>∝</td>
<td>∝</td>
<td>∝</td>
</tr>
<tr>
<td scope=row>infinity</td>
<td>&infin;</td>
<td>&#8734;</td>
<td>&#x221E;</td>
<td>∞</td>
<td>∞</td>
<td>∞</td>
</tr>
<tr>
<td scope=row>angle</td>
<td>&ang;</td>
<td>&#8736;</td>
<td>&#x2220;</td>
<td>∠</td>
<td>∠</td>
<td>∠</td>
</tr>
<tr>
<td scope=row>logical and = wedge</td>
<td>&and;</td>
<td>&#8743;</td>
<td>&#x2227;</td>
<td>∧</td>
<td>∧</td>
<td>∧</td>
</tr>
<tr>
<td scope=row>logical or = vee</td>
<td>&or;</td>
<td>&#8744;</td>
<td>&#x2228;</td>
<td>∨</td>
<td>∨</td>
<td>∨</td>
</tr>
<tr>
<td scope=row>intersection = cap</td>
<td>&cap;</td>
<td>&#8745;</td>
<td>&#x2229;</td>
<td>∩</td>
<td>∩</td>
<td>∩</td>
</tr>
<tr>
<td scope=row>union = cup</td>
<td>&cup;</td>
<td>&#8746;</td>
<td>&#x222A;</td>
<td>∪</td>
<td>∪</td>
<td>∪</td>
</tr>
<tr>
<td scope=row>integral</td>
<td>&int;</td>
<td>&#8747;</td>
<td>&#x222B;</td>
<td>∫</td>
<td>∫</td>
<td>∫</td>
</tr>
<tr>
<td scope=row>therefore</td>
<td>&there4;</td>
<td>&#8756;</td>
<td>&#x2234;</td>
<td>∴</td>
<td>∴</td>
<td>∴</td>
</tr>
<tr>
<td scope=row>tilde operator = varies with = similar to</td>
<td>&sim;</td>
<td>&#8764;</td>
<td>&#x223C;</td>
<td>∼</td>
<td>∼</td>
<td>∼</td>
</tr>
<tr>
<td scope=row>approximately equal to</td>
<td>&cong;</td>
<td>&#8773;</td>
<td>&#x2245;</td>
<td>≅</td>
<td>≅</td>
<td>≅</td>
</tr>
<tr>
<td scope=row>almost equal to = asymptotic to</td>
<td>&asymp;</td>
<td>&#8776;</td>
<td>&#x2248;</td>
<td>≈</td>
<td>≈</td>
<td>≈</td>
</tr>
<tr>
<td scope=row>not equal to</td>
<td>&ne;</td>
<td>&#8800;</td>
<td>&#x2260;</td>
<td>≠</td>
<td>≠</td>
<td>≠</td>
</tr>
<tr>
<td scope=row>identical to</td>
<td>&equiv;</td>
<td>&#8801;</td>
<td>&#x2261;</td>
<td>≡</td>
<td>≡</td>
<td>≡</td>
</tr>
<tr>
<td scope=row>less-than or equal to</td>
<td>&le;</td>
<td>&#8804;</td>
<td>&#x2264;</td>
<td>≤</td>
<td>≤</td>
<td>≤</td>
</tr>
<tr>
<td scope=row>greater-than or equal to</td>
<td>&ge;</td>
<td>&#8805;</td>
<td>&#x2265;</td>
<td>≥</td>
<td>≥</td>
<td>≥</td>
</tr>
<tr>
<td scope=row>subset of</td>
<td>&sub;</td>
<td>&#8834;</td>
<td>&#x2282;</td>
<td>⊂</td>
<td>⊂</td>
<td>⊂</td>
</tr>
<tr>
<td scope=row>superset of</td>
<td>&sup;</td>
<td>&#8835;</td>
<td>&#x2283;</td>
<td>⊃</td>
<td>⊃</td>
<td>⊃</td>
</tr>
<tr>
<td scope=row>not a subset of</td>
<td>&nsub;</td>
<td>&#8836;</td>
<td>&#x2284;</td>
<td>⊄</td>
<td>⊄</td>
<td>⊄</td>
</tr>
<tr>
<td scope=row>subset of or equal to</td>
<td>&sube;</td>
<td>&#8838;</td>
<td>&#x2286;</td>
<td>⊆</td>
<td>⊆</td>
<td>⊆</td>
</tr>
<tr>
<td scope=row>superset of or equal to</td>
<td>&supe;</td>
<td>&#8839;</td>
<td>&#x2287;</td>
<td>⊇</td>
<td>⊇</td>
<td>⊇</td>
</tr>
<tr>
<td scope=row>circled plus = direct sum</td>
<td>&oplus;</td>
<td>&#8853;</td>
<td>&#x2295;</td>
<td>⊕</td>
<td>⊕</td>
<td>⊕</td>
</tr>
<tr>
<td scope=row>circled times = vector product</td>
<td>&otimes;</td>
<td>&#8855;</td>
<td>&#x2297;</td>
<td>⊗</td>
<td>⊗</td>
<td>⊗</td>
</tr>
<tr>
<td scope=row>up tack = orthogonal to = perpendicular</td>
<td>&perp;</td>
<td>&#8869;</td>
<td>&#x22A5;</td>
<td>⊥</td>
<td>⊥</td>
<td>⊥</td>
</tr>
<tr>
<td scope=row>dot operator</td>
<td>&sdot;</td>
<td>&#8901;</td>
<td>&#x22C5;</td>
<td>⋅</td>
<td>⋅</td>
<td>⋅</td>
</tr>
<tr>
<td scope=row>left ceiling = APL upstile</td>
<td>&lceil;</td>
<td>&#8968;</td>
<td>&#x2308;</td>
<td>⌈</td>
<td>⌈</td>
<td>⌈</td>
</tr>
<tr>
<td scope=row>right ceiling</td>
<td>&rceil;</td>
<td>&#8969;</td>
<td>&#x2309;</td>
<td>⌉</td>
<td>⌉</td>
<td>⌉</td>
</tr>
<tr>
<td scope=row>left floor = APL downstile</td>
<td>&lfloor;</td>
<td>&#8970;</td>
<td>&#x230A;</td>
<td>⌊</td>
<td>⌊</td>
<td>⌊</td>
</tr>
<tr>
<td scope=row>right floor</td>
<td>&rfloor;</td>
<td>&#8971;</td>
<td>&#x230B;</td>
<td>⌋</td>
<td>⌋</td>
<td>⌋</td>
</tr>
<tr>
<td scope=row>left-pointing angle bracket = bra</td>
<td>&lang;</td>
<td>&#9001;</td>
<td>&#x2329;</td>
<td>⟨</td>
<td>〈</td>
<td>〈</td>
</tr>
<tr>
<td scope=row>right-pointing angle bracket = ket</td>
<td>&rang;</td>
<td>&#9002;</td>
<td>&#x232A;</td>
<td>⟩</td>
<td>〉</td>
<td>〉</td>
</tr>
<tr>
<td scope=row>lozenge</td>
<td>&loz;</td>
<td>&#9674;</td>
<td>&#x25CA;</td>
<td>◊</td>
<td>◊</td>
<td>◊</td>
</tr>
<tr>
<td scope=row>black spade suit</td>
<td>&spades;</td>
<td>&#9824;</td>
<td>&#x2660;</td>
<td>♠</td>
<td>♠</td>
<td>♠</td>
</tr>
<tr>
<td scope=row>black club suit = shamrock</td>
<td>&clubs;</td>
<td>&#9827;</td>
<td>&#x2663;</td>
<td>♣</td>
<td>♣</td>
<td>♣</td>
</tr>
<tr>
<td scope=row>black heart suit = valentine</td>
<td>&hearts;</td>
<td>&#9829;</td>
<td>&#x2665;</td>
<td>♥</td>
<td>♥</td>
<td>♥</td>
</tr>
<tr>
<td scope=row>black diamond suit</td>
<td>&diams;</td>
<td>&#9830;</td>
<td>&#x2666;</td>
<td>♦</td>
<td>♦</td>
<td>♦</td>
</tr>
</tbody>
</table>
<div class=footer>
<address>Maintained by <a href="http://www.htmlhelp.com/%7Eliam/">Liam Quinn</a> <<a href="mailto:liam@htmlhelp.com">liam@htmlhelp.com</a>></address>
<p class=toolbar><a href="../index.html" rel=Start>HTML 4.0 Reference</a> ~ <a href="latin1.html" rel=Prev>Latin-1 Characters</a> ~ <a href="special.html" rel=Next>Other Special Characters</a></p>
<p class=copyright>Copyright © 1998 by <a href="http://www.htmlhelp.com/%7Eliam/">Liam Quinn</a>. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at <a href="http://www.opencontent.org/openpub/">http://www.opencontent.org/openpub/</a>).</p>
<p class=copyright>Modfications made by Benj Carson <a>benjcarson@digitaljunkies.ca</a> for dompdf, Jan 5, 2006.</p>
</div>
</body>
</html>
|
tools/glfw-3.2.bin.WIN64/docs/html/globals_defs_n.html | TheExcavationPursuit/EP_CPP | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>GLFW: Globals</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="extra.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<div class="glfwheader">
<a href="http://www.glfw.org/" id="glfwhome">GLFW</a>
<ul class="glfwnavbar">
<li><a href="http://www.glfw.org/documentation.html">Documentation</a></li>
<li><a href="http://www.glfw.org/download.html">Download</a></li>
<li><a href="http://www.glfw.org/media.html">Media</a></li>
<li><a href="http://www.glfw.org/community.html">Community</a></li>
</ul>
</div>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li class="current"><a href="globals.html"><span>Globals</span></a></li>
</ul>
</div>
<div id="navrow3" class="tabs2">
<ul class="tablist">
<li><a href="globals.html"><span>All</span></a></li>
<li><a href="globals_func.html"><span>Functions</span></a></li>
<li><a href="globals_type.html"><span>Typedefs</span></a></li>
<li class="current"><a href="globals_defs.html"><span>Macros</span></a></li>
</ul>
</div>
<div id="navrow4" class="tabs3">
<ul class="tablist">
<li><a href="globals_defs.html#index_a"><span>a</span></a></li>
<li><a href="globals_defs_b.html#index_b"><span>b</span></a></li>
<li><a href="globals_defs_c.html#index_c"><span>c</span></a></li>
<li><a href="globals_defs_d.html#index_d"><span>d</span></a></li>
<li><a href="globals_defs_e.html#index_e"><span>e</span></a></li>
<li><a href="globals_defs_f.html#index_f"><span>f</span></a></li>
<li><a href="globals_defs_g.html#index_g"><span>g</span></a></li>
<li><a href="globals_defs_h.html#index_h"><span>h</span></a></li>
<li><a href="globals_defs_i.html#index_i"><span>i</span></a></li>
<li><a href="globals_defs_j.html#index_j"><span>j</span></a></li>
<li><a href="globals_defs_k.html#index_k"><span>k</span></a></li>
<li><a href="globals_defs_l.html#index_l"><span>l</span></a></li>
<li><a href="globals_defs_m.html#index_m"><span>m</span></a></li>
<li class="current"><a href="globals_defs_n.html#index_n"><span>n</span></a></li>
<li><a href="globals_defs_o.html#index_o"><span>o</span></a></li>
<li><a href="globals_defs_p.html#index_p"><span>p</span></a></li>
<li><a href="globals_defs_r.html#index_r"><span>r</span></a></li>
<li><a href="globals_defs_s.html#index_s"><span>s</span></a></li>
<li><a href="globals_defs_t.html#index_t"><span>t</span></a></li>
<li><a href="globals_defs_v.html#index_v"><span>v</span></a></li>
</ul>
</div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
 
<h3><a class="anchor" id="index_n"></a>- n -</h3><ul>
<li>GLFW_NATIVE_CONTEXT_API
: <a class="el" href="glfw3_8h.html#a0494c9bfd3f584ab41e6dbeeaa0e6a19">glfw3.h</a>
</li>
<li>GLFW_NO_API
: <a class="el" href="glfw3_8h.html#a8f6dcdc968d214ff14779564f1389264">glfw3.h</a>
</li>
<li>GLFW_NO_CURRENT_CONTEXT
: <a class="el" href="group__errors.html#gaa8290386e9528ccb9e42a3a4e16fc0d0">glfw3.h</a>
</li>
<li>GLFW_NO_RESET_NOTIFICATION
: <a class="el" href="glfw3_8h.html#aee84a679230d205005e22487ff678a85">glfw3.h</a>
</li>
<li>GLFW_NO_ROBUSTNESS
: <a class="el" href="glfw3_8h.html#a8b306cb27f5bb0d6d67c7356a0e0fc34">glfw3.h</a>
</li>
<li>GLFW_NO_WINDOW_CONTEXT
: <a class="el" href="group__errors.html#gacff24d2757da752ae4c80bf452356487">glfw3.h</a>
</li>
<li>GLFW_NOT_INITIALIZED
: <a class="el" href="group__errors.html#ga2374ee02c177f12e1fa76ff3ed15e14a">glfw3.h</a>
</li>
</ul>
</div><!-- contents -->
<address class="footer">
<p>
Last update on Thu Jun 2 2016 for GLFW 3.2.0
</p>
</address>
</body>
</html>
|
third_party/WebKit/LayoutTests/fast/dom/shadow/custom-pseudo-scope.html | axinging/chromium-crosswalk | <!DOCTYPE html>
<style>
::-webkit-meter-bar { background: green }
</style>
<p>You should see a green, a default styled, and a blue meter below.</p>
<div><meter></meter></div>
<div id="host1"></div>
<div id="host2"></div>
<script>
host1.createShadowRoot().innerHTML = "<meter></meter>";
host2.createShadowRoot().innerHTML = "<style>::-webkit-meter-bar { background: blue }</style><meter></meter>";
</script>
|
sdk/cudd-2.4.1-ftk/dddmp/doc/dddmpTitle.html | fteicht/ppddl-planner | <HTML>
<HEAD><TITLE>The dddmp package: Title</TITLE></HEAD>
<BODY>
<TABLE BORDER WIDTH="100%">
<TR>
<TD ALIGN=center> <A HREF="dddmpExt.html" TARGET="_top">
Programmer view</A> </TD>
<TD ALIGN=center> <A HREF="dddmpAllByFunc.html" TARGET="_top">
Maintainer by function</A> </TD>
<TD ALIGN=center> <A HREF="dddmpAllByFile.html" TARGET="_top">
Maintainer by file</A> </TD>
</TR>
</TABLE>
</BODY>
</HTML>
|
var/www/js/htmlarea/HTMLArea-3.0-rc1/popups/about.html | haakonsk/O2-Framework | <!--
(c) dynarch.com, 2003-2004
Author: Mihai Bazon, http://dynarch.com/mishoo
Distributed as part of HTMLArea 3.0
"You are not expected to understand this... I don't neither."
(from The Linux Kernel Source Code,
./arch/x86_64/ia32/ptrace.c:90)
;-)
-->
<html style="height: 100%">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>About HTMLArea</title>
<script type="text/javascript" src="popup.js"></script>
<script type="text/javascript">
window.resizeTo(450, 250);
var TABS = [];
var CURRENT_TAB = 0;
var CONTENT_HEIGHT_DIFF = 0;
var CONTENT_WIDTH_DIFF = 0;
function selectTab(idx) {
var ct = TABS[CURRENT_TAB];
ct.className = ct.className.replace(/\s*tab-current\s*/, ' ');
ct = TABS[CURRENT_TAB = idx];
ct.className += ' tab-current';
for (var i = TABS.length; --i >= 0;) {
var area = document.getElementById("tab-area-" + i);
if (CURRENT_TAB == i) {
area.style.display = "block";
} else {
area.style.display = "none";
}
}
document.body.style.visibility = "hidden";
document.body.style.visibility = "visible";
document.cookie = "HTMLAREA-ABOUT-TAB=" + idx;
}
var editor = null;
function initDocument() {
editor = window.dialogArguments;
HTMLArea = window.opener.HTMLArea;
var plugins = document.getElementById("plugins");
var j = 0;
var html = "<table width='99%' cellpadding='0' style='margin-top: 1em; collapse-borders: collapse; border: 1px solid #8b8;'>" +
"<thead><tr>" +
"<td>Name</td>" +
"<td>Developer</td>" +
"<td>Sponsored by</td>" +
"<td>License<sup>*</sup></td>" +
"</tr></thead><tbody>";
for (var i in editor.plugins) {
var info = editor.plugins[i];
html += "<tr><td>" + info.name + " v" + info.version + "</td>" +
"<td><a href='" + info.developer_url + "' target='_blank' title='Visit developer website'>" +
info.developer + "</a></td>" +
"<td><a href='" + info.sponsor_url + "' target='_blank' title='Visit sponsor website'>" +
info.sponsor + "</a></td>" +
"<td>" + info.license + "</td></tr>";
++j;
}
if (j) {
html += "</tbody></table>" +
"<p><sup>*</sup> License \"htmlArea\" means that the plugin is distributed under the same terms " +
"as HTMLArea itself. Such plugins are likely to be those included in the official " +
"HTMLArea distribution</p>";
plugins.innerHTML = "<p>The following plugins have been loaded.</p>" + html;
} else {
plugins.innerHTML = "<p>No plugins have been loaded</p>";
}
plugins.innerHTML += "<p>User agent reports:<br/>" + navigator.userAgent + "</p>";
var content = document.getElementById("content");
if (window.innerHeight) {
CONTENT_HEIGHT_DIFF = window.innerHeight - 250;
CONTENT_WIDTH_DIFF = window.innerWidth - content.offsetWidth;
} else {
CONTENT_HEIGHT_DIFF = document.body.offsetHeight - 250;
CONTENT_WIDTH_DIFF = document.body.offsetWidth - 400;
}
window.onresize();
var bar = document.getElementById("tabbar");
j = 0;
for (var i = bar.firstChild; i; i = i.nextSibling) {
TABS.push(i);
i.__msh_tab = j;
i.onmousedown = function(ev) { selectTab(this.__msh_tab); HTMLArea._stopEvent(ev || window.event); };
var area = document.getElementById("tab-area-" + j);
if (/tab-current/.test(i.className)) {
CURRENT_TAB = j;
area.style.display = "block";
} else {
area.style.display = "none";
}
++j;
}
if (document.cookie.match(/HTMLAREA-ABOUT-TAB=([0-9]+)/))
selectTab(RegExp.$1);
}
window.onresize = function() {
var content = document.getElementById("content");
if (window.innerHeight) {
content.style.height = (window.innerHeight - CONTENT_HEIGHT_DIFF) + "px";
content.style.width = (window.innerWidth - CONTENT_WIDTH_DIFF) + "px";
} else {
content.style.height = (document.body.offsetHeight - CONTENT_HEIGHT_DIFF) + "px";
//content.style.width = (document.body.offsetWidth - CONTENT_WIDTH_DIFF) + "px";
}
}
</script>
<style>
html,body,textarea,table { font-family: tahoma,verdana,arial; font-size: 11px;
padding: 0px; margin: 0px; }
tt { font-size: 120%; }
body { padding: 0px; background: #cea; color: 000; }
a:link, a:visited { color: #00f; }
a:hover { color: #f00; }
a:active { color: #f80; }
button { font: 11px tahoma,verdana,sans-serif; background-color: #cea;
border-width: 1px; }
p { margin: 0.5em 0px; }
h1 { font: bold 130% georgia,"times new roman",serif; margin: 0px; border-bottom: 1px solid #6a6; }
h2 { font: bold 110% georgia,"times new roman",serif; margin: 0.7em 0px; }
thead {
font-weight: bold;
background-color: #dfb;
}
.logo, .logo-hover {
white-space: nowrap;
background-color: #8f4; color: #040; padding: 3px; border-bottom: 1px solid #555;
height: 5em;
}
.logo .brand, .logo-hover .brand {
margin-left: 0.5em; margin-right: 0.5em; padding-bottom: 0.1em;
font-family: impact,'arial black',arial,sans-serif; font-size: 28px;
border-bottom: 1px solid #595; text-align: center;
cursor: pointer;
}
.logo-hover {
background-color: #fff;
}
.logo-hover .brand {
color: #800;
border-color: #04f;
}
.logo .letter, .logo-hover .letter { position: relative; font-family: monospace; }
.logo .letter1 { top: 0.1em; }
.logo .letter2 { top: 0.05em; }
.logo .letter3 { top: -0.05em; }
.logo .letter4 { top: -0.1em; }
.logo-hover .letter1 { top: -0.1em; }
.logo-hover .letter2 { top: -0.05em; }
.logo-hover .letter3 { top: 0.05em; }
.logo-hover .letter4 { top: 0.1em; }
.logo .version, .logo-hover .version { font-family: georgia,"times new roman",serif; }
.logo .release {
font-size: 90%; margin-bottom: 1em;
text-align: center; color: #484;
}
.logo .visit { display: none; }
.logo-hover .release { display: none; }
.logo-hover .visit {
font-size: 90%; margin-bottom: 1em;
text-align: center; color: #448;
}
.buttons {
text-align: right; padding: 3px; background-color: #8f4;
border-top: 1px solid #555;
}
#tabbar {
position: relative;
left: 10px;
}
.tab {
color: #454;
cursor: pointer;
margin-left: -5px;
float: left; position: relative;
border: 1px solid #555;
top: -3px; left: -2px;
padding: 2px 10px 3px 10px;
border-top: none; background-color: #9b7;
-moz-border-radius: 0px 0px 4px 4px;
z-index: 0;
}
.tab-current {
color: #000;
top: -4px;
background-color: #cea;
padding: 3px 10px 4px 10px;
z-index: 10;
}
table.sponsors { border-top: 1px solid #aca; }
table.sponsors td {
border-bottom: 1px solid #aca; vertical-align: top;
}
table.sponsors tr td { padding: 2px 0px; }
table.sponsors tr td.sponsor { text-align: right; padding-right: 0.3em; white-space: nowrap; }
li, ol, ul { margin-top: 0px; margin-bottom: 0px; }
</style></head>
<body onload="__dlg_init(); initDocument();"
><table cellspacing="0" cellpadding="0" style="border-collapse: collapse;
width: 100%; height: 100%;">
<tr style="height: 1em"><td id="tdheader">
<div class="logo">
<div class="brand"
onmouseover="this.parentNode.className='logo-hover';"
onmouseout="this.parentNode.className='logo';"
onclick="window.open('http://dynarch.com/htmlarea/');">
<span class="letter letter1"><H</span><span
class="letter letter2">T</span><span
class="letter letter3">M</span><span
class="letter letter4">L</span>Area <span class="letter">/></span>
<span class="version">3.0 <span style="position: relative; top: -0.6em; font-size: 50%; font-weight: normal">[ rev. rc1 ]</span></span></div>
<div class="release">Compiled on Mar 1, 2004 19:37 GMT</div>
<div class="visit">Go to http://dynarch.com/htmlarea/ [latest milestone release]</div>
</div>
</td></tr>
<tr><td id="tdcontent" style="padding: 0.5em;">
<div style="overflow: auto; height: 250px;" id="content">
<div id="tab-areas">
<div id="tab-area-0">
<h1>HTMLArea</h1>
<p>A free WYSIWYG editor replacement for <tt><textarea></tt> fields.<br />
For Mozilla 1.3+ (any platform) or Internet Explorer 5.5+ (Windows).
</p>
<p style="text-align: center"
>© 2002-2004 <a href="http://interactivetools.com" target="_blank">interactivetools.com</a>, inc.<br />
© 2003-2004 <a href="http://dynarch.com" target="_blank">dynarch.com</a> LLC.<br />
All Rights Reserved.</p>
<h2>Project resources</h2>
<ul>
<li><a href="http://sourceforge.net/projects/itools-htmlarea/" target="_blank"
>Project page</a> (@ sourceforge.net)</li>
<li><a href="http://sourceforge.net/cvs/?group_id=69750" target="_blank"
>Anonymous CVS access</a> (@ sourceforge.net)</li>
<li><a href="http://sourceforge.net/tracker/?atid=525656&group_id=69750&func=browse" target="_blank"
>Bug system</a> (@ sourceforge.net)</li>
<li><a href="http://www.interactivetools.com/forum/gforum.cgi?forum=14;" target="_blank"
>Forum</a> (@ interactivetools.com)</li>
<li><a href="http://www.dynarch.com/htmlarea/" target="_blank"
>Last public release</a> (@ dynarch.com)</li>
</ul>
<p>
For download section please see the <a href="http://sourceforge.net/projects/itools-htmlarea/" target="_blank"
>project page @ SourceForge</a>.
</p>
<p style="margin-top: 1em; text-align: center;">Version 3.0 developed and maintained by <a
href="http://dynarch.com/mishoo/" title="http://dynarch.com/mishoo/" target="_blank">Mihai Bazon</a> / <a
href="http://dynarch.com" title="http://dynarch.com/" target="_blank">dynarch.com</a></p>
</div>
<div id="tab-area-1">
<h1>Thank you</h1>
<p>
<a href="http://dynarch.com" target="_blank">dynarch.com</a> would like to thank the following
companies/persons for their <em>donations</em> to support development of HTMLArea (listed alphabetically):
</p>
<ul>
<li><a href="http://www.neomedia.ro">Neomedia</a> (Romania)</li>
<li><a href="http://www.os3.it" target="_blank">OS3</a> (Italy)</li>
<li><a href="http://www.softwerk.net">SoftWerk</a> (Italy)</li>
</ul>
<p>Also many thanks to all people at InteractiveTools.com
<a href="http://www.interactivetools.com/forum/gforum.cgi?forum=14;">HTMLArea forums</a> for
contributing translations, feedback, bug reports and fixes.</p>
<p>
Last but not least, this project wouldn't have existed without
<a href="http://interactivetools.com" target="_blank">InteractiveTools.com</a>.
</p>
</div>
<div id="tab-area-2">
<h1>htmlArea License (based on BSD license)</h1>
<p style="text-align: center">© 2002-2004, interactivetools.com, inc.<br />
© 2003-2004 dynarch.com LLC<br />
All rights reserved.</p>
<p>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
</p>
<ol>
<li>
Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
</li>
<li>
Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
</li>
<li>
Neither the name of interactivetools.com, inc. nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
</li>
</ol>
<p>
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
</p>
</div>
<div id="tab-area-3">
<h1>Plugins</h1>
<div id="plugins">
</div>
</div>
</div></div>
</tr></td>
<tr style="height: 1em"><td id="tdfooter">
<div class="buttons">
<div id="tabbar"
><div class="tab tab-current"
>About</div><div class="tab"
>Thanks</div><div class="tab"
>License</div><div class="tab"
>Plugins</div></div>
<button type="button" onclick="__dlg_close(null);">I agree it's cool</button>
</div>
</td></tr></table>
</body></html>
|
ajax/libs/oojs-ui/0.9.4/oojs-ui-mediawiki-icons-editing-advanced.vector.css | joeyparrish/cdnjs | /*!
* OOjs UI v0.9.4
* https://www.mediawiki.org/wiki/OOjs_UI
*
* Copyright 2011–2015 OOjs Team and other contributors.
* Released under the MIT license
* http://oojs.mit-license.org
*
* Date: 2015-03-25T22:24:23Z
*/
.oo-ui-icon-table {
background-image: /* @embed */ url(themes/mediawiki/images/icons/table.svg);
}
.oo-ui-icon-newline {
background-image: /* @embed */ url(themes/mediawiki/images/icons/newline-ltr.svg);
}
.oo-ui-icon-redirect {
background-image: /* @embed */ url(themes/mediawiki/images/icons/redirect-ltr.svg);
}
.oo-ui-icon-noWikiText {
background-image: /* @embed */ url(themes/mediawiki/images/icons/noWikiText-ltr.svg);
}
.oo-ui-icon-puzzle {
background-image: /* @embed */ url(themes/mediawiki/images/icons/puzzle-ltr.svg);
}
.oo-ui-icon-quotes {
background-image: /* @embed */ url(themes/mediawiki/images/icons/quotes-ltr.svg);
}
.oo-ui-icon-quotesAdd {
background-image: /* @embed */ url(themes/mediawiki/images/icons/quotesAdd-ltr.svg);
}
.oo-ui-icon-templateAdd {
background-image: /* @embed */ url(themes/mediawiki/images/icons/templateAdd-ltr.svg);
}
.oo-ui-icon-translation {
background-image: /* @embed */ url(themes/mediawiki/images/icons/translation-ltr.svg);
}
.oo-ui-icon-wikiText {
background-image: /* @embed */ url(themes/mediawiki/images/icons/wikiText.svg);
}
|
third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-reprojection2-expected.html | js0701/chromium-crosswalk | <!DOCTYPE html>
<html>
<div id="host1">
<div id="host3">
<div>A</div>
<div>B</div>
<div>C</div>
</div>
</div>
</html>
|
wp-content/plugins/fantastic-elasticsearch/vendor/electrolinux/phpquery/api-reference/phpQuery/_phpQueryEvents.php.html | tumanob/Lib.KG | <html>
<head>
<title>Docs for page phpQueryEvents.php</title>
<link rel="stylesheet" type="text/css" href="../media/style.css">
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0" height="48" width="100%">
<tr>
<td class="header_top">phpQuery</td>
</tr>
<tr><td class="header_line"><img src="../media/empty.png" width="1" height="1" border="0" alt="" /></td></tr>
<tr>
<td class="header_menu">
[ <a href="../classtrees_phpQuery.html" class="menu">class tree: phpQuery</a> ]
[ <a href="../elementindex_phpQuery.html" class="menu">index: phpQuery</a> ]
[ <a href="../elementindex.html" class="menu">all elements</a> ]
</td>
</tr>
<tr><td class="header_line"><img src="../media/empty.png" width="1" height="1" border="0" alt="" /></td></tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="200" class="menu">
<div id="todolist">
<p><a href="../todolist.html">Todo List</a></p>
</div>
<b>Packages:</b><br />
<a href="../li_phpQuery.html">phpQuery</a><br />
<br /><br />
<b>Files:</b><br />
<div class="package">
<a href="../phpQuery/_Callback.php.html"> Callback.php
</a><br>
<a href="../phpQuery/_DOMDocumentWrapper.php.html"> DOMDocumentWrapper.php
</a><br>
<a href="../phpQuery/_DOMEvent.php.html"> DOMEvent.php
</a><br>
<a href="../phpQuery/_phpQuery.php.html"> phpQuery.php
</a><br>
<a href="../phpQuery/_phpQueryEvents.php.html"> phpQueryEvents.php
</a><br>
<a href="../phpQuery/_phpQueryObject.php.html"> phpQueryObject.php
</a><br>
</div><br />
<b>Classes:</b><br />
<div class="package">
<a href="../phpQuery/Callback.html">Callback</a><br />
<a href="../phpQuery/CallbackParam.html">CallbackParam</a><br />
<a href="../phpQuery/CallbackReference.html">CallbackReference</a><br />
<a href="../phpQuery/DOMDocumentWrapper.html">DOMDocumentWrapper</a><br />
<a href="../phpQuery/DOMEvent.html">DOMEvent</a><br />
<a href="../phpQuery/phpQuery.html">phpQuery</a><br />
<a href="../phpQuery/phpQueryEvents.html">phpQueryEvents</a><br />
<a href="../phpQuery/phpQueryObject.html">phpQueryObject</a><br />
<a href="../phpQuery/phpQueryPlugins.html">phpQueryPlugins</a><br />
</div>
</td>
<td>
<table cellpadding="10" cellspacing="0" width="100%" border="0"><tr><td valign="top">
<h1>Procedural File: phpQueryEvents.php</h1>
Source Location: /phpQueryEvents.php<br /><br />
<br>
<br>
<div class="contents">
<h2>Classes:</h2>
<dt><a href="../phpQuery/phpQueryEvents.html">phpQueryEvents</a></dt>
<dd>Event handling class.</dd>
</div><br /><br />
<h2>Page Details:</h2>
<br /><br />
<br /><br />
<br /><br />
<br />
<div class="credit">
<hr />
Documentation generated on Tue, 18 Nov 2008 19:39:26 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.2</a>
</div>
</td></tr></table>
</td>
</tr>
</table>
</body>
</html> |
ajax/libs/angularjs-color-picker/1.0.0/themes/angularjs-color-picker-bootstrap.min.css | joeyparrish/cdnjs | /*!
* angularjs-color-picker v1.0.0
* https://github.com/ruhley/angular-color-picker/
*
* Copyright 2016 ruhley
*
* 2016-02-10 09:35:06
*
*/.color-picker-wrapper .color-picker-input-wrapper{width:100%}.color-picker-wrapper .color-picker-swatch:not(.input-group-addon){height:28px}.color-picker-wrapper.color-picker-swatch-only .input-group .input-group-addon{border-radius:4px} |
target/doc/libc/unix/notmips/type.suseconds_t.html | ssgrn/Rust-Matrix-Computations | <!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=../../../libc/type.suseconds_t.html">
</head>
<body>
<p>Redirecting to <a href="../../../libc/type.suseconds_t.html">../../../libc/type.suseconds_t.html</a>...</p>
<script>location.replace("../../../libc/type.suseconds_t.html" + location.search + location.hash);</script>
</body>
</html> |
wts/tests/canvas/w3c/2d.line.cap.valid.html | hgl888/web-testing-service | <!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
<title>Canvas test: 2d.line.cap.valid</title>
<meta name="author" content="Philip Taylor">
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="common/canvas-tests.js"></script>
<link rel="stylesheet" href="common/canvas-tests.css">
<body class="show_output">
<h1>2d.line.cap.valid</h1>
<p class="desc">Setting lineCap to valid values works</p>
<p class="output">Actual output:</p>
<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
<ul id="d"></ul>
<script>
var t = async_test("Setting lineCap to valid values works");
_addTest(function(canvas, ctx) {
ctx.lineCap = 'butt'
_assertSame(ctx.lineCap, 'butt', "ctx.lineCap", "'butt'");
ctx.lineCap = 'round';
_assertSame(ctx.lineCap, 'round', "ctx.lineCap", "'round'");
ctx.lineCap = 'square';
_assertSame(ctx.lineCap, 'square', "ctx.lineCap", "'square'");
});
</script>
|
src/3rd_party/apache-log4cxx-win32-0.10.0/apache-log4cxx-0.10.0/site/apidocs/propertysetter_8h.html | smartdevice475/sdl_core_346_wince | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
--><html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>Apache log4cxx: propertysetter.h File Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.4.6 -->
<div class="tabs">
<ul>
<li><a href="main.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="classes.html"><span>Classes</span></a></li>
<li id="current"><a href="files.html"><span>Files</span></a></li>
</ul></div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul></div>
<h1>propertysetter.h File Reference</h1>
<p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">namespace </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacelog4cxx.html">log4cxx</a></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">namespace </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacelog4cxx_1_1helpers.html">log4cxx::helpers</a></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">namespace </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacelog4cxx_1_1config.html">log4cxx::config</a></td></tr>
<tr><td colspan="2"><br><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">class </td><td class="memItemRight" valign="bottom"><a class="el" href="classlog4cxx_1_1config_1_1_property_setter.html">PropertySetter</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">General purpose Object property setter. <a href="classlog4cxx_1_1config_1_1_property_setter.html#_details">More...</a><br></td></tr>
<tr><td colspan="2"><br><h2>Typedefs</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">typedef ObjectPtrT< Object > </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacelog4cxx_1_1helpers.html#b6a6ce8f0ab4ed49ed45fad8cd9ea177">log4cxx::helpers::ObjectPtr</a></td></tr>
</table>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
</BODY>
</HTML>
|
venv/bin/libs/exception/doc/boost_exception_exception_hpp.html | NixaSoftware/CVis | <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
<title>boost/exception/exception.hpp</title>
<link href='reno.css' type='text/css' rel='stylesheet'/>
</head>
<body>
<div class="body-0">
<div class="body-1">
<div class="body-2">
<div>
<div id="boost_logo">
<a href="http://www.boost.org"><img style="border:0" src="../../../boost.png" alt="Boost" width="277" height="86"/></a>
</div>
<h1>Boost Exception</h1>
</div>
<!-- Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc. -->
<!-- Distributed under the Boost Software License, Version 1.0. (See accompanying -->
<!-- file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -->
<div class="RenoIncludeDIV"><div class="RenoAutoDIV"><h2>boost/exception/exception.hpp</h2>
</div>
<h3>Synopsis</h3>
<div class="RenoIncludeDIV"><pre>namespace
boost
{
<span class="RenoIncludeSPAN"> <span class="RenoIncludeSPAN">class
<span class="RenoLink"><a href="exception.html">exception</a></span>
{
protected:
<span class="RenoIncludeSPAN"> <span class="RenoLink"><a href="exception_constructors.html">exception</a></span>();
<span class="RenoLink"><a href="exception_constructors.html">exception</a></span>( <span class="RenoLink"><a href="exception.html">exception</a></span> const & x );</span>
<span class="RenoIncludeSPAN"> <span class="RenoLink"><a href="exception_destructor.html">~exception</a></span>();</span>
};</span>
<span class="RenoIncludeSPAN">template <class Tag,class T>
class <span class="RenoLink"><a href="error_info.html">error_info</a></span>;</span>
typedef <span class="RenoLink"><a href="error_info.html">error_info</a></span><struct throw_function_,char const *> throw_function;
typedef <span class="RenoLink"><a href="error_info.html">error_info</a></span><struct throw_file_,char const *> throw_file;
typedef <span class="RenoLink"><a href="error_info.html">error_info</a></span><struct throw_line_,int> throw_line;</span>
}</pre>
</div></div><div class="RenoAutoDIV"><div class="RenoHR"><hr/></div>
See also: <span class="RenoPageList"><a href="BOOST_THROW_EXCEPTION.html">BOOST_THROW_EXCEPTION</a> | <a href="boost_exception_all_hpp.html">boost/exception/all.hpp</a> | <a href="boost_exception_enable_current_exception_hpp.html">boost/exception/enable_current_exception.hpp</a> | <a href="boost_exception_enable_error_info_hpp.html">boost/exception/enable_error_info.hpp</a> | <a href="boost_exception_info_hpp.html">boost/exception/info.hpp</a> | <a href="boost_exception_ptr_hpp.html">boost/exception_ptr.hpp</a> | <a href="exception.html">exception</a> | <a href="synopsis.html">Synopsis</a></span>
</div>
<!-- Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc. -->
<!-- Distributed under the Boost Software License, Version 1.0. (See accompanying -->
<!-- file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -->
<div id="footer">
<p>
<a class="logo" href="http://jigsaw.w3.org/css-validator/check/referer"><img class="logo_pic" src="valid-css.png" alt="Valid CSS" height="31" width="88"/></a>
<a class="logo" href="http://validator.w3.org/check?uri=referer"><img class="logo_pic" src="valid-xhtml.png" alt="Valid XHTML 1.0" height="31" width="88"/></a>
<small>Copyright (c) 2006-2009 by Emil Dotchevski and Reverge Studios, Inc.<br/>
Distributed under the <a href="http://www.boost.org/LICENSE_1_0.txt">Boost Software License, Version 1.0</a>.</small>
</p>
</div>
</div>
</div>
</div>
</body>
</html>
|
web/public/plugins/validationengine/demos/demoOnForm.html | firomero/citybooking | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>JQuery Validation Engine</title>
<link rel="stylesheet" href="../css/validationEngine.jquery.css" type="text/css"/>
<link rel="stylesheet" href="../css/template.css" type="text/css"/>
<script src="../js/jquery-1.8.2.min.js" type="text/javascript">
</script>
<script src="../js/languages/jquery.validationEngine-en.js" type="text/javascript" charset="utf-8">
</script>
<script src="../js/jquery.validationEngine.js" type="text/javascript" charset="utf-8">
</script>
<script>
function validate() {
}
function formSuccess() {
alert('Success!');
}
function formFailure() {
alert('Failure!');
}
jQuery(document).ready(function(){
// binds form submission and fields to the validation engine
jQuery("#formID").validationEngine({
onFormSuccess:formSuccess,
onFormFailure:formFailure
});
});
/**
*
* @param {jqObject} the field where the validation applies
* @param {Array[String]} validation rules for this field
* @param {int} rule index
* @param {Map} form options
* @return an error string if validation failed
*/
function checkHELLO(field, rules, i, options){
if (field.val() != "HELLO") {
// this allows to use i18 for the error msgs
return options.allrules.validate2fields.alertText;
}
}
</script>
</head>
<body>
<p>
This demonstration shows onFormSuccess() and onFormFailure()
<br/>
</p>
<div id="test" class="test" style="width:150px;">This is a div element</div>
<form id="formID" onsubmit="return jQuery(this).validationEngine('validate');" class="formular" method="post">
<fieldset>
<legend>
Required!
</legend>
<label>
<span>Field is required : </span>
<input value="" class="validate[required] text-input" type="text" name="req" id="req" />
</label>
</fieldset>
<input class="submit" type="button" onclick="jQuery('#formID').submit();" value="Validate & Send the form!"/><hr/>
</form>
</body>
</html>
|
external/chromium_org/chrome/common/extensions/docs/templates/intros/pageAction.html | s20121035/rk3288_android5.1_repo | <p>
Some examples:
</p>
<ul>
<li> Subscribe to this page's RSS feed </li>
<li> Make a slideshow out of this page's photos </li>
</ul>
<p>
The RSS icon in the following screenshot
represents a page action
that lets you subscribe to
the RSS feed for the current page.
</p>
<img src="{{static}}/images/page-action.png"
width="361" height="79" />
<p>
If you want the extension's icon to always be visible,
use a <a href="browserAction">browser action</a> instead.
</p>
<h2 id="manifest">Manifest</h2>
<p>
Register your page action in the
<a href="manifest">extension manifest</a>
like this:
</p>
<pre data-filename="manifest.json">
{
"name": "My extension",
...
<b>"page_action": {
"default_icon": { <em>// optional</em>
"19": "images/icon19.png", <em>// optional</em>
"38": "images/icon38.png" <em>// optional</em>
},
"default_title": "Google Mail", <em>// optional; shown in tooltip</em>
"default_popup": "popup.html" <em>// optional</em>
}</b>,
...
}</pre>
<p>
If you only provide one of the 19px or 38px icon size, the extension system will
scale the icon you provide to the pixel density of the user's display, which
can lose detail or make it look fuzzy. The old syntax for registering the
default icon is still supported:
</p>
<pre data-filename="manifest.json">
{
"name": "My extension",
...
<b>"page_action": {
...
"default_icon": "images/icon38.png" <em>// optional</em>
<em>// equivalent to "default_icon": { "38": "images/icon38.png" }</em>
}</b>,
...
}</pre>
<h2 id="ui">Parts of the UI</h2>
<p>
Like browser actions,
page actions can have an icon,
a tooltip, and popup;
they can't have badges, however.
In addition, page actions can appear and disappear.
You can find information about icons, tooltips, and popups
by reading about the
<a href="browserAction#ui">browser action UI</a>.
</p>
<p>
You make a page action appear and disappear using the
$(ref:pageAction.show) and
$(ref:pageAction.hide) methods, respectively.
By default, a page action is hidden.
When you show it, you specify the tab
in which the icon should appear.
The icon remains visible
until the tab is closed
or starts displaying a different URL
(because the user clicks a link, for example).
</p>
<h2 id="tips">Tips</h2>
<p>For the best visual impact,
follow these guidelines:</p>
<ul>
<li><b>Do</b> use page actions
for features that make sense
for only a few pages.
<li><b>Don't</b> use page actions
for features that make sense
for most pages.
Use <a href="browserAction">browser actions</a> instead.
<li><b>Don't</b> constantly animate your icon.
That's just annoying.
</ul>
<h2 id="examples"> Examples </h2>
<p>
You can find simple examples of using page actions in the
<a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/api/pageAction/">examples/api/pageAction</a>
directory.
For other examples and for help in viewing the source code, see
<a href="samples">Samples</a>.
</p>
|
php/swoole/websocket/client.html | CraryPrimitiveMan/code-examples | <script>
var wsServer = 'ws://127.0.0.1:9501';
var websocket = new WebSocket(wsServer);
websocket.onopen = function (evt) {
console.log("Connected to WebSocket server.");
};
websocket.onclose = function (evt) {
console.log("Disconnected");
};
websocket.onmessage = function (evt) {
console.log('Retrieved data from server: ' + evt.data);
};
websocket.onerror = function (evt, e) {
console.log('Error occured: ' + evt.data);
};
</script>
|
web/static/bower_components/angular-toggle-switch/angular-toggle-switch-bootstrap.css | ae6rt/aftomato | .toggle-switch {
display: inline-block;
cursor: pointer;
border-radius: 4px;
border: 1px solid;
border-color: #cccccc;
position: relative;
text-align: left;
overflow: hidden;
line-height: 8px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
vertical-align: middle;
min-width: 100px;
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.toggle-switch .knob {
color: #333333;
background: #ffffff;
border: 3px;
}
.toggle-switch .switch-left {
color: #fff;
background: #428bca;
}
.toggle-switch .switch-right {
color: #000;
background: #eeeeee;
}
|
www/static/js/jqplot/examples/data-renderers.html | WillBickerstaff/piccolo | <!DOCTYPE html>
<html>
<head>
<title>AJAX and JSON Data Loading via Data Renderers</title>
<link class="include" rel="stylesheet" type="text/css" href="../jquery.jqplot.min.css" />
<link rel="stylesheet" type="text/css" href="examples.min.css" />
<link type="text/css" rel="stylesheet" href="syntaxhighlighter/styles/shCoreDefault.min.css" />
<link type="text/css" rel="stylesheet" href="syntaxhighlighter/styles/shThemejqPlot.min.css" />
<!--[if lt IE 9]><script language="javascript" type="text/javascript" src="../excanvas.js"></script><![endif]-->
<script class="include" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
</head>
<body>
<div id="header">
<div class="nav">
<a class="nav" href="../../../index.php"><span>></span>Home</a>
<a class="nav" href="../../../docs/"><span>></span>Docs</a>
<a class="nav" href="../../download/"><span>></span>Download</a>
<a class="nav" href="../../../info.php"><span>></span>Info</a>
<a class="nav" href="../../../donate.php"><span>></span>Donate</a>
</div>
</div>
<div class="colmask leftmenu">
<div class="colleft">
<div class="col1" id="example-content">
<!-- Example scripts go here -->
<p>Data renderers allow jqPlot to pull data from any external source (e.g. a function implementing an AJAX call). Simply assign the external source to the "dataRenderer" plot option. The only requirement on data renderers is that it must return a valid jqPlot data array.</p>
<div id="chart1" style="height:300px; width:500px;"></div>
<pre class="code prettyprint brush: js"></pre>
<p>Data renderers get passed options by the plot. The signiture for a data renderer is:</p>
<pre class="brush: js">
function(userData, plotObject, options) {
...
return data;
}
</pre>
<p>Where userData is whatever data was passed into the plot, plotObject is a reference back to the plot itself, and options are any options passed into the plots "dataRendererOption" option. The following example shows a more complicated example which uses ajax pulls data from an external json data source.</p>
<div id="chart2" style="height:300px; width:500px;"></div>
<pre class="code prettyprint brush: js"></pre>
<script class="code" type="text/javascript">
$(document).ready(function(){
// Our data renderer function, returns an array of the form:
// [[[x1, sin(x1)], [x2, sin(x2)], ...]]
var sineRenderer = function() {
var data = [[]];
for (var i=0; i<13; i+=0.5) {
data[0].push([i, Math.sin(i)]);
}
return data;
};
// we have an empty data array here, but use the "dataRenderer"
// option to tell the plot to get data from our renderer.
var plot1 = $.jqplot('chart1',[],{
title: 'Sine Data Renderer',
dataRenderer: sineRenderer
});
});
</script>
<script class="code" type="text/javascript">
$(document).ready(function(){
// Our ajax data renderer which here retrieves a text file.
// it could contact any source and pull data, however.
// The options argument isn't used in this renderer.
var ajaxDataRenderer = function(url, plot, options) {
var ret = null;
$.ajax({
// have to use synchronous here, else the function
// will return before the data is fetched
async: false,
url: url,
dataType:"json",
success: function(data) {
ret = data;
}
});
return ret;
};
// The url for our json data
var jsonurl = "./jsondata.txt";
// passing in the url string as the jqPlot data argument is a handy
// shortcut for our renderer. You could also have used the
// "dataRendererOptions" option to pass in the url.
var plot2 = $.jqplot('chart2', jsonurl,{
title: "AJAX JSON Data Renderer",
dataRenderer: ajaxDataRenderer,
dataRendererOptions: {
unusedOptionalUrl: jsonurl
}
});
});
</script>
<!-- End example scripts -->
<!-- Don't touch this! -->
<script class="include" type="text/javascript" src="../jquery.jqplot.min.js"></script>
<script type="text/javascript" src="syntaxhighlighter/scripts/shCore.min.js"></script>
<script type="text/javascript" src="syntaxhighlighter/scripts/shBrushJScript.min.js"></script>
<script type="text/javascript" src="syntaxhighlighter/scripts/shBrushXml.min.js"></script>
<!-- End Don't touch this! -->
<!-- Additional plugins go here -->
<script class="include" language="javascript" type="text/javascript" src="../plugins/jqplot.json2.min.js"></script>
<!-- End additional plugins -->
</div>
<div class="col2">
<div class="example-link"><a class="example-link" href="data-renderers.html">AJAX and JSON Data Loading via Data Renderers</a></div>
<div class="example-link"><a class="example-link" href="barLineAnimated.html">Animated Charts</a></div>
<div class="example-link"><a class="example-link" href="dashboardWidget.html">Animated Dashboard Sample - Filled Line with Log Axis</a></div>
<div class="example-link"><a class="example-link" href="kcp_area.html">Area Chart</a></div>
<div class="example-link"><a class="example-link" href="kcp_area2.html">Area Chart 2</a></div>
<div class="example-link"><a class="example-link" href="axisLabelTests.html">Axis Labels</a></div>
<div class="example-link"><a class="example-link" href="axisLabelsRotatedText.html">Axis Labels and Rotated Text</a></div>
<div class="example-link"><a class="example-link" href="barTest.html">Bar Charts</a></div>
<div class="example-link"><a class="example-link" href="multipleBarColors.html">Bar Colors Example</a></div>
<div class="example-link"><a class="example-link" href="bezierCurve.html">Bezier Curve Plots</a></div>
<div class="example-link"><a class="example-link" href="blockPlot.html">Block Plots</a></div>
<div class="example-link"><a class="example-link" href="bubbleChart.html">Bubble Charts</a></div>
<div class="example-link"><a class="example-link" href="bubble-plots.html">Bubble Plots</a></div>
<div class="example-link"><a class="example-link" href="candlestick.html">Candlestick and Open Hi Low Close Charts</a></div>
<div class="example-link"><a class="example-link" href="theming.html">Chart Theming</a></div>
<div class="example-link"><a class="example-link" href="fillBetweenLines.html">Charts with Fill Between Lines</a></div>
<div class="example-link"><a class="example-link" href="kcp_cdf.html">Cumulative Density Function Chart</a></div>
<div class="example-link"><a class="example-link" href="dashedLines.html">Dashed Lines with Smoothing</a></div>
<div class="example-link"><a class="example-link" href="cursor-highlighter.html">Data Point Highlighting, Tooltips and Cursor Tracking</a></div>
<div class="example-link"><a class="example-link" href="point-labels.html">Data Point labels</a></div>
<div class="example-link"><a class="example-link" href="date-axes.html">Date Axes</a></div>
<div class="example-link"><a class="example-link" href="dateAxisRenderer.html">Date Axes 2</a></div>
<div class="example-link"><a class="example-link" href="rotatedTickLabelsZoom.html">Date Axes, Rotated Labels and Zooming</a></div>
<div class="example-link"><a class="example-link" href="canvas-overlay.html">Draw Lines on Plots - Canvas Overlay</a></div>
<div class="example-link"><a class="example-link" href="draw-rectangles.html">Draw Rectangles on Plots</a></div>
<div class="example-link"><a class="example-link" href="kcp_engel.html">Engel Curves</a></div>
<div class="example-link"><a class="example-link" href="bandedLine.html">Error Bands and Confidence Intervals</a></div>
<div class="example-link"><a class="example-link" href="area.html">Filled (Area) Charts</a></div>
<div class="example-link"><a class="example-link" href="axisScalingForceTickAt.html">Force Plot to Have Tick at 0 or 100</a></div>
<div class="example-link"><a class="example-link" href="hiddenPlotsInTabs.html">Hidden Plots</a></div>
<div class="example-link"><a class="example-link" href="customHighlighterCursorTrendline.html">Highlighting, Dragging Points, Cursor and Trend Lines</a></div>
<div class="example-link"><a class="example-link" href="line-charts.html">Line Charts and Options</a></div>
<div class="example-link"><a class="example-link" href="kcp_lorenz.html">Lorenz Curves</a></div>
<div class="example-link"><a class="example-link" href="mekkoCharts.html">Mekko Charts</a></div>
<div class="example-link"><a class="example-link" href="meterGauge.html">Meter Gauge</a></div>
<div class="example-link"><a class="example-link" href="candlestick-charts.html">Open Hi Low Close and Candlestick Charts</a></div>
<div class="example-link"><a class="example-link" href="pieTest.html">Pie Charts and Options</a></div>
<div class="example-link"><a class="example-link" href="pieTest4.html">Pie Charts and Options 2</a></div>
<div class="example-link"><a class="example-link" href="pie-donut-charts.html">Pie and Donut Charts</a></div>
<div class="example-link"><a class="example-link" href="selectorSyntax.html">Plot Creation with jQuery Selectors</a></div>
<div class="example-link"><a class="example-link" href="zooming.html">Plot Zooming and Cursor Control</a></div>
<div class="example-link"><a class="example-link" href="kcp_pdf.html">Probability Density Function Chart</a></div>
<div class="example-link"><a class="example-link" href="kcp_pyramid_by_age.html">Pyramid Chart By Age</a></div>
<div class="example-link"><a class="example-link" href="kcp_pyramid.html">Pyramid Charts</a></div>
<div class="example-link"><a class="example-link" href="kcp_pyramid2.html">Pyramid Charts 2</a></div>
<div class="example-link"><a class="example-link" href="kcp_quintiles.html">Quintile Pyramid Charts</a></div>
<div class="example-link"><a class="example-link" href="resizablePlot.html">Resizable Plots</a></div>
<div class="example-link"><a class="example-link" href="rotated-tick-labels.html">Rotated Labels and Font Styling</a></div>
<div class="example-link"><a class="example-link" href="smoothedLine.html">Smoothed Lines</a></div>
<div class="example-link"><a class="example-link" href="bar-charts.html">Vertical and Horizontal Bar Charts</a></div>
<div class="example-link"><a class="example-link" href="waterfall.html">Waterfall Charts</a></div>
<div class="example-link"><a class="example-link" href="waterfall2.html">Waterfall Charts 2</a></div>
<div class="example-link"><a class="example-link" href="zoomOptions.html">Zoom Options</a></div>
<div class="example-link"><a class="example-link" href="zoomProxy.html">Zoom Proxy - Control one plot from another</a></div>
<div class="example-link"><a class="example-link" href="zoom1.html">Zooming</a></div>
<div class="example-link"><a class="example-link" href="dateAxisLogAxisZooming.html">Zooming with Date and Log Axes</a></div>
</div>
</div>
</div>
<script type="text/javascript" src="example.min.js"></script>
</body>
</html>
|
test/J2s/java/openjdk-6-src-b27/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/exceptions/package.html | andreagenso/java2scala | <HTML><HEAD></HEAD><BODY><P>
general exceptions used by this library.
</P></BODY></HTML>
|
webapp/src/main/webapp/resources/jquery-ui/development-bundle/demos/autocomplete/categories.html | ui-icts/sispotr-project | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>jQuery UI Autocomplete Custom Data Demo</title>
<link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="../../jquery-1.4.2.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.position.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.autocomplete.js"></script>
<link type="text/css" href="../demos.css" rel="stylesheet" />
<style type="text/css">
.ui-autocomplete-category {
font-weight:bold;
padding:.2em .4em;
margin:.8em 0 .2em;
line-height:1.5;
}
</style>
<script type="text/javascript">
$.widget("custom.catcomplete", $.ui.autocomplete, {
_renderMenu: function( ul, items ) {
var self = this,
currentCategory = "";
$.each( items, function( index, item ) {
if ( item.category != currentCategory ) {
ul.append( "<li class='ui-autocomplete-category'>" + item.category + "</li>" );
currentCategory = item.category;
}
self._renderItem( ul, item );
});
}
});
</script>
<script type="text/javascript">
$(function() {
var data = [
{ label: "anders", category: "" },
{ label: "andreas", category: "" },
{ label: "antal", category: "" },
{ label: "annhhx10", category: "Products" },
{ label: "annk K12", category: "Products" },
{ label: "annttop C13", category: "Products" },
{ label: "anders andersson", category: "People" },
{ label: "andreas andersson", category: "People" },
{ label: "andreas johnson", category: "People" }
];
$('#search').catcomplete({
delay: 0,
source: data
});
});
</script>
</head>
<body>
<div class="demo">
<label for="search">Search: </label>
<input id="search" />
</div><!-- End demo -->
<div class="demo-description">
<p>
A categorized search result. Try typing "a" or "n".
</p>
</div><!-- End demo-description -->
</body>
</html>
|
www/bower_components/core-tests/runner.html | xasos/Cordova-Polymer-Seed | <!doctype html>
<!--
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<html>
<head>
<title>Core Elements Test Runner</title>
<meta charset="UTF-8">
<script src="../platform/platform.js"></script>
<link rel="import" href="tests/tests.html">
</head>
<body>
<div id="mocha"></div>
</body>
</html>
|
{{cookiecutter.repo_name}}/lib/css/default.css | iromli/cookiecutter-revealjs | /*
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
*/
.hljs {
display: block; padding: 0.5em;
background: #F0F0F0;
}
.hljs,
.hljs-subst,
.hljs-tag .hljs-title,
.lisp .hljs-title,
.clojure .hljs-built_in,
.nginx .hljs-title {
color: black;
}
.hljs-string,
.hljs-title,
.hljs-constant,
.hljs-parent,
.hljs-tag .hljs-value,
.hljs-rules .hljs-value,
.hljs-rules .hljs-value .hljs-number,
.hljs-preprocessor,
.hljs-pragma,
.haml .hljs-symbol,
.ruby .hljs-symbol,
.ruby .hljs-symbol .hljs-string,
.hljs-aggregate,
.hljs-template_tag,
.django .hljs-variable,
.smalltalk .hljs-class,
.hljs-addition,
.hljs-flow,
.hljs-stream,
.bash .hljs-variable,
.apache .hljs-tag,
.apache .hljs-cbracket,
.tex .hljs-command,
.tex .hljs-special,
.erlang_repl .hljs-function_or_atom,
.asciidoc .hljs-header,
.markdown .hljs-header,
.coffeescript .hljs-attribute {
color: #800;
}
.smartquote,
.hljs-comment,
.hljs-annotation,
.hljs-template_comment,
.diff .hljs-header,
.hljs-chunk,
.asciidoc .hljs-blockquote,
.markdown .hljs-blockquote {
color: #888;
}
.hljs-number,
.hljs-date,
.hljs-regexp,
.hljs-literal,
.hljs-hexcolor,
.smalltalk .hljs-symbol,
.smalltalk .hljs-char,
.go .hljs-constant,
.hljs-change,
.lasso .hljs-variable,
.makefile .hljs-variable,
.asciidoc .hljs-bullet,
.markdown .hljs-bullet,
.asciidoc .hljs-link_url,
.markdown .hljs-link_url {
color: #080;
}
.hljs-label,
.hljs-javadoc,
.ruby .hljs-string,
.hljs-decorator,
.hljs-filter .hljs-argument,
.hljs-localvars,
.hljs-array,
.hljs-attr_selector,
.hljs-important,
.hljs-pseudo,
.hljs-pi,
.haml .hljs-bullet,
.hljs-doctype,
.hljs-deletion,
.hljs-envvar,
.hljs-shebang,
.apache .hljs-sqbracket,
.nginx .hljs-built_in,
.tex .hljs-formula,
.erlang_repl .hljs-reserved,
.hljs-prompt,
.asciidoc .hljs-link_label,
.markdown .hljs-link_label,
.vhdl .hljs-attribute,
.clojure .hljs-attribute,
.asciidoc .hljs-attribute,
.lasso .hljs-attribute,
.coffeescript .hljs-property,
.hljs-phony {
color: #88F
}
.hljs-keyword,
.hljs-id,
.hljs-title,
.hljs-built_in,
.hljs-aggregate,
.css .hljs-tag,
.hljs-javadoctag,
.hljs-phpdoc,
.hljs-yardoctag,
.smalltalk .hljs-class,
.hljs-winutils,
.bash .hljs-variable,
.apache .hljs-tag,
.go .hljs-typename,
.tex .hljs-command,
.asciidoc .hljs-strong,
.markdown .hljs-strong,
.hljs-request,
.hljs-status {
font-weight: bold;
}
.asciidoc .hljs-emphasis,
.markdown .hljs-emphasis {
font-style: italic;
}
.nginx .hljs-built_in {
font-weight: normal;
}
.coffeescript .javascript,
.javascript .xml,
.lasso .markup,
.tex .hljs-formula,
.xml .javascript,
.xml .vbscript,
.xml .css,
.xml .hljs-cdata {
opacity: 0.5;
}
|
tests/wpt/web-platform-tests/service-workers/stub-3.2.11-navigator-service-worker-onreloadpage.html | shinglyu/servo | <!DOCTYPE html>
<html>
<title>Service Workers: onreloadpage</title>
<head>
<link rel="help" href="https://w3c.github.io/ServiceWorker/#navigator-service-worker-onreloadpage">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<!--
`navigator.serviceWorker.onreloadpage` is the [event handler][1] that must be
supported as attribute by the `[ServiceWorkerContainer][2]` object. An event
named `reloadpage` using the `[ReloadPageEvent][3]` interface is dispatched on
`[ServiceWorkerContainer][2]` object when the page reload is triggered by the
`[self.clients.reloadAll()][4]` method call from the [active worker][5],
represented by its associated [ServiceWorkerGlobalScope][6] object, for the
document.
[1]: http://goo.gl/rBfiz0
[2]: #service-worker-container-interface
[3]: #reload-page-event-interface
[4]: #reloadall-method
[5]: #active-worker
[6]: #service-worker-global-scope-interface
-->
<script>
test(function() {
// not_implemented();
}, "There are no tests for section onreloadpage so far.");
</script>
</body>
</html>
|
ztree/src/main/resources/static/zTree/api/cn/fn.zTree._z.html | h819/spring-boot | <div class="apiDetail">
<div>
<h2><span>JSON</span><span class="path">$.fn.zTree.</span>_z</h2>
<h3>概述<span class="h3_info">[ 依赖 <span class="highlight_green">jquery.ztree.core</span> 核心 js ]</span></h3>
<div class="desc">
<p></p>
<div class="longdesc">
<p>zTree v3.x 内部的全部方法都可以通过 $.fn.zTree._z 进行调用,开放出来是为了更便于大家开发制作自己的 zTree 插件。 </p>
<p class="highlight_red">如无特殊需求请勿使用此对象,以及修改此对象内部的各个函数。</p>
</div>
</div>
</div>
</div> |
ajax/libs/yui/3.3.0pr1/scrollview/assets/scrollview-base-core.css | bootcdn/cdnjs | .yui3-scrollview {
position: relative;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
}
.yui3-scrollview-hidden {
display:none;
}
.yui3-scrollview-content {
position:relative;
}
/* Cover common use case - li content, without reset */
.yui3-scrollview .yui3-scrollview-content ul {
margin:0;
padding:0;
}
.yui3-scrollview-vert .yui3-scrollview-content ul {
*zoom:1
}
.yui3-scrollview-content li {
padding:0;
margin:0;
list-style:none;
display: -moz-inline-stack;
display: inline-block;
*display: inline;
*zoom:1;
width:100%;
} |
zhiliao/core/templates/email/base.html | gladgod/zhiliao | {% block main %}{% endblock %}
<br><a href="http://{{ request.get_host }}">http://{{ request.get_host }}</a>
|
tests/css/lib/components/awesome-bootstrap-checkbox.css | jdi-framework/jdi-framework.github.io | .checkbox label {
display: inline-block;
position: relative;
padding-left: 5px; }
.checkbox label:before {
content: "";
display: inline-block;
position: absolute;
width: 17px;
height: 17px;
left: 0;
margin-left: -20px;
border: 1px solid #cccccc;
border-radius: 3px;
background-color: #fff;
-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
transition: border 0.15s ease-in-out, color 0.15s ease-in-out; }
.checkbox label:after {
display: inline-block;
position: absolute;
width: 16px;
height: 16px;
left: 0;
top: 0;
margin-left: -20px;
padding-left: 3px;
padding-top: 1px;
font-size: 11px;
color: #555555; }
.checkbox input[type=checkbox] {
display: none; }
.checkbox input[type=checkbox]:checked + label:after {
font-family: 'FontAwesome';
content: "\f00c"; }
.checkbox input[type=checkbox]:disabled + label {
opacity: 0.65; }
.checkbox input[type=checkbox]:disabled + label:before {
background-color: #eeeeee;
cursor: not-allowed; }
.checkbox.checkbox-circle label:before {
border-radius: 50%; }
.checkbox-primary input[type=checkbox]:checked + label:before {
background-color: #428bca;
border-color: #428bca; }
.checkbox-primary input[type=checkbox]:checked + label:after {
color: #fff; }
.checkbox-danger input[type=checkbox]:checked + label:before {
background-color: #d9534f;
border-color: #d9534f; }
.checkbox-danger input[type=checkbox]:checked + label:after {
color: #fff; }
.checkbox-info input[type=checkbox]:checked + label:before {
background-color: #5bc0de;
border-color: #5bc0de; }
.checkbox-info input[type=checkbox]:checked + label:after {
color: #fff; }
.checkbox-warning input[type=checkbox]:checked + label:before {
background-color: #f0ad4e;
border-color: #f0ad4e; }
.checkbox-warning input[type=checkbox]:checked + label:after {
color: #fff; }
.checkbox-success input[type=checkbox]:checked + label:before {
background-color: #5cb85c;
border-color: #5cb85c; }
.checkbox-success input[type=checkbox]:checked + label:after {
color: #fff; }
.radio label {
display: inline-block;
position: relative;
padding-left: 5px; }
.radio label:before {
content: "";
display: inline-block;
position: absolute;
width: 17px;
height: 17px;
left: 0;
margin-left: -20px;
border: 1px solid #cccccc;
border-radius: 50%;
background-color: #fff;
-webkit-transition: border 0.15s ease-in-out;
transition: border 0.15s ease-in-out; }
.radio label:after {
display: inline-block;
position: absolute;
content: " ";
width: 11px;
height: 11px;
left: 3px;
top: 3px;
margin-left: -20px;
border-radius: 50%;
background-color: #555555;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); }
.radio input[type=radio] {
display: none; }
.radio input[type=radio]:checked + label:after {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); }
.radio input[type=radio]:disabled + label {
opacity: 0.65; }
.radio input[type=radio]:disabled + label:before {
cursor: not-allowed; }
.radio-primary input[type=radio] + label:after {
background-color: #428bca; }
.radio-primary input[type=radio]:checked + label:before {
border-color: #428bca; }
.radio-primary input[type=radio]:checked + label:after {
background-color: #428bca; }
.radio-danger input[type=radio] + label:after {
background-color: #d9534f; }
.radio-danger input[type=radio]:checked + label:before {
border-color: #d9534f; }
.radio-danger input[type=radio]:checked + label:after {
background-color: #d9534f; }
.radio-info input[type=radio] + label:after {
background-color: #5bc0de; }
.radio-info input[type=radio]:checked + label:before {
border-color: #5bc0de; }
.radio-info input[type=radio]:checked + label:after {
background-color: #5bc0de; }
.radio-warning input[type=radio] + label:after {
background-color: #f0ad4e; }
.radio-warning input[type=radio]:checked + label:before {
border-color: #f0ad4e; }
.radio-warning input[type=radio]:checked + label:after {
background-color: #f0ad4e; }
.radio-success input[type=radio] + label:after {
background-color: #5cb85c; }
.radio-success input[type=radio]:checked + label:before {
border-color: #5cb85c; }
.radio-success input[type=radio]:checked + label:after {
background-color: #5cb85c; }
|
moodle/lib/yuilib/3.15.0/widget-modality/assets/widget-modality-core.css | sameertechworks/wpmoodle | /*
YUI 3.15.0 (build 834026e)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
/* WidgetModality core styles */
|
www/bootstrap/dist/bootstrap-select.css | caixiaowei08/btz-web-manage-client | /*!
* Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
*
* Copyright 2013-2017 bootstrap-select
* Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
*/
select.bs-select-hidden,
select.selectpicker {
display: none !important;
}
.bootstrap-select {
width: 220px \0;
/*IE9 and below*/
}
.bootstrap-select > .dropdown-toggle {
width: 100%;
padding-right: 25px;
z-index: 1;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active {
color: #999;
}
.bootstrap-select > select {
position: absolute !important;
bottom: 0;
left: 50%;
display: block !important;
width: 0.5px !important;
height: 100% !important;
padding: 0 !important;
opacity: 0 !important;
border: none;
}
.bootstrap-select > select.mobile-device {
top: 0;
left: 0;
display: block !important;
width: 100% !important;
z-index: 2;
}
.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
border-color: #b94a48;
}
.bootstrap-select.fit-width {
width: auto !important;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
width: 220px;
}
.bootstrap-select .dropdown-toggle:focus {
outline: thin dotted #333333 !important;
outline: 5px auto -webkit-focus-ring-color !important;
outline-offset: -2px;
}
.bootstrap-select.form-control {
margin-bottom: 0;
padding: 0;
border: none;
}
.bootstrap-select.form-control:not([class*="col-"]) {
width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
z-index: auto;
}
.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
border-radius: 0;
}
.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
float: none;
display: inline-block;
margin-left: 0;
}
.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
float: right;
}
.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
margin-bottom: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
padding: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
height: 100%;
font-size: inherit;
line-height: inherit;
border-radius: inherit;
}
.form-inline .bootstrap-select.btn-group .form-control {
width: 100%;
}
.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
cursor: not-allowed;
}
.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
outline: none !important;
}
.bootstrap-select.btn-group.bs-container {
position: absolute;
height: 0 !important;
padding: 0 !important;
}
.bootstrap-select.btn-group.bs-container .dropdown-menu {
z-index: 1060;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
display: inline-block;
overflow: hidden;
width: 100%;
text-align: left;
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
position: absolute;
top: 50%;
right: 12px;
margin-top: -2px;
vertical-align: middle;
}
.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
width: 100%;
}
.bootstrap-select.btn-group .dropdown-menu {
min-width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
position: static;
float: none;
border: 0;
padding: 0;
margin: 0;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.bootstrap-select.btn-group .dropdown-menu li {
position: relative;
}
.bootstrap-select.btn-group .dropdown-menu li.active small {
color: #fff;
}
.bootstrap-select.btn-group .dropdown-menu li.disabled a {
cursor: not-allowed;
}
.bootstrap-select.btn-group .dropdown-menu li a {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.bootstrap-select.btn-group .dropdown-menu li a.opt {
position: relative;
padding-left: 2.25em;
}
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
display: none;
}
.bootstrap-select.btn-group .dropdown-menu li a span.text {
display: inline-block;
}
.bootstrap-select.btn-group .dropdown-menu li small {
padding-left: 0.5em;
}
.bootstrap-select.btn-group .dropdown-menu .notify {
position: absolute;
bottom: 5px;
width: 96%;
margin: 0 2%;
min-height: 26px;
padding: 3px 5px;
background: #f5f5f5;
border: 1px solid #e3e3e3;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
pointer-events: none;
opacity: 0.9;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.bootstrap-select.btn-group .no-results {
padding: 3px;
background: #f5f5f5;
margin: 0 5px;
white-space: nowrap;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
position: static;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
position: static;
top: auto;
margin-top: -1px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
position: absolute;
display: inline-block;
right: 15px;
margin-top: 5px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
margin-right: 34px;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
content: '';
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid rgba(204, 204, 204, 0.2);
position: absolute;
bottom: -4px;
left: 9px;
display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
content: '';
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid white;
position: absolute;
bottom: -4px;
left: 10px;
display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
bottom: auto;
top: -3px;
border-top: 7px solid rgba(204, 204, 204, 0.2);
border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
bottom: auto;
top: -3px;
border-top: 6px solid white;
border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
right: 12px;
left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
right: 13px;
left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
display: block;
}
.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
padding: 4px 8px;
}
.bs-actionsbox {
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
width: 50%;
}
.bs-donebutton {
float: left;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.bs-donebutton .btn-group button {
width: 100%;
}
.bs-searchbox + .bs-actionsbox {
padding: 0 8px 4px;
}
.bs-searchbox .form-control {
margin-bottom: 0;
width: 100%;
float: none;
}
/*# sourceMappingURL=bootstrap-select.css.map */ |
web/css/font-lato.css | wayson/photo_gallery | @font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
src: local('Lato Regular'), local('Lato-Regular'), url('../fonts/lato/Lato-Regular.woff') format('woff');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 700;
src: local('Lato Bold'), local('Lato-Bold'), url('../fonts/lato/Lato-Bold.woff') format('woff');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 400;
src: local('Lato Italic'), local('Lato-Italic'), url('../fonts/lato/Lato-Italic.woff') format('woff');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 700;
src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url('../fonts/lato/Lato-BoldItalic.woff') format('woff');
}
|
www/node_modules/angular-material/modules/js/sticky/sticky.min.css | LeonardoSousa/androipapp | /*!
* Angular Material Design
* https://github.com/angular/material
* @license MIT
* v1.1.0-master-2b98560
*/.md-sticky-clone{z-index:2;top:0;left:0;right:0;position:absolute!important;-webkit-transform:translate3d(-9999px,-9999px,0);transform:translate3d(-9999px,-9999px,0)}.md-sticky-clone[sticky-state=active]{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.md-sticky-clone[sticky-state=active]:not(.md-sticky-no-effect) .md-subheader-inner{-webkit-animation:subheaderStickyHoverIn .3s ease-out both;animation:subheaderStickyHoverIn .3s ease-out both} |
third_party/blink/web_tests/external/wpt/referrer-policy/4K+1/gen/top.meta/unset/worker-module.http.html | scheib/chromium | <!DOCTYPE html>
<!-- DO NOT EDIT! Generated by `common/security-features/tools/generate.py --spec referrer-policy/4K+1/` -->
<html>
<head>
<meta charset="utf-8">
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/security-features/resources/common.sub.js"></script>
<script src="../../../../generic/test-case.sub.js"></script>
<script src="../../../generic/test-case.sub.js"></script>
</head>
<body>
<script>
TestCase(
[
{
"expectation": "stripped-referrer",
"origin": "same-http",
"redirection": "keep-origin",
"source_context_list": [],
"source_scheme": "http",
"subresource": "worker-module",
"subresource_policy_deliveries": [],
"test_description": "Referrer Policy: Expects stripped-referrer for worker-module to same-http origin and keep-origin redirection from http context."
},
{
"expectation": "stripped-referrer",
"origin": "same-http",
"redirection": "no-redirect",
"source_context_list": [],
"source_scheme": "http",
"subresource": "worker-module",
"subresource_policy_deliveries": [],
"test_description": "Referrer Policy: Expects stripped-referrer for worker-module to same-http origin and no-redirect redirection from http context."
}
],
new SanityChecker()
).start();
</script>
<div id="log"></div>
</body>
</html>
|
yowie-web/node_modules/protractor/node_modules/selenium-webdriver/lib/test/data/ClickTest_testClicksASurroundingStrongTag.html | vendavo/yowie | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>ClickTest_testClicksASurroundingStrongTag</title>
</head>
<body>
<div>
<a href="xhtmlTest.html"><strong>Click</strong></a>
</div>
</body>
</html> |
wp-content/themes/carat/core/libraries/font-awesome/src/_includes/examples/rotated-flipped.html | tectronics/tyres-wordpress | <section id="rotated-flipped">
<h2 class="page-header">
Rotated & Flipped
<div class="pull-right text-default margin-top padding-top-sm hidden-xs">
<a href="https://github.com/FortAwesome/Font-Awesome/blob/{{ site.fontawesome.doc_blob }}/less/rotated-flipped.less" class="text-muted padding-right">View LESS</a>
<a href="https://github.com/FortAwesome/Font-Awesome/blob/{{ site.fontawesome.doc_blob }}/scss/_rotated-flipped.scss" class="text-muted">View SASS</a>
</div>
</h2>
<div class="row">
<div class="col-md-3 col-sm-4">
<p style="font-size: 18px;">
<i class="fa fa-shield"></i> normal<br>
<i class="fa fa-shield fa-rotate-90"></i> fa-rotate-90<br>
<i class="fa fa-shield fa-rotate-180"></i> fa-rotate-180<br>
<i class="fa fa-shield fa-rotate-270"></i> fa-rotate-270<br>
<i class="fa fa-shield fa-flip-horizontal"></i> fa-flip-horizontal<br>
<i class="fa fa-shield fa-flip-vertical"></i> fa-flip-vertical
</p>
</div>
<div class="col-md-9 col-sm-8">
<p>
To arbitrarily rotate and flip icons, use the <code>fa-rotate-*</code> and <code>fa-flip-*</code> classes.
</p>
{% highlight html %}
<i class="fa fa-shield"></i> normal<br>
<i class="fa fa-shield fa-rotate-90"></i> fa-rotate-90<br>
<i class="fa fa-shield fa-rotate-180"></i> fa-rotate-180<br>
<i class="fa fa-shield fa-rotate-270"></i> fa-rotate-270<br>
<i class="fa fa-shield fa-flip-horizontal"></i> fa-flip-horizontal<br>
<i class="fa fa-shield fa-flip-vertical"></i> icon-flip-vertical
{% endhighlight %}
</div>
</div>
</section>
|
www/lib/font-awesome/src/3.2.1/icon/folder-close-alt/index.html | vinnylinck/listagram | <!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en" xmlns="http://www.w3.org/1999/html"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8" />
<title>icon-folder-close-alt: Font Awesome Icons</title>
<meta name="description" content="Font Awesome, the iconic font designed for Bootstrap">
<meta name="author" content="Dave Gandy">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--<meta name="viewport" content="initial-scale=1; maximum-scale=1">-->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- CSS
================================================== -->
<link rel="stylesheet" href="../../assets/css/site.css">
<link rel="stylesheet" href="../../assets/css/pygments.css">
<link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome.css">
<!--[if IE 7]>
<link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome-ie7.css">
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<script type="text/javascript" src="//use.typekit.net/wnc7ioh.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30136587-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body data-spy="scroll" data-target=".navbar">
<div class="wrapper"> <!-- necessary for sticky footer. wrap all content except footer -->
<div class="navbar navbar-inverse navbar-static-top hidden-print">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="../../"><i class="icon-flag"></i> Font Awesome</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="hidden-tablet "><a href="../../">Home</a></li>
<li><a href="../../get-started/">Get Started</a></li>
<li class="dropdown-split-left"><a href="../../icons/">Icons</a></li>
<li class="dropdown dropdown-split-right hidden-phone">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-caret-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li><a href="../../icons/"><i class="icon-flag icon-fixed-width"></i> Icons</a></li>
<li class="divider"></li>
<li><a href="../../icons/#new"><i class="icon-shield icon-fixed-width"></i> New Icons in 3.2.1</a></li>
<li><a href="../../icons/#web-application"><i class="icon-camera-retro icon-fixed-width"></i> Web Application Icons</a></li>
<li><a href="../../icons/#currency"><i class="icon-won icon-fixed-width"></i> Currency Icons</a></li>
<li><a href="../../icons/#text-editor"><i class="icon-file-text-alt icon-fixed-width"></i> Text Editor Icons</a></li>
<li><a href="../../icons/#directional"><i class="icon-hand-right icon-fixed-width"></i> Directional Icons</a></li>
<li><a href="../../icons/#video-player"><i class="icon-play-sign icon-fixed-width"></i> Video Player Icons</a></li>
<li><a href="../../icons/#brand"><i class="icon-github icon-fixed-width"></i> Brand Icons</a></li>
<li><a href="../../icons/#medical"><i class="icon-medkit icon-fixed-width"></i> Medical Icons</a></li>
</ul>
</li>
<li class="dropdown-split-left"><a href="../../examples/">Examples</a></li>
<li class="dropdown dropdown-split-right hidden-phone">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-caret-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li><a href="../../examples/">Examples</a></li>
<li class="divider"></li>
<li><a href="../../examples/#new-styles">New Styles</a></li>
<li><a href="../../examples/#inline-icons">Inline Icons</a></li>
<li><a href="../../examples/#larger-icons">Larger Icons</a></li>
<li><a href="../../examples/#bordered-pulled">Bordered & Pulled</a></li>
<li><a href="../../examples/#buttons">Buttons</a></li>
<li><a href="../../examples/#button-groups">Button Groups</a></li>
<li><a href="../../examples/#button-dropdowns">Button Dropdowns</a></li>
<li><a href="../../examples/#bulleted-lists">Bulleted Lists</a></li>
<li><a href="../../examples/#navigation">Navigation</a></li>
<li><a href="../../examples/#form-inputs">Form Inputs</a></li>
<li><a href="../../examples/#animated-spinner">Animated Spinner</a></li>
<li><a href="../../examples/#rotated-flipped">Rotated & Flipped</a></li>
<li><a href="../../examples/#stacked">Stacked</a></li>
<li><a href="../../examples/#custom">Custom CSS</a></li>
</ul>
</li>
<li><a href="../../whats-new/">
<span class="hidden-tablet">What's </span>New</a>
</li>
<li><a href="../../community/">Community</a></li>
<li><a href="../../license/">License</a></li>
</ul>
<ul class="nav pull-right">
<li><a href="http://blog.fontawesome.io">Blog</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="jumbotron jumbotron-icon">
<div class="container">
<div class="info-icons">
<i class="icon-folder-close-alt icon-6"></i>
<span class="hidden-phone">
<i class="icon-folder-close-alt icon-5"></i>
<span class="hidden-tablet"><i class="icon-folder-close-alt icon-4"></i> </span>
<i class="icon-folder-close-alt icon-3"></i>
<i class="icon-folder-close-alt icon-2"></i>
</span>
<i class="icon-folder-close-alt icon-1"></i>
</div>
<h1 class="info-class">
icon-folder-close-alt
<small>
<i class="icon-folder-close-alt"></i> ·
Unicode: <span class="upper">f114</span> ·
Created: v3.0 ·
Categories:
Web Application Icons
</small>
</h1>
</div>
</div>
<div class="container">
<section>
<div class="row-fluid">
<div class="span9">
<p>After you get <a href="../../integration/">up and running</a>, you can place Font Awesome icons just about anywhere with the <code><i></code> tag:</p>
<div class="well well-transparent">
<div style="font-size: 24px; line-height: 1.5em;">
<i class="icon-folder-close-alt"></i> icon-folder-close-alt
</div>
</div>
<div class="highlight"><pre><code class="html"><span class="nt"><i</span> <span class="na">class=</span><span class="s">"icon-folder-close-alt"</span><span class="nt">></i></span> icon-folder-close-alt
</code></pre></div>
<br>
<div class="lead"><i class="icon-info-sign"></i> Looking for more? Check out the <a href="../../examples/">examples</a>.</div>
</div>
<div class="span3">
<div class="info-ad"><div id="carbonads-container"><div class="carbonad"><div id="azcarbon"></div><script type="text/javascript">var z = document.createElement("script"); z.type = "text/javascript"; z.async = true; z.src = "http://engine.carbonads.com/z/32291/azcarbon_2_1_0_VERT"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(z, s);</script></div></div>
</div>
</div>
</div>
</section>
</div>
<div class="push"><!-- necessary for sticky footer --></div>
</div>
<footer class="footer hidden-print">
<div class="container text-center">
<div>
<i class="icon-flag"></i> Font Awesome 3.2.1
<span class="hidden-phone">·</span><br class="visible-phone">
Created and Maintained by <a href="http://twitter.com/davegandy">Dave Gandy</a>
</div>
<div>
Font Awesome licensed under <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a>
<span class="hidden-phone">·</span><br class="visible-phone">
Code licensed under <a href="http://opensource.org/licenses/mit-license.html">MIT License</a>
<span class="hidden-phone hidden-tablet">·</span><br class="visible-phone visible-tablet">
Documentation licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>
</div>
<div>
Thanks to <a href="http://maxcdn.com"><i class="icon-maxcdn"></i> MaxCDN</a> for providing the excellent <a href="http://www.bootstrapcdn.com/#tab_fontawesome">BootstrapCDN for Font Awesome</a>
</div>
<div class="project">
<a href="https://github.com/FortAwesome/Font-Awesome">GitHub Project</a> ·
<a href="https://github.com/FortAwesome/Font-Awesome/issues">Issues</a>
</div>
</div>
</footer>
<script src="http://platform.twitter.com/widgets.js"></script>
<script src="../../assets/js/jquery-1.7.1.min.js"></script>
<script src="../../assets/js/ZeroClipboard-1.1.7.min.js"></script>
<script src="../../assets/js/bootstrap-2.3.1.min.js"></script>
<script src="../../assets/js/site.js"></script>
</body>
</html>
|
www/static/uikit/css/components/slidenav.gradient.css | HoloShadow/SE-Project | /*! UIkit 2.25.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
Component: Slidenav
========================================================================== */
/*
* 1. Required for `a` elements
* 2. Dimension
* 3. Style
*/
.uk-slidenav {
/* 1 */
display: inline-block;
/* 2 */
box-sizing: border-box;
width: 60px;
height: 60px;
/* 3 */
line-height: 60px;
color: rgba(50, 50, 50, 0.4);
font-size: 60px;
text-align: center;
}
/*
* Hover
* 1. Apply hover style also to focus state
* 2. Remove default focus style
* 3. Required for `a` elements
* 4. Style
*/
.uk-slidenav:hover,
.uk-slidenav:focus {
/* 2 */
outline: none;
/* 3 */
text-decoration: none;
/* 4 */
color: rgba(50, 50, 50, 0.7);
cursor: pointer;
}
/* Active */
.uk-slidenav:active {
color: rgba(50, 50, 50, 0.9);
}
/*
* Icons
*/
.uk-slidenav-previous:before {
content: "\f104";
font-family: FontAwesome;
}
.uk-slidenav-next:before {
content: "\f105";
font-family: FontAwesome;
}
/* Sub-object: `uk-slidenav-position`
========================================================================== */
/*
* Create position context
*/
.uk-slidenav-position {
position: relative;
}
/*
* Center vertically
*/
.uk-slidenav-position .uk-slidenav {
display: none;
position: absolute;
top: 50%;
z-index: 1;
margin-top: -30px;
}
.uk-slidenav-position:hover .uk-slidenav {
display: block;
}
.uk-slidenav-position .uk-slidenav-previous {
left: 20px;
}
.uk-slidenav-position .uk-slidenav-next {
right: 20px;
}
/* Modifier: `uk-slidenav-contrast`
========================================================================== */
.uk-slidenav-contrast {
color: rgba(255, 255, 255, 0.5);
}
/*
* Hover
* 1. Apply hover style also to focus state
*/
.uk-slidenav-contrast:hover,
.uk-slidenav-contrast:focus {
color: rgba(255, 255, 255, 0.7);
}
/* Active */
.uk-slidenav-contrast:active {
color: rgba(255, 255, 255, 0.9);
}
|
src/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/css/button.css | plxaye/chromium | button,
input[type='button'],
input[type='submit'] {
-webkit-border-radius: 2px;
-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
-webkit-user-select: none;
background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5);
border: 1px solid #aaa;
color: #444;
font-size: inherit;
margin-bottom: 0px;
min-width: 4em;
padding: 3px 12px 3px 12px;
}
button:hover,
input[type='button']:hover,
input[type='submit']:hover {
-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
background: #ebebeb -webkit-linear-gradient(#fefefe, #f8f8f8 40%, #e9e9e9);
border-color: #999;
color: #222;
}
button:active,
input[type='button']:active,
input[type='submit']:active {
-webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
background: #ebebeb -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc);
color: #333;
}
button[disabled],
input[type='button'][disabled],
input[type='submit'][disabled],
button[disabled]:hover,
input[type='button'][disabled]:hover,
input[type='submit'][disabled]:hover {
-webkit-box-shadow: none;
background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5);
border-color: #aaa;
color: #888;
}
|
third_party/web_platform_tests/conformance-checkers/html/elements/area/href/port-single-letter-novalid.html | youtube/cobalt | <!DOCTYPE html>
<meta charset=utf-8>
<title>invalid href: port-single-letter</title>
<map name=foo><area href="http://f:b/c" alt></map>
|
third_party/web_platform_tests/conformance-checkers/html/elements/embed/src/host-space-novalid.html | youtube/cobalt | <!DOCTYPE html>
<meta charset=utf-8>
<title>invalid src: host-space</title>
<embed src="http://example .org">
|
docs/concepts/index.html | ajvincent/es7-membrane | <html lang="en-US">
<head>
<title>Building Membranes in JavaScript</title>
<meta charset="UTF-8">
<meta http-equiv="refresh"
content="0; URL='https://ajvincent.github.io/Membrane-concepts/'">
</head>
<body>
<p>This page should automatically redirect to
<a href="https://ajvincent.github.io/Membrane-concepts/"
>https://ajvincent.github.io/Membrane-concepts/</a> .</p>
</body>
</html>
|
resources/page.css | jedahu/story | pre
{
background-color: #f5f5ff;
border: solid #e5e5ee 1px;
text-align: left;
}
.code
{
margin-top: 1em;
}
body
{
font-family: sans-serif;
font-size: 0.95em;
margin: 0;
padding: 0;
}
h1, h2, h3, h4, h5, h6
{
font-family: sans-serif;
color: #535388;
}
a,
a:hover
{
text-decoration: none;
color: #535388;
}
article
{
position: absolute;
z-index: 1;
margin: 0;
margin-left: 11em;
padding: 0;
padding-left: 1em;
width: 38em;
text-align: justify;
background-color: white;
}
article > h1
{ font-size: 2.2em }
article > h2,
article > section > h1
{ font-size: 1.6em }
article > h3,
article > section > h2,
article > section > section > h1
{ font-size: 1.3em }
article > h4,
article h5,
article h6,
article > section > h3,
article > section > section > h2,
article > section > section > section > h1
{ font-size: 1em }
article > h1
{
color: white;
background-color: #9393aa;
margin: 0;
padding: 0.5em 0 0.8em 0;
text-align: center;
}
div#outline
{
position: fixed;
top: 2em;
left: 0.5em;
width: 10em;
}
div#outline > ol
{ font-size: 0.8em }
div#outline ol ol ol ol ol
{
display: none;
}
div#code-anchors
{
position: absolute;
top: 2em;
left: 51em;
padding-right: 1em;
}
div#code-anchors > ul
{
font-family: monospace;
font-size: 0.8em;
}
div#code-anchors > ul ul
{
padding-bottom: 1em;
}
div#outline ol,
div#code-anchors ul
{
margin-left: 0;
padding-left: 1em;
padding-right: 0;
list-style-type: none;
text-indent: -2em;
}
div#outline,
div#code-anchors
{
padding-left: 1em;
color: #535388;
}
div#outline a,
div#code-anchors a,
div#outline a:visited,
div#code-anchors a:visited
{
text-decoration: none;
color: #9393aa;
}
div#outline > ol > li > a,
div#outline > ol > li > a:visited
{
color: #535388;
}
div.test
{
border-left: #9393aa 1px dotted;
margin-left: -10px;
padding-left: 9px;
}
div.test-toggle
{
position: absolute;
margin-left: -1em;
width: 1em;
font-size: 0.8em;
font-weight: bold;
color: #9393aa;
cursor: pointer;
}
div#master-toggle
{
margin-left: -1em;
font-size: 0.8em;
font-weight: bold;
color: #9393aa;
cursor: pointer;
}
|
user_guide/general/credits.html | bituka/uaefreelancers_site | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Credits : CodeIgniter User Guide</title>
<style type='text/css' media='all'>@import url('../userguide.css');</style>
<link rel='stylesheet' type='text/css' media='all' href='../userguide.css' />
<script type="text/javascript" src="../nav/nav.js"></script>
<script type="text/javascript" src="../nav/prototype.lite.js"></script>
<script type="text/javascript" src="../nav/moo.fx.js"></script>
<script type="text/javascript" src="../nav/user_guide_menu.js"></script>
<meta http-equiv='expires' content='-1' />
<meta http-equiv= 'pragma' content='no-cache' />
<meta name='robots' content='all' />
<meta name='author' content='ExpressionEngine Dev Team' />
<meta name='description' content='CodeIgniter User Guide' />
</head>
<body>
<!-- START NAVIGATION -->
<div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div>
<div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div>
<div id="masthead">
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
<tr>
<td><h1>CodeIgniter User Guide Version 2.1.0</h1></td>
<td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td>
</tr>
</table>
</div>
<!-- END NAVIGATION -->
<!-- START BREADCRUMB -->
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
<tr>
<td id="breadcrumb">
<a href="http://codeigniter.com/">CodeIgniter Home</a> ›
<a href="../index.html">User Guide Home</a> ›
Credits
</td>
<td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.com/user_guide/" />Search User Guide <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" /> <input type="submit" class="submit" name="sa" value="Go" /></form></td>
</tr>
</table>
<!-- END BREADCRUMB -->
<br clear="all" />
<!-- START CONTENT -->
<div id="content">
<h1>Credits</h1>
<p>CodeIgniter was originally developed by <a href="http://www.ellislab.com/">Rick Ellis</a> (CEO of
<a href="http://ellislab.com/">EllisLab, Inc.</a>). The framework was written for performance in the real
world, with many of the class libraries, helpers, and sub-systems borrowed from the code-base of
<a href="http://www.expressionengine.com/">ExpressionEngine</a>.</p>
<p>It is currently developed and maintained by the ExpressionEngine Development Team.<br />
Bleeding edge development is spearheaded by the handpicked contributors of the Reactor Team.</p>
<p>A hat tip goes to Ruby on Rails for inspiring us to create a PHP framework, and for
bringing frameworks into the general consciousness of the web community.</p>
</div>
<!-- END CONTENT -->
<div id="footer">
<p>
Previous Topic: <a href="../changelog.html">Change Log</a>
·
<a href="#top">Top of Page</a> ·
<a href="../index.html">User Guide Home</a> ·
Next Topic: <a href="../installation/downloads.html">Downloading CodeIgniter</a>
</p>
<p><a href="http://codeigniter.com">CodeIgniter</a> · Copyright © 2006 - 2011 · <a href="http://ellislab.com/">EllisLab, Inc.</a></p>
</div>
</body>
</html> |
src/styles/button.css | RamonGebben/react-perf-tool |
.perf-tool .recButton {
padding: 1em;
width: 8px; height: 8px;
border-radius: 50%;
outline: none;
border: 1px solid #ddd;
text-align: left;
cursor: pointer;
}
.perf-tool .recButton.active {
border: 1px solid red;
background-color: red;
box-shadow: 0 0 10px red;
}
.perf-tool .x-button {
display: block;
width: 1em; height: 1em;
border: none;
outline: none;
padding: 0;
background-color: transparent;
font-size: 30px;
line-height: 1;
color: #5A5A5A;
cursor: pointer;
}
.perf-tool .removeMeasurement {
position: absolute;
right: 0;
top: 0.2em;
transition: all .2s ease-out;
}
.perf-tool .removeMeasurement:hover {
-webkit-transform: scale(1.3);
transition: all .2s ease-out;
}
.perf-tool .toggleButton {
position: absolute;
top: -1px; right: 0px;
z-index: 500;
}
|
docs/layoutSys_layouts_HBoxLayout.js.html | Zachacious/SaberTooth | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Source: layoutSys/layouts/HBoxLayout.js</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<script src="scripts/jquery.min.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="styles/jaguar.css">
<script>
var config = {"monospaceLinks":false,"cleverLinks":false,"default":{"outputSourceFiles":true},"linenums":true};
</script>
</head>
<body>
<div id="wrap" class="clearfix">
<div class="navigation">
<h3 class="applicationName"><a href="index.html"></a></h3>
<div class="search">
<input id="search" type="text" class="form-control input-sm" placeholder="Search Documentations">
</div>
<ul class="list">
<li class="item" data-name="ST.Alignment">
<span class="title">
<a href="ST.Alignment.html">ST.Alignment</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Alignment#hAlign"><a href="ST.Alignment.html#hAlign">hAlign</a></li>
<li data-name="ST.Alignment#vAlign"><a href="ST.Alignment.html#vAlign">vAlign</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Alignment.bottom"><a href="ST.Alignment.html#.bottom">bottom</a></li>
<li data-name="ST.Alignment.center"><a href="ST.Alignment.html#.center">center</a></li>
<li data-name="ST.Alignment.left"><a href="ST.Alignment.html#.left">left</a></li>
<li data-name="ST.Alignment.middle"><a href="ST.Alignment.html#.middle">middle</a></li>
<li data-name="ST.Alignment.right"><a href="ST.Alignment.html#.right">right</a></li>
<li data-name="ST.Alignment.top"><a href="ST.Alignment.html#.top">top</a></li>
<li data-name="ST.Alignment#getOffset"><a href="ST.Alignment.html#getOffset">getOffset</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.App">
<span class="title">
<a href="ST.App.html">ST.App</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.App#_autoResize"><a href="ST.App.html#_autoResize">_autoResize</a></li>
<li data-name="ST.App#_name"><a href="ST.App.html#_name">_name</a></li>
<li data-name="ST.App#_theme"><a href="ST.App.html#_theme">_theme</a></li>
<li data-name="ST.App#autoResize"><a href="ST.App.html#autoResize">autoResize</a></li>
<li data-name="ST.App#name"><a href="ST.App.html#name">name</a></li>
<li data-name="ST.App#root"><a href="ST.App.html#root">root</a></li>
<li data-name="ST.App#theme"><a href="ST.App.html#theme">theme</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.App#resizeToWindow"><a href="ST.App.html#resizeToWindow">resizeToWindow</a></li>
<li data-name="ST.App#update"><a href="ST.App.html#update">update</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.GraphicsGen">
<span class="title">
<a href="ST.GraphicsGen.html">ST.GraphicsGen</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.GraphicsGen.rectangleGraphic"><a href="ST.GraphicsGen.html#.rectangleGraphic">rectangleGraphic</a></li>
<li data-name="ST.GraphicsGen.rectangleTexture"><a href="ST.GraphicsGen.html#.rectangleTexture">rectangleTexture</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Layouts.BaseLayout">
<span class="title">
<a href="ST.Layouts.BaseLayout.html">ST.Layouts.BaseLayout</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Layouts.BaseLayout#_host"><a href="ST.Layouts.BaseLayout.html#_host">_host</a></li>
<li data-name="ST.Layouts.BaseLayout#alignment"><a href="ST.Layouts.BaseLayout.html#alignment">alignment</a></li>
<li data-name="ST.Layouts.BaseLayout#updateOnHostChanges"><a href="ST.Layouts.BaseLayout.html#updateOnHostChanges">updateOnHostChanges</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Layouts.BaseLayout#beginIteration"><a href="ST.Layouts.BaseLayout.html#beginIteration">beginIteration</a></li>
<li data-name="ST.Layouts.BaseLayout#endIteration"><a href="ST.Layouts.BaseLayout.html#endIteration">endIteration</a></li>
<li data-name="ST.Layouts.BaseLayout#exec"><a href="ST.Layouts.BaseLayout.html#exec">exec</a></li>
<li data-name="ST.Layouts.BaseLayout#hostChildrenChanged"><a href="ST.Layouts.BaseLayout.html#hostChildrenChanged">hostChildrenChanged</a></li>
<li data-name="ST.Layouts.BaseLayout#setChildPos"><a href="ST.Layouts.BaseLayout.html#setChildPos">setChildPos</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Layouts.BoxLayout">
<span class="title">
<a href="ST.Layouts.BoxLayout.html">ST.Layouts.BoxLayout</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Layouts.BoxLayout#_host"><a href="ST.Layouts.BoxLayout.html#_host">_host</a></li>
<li data-name="ST.Layouts.BoxLayout#_totalChildrenHeight"><a href="ST.Layouts.BoxLayout.html#_totalChildrenHeight">_totalChildrenHeight</a></li>
<li data-name="ST.Layouts.BoxLayout#_totalChildrenHeightOld"><a href="ST.Layouts.BoxLayout.html#_totalChildrenHeightOld">_totalChildrenHeightOld</a></li>
<li data-name="ST.Layouts.BoxLayout#_totalChildrenSizeInitialized"><a href="ST.Layouts.BoxLayout.html#_totalChildrenSizeInitialized">_totalChildrenSizeInitialized</a></li>
<li data-name="ST.Layouts.BoxLayout#_totalChildrenWidth"><a href="ST.Layouts.BoxLayout.html#_totalChildrenWidth">_totalChildrenWidth</a></li>
<li data-name="ST.Layouts.BoxLayout#_totalChildrenWidthOld"><a href="ST.Layouts.BoxLayout.html#_totalChildrenWidthOld">_totalChildrenWidthOld</a></li>
<li data-name="ST.Layouts.BoxLayout#alignment"><a href="ST.Layouts.BoxLayout.html#alignment">alignment</a></li>
<li data-name="ST.Layouts.BoxLayout#orientation"><a href="ST.Layouts.BoxLayout.html#orientation">orientation</a></li>
<li data-name="ST.Layouts.BoxLayout#posOffset"><a href="ST.Layouts.BoxLayout.html#posOffset">posOffset</a></li>
<li data-name="ST.Layouts.BoxLayout#spacing"><a href="ST.Layouts.BoxLayout.html#spacing">spacing</a></li>
<li data-name="ST.Layouts.BoxLayout#updateOnHostChanges"><a href="ST.Layouts.BoxLayout.html#updateOnHostChanges">updateOnHostChanges</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Layouts.BoxLayout#beginIteration"><a href="ST.Layouts.BoxLayout.html#beginIteration">beginIteration</a></li>
<li data-name="ST.Layouts.BoxLayout#endIteration"><a href="ST.Layouts.BoxLayout.html#endIteration">endIteration</a></li>
<li data-name="ST.Layouts.BoxLayout#exec"><a href="ST.Layouts.BoxLayout.html#exec">exec</a></li>
<li data-name="ST.Layouts.BoxLayout#hostChildrenChanged"><a href="ST.Layouts.BoxLayout.html#hostChildrenChanged">hostChildrenChanged</a></li>
<li data-name="ST.Layouts.BoxLayout#initTotalChildrenSize"><a href="ST.Layouts.BoxLayout.html#initTotalChildrenSize">initTotalChildrenSize</a></li>
<li data-name="ST.Layouts.BoxLayout#setChildPos"><a href="ST.Layouts.BoxLayout.html#setChildPos">setChildPos</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Layouts.FixedLayout">
<span class="title">
<a href="ST.Layouts.FixedLayout.html">ST.Layouts.FixedLayout</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Layouts.FixedLayout#endIteration"><a href="ST.Layouts.FixedLayout.html#endIteration">endIteration</a></li>
<li data-name="ST.Layouts.FixedLayout#setChildPos"><a href="ST.Layouts.FixedLayout.html#setChildPos">setChildPos</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Layouts.HBoxLayout">
<span class="title">
<a href="ST.Layouts.HBoxLayout.html">ST.Layouts.HBoxLayout</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Layouts.HBoxLayout#_host"><a href="ST.Layouts.HBoxLayout.html#_host">_host</a></li>
<li data-name="ST.Layouts.HBoxLayout#_totalChildrenHeight"><a href="ST.Layouts.HBoxLayout.html#_totalChildrenHeight">_totalChildrenHeight</a></li>
<li data-name="ST.Layouts.HBoxLayout#_totalChildrenHeightOld"><a href="ST.Layouts.HBoxLayout.html#_totalChildrenHeightOld">_totalChildrenHeightOld</a></li>
<li data-name="ST.Layouts.HBoxLayout#_totalChildrenSizeInitialized"><a href="ST.Layouts.HBoxLayout.html#_totalChildrenSizeInitialized">_totalChildrenSizeInitialized</a></li>
<li data-name="ST.Layouts.HBoxLayout#_totalChildrenWidth"><a href="ST.Layouts.HBoxLayout.html#_totalChildrenWidth">_totalChildrenWidth</a></li>
<li data-name="ST.Layouts.HBoxLayout#_totalChildrenWidthOld"><a href="ST.Layouts.HBoxLayout.html#_totalChildrenWidthOld">_totalChildrenWidthOld</a></li>
<li data-name="ST.Layouts.HBoxLayout#alignment"><a href="ST.Layouts.HBoxLayout.html#alignment">alignment</a></li>
<li data-name="ST.Layouts.HBoxLayout#orientation"><a href="ST.Layouts.HBoxLayout.html#orientation">orientation</a></li>
<li data-name="ST.Layouts.HBoxLayout#posOffset"><a href="ST.Layouts.HBoxLayout.html#posOffset">posOffset</a></li>
<li data-name="ST.Layouts.HBoxLayout#spacing"><a href="ST.Layouts.HBoxLayout.html#spacing">spacing</a></li>
<li data-name="ST.Layouts.HBoxLayout#updateOnHostChanges"><a href="ST.Layouts.HBoxLayout.html#updateOnHostChanges">updateOnHostChanges</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Layouts.HBoxLayout#exec"><a href="ST.Layouts.HBoxLayout.html#exec">exec</a></li>
<li data-name="ST.Layouts.HBoxLayout#initTotalChildrenSize"><a href="ST.Layouts.HBoxLayout.html#initTotalChildrenSize">initTotalChildrenSize</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Layouts.VBoxLayout">
<span class="title">
<a href="ST.Layouts.VBoxLayout.html">ST.Layouts.VBoxLayout</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Layouts.VBoxLayout#_host"><a href="ST.Layouts.VBoxLayout.html#_host">_host</a></li>
<li data-name="ST.Layouts.VBoxLayout#_totalChildrenHeight"><a href="ST.Layouts.VBoxLayout.html#_totalChildrenHeight">_totalChildrenHeight</a></li>
<li data-name="ST.Layouts.VBoxLayout#_totalChildrenHeightOld"><a href="ST.Layouts.VBoxLayout.html#_totalChildrenHeightOld">_totalChildrenHeightOld</a></li>
<li data-name="ST.Layouts.VBoxLayout#_totalChildrenSizeInitialized"><a href="ST.Layouts.VBoxLayout.html#_totalChildrenSizeInitialized">_totalChildrenSizeInitialized</a></li>
<li data-name="ST.Layouts.VBoxLayout#_totalChildrenWidth"><a href="ST.Layouts.VBoxLayout.html#_totalChildrenWidth">_totalChildrenWidth</a></li>
<li data-name="ST.Layouts.VBoxLayout#_totalChildrenWidthOld"><a href="ST.Layouts.VBoxLayout.html#_totalChildrenWidthOld">_totalChildrenWidthOld</a></li>
<li data-name="ST.Layouts.VBoxLayout#alignment"><a href="ST.Layouts.VBoxLayout.html#alignment">alignment</a></li>
<li data-name="ST.Layouts.VBoxLayout#orientation"><a href="ST.Layouts.VBoxLayout.html#orientation">orientation</a></li>
<li data-name="ST.Layouts.VBoxLayout#posOffset"><a href="ST.Layouts.VBoxLayout.html#posOffset">posOffset</a></li>
<li data-name="ST.Layouts.VBoxLayout#spacing"><a href="ST.Layouts.VBoxLayout.html#spacing">spacing</a></li>
<li data-name="ST.Layouts.VBoxLayout#updateOnHostChanges"><a href="ST.Layouts.VBoxLayout.html#updateOnHostChanges">updateOnHostChanges</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Layouts.VBoxLayout#exec"><a href="ST.Layouts.VBoxLayout.html#exec">exec</a></li>
<li data-name="ST.Layouts.VBoxLayout#initTotalChildrenSize"><a href="ST.Layouts.VBoxLayout.html#initTotalChildrenSize">initTotalChildrenSize</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Padding">
<span class="title">
<a href="ST.Padding.html">ST.Padding</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Padding#_bottom"><a href="ST.Padding.html#_bottom">_bottom</a></li>
<li data-name="ST.Padding#_left"><a href="ST.Padding.html#_left">_left</a></li>
<li data-name="ST.Padding#_right"><a href="ST.Padding.html#_right">_right</a></li>
<li data-name="ST.Padding#_top"><a href="ST.Padding.html#_top">_top</a></li>
<li data-name="ST.Padding#bottom"><a href="ST.Padding.html#bottom">bottom</a></li>
<li data-name="ST.Padding#left"><a href="ST.Padding.html#left">left</a></li>
<li data-name="ST.Padding#right"><a href="ST.Padding.html#right">right</a></li>
<li data-name="ST.Padding#top"><a href="ST.Padding.html#top">top</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Padding#set"><a href="ST.Padding.html#set">set</a></li>
<li data-name="ST.Padding#setAllTo"><a href="ST.Padding.html#setAllTo">setAllTo</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Point">
<span class="title">
<a href="ST.Point.html">ST.Point</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Point#_x"><a href="ST.Point.html#_x">_x</a></li>
<li data-name="ST.Point#_y"><a href="ST.Point.html#_y">_y</a></li>
<li data-name="ST.Point#x"><a href="ST.Point.html#x">x</a></li>
<li data-name="ST.Point#y"><a href="ST.Point.html#y">y</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Point#set"><a href="ST.Point.html#set">set</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Settings">
<span class="title">
<a href="ST.Settings.html">ST.Settings</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Settings#add"><a href="ST.Settings.html#add">add</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Size">
<span class="title">
<a href="ST.Size.html">ST.Size</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Size#_height"><a href="ST.Size.html#_height">_height</a></li>
<li data-name="ST.Size#_width"><a href="ST.Size.html#_width">_width</a></li>
<li data-name="ST.Size#height"><a href="ST.Size.html#height">height</a></li>
<li data-name="ST.Size#width"><a href="ST.Size.html#width">width</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Size#set"><a href="ST.Size.html#set">set</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.SizePolicies.BasePolicy">
<span class="title">
<a href="ST.SizePolicies.BasePolicy.html">ST.SizePolicies.BasePolicy</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.SizePolicies.BasePolicy#_host"><a href="ST.SizePolicies.BasePolicy.html#_host">_host</a></li>
<li data-name="ST.SizePolicies.BasePolicy#layoutSpacing"><a href="ST.SizePolicies.BasePolicy.html#layoutSpacing">layoutSpacing</a></li>
<li data-name="ST.SizePolicies.BasePolicy#orientation"><a href="ST.SizePolicies.BasePolicy.html#orientation">orientation</a></li>
<li data-name="ST.SizePolicies.BasePolicy#totalChildrenFinished"><a href="ST.SizePolicies.BasePolicy.html#totalChildrenFinished">totalChildrenFinished</a></li>
<li data-name="ST.SizePolicies.BasePolicy#totalChildrenFinishedSize"><a href="ST.SizePolicies.BasePolicy.html#totalChildrenFinishedSize">totalChildrenFinishedSize</a></li>
<li data-name="ST.SizePolicies.BasePolicy#updateOnHostChanges"><a href="ST.SizePolicies.BasePolicy.html#updateOnHostChanges">updateOnHostChanges</a></li>
<li data-name="ST.SizePolicies.BasePolicy#usedSpace"><a href="ST.SizePolicies.BasePolicy.html#usedSpace">usedSpace</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.SizePolicies.BasePolicy#childPolicyFinished"><a href="ST.SizePolicies.BasePolicy.html#childPolicyFinished">childPolicyFinished</a></li>
<li data-name="ST.SizePolicies.BasePolicy#exec"><a href="ST.SizePolicies.BasePolicy.html#exec">exec</a></li>
<li data-name="ST.SizePolicies.BasePolicy#sizeWidgetHorizontal"><a href="ST.SizePolicies.BasePolicy.html#sizeWidgetHorizontal">sizeWidgetHorizontal</a></li>
<li data-name="ST.SizePolicies.BasePolicy#sizeWidgetVertical"><a href="ST.SizePolicies.BasePolicy.html#sizeWidgetVertical">sizeWidgetVertical</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.SizePolicies.ExpandingPolicy">
<span class="title">
<a href="ST.SizePolicies.ExpandingPolicy.html">ST.SizePolicies.ExpandingPolicy</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.SizePolicies.ExpandingPolicy#_host"><a href="ST.SizePolicies.ExpandingPolicy.html#_host">_host</a></li>
<li data-name="ST.SizePolicies.ExpandingPolicy#layoutSpacing"><a href="ST.SizePolicies.ExpandingPolicy.html#layoutSpacing">layoutSpacing</a></li>
<li data-name="ST.SizePolicies.ExpandingPolicy#orientation"><a href="ST.SizePolicies.ExpandingPolicy.html#orientation">orientation</a></li>
<li data-name="ST.SizePolicies.ExpandingPolicy#totalChildrenFinished"><a href="ST.SizePolicies.ExpandingPolicy.html#totalChildrenFinished">totalChildrenFinished</a></li>
<li data-name="ST.SizePolicies.ExpandingPolicy#totalChildrenFinishedSize"><a href="ST.SizePolicies.ExpandingPolicy.html#totalChildrenFinishedSize">totalChildrenFinishedSize</a></li>
<li data-name="ST.SizePolicies.ExpandingPolicy#updateOnHostChanges"><a href="ST.SizePolicies.ExpandingPolicy.html#updateOnHostChanges">updateOnHostChanges</a></li>
<li data-name="ST.SizePolicies.ExpandingPolicy#usedSpace"><a href="ST.SizePolicies.ExpandingPolicy.html#usedSpace">usedSpace</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.SizePolicies.ExpandingPolicy#childPolicyFinished"><a href="ST.SizePolicies.ExpandingPolicy.html#childPolicyFinished">childPolicyFinished</a></li>
<li data-name="ST.SizePolicies.ExpandingPolicy#exec"><a href="ST.SizePolicies.ExpandingPolicy.html#exec">exec</a></li>
<li data-name="ST.SizePolicies.ExpandingPolicy#parentReadyH"><a href="ST.SizePolicies.ExpandingPolicy.html#parentReadyH">parentReadyH</a></li>
<li data-name="ST.SizePolicies.ExpandingPolicy#parentReadyV"><a href="ST.SizePolicies.ExpandingPolicy.html#parentReadyV">parentReadyV</a></li>
<li data-name="ST.SizePolicies.ExpandingPolicy#sizeWidgetHorizontal"><a href="ST.SizePolicies.ExpandingPolicy.html#sizeWidgetHorizontal">sizeWidgetHorizontal</a></li>
<li data-name="ST.SizePolicies.ExpandingPolicy#sizeWidgetVertical"><a href="ST.SizePolicies.ExpandingPolicy.html#sizeWidgetVertical">sizeWidgetVertical</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.SizePolicies.FixedPolicy">
<span class="title">
<a href="ST.SizePolicies.FixedPolicy.html">ST.SizePolicies.FixedPolicy</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.SizePolicies.FixedPolicy#_host"><a href="ST.SizePolicies.FixedPolicy.html#_host">_host</a></li>
<li data-name="ST.SizePolicies.FixedPolicy#layoutSpacing"><a href="ST.SizePolicies.FixedPolicy.html#layoutSpacing">layoutSpacing</a></li>
<li data-name="ST.SizePolicies.FixedPolicy#orientation"><a href="ST.SizePolicies.FixedPolicy.html#orientation">orientation</a></li>
<li data-name="ST.SizePolicies.FixedPolicy#totalChildrenFinished"><a href="ST.SizePolicies.FixedPolicy.html#totalChildrenFinished">totalChildrenFinished</a></li>
<li data-name="ST.SizePolicies.FixedPolicy#totalChildrenFinishedSize"><a href="ST.SizePolicies.FixedPolicy.html#totalChildrenFinishedSize">totalChildrenFinishedSize</a></li>
<li data-name="ST.SizePolicies.FixedPolicy#updateOnHostChanges"><a href="ST.SizePolicies.FixedPolicy.html#updateOnHostChanges">updateOnHostChanges</a></li>
<li data-name="ST.SizePolicies.FixedPolicy#usedSpace"><a href="ST.SizePolicies.FixedPolicy.html#usedSpace">usedSpace</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.SizePolicies.FixedPolicy#childPolicyFinished"><a href="ST.SizePolicies.FixedPolicy.html#childPolicyFinished">childPolicyFinished</a></li>
<li data-name="ST.SizePolicies.FixedPolicy#exec"><a href="ST.SizePolicies.FixedPolicy.html#exec">exec</a></li>
<li data-name="ST.SizePolicies.FixedPolicy#sizeWidgetHorizontal"><a href="ST.SizePolicies.FixedPolicy.html#sizeWidgetHorizontal">sizeWidgetHorizontal</a></li>
<li data-name="ST.SizePolicies.FixedPolicy#sizeWidgetVertical"><a href="ST.SizePolicies.FixedPolicy.html#sizeWidgetVertical">sizeWidgetVertical</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.SizePolicies.SharedExpandingPolicy">
<span class="title">
<a href="ST.SizePolicies.SharedExpandingPolicy.html">ST.SizePolicies.SharedExpandingPolicy</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.SizePolicies.SharedExpandingPolicy#_host"><a href="ST.SizePolicies.SharedExpandingPolicy.html#_host">_host</a></li>
<li data-name="ST.SizePolicies.SharedExpandingPolicy#layoutSpacing"><a href="ST.SizePolicies.SharedExpandingPolicy.html#layoutSpacing">layoutSpacing</a></li>
<li data-name="ST.SizePolicies.SharedExpandingPolicy#orientation"><a href="ST.SizePolicies.SharedExpandingPolicy.html#orientation">orientation</a></li>
<li data-name="ST.SizePolicies.SharedExpandingPolicy#totalChildrenFinished"><a href="ST.SizePolicies.SharedExpandingPolicy.html#totalChildrenFinished">totalChildrenFinished</a></li>
<li data-name="ST.SizePolicies.SharedExpandingPolicy#totalChildrenFinishedSize"><a href="ST.SizePolicies.SharedExpandingPolicy.html#totalChildrenFinishedSize">totalChildrenFinishedSize</a></li>
<li data-name="ST.SizePolicies.SharedExpandingPolicy#updateOnHostChanges"><a href="ST.SizePolicies.SharedExpandingPolicy.html#updateOnHostChanges">updateOnHostChanges</a></li>
<li data-name="ST.SizePolicies.SharedExpandingPolicy#usedSpace"><a href="ST.SizePolicies.SharedExpandingPolicy.html#usedSpace">usedSpace</a></li>
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ST.SizePolicies.SharedExpandingPolicy#consumeUnusedSpaceH"><a href="ST.SizePolicies.SharedExpandingPolicy.html#consumeUnusedSpaceH">consumeUnusedSpaceH</a></li>
<li data-name="ST.SizePolicies.SharedExpandingPolicy#consumeUnusedSpaceV"><a href="ST.SizePolicies.SharedExpandingPolicy.html#consumeUnusedSpaceV">consumeUnusedSpaceV</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.SizePolicies.SharedExpandingPolicy#childPolicyFinished"><a href="ST.SizePolicies.SharedExpandingPolicy.html#childPolicyFinished">childPolicyFinished</a></li>
<li data-name="ST.SizePolicies.SharedExpandingPolicy#exec"><a href="ST.SizePolicies.SharedExpandingPolicy.html#exec">exec</a></li>
<li data-name="ST.SizePolicies.SharedExpandingPolicy#parentReadyH"><a href="ST.SizePolicies.SharedExpandingPolicy.html#parentReadyH">parentReadyH</a></li>
<li data-name="ST.SizePolicies.SharedExpandingPolicy#parentReadyV"><a href="ST.SizePolicies.SharedExpandingPolicy.html#parentReadyV">parentReadyV</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Theme">
<span class="title">
<a href="ST.Theme.html">ST.Theme</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Theme#background"><a href="ST.Theme.html#background">background</a></li>
<li data-name="ST.Theme#baseTexture"><a href="ST.Theme.html#baseTexture">baseTexture</a></li>
<li data-name="ST.Theme#colors"><a href="ST.Theme.html#colors">colors</a></li>
<li data-name="ST.Theme#fontStyles"><a href="ST.Theme.html#fontStyles">fontStyles</a></li>
<li data-name="ST.Theme#frames"><a href="ST.Theme.html#frames">frames</a></li>
<li data-name="ST.Theme#textures"><a href="ST.Theme.html#textures">textures</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Theme.getClipGraphic"><a href="ST.Theme.html#.getClipGraphic">getClipGraphic</a></li>
<li data-name="ST.Theme.registerDefaultWidgetStyle"><a href="ST.Theme.html#.registerDefaultWidgetStyle">registerDefaultWidgetStyle</a></li>
<li data-name="ST.Theme#makeGraphicsRecursive"><a href="ST.Theme.html#makeGraphicsRecursive">makeGraphicsRecursive</a></li>
<li data-name="ST.Theme#makeTexture"><a href="ST.Theme.html#makeTexture">makeTexture</a></li>
<li data-name="ST.Theme#makeTexturesRecursive"><a href="ST.Theme.html#makeTexturesRecursive">makeTexturesRecursive</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Widgets.BaseWidget">
<span class="title">
<a href="ST.Widgets.BaseWidget.html">ST.Widgets.BaseWidget</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Widgets.BaseWidget#_clipGraphic"><a href="ST.Widgets.BaseWidget.html#_clipGraphic">_clipGraphic</a></li>
<li data-name="ST.Widgets.BaseWidget#_disabled"><a href="ST.Widgets.BaseWidget.html#_disabled">_disabled</a></li>
<li data-name="ST.Widgets.BaseWidget#_hPolicy"><a href="ST.Widgets.BaseWidget.html#_hPolicy">_hPolicy</a></li>
<li data-name="ST.Widgets.BaseWidget#_interactiveState"><a href="ST.Widgets.BaseWidget.html#_interactiveState">_interactiveState</a></li>
<li data-name="ST.Widgets.BaseWidget#_layout"><a href="ST.Widgets.BaseWidget.html#_layout">_layout</a></li>
<li data-name="ST.Widgets.BaseWidget#_position"><a href="ST.Widgets.BaseWidget.html#_position">_position</a></li>
<li data-name="ST.Widgets.BaseWidget#_sizeProxy"><a href="ST.Widgets.BaseWidget.html#_sizeProxy">_sizeProxy</a></li>
<li data-name="ST.Widgets.BaseWidget#_vPolicy"><a href="ST.Widgets.BaseWidget.html#_vPolicy">_vPolicy</a></li>
<li data-name="ST.Widgets.BaseWidget#bypassInvalidation"><a href="ST.Widgets.BaseWidget.html#bypassInvalidation">bypassInvalidation</a></li>
<li data-name="ST.Widgets.BaseWidget#clipGraphic"><a href="ST.Widgets.BaseWidget.html#clipGraphic">clipGraphic</a></li>
<li data-name="ST.Widgets.BaseWidget#disabled"><a href="ST.Widgets.BaseWidget.html#disabled">disabled</a></li>
<li data-name="ST.Widgets.BaseWidget#height"><a href="ST.Widgets.BaseWidget.html#height">height</a></li>
<li data-name="ST.Widgets.BaseWidget#height"><a href="ST.Widgets.BaseWidget.html#height">height</a></li>
<li data-name="ST.Widgets.BaseWidget#hPolicy"><a href="ST.Widgets.BaseWidget.html#hPolicy">hPolicy</a></li>
<li data-name="ST.Widgets.BaseWidget#layout"><a href="ST.Widgets.BaseWidget.html#layout">layout</a></li>
<li data-name="ST.Widgets.BaseWidget#max"><a href="ST.Widgets.BaseWidget.html#max">max</a></li>
<li data-name="ST.Widgets.BaseWidget#min"><a href="ST.Widgets.BaseWidget.html#min">min</a></li>
<li data-name="ST.Widgets.BaseWidget#padding"><a href="ST.Widgets.BaseWidget.html#padding">padding</a></li>
<li data-name="ST.Widgets.BaseWidget#position"><a href="ST.Widgets.BaseWidget.html#position">position</a></li>
<li data-name="ST.Widgets.BaseWidget#sizeProxy"><a href="ST.Widgets.BaseWidget.html#sizeProxy">sizeProxy</a></li>
<li data-name="ST.Widgets.BaseWidget#theme"><a href="ST.Widgets.BaseWidget.html#theme">theme</a></li>
<li data-name="ST.Widgets.BaseWidget#valid"><a href="ST.Widgets.BaseWidget.html#valid">valid</a></li>
<li data-name="ST.Widgets.BaseWidget#vPolicy"><a href="ST.Widgets.BaseWidget.html#vPolicy">vPolicy</a></li>
<li data-name="ST.Widgets.BaseWidget#width"><a href="ST.Widgets.BaseWidget.html#width">width</a></li>
<li data-name="ST.Widgets.BaseWidget#width"><a href="ST.Widgets.BaseWidget.html#width">width</a></li>
<li data-name="ST.Widgets.BaseWidget#x"><a href="ST.Widgets.BaseWidget.html#x">x</a></li>
<li data-name="ST.Widgets.BaseWidget#y"><a href="ST.Widgets.BaseWidget.html#y">y</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Widgets.BaseWidget.focusWidget"><a href="ST.Widgets.BaseWidget.html#.focusWidget">focusWidget</a></li>
<li data-name="ST.Widgets.BaseWidget.getFocusedWidget"><a href="ST.Widgets.BaseWidget.html#.getFocusedWidget">getFocusedWidget</a></li>
<li data-name="ST.Widgets.BaseWidget#_evaluateMask"><a href="ST.Widgets.BaseWidget.html#_evaluateMask">_evaluateMask</a></li>
<li data-name="ST.Widgets.BaseWidget#_updateClipGraphic"><a href="ST.Widgets.BaseWidget.html#_updateClipGraphic">_updateClipGraphic</a></li>
<li data-name="ST.Widgets.BaseWidget#addChild"><a href="ST.Widgets.BaseWidget.html#addChild">addChild</a></li>
<li data-name="ST.Widgets.BaseWidget#addChildAt"><a href="ST.Widgets.BaseWidget.html#addChildAt">addChildAt</a></li>
<li data-name="ST.Widgets.BaseWidget#applyPosition"><a href="ST.Widgets.BaseWidget.html#applyPosition">applyPosition</a></li>
<li data-name="ST.Widgets.BaseWidget#beginBypassUpdate"><a href="ST.Widgets.BaseWidget.html#beginBypassUpdate">beginBypassUpdate</a></li>
<li data-name="ST.Widgets.BaseWidget#endBypassUpdate"><a href="ST.Widgets.BaseWidget.html#endBypassUpdate">endBypassUpdate</a></li>
<li data-name="ST.Widgets.BaseWidget#focus"><a href="ST.Widgets.BaseWidget.html#focus">focus</a></li>
<li data-name="ST.Widgets.BaseWidget#hasFocus"><a href="ST.Widgets.BaseWidget.html#hasFocus">hasFocus</a></li>
<li data-name="ST.Widgets.BaseWidget#invalidate"><a href="ST.Widgets.BaseWidget.html#invalidate">invalidate</a></li>
<li data-name="ST.Widgets.BaseWidget#onChildrenChange"><a href="ST.Widgets.BaseWidget.html#onChildrenChange">onChildrenChange</a></li>
<li data-name="ST.Widgets.BaseWidget#onHasFocus"><a href="ST.Widgets.BaseWidget.html#onHasFocus">onHasFocus</a></li>
<li data-name="ST.Widgets.BaseWidget#paintDefault"><a href="ST.Widgets.BaseWidget.html#paintDefault">paintDefault</a></li>
<li data-name="ST.Widgets.BaseWidget#paintDisabled"><a href="ST.Widgets.BaseWidget.html#paintDisabled">paintDisabled</a></li>
<li data-name="ST.Widgets.BaseWidget#paintDown"><a href="ST.Widgets.BaseWidget.html#paintDown">paintDown</a></li>
<li data-name="ST.Widgets.BaseWidget#paintHover"><a href="ST.Widgets.BaseWidget.html#paintHover">paintHover</a></li>
<li data-name="ST.Widgets.BaseWidget#recursiveRouteUpdate"><a href="ST.Widgets.BaseWidget.html#recursiveRouteUpdate">recursiveRouteUpdate</a></li>
<li data-name="ST.Widgets.BaseWidget#renderCanvas"><a href="ST.Widgets.BaseWidget.html#renderCanvas">renderCanvas</a></li>
<li data-name="ST.Widgets.BaseWidget#renderWebGL"><a href="ST.Widgets.BaseWidget.html#renderWebGL">renderWebGL</a></li>
<li data-name="ST.Widgets.BaseWidget#routeInvalidation"><a href="ST.Widgets.BaseWidget.html#routeInvalidation">routeInvalidation</a></li>
<li data-name="ST.Widgets.BaseWidget#setParent"><a href="ST.Widgets.BaseWidget.html#setParent">setParent</a></li>
<li data-name="ST.Widgets.BaseWidget#update"><a href="ST.Widgets.BaseWidget.html#update">update</a></li>
<li data-name="ST.Widgets.BaseWidget#validate"><a href="ST.Widgets.BaseWidget.html#validate">validate</a></li>
<li data-name="ST.Widgets.BaseWidget#validateHeight"><a href="ST.Widgets.BaseWidget.html#validateHeight">validateHeight</a></li>
<li data-name="ST.Widgets.BaseWidget#validateWidth"><a href="ST.Widgets.BaseWidget.html#validateWidth">validateWidth</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Widgets.Button">
<span class="title">
<a href="ST.Widgets.Button.html">ST.Widgets.Button</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Widgets.Button#_bkgObj"><a href="ST.Widgets.Button.html#_bkgObj">_bkgObj</a></li>
<li data-name="ST.Widgets.Button#_clipGraphic"><a href="ST.Widgets.Button.html#_clipGraphic">_clipGraphic</a></li>
<li data-name="ST.Widgets.Button#_disabled"><a href="ST.Widgets.Button.html#_disabled">_disabled</a></li>
<li data-name="ST.Widgets.Button#_hPolicy"><a href="ST.Widgets.Button.html#_hPolicy">_hPolicy</a></li>
<li data-name="ST.Widgets.Button#_interactiveState"><a href="ST.Widgets.Button.html#_interactiveState">_interactiveState</a></li>
<li data-name="ST.Widgets.Button#_layout"><a href="ST.Widgets.Button.html#_layout">_layout</a></li>
<li data-name="ST.Widgets.Button#_sizeProxy"><a href="ST.Widgets.Button.html#_sizeProxy">_sizeProxy</a></li>
<li data-name="ST.Widgets.Button#_vPolicy"><a href="ST.Widgets.Button.html#_vPolicy">_vPolicy</a></li>
<li data-name="ST.Widgets.Button#bypassInvalidation"><a href="ST.Widgets.Button.html#bypassInvalidation">bypassInvalidation</a></li>
<li data-name="ST.Widgets.Button#clipGraphic"><a href="ST.Widgets.Button.html#clipGraphic">clipGraphic</a></li>
<li data-name="ST.Widgets.Button#disabled"><a href="ST.Widgets.Button.html#disabled">disabled</a></li>
<li data-name="ST.Widgets.Button#height"><a href="ST.Widgets.Button.html#height">height</a></li>
<li data-name="ST.Widgets.Button#hPolicy"><a href="ST.Widgets.Button.html#hPolicy">hPolicy</a></li>
<li data-name="ST.Widgets.Button#layout"><a href="ST.Widgets.Button.html#layout">layout</a></li>
<li data-name="ST.Widgets.Button#max"><a href="ST.Widgets.Button.html#max">max</a></li>
<li data-name="ST.Widgets.Button#min"><a href="ST.Widgets.Button.html#min">min</a></li>
<li data-name="ST.Widgets.Button#padding"><a href="ST.Widgets.Button.html#padding">padding</a></li>
<li data-name="ST.Widgets.Button#sizeProxy"><a href="ST.Widgets.Button.html#sizeProxy">sizeProxy</a></li>
<li data-name="ST.Widgets.Button#theme"><a href="ST.Widgets.Button.html#theme">theme</a></li>
<li data-name="ST.Widgets.Button#valid"><a href="ST.Widgets.Button.html#valid">valid</a></li>
<li data-name="ST.Widgets.Button#vPolicy"><a href="ST.Widgets.Button.html#vPolicy">vPolicy</a></li>
<li data-name="ST.Widgets.Button#width"><a href="ST.Widgets.Button.html#width">width</a></li>
<li data-name="ST.Widgets.Button#x"><a href="ST.Widgets.Button.html#x">x</a></li>
<li data-name="ST.Widgets.Button#y"><a href="ST.Widgets.Button.html#y">y</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Widgets.Button#_evaluateMask"><a href="ST.Widgets.Button.html#_evaluateMask">_evaluateMask</a></li>
<li data-name="ST.Widgets.Button#_updateClipGraphic"><a href="ST.Widgets.Button.html#_updateClipGraphic">_updateClipGraphic</a></li>
<li data-name="ST.Widgets.Button#applyPosition"><a href="ST.Widgets.Button.html#applyPosition">applyPosition</a></li>
<li data-name="ST.Widgets.Button#beginBypassUpdate"><a href="ST.Widgets.Button.html#beginBypassUpdate">beginBypassUpdate</a></li>
<li data-name="ST.Widgets.Button#endBypassUpdate"><a href="ST.Widgets.Button.html#endBypassUpdate">endBypassUpdate</a></li>
<li data-name="ST.Widgets.Button#focus"><a href="ST.Widgets.Button.html#focus">focus</a></li>
<li data-name="ST.Widgets.Button#hasFocus"><a href="ST.Widgets.Button.html#hasFocus">hasFocus</a></li>
<li data-name="ST.Widgets.Button#invalidate"><a href="ST.Widgets.Button.html#invalidate">invalidate</a></li>
<li data-name="ST.Widgets.Button#onHasFocus"><a href="ST.Widgets.Button.html#onHasFocus">onHasFocus</a></li>
<li data-name="ST.Widgets.Button#recursiveRouteUpdate"><a href="ST.Widgets.Button.html#recursiveRouteUpdate">recursiveRouteUpdate</a></li>
<li data-name="ST.Widgets.Button#routeInvalidation"><a href="ST.Widgets.Button.html#routeInvalidation">routeInvalidation</a></li>
<li data-name="ST.Widgets.Button#update"><a href="ST.Widgets.Button.html#update">update</a></li>
<li data-name="ST.Widgets.Button#validate"><a href="ST.Widgets.Button.html#validate">validate</a></li>
<li data-name="ST.Widgets.Button#validateHeight"><a href="ST.Widgets.Button.html#validateHeight">validateHeight</a></li>
<li data-name="ST.Widgets.Button#validateWidth"><a href="ST.Widgets.Button.html#validateWidth">validateWidth</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Widgets.Container">
<span class="title">
<a href="ST.Widgets.Container.html">ST.Widgets.Container</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Widgets.Container#_bkgObj"><a href="ST.Widgets.Container.html#_bkgObj">_bkgObj</a></li>
<li data-name="ST.Widgets.Container#_clipGraphic"><a href="ST.Widgets.Container.html#_clipGraphic">_clipGraphic</a></li>
<li data-name="ST.Widgets.Container#_disabled"><a href="ST.Widgets.Container.html#_disabled">_disabled</a></li>
<li data-name="ST.Widgets.Container#_hPolicy"><a href="ST.Widgets.Container.html#_hPolicy">_hPolicy</a></li>
<li data-name="ST.Widgets.Container#_interactiveState"><a href="ST.Widgets.Container.html#_interactiveState">_interactiveState</a></li>
<li data-name="ST.Widgets.Container#_layout"><a href="ST.Widgets.Container.html#_layout">_layout</a></li>
<li data-name="ST.Widgets.Container#_sizeProxy"><a href="ST.Widgets.Container.html#_sizeProxy">_sizeProxy</a></li>
<li data-name="ST.Widgets.Container#_vPolicy"><a href="ST.Widgets.Container.html#_vPolicy">_vPolicy</a></li>
<li data-name="ST.Widgets.Container#bypassInvalidation"><a href="ST.Widgets.Container.html#bypassInvalidation">bypassInvalidation</a></li>
<li data-name="ST.Widgets.Container#clipGraphic"><a href="ST.Widgets.Container.html#clipGraphic">clipGraphic</a></li>
<li data-name="ST.Widgets.Container#disabled"><a href="ST.Widgets.Container.html#disabled">disabled</a></li>
<li data-name="ST.Widgets.Container#height"><a href="ST.Widgets.Container.html#height">height</a></li>
<li data-name="ST.Widgets.Container#hPolicy"><a href="ST.Widgets.Container.html#hPolicy">hPolicy</a></li>
<li data-name="ST.Widgets.Container#layout"><a href="ST.Widgets.Container.html#layout">layout</a></li>
<li data-name="ST.Widgets.Container#max"><a href="ST.Widgets.Container.html#max">max</a></li>
<li data-name="ST.Widgets.Container#min"><a href="ST.Widgets.Container.html#min">min</a></li>
<li data-name="ST.Widgets.Container#padding"><a href="ST.Widgets.Container.html#padding">padding</a></li>
<li data-name="ST.Widgets.Container#sizeProxy"><a href="ST.Widgets.Container.html#sizeProxy">sizeProxy</a></li>
<li data-name="ST.Widgets.Container#theme"><a href="ST.Widgets.Container.html#theme">theme</a></li>
<li data-name="ST.Widgets.Container#valid"><a href="ST.Widgets.Container.html#valid">valid</a></li>
<li data-name="ST.Widgets.Container#vPolicy"><a href="ST.Widgets.Container.html#vPolicy">vPolicy</a></li>
<li data-name="ST.Widgets.Container#width"><a href="ST.Widgets.Container.html#width">width</a></li>
<li data-name="ST.Widgets.Container#x"><a href="ST.Widgets.Container.html#x">x</a></li>
<li data-name="ST.Widgets.Container#y"><a href="ST.Widgets.Container.html#y">y</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Widgets.Container#_evaluateMask"><a href="ST.Widgets.Container.html#_evaluateMask">_evaluateMask</a></li>
<li data-name="ST.Widgets.Container#_updateClipGraphic"><a href="ST.Widgets.Container.html#_updateClipGraphic">_updateClipGraphic</a></li>
<li data-name="ST.Widgets.Container#applyPosition"><a href="ST.Widgets.Container.html#applyPosition">applyPosition</a></li>
<li data-name="ST.Widgets.Container#beginBypassUpdate"><a href="ST.Widgets.Container.html#beginBypassUpdate">beginBypassUpdate</a></li>
<li data-name="ST.Widgets.Container#endBypassUpdate"><a href="ST.Widgets.Container.html#endBypassUpdate">endBypassUpdate</a></li>
<li data-name="ST.Widgets.Container#focus"><a href="ST.Widgets.Container.html#focus">focus</a></li>
<li data-name="ST.Widgets.Container#hasFocus"><a href="ST.Widgets.Container.html#hasFocus">hasFocus</a></li>
<li data-name="ST.Widgets.Container#invalidate"><a href="ST.Widgets.Container.html#invalidate">invalidate</a></li>
<li data-name="ST.Widgets.Container#onHasFocus"><a href="ST.Widgets.Container.html#onHasFocus">onHasFocus</a></li>
<li data-name="ST.Widgets.Container#recursiveRouteUpdate"><a href="ST.Widgets.Container.html#recursiveRouteUpdate">recursiveRouteUpdate</a></li>
<li data-name="ST.Widgets.Container#routeInvalidation"><a href="ST.Widgets.Container.html#routeInvalidation">routeInvalidation</a></li>
<li data-name="ST.Widgets.Container#update"><a href="ST.Widgets.Container.html#update">update</a></li>
<li data-name="ST.Widgets.Container#validate"><a href="ST.Widgets.Container.html#validate">validate</a></li>
<li data-name="ST.Widgets.Container#validateHeight"><a href="ST.Widgets.Container.html#validateHeight">validateHeight</a></li>
<li data-name="ST.Widgets.Container#validateWidth"><a href="ST.Widgets.Container.html#validateWidth">validateWidth</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Widgets.Image">
<span class="title">
<a href="ST.Widgets.Image.html">ST.Widgets.Image</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Widgets.Image#_clipGraphic"><a href="ST.Widgets.Image.html#_clipGraphic">_clipGraphic</a></li>
<li data-name="ST.Widgets.Image#_disabled"><a href="ST.Widgets.Image.html#_disabled">_disabled</a></li>
<li data-name="ST.Widgets.Image#_hPolicy"><a href="ST.Widgets.Image.html#_hPolicy">_hPolicy</a></li>
<li data-name="ST.Widgets.Image#_interactiveState"><a href="ST.Widgets.Image.html#_interactiveState">_interactiveState</a></li>
<li data-name="ST.Widgets.Image#_layout"><a href="ST.Widgets.Image.html#_layout">_layout</a></li>
<li data-name="ST.Widgets.Image#_position"><a href="ST.Widgets.Image.html#_position">_position</a></li>
<li data-name="ST.Widgets.Image#_sizeProxy"><a href="ST.Widgets.Image.html#_sizeProxy">_sizeProxy</a></li>
<li data-name="ST.Widgets.Image#_sprite"><a href="ST.Widgets.Image.html#_sprite">_sprite</a></li>
<li data-name="ST.Widgets.Image#_vPolicy"><a href="ST.Widgets.Image.html#_vPolicy">_vPolicy</a></li>
<li data-name="ST.Widgets.Image#bypassInvalidation"><a href="ST.Widgets.Image.html#bypassInvalidation">bypassInvalidation</a></li>
<li data-name="ST.Widgets.Image#clipGraphic"><a href="ST.Widgets.Image.html#clipGraphic">clipGraphic</a></li>
<li data-name="ST.Widgets.Image#disabled"><a href="ST.Widgets.Image.html#disabled">disabled</a></li>
<li data-name="ST.Widgets.Image#height"><a href="ST.Widgets.Image.html#height">height</a></li>
<li data-name="ST.Widgets.Image#hPolicy"><a href="ST.Widgets.Image.html#hPolicy">hPolicy</a></li>
<li data-name="ST.Widgets.Image#layout"><a href="ST.Widgets.Image.html#layout">layout</a></li>
<li data-name="ST.Widgets.Image#max"><a href="ST.Widgets.Image.html#max">max</a></li>
<li data-name="ST.Widgets.Image#min"><a href="ST.Widgets.Image.html#min">min</a></li>
<li data-name="ST.Widgets.Image#padding"><a href="ST.Widgets.Image.html#padding">padding</a></li>
<li data-name="ST.Widgets.Image#position"><a href="ST.Widgets.Image.html#position">position</a></li>
<li data-name="ST.Widgets.Image#sizeProxy"><a href="ST.Widgets.Image.html#sizeProxy">sizeProxy</a></li>
<li data-name="ST.Widgets.Image#sprite"><a href="ST.Widgets.Image.html#sprite">sprite</a></li>
<li data-name="ST.Widgets.Image#texture"><a href="ST.Widgets.Image.html#texture">texture</a></li>
<li data-name="ST.Widgets.Image#theme"><a href="ST.Widgets.Image.html#theme">theme</a></li>
<li data-name="ST.Widgets.Image#valid"><a href="ST.Widgets.Image.html#valid">valid</a></li>
<li data-name="ST.Widgets.Image#vPolicy"><a href="ST.Widgets.Image.html#vPolicy">vPolicy</a></li>
<li data-name="ST.Widgets.Image#width"><a href="ST.Widgets.Image.html#width">width</a></li>
<li data-name="ST.Widgets.Image#x"><a href="ST.Widgets.Image.html#x">x</a></li>
<li data-name="ST.Widgets.Image#y"><a href="ST.Widgets.Image.html#y">y</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Widgets.Image#_evaluateMask"><a href="ST.Widgets.Image.html#_evaluateMask">_evaluateMask</a></li>
<li data-name="ST.Widgets.Image#_updateClipGraphic"><a href="ST.Widgets.Image.html#_updateClipGraphic">_updateClipGraphic</a></li>
<li data-name="ST.Widgets.Image#addChild"><a href="ST.Widgets.Image.html#addChild">addChild</a></li>
<li data-name="ST.Widgets.Image#addChildAt"><a href="ST.Widgets.Image.html#addChildAt">addChildAt</a></li>
<li data-name="ST.Widgets.Image#applyPosition"><a href="ST.Widgets.Image.html#applyPosition">applyPosition</a></li>
<li data-name="ST.Widgets.Image#beginBypassUpdate"><a href="ST.Widgets.Image.html#beginBypassUpdate">beginBypassUpdate</a></li>
<li data-name="ST.Widgets.Image#endBypassUpdate"><a href="ST.Widgets.Image.html#endBypassUpdate">endBypassUpdate</a></li>
<li data-name="ST.Widgets.Image#focus"><a href="ST.Widgets.Image.html#focus">focus</a></li>
<li data-name="ST.Widgets.Image#hasFocus"><a href="ST.Widgets.Image.html#hasFocus">hasFocus</a></li>
<li data-name="ST.Widgets.Image#invalidate"><a href="ST.Widgets.Image.html#invalidate">invalidate</a></li>
<li data-name="ST.Widgets.Image#onChildrenChange"><a href="ST.Widgets.Image.html#onChildrenChange">onChildrenChange</a></li>
<li data-name="ST.Widgets.Image#onHasFocus"><a href="ST.Widgets.Image.html#onHasFocus">onHasFocus</a></li>
<li data-name="ST.Widgets.Image#paintDefault"><a href="ST.Widgets.Image.html#paintDefault">paintDefault</a></li>
<li data-name="ST.Widgets.Image#paintDisabled"><a href="ST.Widgets.Image.html#paintDisabled">paintDisabled</a></li>
<li data-name="ST.Widgets.Image#paintDown"><a href="ST.Widgets.Image.html#paintDown">paintDown</a></li>
<li data-name="ST.Widgets.Image#paintHover"><a href="ST.Widgets.Image.html#paintHover">paintHover</a></li>
<li data-name="ST.Widgets.Image#recursiveRouteUpdate"><a href="ST.Widgets.Image.html#recursiveRouteUpdate">recursiveRouteUpdate</a></li>
<li data-name="ST.Widgets.Image#renderCanvas"><a href="ST.Widgets.Image.html#renderCanvas">renderCanvas</a></li>
<li data-name="ST.Widgets.Image#renderWebGL"><a href="ST.Widgets.Image.html#renderWebGL">renderWebGL</a></li>
<li data-name="ST.Widgets.Image#routeInvalidation"><a href="ST.Widgets.Image.html#routeInvalidation">routeInvalidation</a></li>
<li data-name="ST.Widgets.Image#setParent"><a href="ST.Widgets.Image.html#setParent">setParent</a></li>
<li data-name="ST.Widgets.Image#update"><a href="ST.Widgets.Image.html#update">update</a></li>
<li data-name="ST.Widgets.Image#validate"><a href="ST.Widgets.Image.html#validate">validate</a></li>
<li data-name="ST.Widgets.Image#validateHeight"><a href="ST.Widgets.Image.html#validateHeight">validateHeight</a></li>
<li data-name="ST.Widgets.Image#validateWidth"><a href="ST.Widgets.Image.html#validateWidth">validateWidth</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Widgets.Label">
<span class="title">
<a href="ST.Widgets.Label.html">ST.Widgets.Label</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Widgets.Label#_clipGraphic"><a href="ST.Widgets.Label.html#_clipGraphic">_clipGraphic</a></li>
<li data-name="ST.Widgets.Label#_disabled"><a href="ST.Widgets.Label.html#_disabled">_disabled</a></li>
<li data-name="ST.Widgets.Label#_hPolicy"><a href="ST.Widgets.Label.html#_hPolicy">_hPolicy</a></li>
<li data-name="ST.Widgets.Label#_interactiveState"><a href="ST.Widgets.Label.html#_interactiveState">_interactiveState</a></li>
<li data-name="ST.Widgets.Label#_layout"><a href="ST.Widgets.Label.html#_layout">_layout</a></li>
<li data-name="ST.Widgets.Label#_position"><a href="ST.Widgets.Label.html#_position">_position</a></li>
<li data-name="ST.Widgets.Label#_sizeProxy"><a href="ST.Widgets.Label.html#_sizeProxy">_sizeProxy</a></li>
<li data-name="ST.Widgets.Label#_textObj"><a href="ST.Widgets.Label.html#_textObj">_textObj</a></li>
<li data-name="ST.Widgets.Label#_vPolicy"><a href="ST.Widgets.Label.html#_vPolicy">_vPolicy</a></li>
<li data-name="ST.Widgets.Label#bypassInvalidation"><a href="ST.Widgets.Label.html#bypassInvalidation">bypassInvalidation</a></li>
<li data-name="ST.Widgets.Label#clipGraphic"><a href="ST.Widgets.Label.html#clipGraphic">clipGraphic</a></li>
<li data-name="ST.Widgets.Label#disabled"><a href="ST.Widgets.Label.html#disabled">disabled</a></li>
<li data-name="ST.Widgets.Label#height"><a href="ST.Widgets.Label.html#height">height</a></li>
<li data-name="ST.Widgets.Label#hPolicy"><a href="ST.Widgets.Label.html#hPolicy">hPolicy</a></li>
<li data-name="ST.Widgets.Label#layout"><a href="ST.Widgets.Label.html#layout">layout</a></li>
<li data-name="ST.Widgets.Label#max"><a href="ST.Widgets.Label.html#max">max</a></li>
<li data-name="ST.Widgets.Label#min"><a href="ST.Widgets.Label.html#min">min</a></li>
<li data-name="ST.Widgets.Label#padding"><a href="ST.Widgets.Label.html#padding">padding</a></li>
<li data-name="ST.Widgets.Label#position"><a href="ST.Widgets.Label.html#position">position</a></li>
<li data-name="ST.Widgets.Label#sizeProxy"><a href="ST.Widgets.Label.html#sizeProxy">sizeProxy</a></li>
<li data-name="ST.Widgets.Label#text"><a href="ST.Widgets.Label.html#text">text</a></li>
<li data-name="ST.Widgets.Label#theme"><a href="ST.Widgets.Label.html#theme">theme</a></li>
<li data-name="ST.Widgets.Label#valid"><a href="ST.Widgets.Label.html#valid">valid</a></li>
<li data-name="ST.Widgets.Label#vPolicy"><a href="ST.Widgets.Label.html#vPolicy">vPolicy</a></li>
<li data-name="ST.Widgets.Label#width"><a href="ST.Widgets.Label.html#width">width</a></li>
<li data-name="ST.Widgets.Label#x"><a href="ST.Widgets.Label.html#x">x</a></li>
<li data-name="ST.Widgets.Label#y"><a href="ST.Widgets.Label.html#y">y</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Widgets.Label#_evaluateMask"><a href="ST.Widgets.Label.html#_evaluateMask">_evaluateMask</a></li>
<li data-name="ST.Widgets.Label#_updateClipGraphic"><a href="ST.Widgets.Label.html#_updateClipGraphic">_updateClipGraphic</a></li>
<li data-name="ST.Widgets.Label#addChild"><a href="ST.Widgets.Label.html#addChild">addChild</a></li>
<li data-name="ST.Widgets.Label#addChildAt"><a href="ST.Widgets.Label.html#addChildAt">addChildAt</a></li>
<li data-name="ST.Widgets.Label#applyPosition"><a href="ST.Widgets.Label.html#applyPosition">applyPosition</a></li>
<li data-name="ST.Widgets.Label#beginBypassUpdate"><a href="ST.Widgets.Label.html#beginBypassUpdate">beginBypassUpdate</a></li>
<li data-name="ST.Widgets.Label#endBypassUpdate"><a href="ST.Widgets.Label.html#endBypassUpdate">endBypassUpdate</a></li>
<li data-name="ST.Widgets.Label#focus"><a href="ST.Widgets.Label.html#focus">focus</a></li>
<li data-name="ST.Widgets.Label#hasFocus"><a href="ST.Widgets.Label.html#hasFocus">hasFocus</a></li>
<li data-name="ST.Widgets.Label#invalidate"><a href="ST.Widgets.Label.html#invalidate">invalidate</a></li>
<li data-name="ST.Widgets.Label#onChildrenChange"><a href="ST.Widgets.Label.html#onChildrenChange">onChildrenChange</a></li>
<li data-name="ST.Widgets.Label#onHasFocus"><a href="ST.Widgets.Label.html#onHasFocus">onHasFocus</a></li>
<li data-name="ST.Widgets.Label#paintDefault"><a href="ST.Widgets.Label.html#paintDefault">paintDefault</a></li>
<li data-name="ST.Widgets.Label#paintDisabled"><a href="ST.Widgets.Label.html#paintDisabled">paintDisabled</a></li>
<li data-name="ST.Widgets.Label#paintDown"><a href="ST.Widgets.Label.html#paintDown">paintDown</a></li>
<li data-name="ST.Widgets.Label#paintHover"><a href="ST.Widgets.Label.html#paintHover">paintHover</a></li>
<li data-name="ST.Widgets.Label#recursiveRouteUpdate"><a href="ST.Widgets.Label.html#recursiveRouteUpdate">recursiveRouteUpdate</a></li>
<li data-name="ST.Widgets.Label#renderCanvas"><a href="ST.Widgets.Label.html#renderCanvas">renderCanvas</a></li>
<li data-name="ST.Widgets.Label#renderWebGL"><a href="ST.Widgets.Label.html#renderWebGL">renderWebGL</a></li>
<li data-name="ST.Widgets.Label#routeInvalidation"><a href="ST.Widgets.Label.html#routeInvalidation">routeInvalidation</a></li>
<li data-name="ST.Widgets.Label#setParent"><a href="ST.Widgets.Label.html#setParent">setParent</a></li>
<li data-name="ST.Widgets.Label#update"><a href="ST.Widgets.Label.html#update">update</a></li>
<li data-name="ST.Widgets.Label#validate"><a href="ST.Widgets.Label.html#validate">validate</a></li>
<li data-name="ST.Widgets.Label#validateHeight"><a href="ST.Widgets.Label.html#validateHeight">validateHeight</a></li>
<li data-name="ST.Widgets.Label#validateWidth"><a href="ST.Widgets.Label.html#validateWidth">validateWidth</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Widgets.Panel">
<span class="title">
<a href="ST.Widgets.Panel.html">ST.Widgets.Panel</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Widgets.Panel#_bkgObj"><a href="ST.Widgets.Panel.html#_bkgObj">_bkgObj</a></li>
<li data-name="ST.Widgets.Panel#_clipGraphic"><a href="ST.Widgets.Panel.html#_clipGraphic">_clipGraphic</a></li>
<li data-name="ST.Widgets.Panel#_disabled"><a href="ST.Widgets.Panel.html#_disabled">_disabled</a></li>
<li data-name="ST.Widgets.Panel#_hPolicy"><a href="ST.Widgets.Panel.html#_hPolicy">_hPolicy</a></li>
<li data-name="ST.Widgets.Panel#_interactiveState"><a href="ST.Widgets.Panel.html#_interactiveState">_interactiveState</a></li>
<li data-name="ST.Widgets.Panel#_layout"><a href="ST.Widgets.Panel.html#_layout">_layout</a></li>
<li data-name="ST.Widgets.Panel#_position"><a href="ST.Widgets.Panel.html#_position">_position</a></li>
<li data-name="ST.Widgets.Panel#_sizeProxy"><a href="ST.Widgets.Panel.html#_sizeProxy">_sizeProxy</a></li>
<li data-name="ST.Widgets.Panel#_vPolicy"><a href="ST.Widgets.Panel.html#_vPolicy">_vPolicy</a></li>
<li data-name="ST.Widgets.Panel#bypassInvalidation"><a href="ST.Widgets.Panel.html#bypassInvalidation">bypassInvalidation</a></li>
<li data-name="ST.Widgets.Panel#clipGraphic"><a href="ST.Widgets.Panel.html#clipGraphic">clipGraphic</a></li>
<li data-name="ST.Widgets.Panel#disabled"><a href="ST.Widgets.Panel.html#disabled">disabled</a></li>
<li data-name="ST.Widgets.Panel#height"><a href="ST.Widgets.Panel.html#height">height</a></li>
<li data-name="ST.Widgets.Panel#hPolicy"><a href="ST.Widgets.Panel.html#hPolicy">hPolicy</a></li>
<li data-name="ST.Widgets.Panel#layout"><a href="ST.Widgets.Panel.html#layout">layout</a></li>
<li data-name="ST.Widgets.Panel#max"><a href="ST.Widgets.Panel.html#max">max</a></li>
<li data-name="ST.Widgets.Panel#min"><a href="ST.Widgets.Panel.html#min">min</a></li>
<li data-name="ST.Widgets.Panel#padding"><a href="ST.Widgets.Panel.html#padding">padding</a></li>
<li data-name="ST.Widgets.Panel#position"><a href="ST.Widgets.Panel.html#position">position</a></li>
<li data-name="ST.Widgets.Panel#sizeProxy"><a href="ST.Widgets.Panel.html#sizeProxy">sizeProxy</a></li>
<li data-name="ST.Widgets.Panel#theme"><a href="ST.Widgets.Panel.html#theme">theme</a></li>
<li data-name="ST.Widgets.Panel#valid"><a href="ST.Widgets.Panel.html#valid">valid</a></li>
<li data-name="ST.Widgets.Panel#vPolicy"><a href="ST.Widgets.Panel.html#vPolicy">vPolicy</a></li>
<li data-name="ST.Widgets.Panel#width"><a href="ST.Widgets.Panel.html#width">width</a></li>
<li data-name="ST.Widgets.Panel#x"><a href="ST.Widgets.Panel.html#x">x</a></li>
<li data-name="ST.Widgets.Panel#y"><a href="ST.Widgets.Panel.html#y">y</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Widgets.Panel#_evaluateMask"><a href="ST.Widgets.Panel.html#_evaluateMask">_evaluateMask</a></li>
<li data-name="ST.Widgets.Panel#_updateClipGraphic"><a href="ST.Widgets.Panel.html#_updateClipGraphic">_updateClipGraphic</a></li>
<li data-name="ST.Widgets.Panel#addChild"><a href="ST.Widgets.Panel.html#addChild">addChild</a></li>
<li data-name="ST.Widgets.Panel#addChildAt"><a href="ST.Widgets.Panel.html#addChildAt">addChildAt</a></li>
<li data-name="ST.Widgets.Panel#applyPosition"><a href="ST.Widgets.Panel.html#applyPosition">applyPosition</a></li>
<li data-name="ST.Widgets.Panel#beginBypassUpdate"><a href="ST.Widgets.Panel.html#beginBypassUpdate">beginBypassUpdate</a></li>
<li data-name="ST.Widgets.Panel#endBypassUpdate"><a href="ST.Widgets.Panel.html#endBypassUpdate">endBypassUpdate</a></li>
<li data-name="ST.Widgets.Panel#focus"><a href="ST.Widgets.Panel.html#focus">focus</a></li>
<li data-name="ST.Widgets.Panel#hasFocus"><a href="ST.Widgets.Panel.html#hasFocus">hasFocus</a></li>
<li data-name="ST.Widgets.Panel#invalidate"><a href="ST.Widgets.Panel.html#invalidate">invalidate</a></li>
<li data-name="ST.Widgets.Panel#onChildrenChange"><a href="ST.Widgets.Panel.html#onChildrenChange">onChildrenChange</a></li>
<li data-name="ST.Widgets.Panel#onHasFocus"><a href="ST.Widgets.Panel.html#onHasFocus">onHasFocus</a></li>
<li data-name="ST.Widgets.Panel#paintDefault"><a href="ST.Widgets.Panel.html#paintDefault">paintDefault</a></li>
<li data-name="ST.Widgets.Panel#paintDisabled"><a href="ST.Widgets.Panel.html#paintDisabled">paintDisabled</a></li>
<li data-name="ST.Widgets.Panel#paintDown"><a href="ST.Widgets.Panel.html#paintDown">paintDown</a></li>
<li data-name="ST.Widgets.Panel#paintHover"><a href="ST.Widgets.Panel.html#paintHover">paintHover</a></li>
<li data-name="ST.Widgets.Panel#recursiveRouteUpdate"><a href="ST.Widgets.Panel.html#recursiveRouteUpdate">recursiveRouteUpdate</a></li>
<li data-name="ST.Widgets.Panel#renderCanvas"><a href="ST.Widgets.Panel.html#renderCanvas">renderCanvas</a></li>
<li data-name="ST.Widgets.Panel#renderWebGL"><a href="ST.Widgets.Panel.html#renderWebGL">renderWebGL</a></li>
<li data-name="ST.Widgets.Panel#routeInvalidation"><a href="ST.Widgets.Panel.html#routeInvalidation">routeInvalidation</a></li>
<li data-name="ST.Widgets.Panel#setParent"><a href="ST.Widgets.Panel.html#setParent">setParent</a></li>
<li data-name="ST.Widgets.Panel#update"><a href="ST.Widgets.Panel.html#update">update</a></li>
<li data-name="ST.Widgets.Panel#validate"><a href="ST.Widgets.Panel.html#validate">validate</a></li>
<li data-name="ST.Widgets.Panel#validateHeight"><a href="ST.Widgets.Panel.html#validateHeight">validateHeight</a></li>
<li data-name="ST.Widgets.Panel#validateWidth"><a href="ST.Widgets.Panel.html#validateWidth">validateWidth</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Widgets.SITransform">
<span class="title">
<a href="ST.Widgets.SITransform.html">ST.Widgets.SITransform</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Widgets.SITransform#updateTransform"><a href="ST.Widgets.SITransform.html#updateTransform">updateTransform</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Widgets.Slider">
<span class="title">
<a href="ST.Widgets.Slider.html">ST.Widgets.Slider</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Widgets.Slider#_bkgObj"><a href="ST.Widgets.Slider.html#_bkgObj">_bkgObj</a></li>
<li data-name="ST.Widgets.Slider#_clipGraphic"><a href="ST.Widgets.Slider.html#_clipGraphic">_clipGraphic</a></li>
<li data-name="ST.Widgets.Slider#_disabled"><a href="ST.Widgets.Slider.html#_disabled">_disabled</a></li>
<li data-name="ST.Widgets.Slider#_dragging"><a href="ST.Widgets.Slider.html#_dragging">_dragging</a></li>
<li data-name="ST.Widgets.Slider#_hPolicy"><a href="ST.Widgets.Slider.html#_hPolicy">_hPolicy</a></li>
<li data-name="ST.Widgets.Slider#_interactiveState"><a href="ST.Widgets.Slider.html#_interactiveState">_interactiveState</a></li>
<li data-name="ST.Widgets.Slider#_layout"><a href="ST.Widgets.Slider.html#_layout">_layout</a></li>
<li data-name="ST.Widgets.Slider#_orientation"><a href="ST.Widgets.Slider.html#_orientation">_orientation</a></li>
<li data-name="ST.Widgets.Slider#_sizeProxy"><a href="ST.Widgets.Slider.html#_sizeProxy">_sizeProxy</a></li>
<li data-name="ST.Widgets.Slider#_value"><a href="ST.Widgets.Slider.html#_value">_value</a></li>
<li data-name="ST.Widgets.Slider#_vPolicy"><a href="ST.Widgets.Slider.html#_vPolicy">_vPolicy</a></li>
<li data-name="ST.Widgets.Slider#btnHalfHeight"><a href="ST.Widgets.Slider.html#btnHalfHeight">btnHalfHeight</a></li>
<li data-name="ST.Widgets.Slider#btnHalfWidth"><a href="ST.Widgets.Slider.html#btnHalfWidth">btnHalfWidth</a></li>
<li data-name="ST.Widgets.Slider#button"><a href="ST.Widgets.Slider.html#button">button</a></li>
<li data-name="ST.Widgets.Slider#bypassInvalidation"><a href="ST.Widgets.Slider.html#bypassInvalidation">bypassInvalidation</a></li>
<li data-name="ST.Widgets.Slider#clipGraphic"><a href="ST.Widgets.Slider.html#clipGraphic">clipGraphic</a></li>
<li data-name="ST.Widgets.Slider#disabled"><a href="ST.Widgets.Slider.html#disabled">disabled</a></li>
<li data-name="ST.Widgets.Slider#height"><a href="ST.Widgets.Slider.html#height">height</a></li>
<li data-name="ST.Widgets.Slider#hPolicy"><a href="ST.Widgets.Slider.html#hPolicy">hPolicy</a></li>
<li data-name="ST.Widgets.Slider#layout"><a href="ST.Widgets.Slider.html#layout">layout</a></li>
<li data-name="ST.Widgets.Slider#max"><a href="ST.Widgets.Slider.html#max">max</a></li>
<li data-name="ST.Widgets.Slider#maxValue"><a href="ST.Widgets.Slider.html#maxValue">maxValue</a></li>
<li data-name="ST.Widgets.Slider#min"><a href="ST.Widgets.Slider.html#min">min</a></li>
<li data-name="ST.Widgets.Slider#minValue"><a href="ST.Widgets.Slider.html#minValue">minValue</a></li>
<li data-name="ST.Widgets.Slider#orientation"><a href="ST.Widgets.Slider.html#orientation">orientation</a></li>
<li data-name="ST.Widgets.Slider#padding"><a href="ST.Widgets.Slider.html#padding">padding</a></li>
<li data-name="ST.Widgets.Slider#sizeProxy"><a href="ST.Widgets.Slider.html#sizeProxy">sizeProxy</a></li>
<li data-name="ST.Widgets.Slider#theme"><a href="ST.Widgets.Slider.html#theme">theme</a></li>
<li data-name="ST.Widgets.Slider#track"><a href="ST.Widgets.Slider.html#track">track</a></li>
<li data-name="ST.Widgets.Slider#trackHitPadding"><a href="ST.Widgets.Slider.html#trackHitPadding">trackHitPadding</a></li>
<li data-name="ST.Widgets.Slider#trackHitRect"><a href="ST.Widgets.Slider.html#trackHitRect">trackHitRect</a></li>
<li data-name="ST.Widgets.Slider#valid"><a href="ST.Widgets.Slider.html#valid">valid</a></li>
<li data-name="ST.Widgets.Slider#value"><a href="ST.Widgets.Slider.html#value">value</a></li>
<li data-name="ST.Widgets.Slider#valueCB"><a href="ST.Widgets.Slider.html#valueCB">valueCB</a></li>
<li data-name="ST.Widgets.Slider#vPolicy"><a href="ST.Widgets.Slider.html#vPolicy">vPolicy</a></li>
<li data-name="ST.Widgets.Slider#width"><a href="ST.Widgets.Slider.html#width">width</a></li>
<li data-name="ST.Widgets.Slider#x"><a href="ST.Widgets.Slider.html#x">x</a></li>
<li data-name="ST.Widgets.Slider#y"><a href="ST.Widgets.Slider.html#y">y</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Widgets.Slider#_evaluateMask"><a href="ST.Widgets.Slider.html#_evaluateMask">_evaluateMask</a></li>
<li data-name="ST.Widgets.Slider#_updateClipGraphic"><a href="ST.Widgets.Slider.html#_updateClipGraphic">_updateClipGraphic</a></li>
<li data-name="ST.Widgets.Slider#applyPosition"><a href="ST.Widgets.Slider.html#applyPosition">applyPosition</a></li>
<li data-name="ST.Widgets.Slider#beginBypassUpdate"><a href="ST.Widgets.Slider.html#beginBypassUpdate">beginBypassUpdate</a></li>
<li data-name="ST.Widgets.Slider#endBypassUpdate"><a href="ST.Widgets.Slider.html#endBypassUpdate">endBypassUpdate</a></li>
<li data-name="ST.Widgets.Slider#focus"><a href="ST.Widgets.Slider.html#focus">focus</a></li>
<li data-name="ST.Widgets.Slider#hasFocus"><a href="ST.Widgets.Slider.html#hasFocus">hasFocus</a></li>
<li data-name="ST.Widgets.Slider#invalidate"><a href="ST.Widgets.Slider.html#invalidate">invalidate</a></li>
<li data-name="ST.Widgets.Slider#onHasFocus"><a href="ST.Widgets.Slider.html#onHasFocus">onHasFocus</a></li>
<li data-name="ST.Widgets.Slider#recursiveRouteUpdate"><a href="ST.Widgets.Slider.html#recursiveRouteUpdate">recursiveRouteUpdate</a></li>
<li data-name="ST.Widgets.Slider#routeInvalidation"><a href="ST.Widgets.Slider.html#routeInvalidation">routeInvalidation</a></li>
<li data-name="ST.Widgets.Slider#update"><a href="ST.Widgets.Slider.html#update">update</a></li>
<li data-name="ST.Widgets.Slider#updateTrackHitRect"><a href="ST.Widgets.Slider.html#updateTrackHitRect">updateTrackHitRect</a></li>
<li data-name="ST.Widgets.Slider#validate"><a href="ST.Widgets.Slider.html#validate">validate</a></li>
<li data-name="ST.Widgets.Slider#validateHeight"><a href="ST.Widgets.Slider.html#validateHeight">validateHeight</a></li>
<li data-name="ST.Widgets.Slider#validateWidth"><a href="ST.Widgets.Slider.html#validateWidth">validateWidth</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Widgets.StageWidget">
<span class="title">
<a href="ST.Widgets.StageWidget.html">ST.Widgets.StageWidget</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Widgets.StageWidget#_clipGraphic"><a href="ST.Widgets.StageWidget.html#_clipGraphic">_clipGraphic</a></li>
<li data-name="ST.Widgets.StageWidget#_disabled"><a href="ST.Widgets.StageWidget.html#_disabled">_disabled</a></li>
<li data-name="ST.Widgets.StageWidget#_hPolicy"><a href="ST.Widgets.StageWidget.html#_hPolicy">_hPolicy</a></li>
<li data-name="ST.Widgets.StageWidget#_interactiveState"><a href="ST.Widgets.StageWidget.html#_interactiveState">_interactiveState</a></li>
<li data-name="ST.Widgets.StageWidget#_layout"><a href="ST.Widgets.StageWidget.html#_layout">_layout</a></li>
<li data-name="ST.Widgets.StageWidget#_position"><a href="ST.Widgets.StageWidget.html#_position">_position</a></li>
<li data-name="ST.Widgets.StageWidget#_sizeProxy"><a href="ST.Widgets.StageWidget.html#_sizeProxy">_sizeProxy</a></li>
<li data-name="ST.Widgets.StageWidget#_vPolicy"><a href="ST.Widgets.StageWidget.html#_vPolicy">_vPolicy</a></li>
<li data-name="ST.Widgets.StageWidget#bypassInvalidation"><a href="ST.Widgets.StageWidget.html#bypassInvalidation">bypassInvalidation</a></li>
<li data-name="ST.Widgets.StageWidget#clipGraphic"><a href="ST.Widgets.StageWidget.html#clipGraphic">clipGraphic</a></li>
<li data-name="ST.Widgets.StageWidget#disabled"><a href="ST.Widgets.StageWidget.html#disabled">disabled</a></li>
<li data-name="ST.Widgets.StageWidget#height"><a href="ST.Widgets.StageWidget.html#height">height</a></li>
<li data-name="ST.Widgets.StageWidget#hPolicy"><a href="ST.Widgets.StageWidget.html#hPolicy">hPolicy</a></li>
<li data-name="ST.Widgets.StageWidget#layout"><a href="ST.Widgets.StageWidget.html#layout">layout</a></li>
<li data-name="ST.Widgets.StageWidget#max"><a href="ST.Widgets.StageWidget.html#max">max</a></li>
<li data-name="ST.Widgets.StageWidget#min"><a href="ST.Widgets.StageWidget.html#min">min</a></li>
<li data-name="ST.Widgets.StageWidget#padding"><a href="ST.Widgets.StageWidget.html#padding">padding</a></li>
<li data-name="ST.Widgets.StageWidget#position"><a href="ST.Widgets.StageWidget.html#position">position</a></li>
<li data-name="ST.Widgets.StageWidget#sizeProxy"><a href="ST.Widgets.StageWidget.html#sizeProxy">sizeProxy</a></li>
<li data-name="ST.Widgets.StageWidget#theme"><a href="ST.Widgets.StageWidget.html#theme">theme</a></li>
<li data-name="ST.Widgets.StageWidget#valid"><a href="ST.Widgets.StageWidget.html#valid">valid</a></li>
<li data-name="ST.Widgets.StageWidget#vPolicy"><a href="ST.Widgets.StageWidget.html#vPolicy">vPolicy</a></li>
<li data-name="ST.Widgets.StageWidget#width"><a href="ST.Widgets.StageWidget.html#width">width</a></li>
<li data-name="ST.Widgets.StageWidget#x"><a href="ST.Widgets.StageWidget.html#x">x</a></li>
<li data-name="ST.Widgets.StageWidget#y"><a href="ST.Widgets.StageWidget.html#y">y</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Widgets.StageWidget#_calculateBounds"><a href="ST.Widgets.StageWidget.html#_calculateBounds">_calculateBounds</a></li>
<li data-name="ST.Widgets.StageWidget#_evaluateMask"><a href="ST.Widgets.StageWidget.html#_evaluateMask">_evaluateMask</a></li>
<li data-name="ST.Widgets.StageWidget#_updateClipGraphic"><a href="ST.Widgets.StageWidget.html#_updateClipGraphic">_updateClipGraphic</a></li>
<li data-name="ST.Widgets.StageWidget#addChild"><a href="ST.Widgets.StageWidget.html#addChild">addChild</a></li>
<li data-name="ST.Widgets.StageWidget#addChildAt"><a href="ST.Widgets.StageWidget.html#addChildAt">addChildAt</a></li>
<li data-name="ST.Widgets.StageWidget#applyPosition"><a href="ST.Widgets.StageWidget.html#applyPosition">applyPosition</a></li>
<li data-name="ST.Widgets.StageWidget#beginBypassUpdate"><a href="ST.Widgets.StageWidget.html#beginBypassUpdate">beginBypassUpdate</a></li>
<li data-name="ST.Widgets.StageWidget#endBypassUpdate"><a href="ST.Widgets.StageWidget.html#endBypassUpdate">endBypassUpdate</a></li>
<li data-name="ST.Widgets.StageWidget#focus"><a href="ST.Widgets.StageWidget.html#focus">focus</a></li>
<li data-name="ST.Widgets.StageWidget#hasFocus"><a href="ST.Widgets.StageWidget.html#hasFocus">hasFocus</a></li>
<li data-name="ST.Widgets.StageWidget#invalidate"><a href="ST.Widgets.StageWidget.html#invalidate">invalidate</a></li>
<li data-name="ST.Widgets.StageWidget#onChildrenChange"><a href="ST.Widgets.StageWidget.html#onChildrenChange">onChildrenChange</a></li>
<li data-name="ST.Widgets.StageWidget#onHasFocus"><a href="ST.Widgets.StageWidget.html#onHasFocus">onHasFocus</a></li>
<li data-name="ST.Widgets.StageWidget#paintDefault"><a href="ST.Widgets.StageWidget.html#paintDefault">paintDefault</a></li>
<li data-name="ST.Widgets.StageWidget#paintDisabled"><a href="ST.Widgets.StageWidget.html#paintDisabled">paintDisabled</a></li>
<li data-name="ST.Widgets.StageWidget#paintDown"><a href="ST.Widgets.StageWidget.html#paintDown">paintDown</a></li>
<li data-name="ST.Widgets.StageWidget#paintHover"><a href="ST.Widgets.StageWidget.html#paintHover">paintHover</a></li>
<li data-name="ST.Widgets.StageWidget#recursiveRouteUpdate"><a href="ST.Widgets.StageWidget.html#recursiveRouteUpdate">recursiveRouteUpdate</a></li>
<li data-name="ST.Widgets.StageWidget#renderCanvas"><a href="ST.Widgets.StageWidget.html#renderCanvas">renderCanvas</a></li>
<li data-name="ST.Widgets.StageWidget#renderWebGL"><a href="ST.Widgets.StageWidget.html#renderWebGL">renderWebGL</a></li>
<li data-name="ST.Widgets.StageWidget#routeInvalidation"><a href="ST.Widgets.StageWidget.html#routeInvalidation">routeInvalidation</a></li>
<li data-name="ST.Widgets.StageWidget#setParent"><a href="ST.Widgets.StageWidget.html#setParent">setParent</a></li>
<li data-name="ST.Widgets.StageWidget#update"><a href="ST.Widgets.StageWidget.html#update">update</a></li>
<li data-name="ST.Widgets.StageWidget#validate"><a href="ST.Widgets.StageWidget.html#validate">validate</a></li>
<li data-name="ST.Widgets.StageWidget#validateHeight"><a href="ST.Widgets.StageWidget.html#validateHeight">validateHeight</a></li>
<li data-name="ST.Widgets.StageWidget#validateWidth"><a href="ST.Widgets.StageWidget.html#validateWidth">validateWidth</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ST.Widgets.TextButton">
<span class="title">
<a href="ST.Widgets.TextButton.html">ST.Widgets.TextButton</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ST.Widgets.TextButton#_bkgObj"><a href="ST.Widgets.TextButton.html#_bkgObj">_bkgObj</a></li>
<li data-name="ST.Widgets.TextButton#_clipGraphic"><a href="ST.Widgets.TextButton.html#_clipGraphic">_clipGraphic</a></li>
<li data-name="ST.Widgets.TextButton#_disabled"><a href="ST.Widgets.TextButton.html#_disabled">_disabled</a></li>
<li data-name="ST.Widgets.TextButton#_hPolicy"><a href="ST.Widgets.TextButton.html#_hPolicy">_hPolicy</a></li>
<li data-name="ST.Widgets.TextButton#_interactiveState"><a href="ST.Widgets.TextButton.html#_interactiveState">_interactiveState</a></li>
<li data-name="ST.Widgets.TextButton#_layout"><a href="ST.Widgets.TextButton.html#_layout">_layout</a></li>
<li data-name="ST.Widgets.TextButton#_sizeProxy"><a href="ST.Widgets.TextButton.html#_sizeProxy">_sizeProxy</a></li>
<li data-name="ST.Widgets.TextButton#_vPolicy"><a href="ST.Widgets.TextButton.html#_vPolicy">_vPolicy</a></li>
<li data-name="ST.Widgets.TextButton#bypassInvalidation"><a href="ST.Widgets.TextButton.html#bypassInvalidation">bypassInvalidation</a></li>
<li data-name="ST.Widgets.TextButton#clipGraphic"><a href="ST.Widgets.TextButton.html#clipGraphic">clipGraphic</a></li>
<li data-name="ST.Widgets.TextButton#disabled"><a href="ST.Widgets.TextButton.html#disabled">disabled</a></li>
<li data-name="ST.Widgets.TextButton#height"><a href="ST.Widgets.TextButton.html#height">height</a></li>
<li data-name="ST.Widgets.TextButton#hPolicy"><a href="ST.Widgets.TextButton.html#hPolicy">hPolicy</a></li>
<li data-name="ST.Widgets.TextButton#label"><a href="ST.Widgets.TextButton.html#label">label</a></li>
<li data-name="ST.Widgets.TextButton#layout"><a href="ST.Widgets.TextButton.html#layout">layout</a></li>
<li data-name="ST.Widgets.TextButton#max"><a href="ST.Widgets.TextButton.html#max">max</a></li>
<li data-name="ST.Widgets.TextButton#min"><a href="ST.Widgets.TextButton.html#min">min</a></li>
<li data-name="ST.Widgets.TextButton#padding"><a href="ST.Widgets.TextButton.html#padding">padding</a></li>
<li data-name="ST.Widgets.TextButton#sizeProxy"><a href="ST.Widgets.TextButton.html#sizeProxy">sizeProxy</a></li>
<li data-name="ST.Widgets.TextButton#text"><a href="ST.Widgets.TextButton.html#text">text</a></li>
<li data-name="ST.Widgets.TextButton#theme"><a href="ST.Widgets.TextButton.html#theme">theme</a></li>
<li data-name="ST.Widgets.TextButton#valid"><a href="ST.Widgets.TextButton.html#valid">valid</a></li>
<li data-name="ST.Widgets.TextButton#vPolicy"><a href="ST.Widgets.TextButton.html#vPolicy">vPolicy</a></li>
<li data-name="ST.Widgets.TextButton#width"><a href="ST.Widgets.TextButton.html#width">width</a></li>
<li data-name="ST.Widgets.TextButton#x"><a href="ST.Widgets.TextButton.html#x">x</a></li>
<li data-name="ST.Widgets.TextButton#y"><a href="ST.Widgets.TextButton.html#y">y</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ST.Widgets.TextButton#_evaluateMask"><a href="ST.Widgets.TextButton.html#_evaluateMask">_evaluateMask</a></li>
<li data-name="ST.Widgets.TextButton#_updateClipGraphic"><a href="ST.Widgets.TextButton.html#_updateClipGraphic">_updateClipGraphic</a></li>
<li data-name="ST.Widgets.TextButton#applyPosition"><a href="ST.Widgets.TextButton.html#applyPosition">applyPosition</a></li>
<li data-name="ST.Widgets.TextButton#beginBypassUpdate"><a href="ST.Widgets.TextButton.html#beginBypassUpdate">beginBypassUpdate</a></li>
<li data-name="ST.Widgets.TextButton#endBypassUpdate"><a href="ST.Widgets.TextButton.html#endBypassUpdate">endBypassUpdate</a></li>
<li data-name="ST.Widgets.TextButton#focus"><a href="ST.Widgets.TextButton.html#focus">focus</a></li>
<li data-name="ST.Widgets.TextButton#hasFocus"><a href="ST.Widgets.TextButton.html#hasFocus">hasFocus</a></li>
<li data-name="ST.Widgets.TextButton#invalidate"><a href="ST.Widgets.TextButton.html#invalidate">invalidate</a></li>
<li data-name="ST.Widgets.TextButton#onHasFocus"><a href="ST.Widgets.TextButton.html#onHasFocus">onHasFocus</a></li>
<li data-name="ST.Widgets.TextButton#recursiveRouteUpdate"><a href="ST.Widgets.TextButton.html#recursiveRouteUpdate">recursiveRouteUpdate</a></li>
<li data-name="ST.Widgets.TextButton#routeInvalidation"><a href="ST.Widgets.TextButton.html#routeInvalidation">routeInvalidation</a></li>
<li data-name="ST.Widgets.TextButton#update"><a href="ST.Widgets.TextButton.html#update">update</a></li>
<li data-name="ST.Widgets.TextButton#validate"><a href="ST.Widgets.TextButton.html#validate">validate</a></li>
<li data-name="ST.Widgets.TextButton#validateHeight"><a href="ST.Widgets.TextButton.html#validateHeight">validateHeight</a></li>
<li data-name="ST.Widgets.TextButton#validateWidth"><a href="ST.Widgets.TextButton.html#validateWidth">validateWidth</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
</ul>
</div>
<div class="main">
<h1 class="page-title" data-filename="layoutSys_layouts_HBoxLayout.js.html">Source: layoutSys/layouts/HBoxLayout.js</h1>
<section>
<article>
<pre id="source-code" class="prettyprint source linenums"><code>import BoxLayout from './BoxLayout';
import {HORIZONTAL} from '../.././const';
/**
* Arranges widgets horizontally stacked beside each other.
* (Same as box layout with orientation = ST.HORIZONTAL)
* @memberof ST.Layouts
* @extends ST.Layouts.BoxLayout
*
* @example
* let widget = new ST.Widgets.Button(myApp.root, {
* width: 100,
* height: 30,
* });
*
* widget.layout = new ST.Layouts.HBoxLayout(widget);
*/
export default class HBoxLayout extends BoxLayout {
/**
* @param {ST.Widgets.BaseWidget} hostWidget
* The widget this layout belongs to
* @param {Number} [spacing=4] The space in pixels between widgets
*/
constructor(hostWidget, spacing = 4) {
super(hostWidget, HORIZONTAL, spacing);
}
}
</code></pre>
</article>
</section>
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.3</a> on Tue Oct 22 2019 18:47:31 GMT-0500 (Central Daylight Time)
</footer>
</div>
</div>
<script>prettyPrint();</script>
<script src="scripts/jaguar.js"></script>
</body>
</html>
|
manpages/man8/sys-unconfig.8.html | yuweijun/yuweijun.github.io | <!DOCTYPE html>
<HTML><head><TITLE>Manpage of SYS-UNCONFIG</TITLE>
<meta charset="utf-8">
<link rel="stylesheet" href="/css/main.css" type="text/css">
</head>
<body>
<header class="site-header">
<div class="wrap"> <div class="site-title"><a href="/manpages/index.html">linux manpages</a></div>
<div class="site-description">{"type":"documentation"}</div>
</div>
</header>
<div class="page-content"><div class="wrap">
<H1>SYS-UNCONFIG</H1>
Section: Maintenance Commands (8)<BR>Updated: Wed Jul 28 1999<BR><A HREF="#index">Index</A>
<A HREF="/manpages/index.html">Return to Main Contents</A><HR>
<A NAME="lbAB"> </A>
<H2>NAME</H2>
sys-unconfig - shell script to reconfigure the system upon next boot
<A NAME="lbAC"> </A>
<H2>SYNOPSIS</H2>
<B>sys-unconfig</B>
<A NAME="lbAD"> </A>
<H2>DESCRIPTION</H2>
<B>sys-unconfig</B> provides a simple method of reconfiguring a system
in a new environment. Upon executing sys-unconfig will halt your
system, and run the following configuration programs at boot:
passwd (to change the root password), netconfig, timeconfig,
kbdconfig, authconfig, and ntsysv.
<P>
<A NAME="lbAE"> </A>
<H2>FILES</H2>
<DL COMPACT>
<DT><I>/.unconfigured</I><DD>
The presence of this file will cause /etc/rc.d/rc.sysinit to run
the programs mentioned above.
<P>
</DL>
<A NAME="lbAF"> </A>
<H2>SEE ALSO</H2>
<B><A HREF="/manpages/index.html?1+passwd">passwd</A></B>(1),
<B><A HREF="/manpages/index.html?8+netconfig">netconfig</A></B>(8),
<B><A HREF="/manpages/index.html?8+timeconfig">timeconfig</A></B>(8),
<B><A HREF="/manpages/index.html?8+kbdconfig">kbdconfig</A></B>(8),
<B><A HREF="/manpages/index.html?8+authconfig">authconfig</A></B>(8),
<B><A HREF="/manpages/index.html?8+ntsysv">ntsysv</A>(8)</B>
<P>
<A NAME="lbAG"> </A>
<H2>AUTHORS</H2>
<PRE>
H.J. Lu <<A HREF="mailto:hjl@valinux.com">hjl@valinux.com</A>>
</PRE>
<P>
<HR>
<A NAME="index"> </A><H2>Index</H2>
<DL>
<DT><A HREF="#lbAB">NAME</A><DD>
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
<DT><A HREF="#lbAE">FILES</A><DD>
<DT><A HREF="#lbAF">SEE ALSO</A><DD>
<DT><A HREF="#lbAG">AUTHORS</A><DD>
</DL>
<HR>
This document was created by
<A HREF="/manpages/index.html">man2html</A>,
using the manual pages.<BR>
Time: 05:34:30 GMT, December 24, 2015
</div></div>
</body>
</HTML>
|
src/css/index.css | niko-matses/nikomatses.com | @import url(https://fonts.googleapis.com/css?family=Coda);
@import url("https://use.typekit.net/qbp5vqk.css");
/* line 1, ../sass/helpers/_reset.scss */
*, *:after, *:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* line 3, ../sass/helpers/_reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
/* line 24, ../sass/helpers/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
/* line 28, ../sass/helpers/_reset.scss */
body {
line-height: 1;
}
/* line 31, ../sass/helpers/_reset.scss */
ol, ul {
list-style: none;
}
/* line 34, ../sass/helpers/_reset.scss */
blockquote, q {
quotes: none;
}
/* line 37, ../sass/helpers/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
/* line 42, ../sass/helpers/_reset.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/**
* iPad with portrait orientation.
*/
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
/* line 5, ../sass/helpers/_queries.scss */
#bg-container {
height: 1024px;
}
}
/**
* iPad with landscape orientation.
*/
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) {
/* line 14, ../sass/helpers/_queries.scss */
#bg-container {
height: 768px;
}
}
/**
* iPhone 5
* You can also target devices with aspect ratio.
*/
@media screen and (device-aspect-ratio: 40 / 71) {
/* line 24, ../sass/helpers/_queries.scss */
#bg-container {
height: 500px;
}
}
/* line 1, ../sass/helpers/_video.scss */
.embed-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 100%;
}
/* line 8, ../sass/helpers/_video.scss */
.embed-container iframe, .embed-container object, .embed-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* line 1, ../sass/modules/_main.scss */
.section {
padding-bottom: 2em;
}
/* line 4, ../sass/modules/_main.scss */
.main-content {
background-color: #f9f9f9;
}
/* line 6, ../sass/modules/_main.scss */
.main-content .main-content__margins {
max-width: 1200px;
margin: 0 auto;
padding: 2em 1em 0;
}
/* line 11, ../sass/modules/_main.scss */
.main-content .main-content__headline {
font-family: "rinse", "Coda","Arial",sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 3em;
line-height: 1;
letter-spacing: 1px;
padding-bottom: 1em;
color: #39af84;
}
/* line 20, ../sass/modules/_main.scss */
.main-content .main-content__lead-paragraph, .main-content .main-content__subhead, .main-content .main-content__paragraph {
font-family: "quiroh", "Coda", Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* line 24, ../sass/modules/_main.scss */
.main-content .main-content__button {
display: block;
text-align: center;
font-size: 1.5em;
padding: 1em 1.5em;
margin: 1em 0 2em;
border: 3px solid #39af84;
text-decoration: none;
background-color: #39af84;
color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* line 36, ../sass/modules/_main.scss */
.main-content .content--inverted {
padding: 2em 0;
margin: 2em 0;
background: #39af84;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* line 41, ../sass/modules/_main.scss */
.main-content .content--inverted .main-content__headline,
.main-content .content--inverted .main-content__subhead,
.main-content .content--inverted .main-content__paragraph,
.main-content .content--inverted .main-content__lead-paragraph {
color: #fff;
}
/* line 47, ../sass/modules/_main.scss */
.main-content .content--inverted .main-content__button {
background: #fff;
color: #39af84;
}
/* line 3, ../sass/modules/_typography.scss */
html {
font-size: 16px;
}
/* line 8, ../sass/modules/_typography.scss */
.main-content__subhead {
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
color: #39af84;
padding-bottom: 1em;
}
/* line 15, ../sass/modules/_typography.scss */
.main-content__paragraph, .main-content__lead-paragraph {
font-size: 1.15em;
line-height: 1.5em;
color: #898989;
padding-bottom: 1em;
}
/* line 20, ../sass/modules/_typography.scss */
.main-content__paragraph a, .main-content__lead-paragraph a {
color: #39af84;
text-decoration: none;
}
/* line 25, ../sass/modules/_typography.scss */
.main-content__lead-paragraph {
font-size: 1.5em;
line-height: 1.5em;
}
/* line 29, ../sass/modules/_typography.scss */
.main-content__ordered-list, main-content__unordered-list {
display: block;
color: #f9f9f9;
list-style: outside;
margin: 0 0 2em 2em;
}
/* line 34, ../sass/modules/_typography.scss */
.main-content__ordered-list li, main-content__unordered-list li {
list-style-type: decimal-leading-zero;
}
/* line 37, ../sass/modules/_typography.scss */
.main-content__ordered-list .main-content__subhead, main-content__unordered-list .main-content__subhead {
padding-left: 1em;
text-transform: none;
}
/* line 41, ../sass/modules/_typography.scss */
.main-content__ordered-list .main-content__headline, main-content__unordered-list .main-content__headline {
text-transform: none;
font-weight: normal;
}
/* line 1, ../sass/modules/_cta.scss */
.cta {
width: 85%;
font-family: "quiroh", "Coda", Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
display: block;
padding: 15px 30px;
margin: 50px auto 0;
color: #f9f9f9;
background: #39af84;
border: 1px solid #f9f9f9;
border-radius: 30px;
text-transform: uppercase;
letter-spacing: 2px;
text-decoration: none;
transition: background 0.3s ease, color 0.3s ease, border-radius 0.3s ease;
}
@media (min-width: 640px) {
/* line 1, ../sass/modules/_cta.scss */
.cta {
max-width: 300px;
width: 50%;
}
}
/* line 23, ../sass/modules/_cta.scss */
.anchor {
visibility: hidden;
padding-top: 100px;
margin: 0;
}
/* line 28, ../sass/modules/_cta.scss */
.cta:hover {
color: #39af84;
background: #f9f9f9;
text-decoration: none;
border: 1px solid #39af84;
}
/* line 34, ../sass/modules/_cta.scss */
.contact__cta {
display: inline-block;
margin: 15px;
}
/* line 1, ../sass/modules/_animation.scss */
body {
-webkit-animation: fadein 2s ease-out;
/* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 2s ease-out;
/* Firefox < 16 */
-ms-animation: fadein 2s ease-out;
/* Internet Explorer */
-o-animation: fadein 2s ease-out;
/* Opera < 12.1 */
animation: fadein 2s ease-out;
}
/* line 9, ../sass/modules/_animation.scss */
.ml11 .text-wrapper {
position: relative;
display: inline-block;
padding-top: 0.1em;
padding-right: 0.05em;
padding-bottom: 0.15em;
}
/* line 17, ../sass/modules/_animation.scss */
.ml11 .line {
opacity: 0;
position: absolute;
left: 0;
height: 100%;
width: 3px;
background-color: rgba(255, 255, 255, 0.3);
transform-origin: 0 50%;
}
/* line 27, ../sass/modules/_animation.scss */
.ml11 .line1 {
top: 0;
left: 0;
}
/* line 32, ../sass/modules/_animation.scss */
.ml11 .letter {
display: inline-block;
}
/* line 35, ../sass/modules/_animation.scss */
.ml12 .letter {
opacity: 0;
}
@media (min-width: 960px) {
/* line 39, ../sass/modules/_animation.scss */
.ml12 .letter {
display: inline-block;
}
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Internet Explorer */
@-ms-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* line 1, ../sass/components/_nav.scss */
.nav {
font-family: "quiroh", "Coda", Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
text-align: center;
right: 0;
width: 100%;
font-size: 1.25em;
text-transform: uppercase;
letter-spacing: 5px;
padding: 15px;
color: #fff;
background: #39af84;
z-index: 3;
}
/* line 14, ../sass/components/_nav.scss */
.nav__menu {
text-align: right;
}
/* line 17, ../sass/components/_nav.scss */
.nav__menu-item {
color: #f9f9f9;
display: inline-block;
padding: 15px;
font-family: "Coda", Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
}
@media (min-width: 640px) {
/* line 17, ../sass/components/_nav.scss */
.nav__menu-item {
padding: 30px;
font-size: 1em;
}
}
/* line 30, ../sass/components/_nav.scss */
.nav__menu-link {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #f9f9f9;
text-decoration: none;
transition: color .3s;
}
/* line 35, ../sass/components/_nav.scss */
.nav__menu-link:hover {
color: #fff !important;
}
/* line 40, ../sass/components/_nav.scss */
.nav__menu-item--logo {
position: relative;
display: inline;
left: 0;
font-size: 18px;
font-family: "Averia Sans Libre", Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
letter-spacing: 5px;
}
/* Fixed Vertical Nav */
/* line 3, ../sass/components/_vertical-nav.scss */
.cd-img-replace {
/* replace text with a background-image */
display: inline-block;
overflow: hidden;
text-indent: 100%;
white-space: nowrap;
}
/* line 11, ../sass/components/_vertical-nav.scss */
#cd-vertical-nav a {
font-family: "quiroh", "Coda", Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
color: #39af84;
letter-spacing: 2px;
text-transform: uppercase;
text-decoration: none;
}
/* No Touch devices */
/* line 20, ../sass/components/_vertical-nav.scss */
.cd-nav-trigger {
display: none;
}
/* line 24, ../sass/components/_vertical-nav.scss */
.no-touch #cd-vertical-nav {
position: fixed;
right: 2%;
top: 50%;
bottom: auto;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
z-index: 3;
}
/* line 36, ../sass/components/_vertical-nav.scss */
.no-touch #cd-vertical-nav li {
text-align: right;
}
/* line 39, ../sass/components/_vertical-nav.scss */
.no-touch #cd-vertical-nav a {
display: inline-block;
/* prevent weird movements on hover when you use a CSS3 transformation - webkit browsers */
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
/* line 45, ../sass/components/_vertical-nav.scss */
.no-touch #cd-vertical-nav a:after {
content: "";
display: table;
clear: both;
}
/* line 50, ../sass/components/_vertical-nav.scss */
.no-touch #cd-vertical-nav a span {
float: right;
display: inline-block;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
}
/* line 59, ../sass/components/_vertical-nav.scss */
.no-touch #cd-vertical-nav a:hover span {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
/* line 66, ../sass/components/_vertical-nav.scss */
.no-touch #cd-vertical-nav a:hover .cd-label {
opacity: 1;
}
/* line 69, ../sass/components/_vertical-nav.scss */
.no-touch #cd-vertical-nav a.is-selected .cd-dot {
background-color: white;
}
/* line 72, ../sass/components/_vertical-nav.scss */
.no-touch #cd-vertical-nav .cd-dot {
position: relative;
/* we set a top value in order to align the dot with the label. If you change label's font, you may need to change this top value*/
top: 8px;
height: 12px;
width: 12px;
border-radius: 50%;
background-color: #39af84;
-webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
-moz-transition: -moz-transform 0.2s, background-color 0.5s;
transition: transform 0.2s, background-color 0.5s;
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
/* line 89, ../sass/components/_vertical-nav.scss */
.no-touch #cd-vertical-nav .cd-label {
font-family: "quiroh", "Coda", Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
position: relative;
top: -6px;
text-transform: uppercase;
position: relative;
margin-right: 1em;
padding: 1.5em 2em;
background-color: #fff;
font-size: 14px;
font-size: 0.875rem;
line-height: 0;
-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
-moz-transition: -moz-transform 0.2s, opacity 0.2s;
transition: transform 0.2s, opacity 0.2s;
opacity: 0;
-webkit-transform-origin: 100% 50%;
-moz-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
-o-transform-origin: 100% 50%;
transform-origin: 100% 50%;
border-radius: 20px;
}
/* Touch devices */
/* line 115, ../sass/components/_vertical-nav.scss */
.touch .cd-nav-trigger {
display: block;
z-index: 3;
position: fixed;
bottom: 30px;
right: 5%;
height: 44px;
width: 44px;
border-radius: 0.25em;
background: rgba(255, 255, 255, 0.9);
}
/* line 126, ../sass/components/_vertical-nav.scss */
.touch .cd-nav-trigger span {
position: absolute;
height: 4px;
width: 4px;
background-color: #3e3947;
border-radius: 50%;
left: 50%;
top: 50%;
bottom: auto;
right: auto;
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-o-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
/* line 142, ../sass/components/_vertical-nav.scss */
.touch .cd-nav-trigger span::before, .touch .cd-nav-trigger span::after {
content: '';
height: 100%;
width: 100%;
position: absolute;
left: 0;
background-color: inherit;
border-radius: inherit;
}
/* line 151, ../sass/components/_vertical-nav.scss */
.touch .cd-nav-trigger span::before {
top: -9px;
}
/* line 154, ../sass/components/_vertical-nav.scss */
.touch .cd-nav-trigger span::after {
bottom: -9px;
}
/* line 158, ../sass/components/_vertical-nav.scss */
.touch #cd-vertical-nav {
position: fixed;
z-index: 3;
right: 5%;
bottom: 30px;
width: 90%;
max-width: 400px;
max-height: 90%;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
-webkit-transform-origin: right bottom;
-moz-transform-origin: right bottom;
-ms-transform-origin: right bottom;
-o-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
-webkit-transition-property: -webkit-transform;
-moz-transition-property: -moz-transform;
transition-property: transform;
-webkit-transition-duration: 0.2s;
-moz-transition-duration: 0.2s;
transition-duration: 0.2s;
border-radius: 0.25em;
background-color: #f9f9f9;
}
/* line 187, ../sass/components/_vertical-nav.scss */
.touch #cd-vertical-nav a {
display: block;
padding: 1em;
border-bottom: 1px solid rgba(62, 57, 71, 0.1);
}
/* line 192, ../sass/components/_vertical-nav.scss */
.touch #cd-vertical-nav a span:first-child {
display: none;
}
/* line 195, ../sass/components/_vertical-nav.scss */
.touch #cd-vertical-nav a.is-selected span:last-child {
color: #d88683;
}
/* line 198, ../sass/components/_vertical-nav.scss */
.touch #cd-vertical-nav.open {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
/* line 205, ../sass/components/_vertical-nav.scss */
.touch #cd-vertical-nav.open + .cd-nav-trigger {
background-color: transparent;
}
/* line 208, ../sass/components/_vertical-nav.scss */
.touch #cd-vertical-nav.open + .cd-nav-trigger span {
background-color: rgba(62, 57, 71, 0);
}
/* line 211, ../sass/components/_vertical-nav.scss */
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before, .touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
background-color: #3e3947;
height: 3px;
width: 20px;
border-radius: 0;
left: -8px;
}
/* line 218, ../sass/components/_vertical-nav.scss */
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
top: 1px;
}
/* line 226, ../sass/components/_vertical-nav.scss */
.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-ms-transform: rotate(135deg);
-o-transform: rotate(135deg);
transform: rotate(135deg);
bottom: 0;
}
/* line 234, ../sass/components/_vertical-nav.scss */
.touch #cd-vertical-nav li:last-child a {
border-bottom: none;
}
@media only screen and (min-width: 768px) {
/* line 239, ../sass/components/_vertical-nav.scss */
.touch .cd-nav-trigger, .touch #cd-vertical-nav {
bottom: 40px;
}
}
/* line 1, ../sass/components/_hero.scss */
.hero {
height: 600px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
/* line 6, ../sass/components/_hero.scss */
.hero .hero__headline {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "rinse", "Coda","Arial",sans-serif;
z-index: 2;
font-size: 3em;
padding: 1em;
text-shadow: 3px 3px #000;
color: #fff;
max-width: 1920px;
}
/* line 16, ../sass/components/_hero.scss */
.hero .hero__overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
@media (min-width: 960px) {
/* line 1, ../sass/components/_hero.scss */
.hero {
height: 700px;
}
}
@media (min-width: 960px) {
/* line 28, ../sass/components/_hero.scss */
.hero .hero__headline {
font-size: 5vw;
}
}
@media (min-width: 1920px) {
/* line 33, ../sass/components/_hero.scss */
.hero .hero__headline {
font-size: 5em;
}
}
/* line 38, ../sass/components/_hero.scss */
.hero__bg-image--chalkboard {
background: #111 url(../img/niko-matses_ui-designer_chalkboard-wireframing_photo-by-justine-chang.jpg);
background-repeat: no-repeat;
background-position: 20% 75%;
background-size: cover;
}
@media (min-width: 960px) {
/* line 38, ../sass/components/_hero.scss */
.hero__bg-image--chalkboard {
background-attachment: fixed;
}
}
/* line 5, ../sass/components/_projects.scss */
.section__projects {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* line 11, ../sass/components/_projects.scss */
.project__card {
background-color: #fff;
border: 1px solid #ebebeb;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* line 16, ../sass/components/_projects.scss */
.project__card {
margin-bottom: 3%;
vertical-align: top;
}
@media (min-width: 640px) {
/* line 16, ../sass/components/_projects.scss */
.project__card {
display: inline-block;
width: 46%;
margin-right: 3%;
}
}
/* line 25, ../sass/components/_projects.scss */
.section__skills {
margin-bottom: 4%;
vertical-align: top;
}
@media (min-width: 640px) {
/* line 25, ../sass/components/_projects.scss */
.section__skills {
display: inline-block;
width: 44%;
margin-right: 5%;
}
}
/* line 34, ../sass/components/_projects.scss */
.project__featured-image {
max-width: 100%;
}
/* line 37, ../sass/components/_projects.scss */
.project__label {
display: block;
}
/* line 40, ../sass/components/_projects.scss */
.project__details {
padding: 20px 15px 15px;
}
/* line 43, ../sass/components/_projects.scss */
.project__title {
font-family: "quiroh", "Coda", Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #39af84;
letter-spacing: .01em;
font-size: 1.75em;
padding-bottom: 15px;
font-weight: normal;
}
/* line 51, ../sass/components/_projects.scss */
.project__description {
font-family: "quiroh", "Coda", Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.25;
letter-spacing: .025em;
color: #898989;
margin-bottom: 30px;
}
/* line 58, ../sass/components/_projects.scss */
.project__role, .project__tools {
font-family: "quiroh", "Coda", Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
display: inline-block;
font-size: .75em;
line-height: 1.5;
letter-spacing: .075em;
text-transform: uppercase;
color: #898989;
background: #f9f9f9;
border: 1px solid #ebebeb;
padding: 10px;
margin-bottom: 10px;
}
/* line 72, ../sass/components/_projects.scss */
.project__tools {
margin-bottom: 15px;
}
/* line 75, ../sass/components/_projects.scss */
.project__cta {
text-transform: uppercase;
letter-spacing: 1px;
font-family: "quiroh", "Coda", Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 78, ../sass/components/_projects.scss */
.project__cta .project__link {
display: block;
padding: 20px;
font-size: .75em;
line-height: .75;
letter-spacing: .075em;
text-transform: uppercase;
color: #39af84;
text-decoration: none;
z-index: 10;
}
/* line 88, ../sass/components/_projects.scss */
.project__cta .project__link:hover {
color: #fff;
transition: color .3s;
}
/* line 92, ../sass/components/_projects.scss */
.project__cta .project__link:hover:after {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: relative;
top: 4px;
float: right;
color: #f9f9f9;
font-size: 2.5em;
line-height: 0;
}
/* line 103, ../sass/components/_projects.scss */
.project__cta:hover {
background: #39af84;
transition: background .3s;
}
/* JQUERY ZOOM */
/* magnifying glass icon */
/* line 111, ../sass/components/_projects.scss */
.zoom:after {
opacity: 0;
transition: opacity .3s;
}
/* line 115, ../sass/components/_projects.scss */
.zoom:hover:after {
content: '';
display: block;
opacity: 1;
width: 22px;
height: 22px;
position: absolute;
top: 5px;
right: 5px;
background: url(../img/icons/icon-zoom.svg);
transition: opacity .3s;
z-index: 0;
}
/* line 129, ../sass/components/_projects.scss */
.zoom img {
display: block;
z-index: 1;
}
/* line 134, ../sass/components/_projects.scss */
.zoom img::selection {
background-color: transparent;
}
/* line 136, ../sass/components/_projects.scss */
#project__bms img:hover {
cursor: url(grab.cur), default;
}
/* line 137, ../sass/components/_projects.scss */
#project__bms img:active {
cursor: url(grabbed.cur), default;
}
/* line 1, ../sass/components/_experience.scss */
.section__experience {
font-size: 0;
margin-bottom: 60px;
}
/* line 4, ../sass/components/_experience.scss */
.section__experience .main-content__headline {
font-size: 3rem;
}
/* line 7, ../sass/components/_experience.scss */
.section__experience .main-content__paragraph {
vertical-align: top;
display: inline-block;
text-align: left;
font-size: 1.1rem;
padding-right: 5%;
}
@media (min-width: 768px) {
/* line 7, ../sass/components/_experience.scss */
.section__experience .main-content__paragraph {
width: 33%;
padding: 30px 30px 30px 0;
font-size: 1.1rem;
}
}
/* line 20, ../sass/components/_experience.scss */
.skill__icon {
display: block;
width: 30px;
height: 30px;
margin: 15px 0;
}
/* line 1, ../sass/components/_footer.scss */
.footer {
font-family: "quiroh", "Coda", Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
width: 100%;
margin: auto;
padding: 60px 15px;
background: #39af84;
color: #f9f9f9;
letter-spacing: 1px;
text-transform: uppercase;
line-height: 1.5em;
text-align: center;
}
/* line 13, ../sass/components/_footer.scss */
.copyright {
display: block;
font-size: .75em;
letter-spacing: 2px;
appearance: normal;
margin: 30px auto 5px;
}
/* line 23, ../sass/components/_footer.scss */
.social__icon {
display: inline-block;
height: 60px;
}
/* line 26, ../sass/components/_footer.scss */
.social__icon img {
width: 22px;
}
/* line 29, ../sass/components/_footer.scss */
.social__icon .icon-github, .social__icon .icon-twitter, .social__icon .icon-youtube, .social__icon .icon-vimeo, .social__icon .icon-instagram {
position: relative;
background: none;
display: inline-block;
padding: 30px 10px;
margin: 0;
text-align: center;
}
/* line 36, ../sass/components/_footer.scss */
.social__icon .icon-github:hover:before, .social__icon .icon-twitter:hover:before, .social__icon .icon-youtube:hover:before, .social__icon .icon-vimeo:hover:before, .social__icon .icon-instagram:hover:before {
position: absolute;
bottom: 60px;
font-size: .6em;
color: #fff;
letter-spacing: 2px;
}
/* line 45, ../sass/components/_footer.scss */
.icon-github:hover:before {
content: 'GitHub';
}
/* line 46, ../sass/components/_footer.scss */
.icon-twitter:hover:before {
content: 'Twitter';
}
/* line 47, ../sass/components/_footer.scss */
.icon-youtube:hover:before {
content: 'YouTube';
}
/* line 48, ../sass/components/_footer.scss */
.icon-vimeo:hover:before {
content: 'Vimeo';
}
/* line 49, ../sass/components/_footer.scss */
.icon-instagram:hover:before {
content: 'Instagram';
}
.nav {
display: flex;
justify-content: center;
align-items: center;
}
.nav__content {
display: inline-block;
}
.nav__menu {
display: none;
margin: 15px 0;
}
.nav__menu-items {
}
.nav__menu-item {
text-transform: uppercase;
letter-spacing: 0;
}
.nav__link .letter {
letter-spacing: 2px;
}
.nav__link {
padding: 12px;
color: rgba(255,255,255,.8);
font-size: 14px;
}
.nav__link:hover {
color: rgba(255,255,255,1);
}
.hero {
height: 80vh;
}
.main-content {
padding: 100px 30px;
text-align: left;
padding-left: 15px;
}
.project__card, .project__background,.project__details {
border-radius: 4px;
}
.project__card {
text-align: right;
margin: 3vh auto;
width: 90%;
}
.project__cta {
background: rgba(255,255,255,0.15);
background-color: #39af84;
text-align: center;
}
.project__link {
color: #fff !important ;
text-shadow: #888 0px 1px 5px;
font-size: 14px !important;
}
.project__details {
display: flex;
flex-direction: column;
justify-content: center;
position: relative ;
text-align: left;
padding: 45px;
width: 90%;
margin: 30px auto;
background: rgba(255,255,255,.9);
}
}
.hero {
height: 85vh;
}
.project__background {
position: relative;
top: 0;
min-height: 600px;
height: 50vh;
background-size: contain;
background-repeat: no-repeat;
background-position: bottom left;
}
@media (min-height: 768px) and (max-width: 999px) {
.project__background {
height: 65vh;
}
}
@media (max-width: 999px) {
.main-content {
padding: 100px 0;
}
.project__details {
padding: 30px 15px;
}
}
@media (min-width: 1000px) and (max-width: 1800px) {
.project__background {
display: flex;
}
}
@media (min-width: 1000px) {
.nav {
justify-content: space-between;
}
.nav__menu {
display: flex;
}
.project__card {
margin: 0 auto 15vh;
}
.project__details {
border-radius: 0;
width: 30%;
margin: 0 0 0 auto;
}
}
@media (min-width: 1200px) {
.nav__link {
padding: 15px;
font-size: 16px;
}
.project__background {
background-position: bottom left
}
.project__details {
border-radius: 4px;
align-self: center;
box-shadow: rgba(0,0,0,.15) 0px 0px 15px;
right: 2.5%;
width: 30%;
}
}
@media (min-width: 1800px) {
.project__card {
width: 75%;
}
.project__details {
position: absolute;
width: 25%;
top: unset;
bottom: 60px;
padding: 30px;
}
.project__background {
min-height: 75vh;
}
.project__description {
font-size: 18px;
}
}
@media (min-width: 2200px) {
.project__background {
background-size: 1600px;
}
}
.section__snapshot{
margin: 10vh auto;
}
.section__snapshot .main-content__lead-paragraph {
font-size: 36px;
}
.testimonial__quote {
font-size: 16px;
line-height: 1.75;
letter-spacing: 1px;
}
.testimonial__author-name,
.testimonial__author-role {
padding: 0;
}
.testimonial__author-name {
margin: 1em 0 0;
}
.testimonial__author-role {
margin: 0 0 .5em ;
font-size: 14px;
line-height: 1.5;
font-weight: 500;
color: #39af84;
letter-spacing: 1px;
}
.testimonial .skill__icon {
float: left;
margin: 1.1em 1em 4em 0;
}
@media (min-width: 768px) {
.testimonial:last-child {
width: 66% !important;
}
}
.copyright {
font-size: 18px;
line-height: 1.5;
} |
blog/templates/blog/index.html | encorehu/hublog | {% extends 'blog_base.html' %}
{% block title %}首页{% endblock %}
{% block article_content %}
<main class="main">
<div class="main__content posts">
<div class="wrapper">
<ul class="posts__list">
{% for blog in blog_list %}
<li>
<a href="{{ blog.get_absolute_url }}">
<h2 class="posts__title">{{ blog.title }}</h2>
<span class="posts__date">{{ blog.pub_date|date:'Y-m-d' }}</span>
</a>
</li>
{% endfor %}
</ul>
</div>
<div class="pagination">
<div class="wrapper">
<span class="pagination--previous">
<i class="fa fa-angle-double-left"></i>
Previous
</span>
<a href="/page2" class="pagination--next">
Next
<i class="fa fa-angle-double-right"></i>
</a>
</div>
</div>
</div>
</main>
{% endblock %}
|
index.html | Recidvst/boney.css | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Boney CSS Grid">
<meta name="author" content="Recidvst">
<title>Boney CSS Grid</title>
<link href="dist/app.min.css" rel="stylesheet">
</head>
<body>
<main class="container">
<div class="b-col-3 mob tab phab"></div>
<div class="b-col-3"></div>
<div class="b-col-3"></div>
<div class="b-col-1"></div>
<div class="b-col-2"></div>
<div class="b-col-2 mob tab phab"></div>
<div class="b-col-6"></div>
<div class="b-col-6"></div>
<div class="b-col-6"></div>
<div class="b-col-6"></div>
<div class="b-col-6"></div>
<div class="b-col-6"></div>
</main>
</body>
</html>
|
clean/Linux-x86_64-4.06.1-2.0.5/released/8.11.1/hydra-battles/0.5.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>hydra-battles: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.1 / hydra-battles - 0.5</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
hydra-battles
<small>
0.5
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-04 15:07:36 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-04 15:07:36 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/coq-community/hydra-battles"
dev-repo: "git+https://github.com/coq-community/hydra-battles.git"
bug-reports: "https://github.com/coq-community/hydra-battles/issues"
license: "MIT"
synopsis: "Exploration of some properties of Kirby and Paris' hydra battles, with the help of Coq"
description: """
An exploration of some properties of Kirby and Paris' hydra battles,
with the help of the Coq Proof assistant. This development includes
the study of several representations of ordinal numbers, and a part
of the so-called Ketonen and Solovay machinery (combinatorial
properties of epsilon0)."""
build: ["dune" "build" "-p" name "-j" jobs]
depends: [
"dune" {>= "2.5"}
"coq" {>= "8.13" & < "8.15~"}
"coq-equations" {>= "1.2" & < "1.4~"}
]
tags: [
"category:Mathematics/Combinatorics and Graph Theory"
"category:Mathematics/Logic/Foundations"
"keyword:Ketonen-Solovay machinery"
"keyword:ordinals"
"keyword:primitive recursive functions"
"logpath:hydras"
"date:2021-10-15"
]
authors: [
"Pierre Castéran"
"Évelyne Contejean"
"Jeremy Damour"
"Russell O'Connor"
"Karl Palmskog"
"Clément Pit-Claudel"
"Théo Zimmermann"
]
url {
src: "https://github.com/coq-community/hydra-battles/archive/v0.5.tar.gz"
checksum: "sha512=7edd74fa408b996ebe7c4748046fda522f24a4b532c58b5ad55edeaa4bbd137ba9f21b0b6c1f824d4e7c50f04fb6afe488dfbcd24702e8fe44eb75b780610458"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-hydra-battles.0.5 coq.8.11.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.1).
The following dependencies couldn't be met:
- coq-hydra-battles -> coq >= 8.13
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-hydra-battles.0.5</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.03.0-2.0.5/released/8.6.1/search-trees/8.6.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>search-trees: 25 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.6.1 / search-trees - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
search-trees
<small>
8.6.0
<span class="label label-success">25 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-14 22:10:28 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-14 22:10:28 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.6.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.03.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.03.0 Official 4.03.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/search-trees"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/SearchTrees"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: binary search trees" "category: Computer Science/Data Types and Data Structures" "category: Miscellaneous/Extracted Programs/Data structures" ]
authors: [ "Pierre Castéran" ]
bug-reports: "https://github.com/coq-contribs/search-trees/issues"
dev-repo: "git+https://github.com/coq-contribs/search-trees.git"
synopsis: "Binary Search Trees"
description:
"Algorithms for collecting, searching, inserting and deleting elements in binary search trees on nat"
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/search-trees/archive/v8.6.0.tar.gz"
checksum: "md5=efa221306fe35f9800479f05a770bf8d"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-search-trees.8.6.0 coq.8.6.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-search-trees.8.6.0 coq.8.6.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>13 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-search-trees.8.6.0 coq.8.6.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>25 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 452 K</p>
<ul>
<li>81 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/Adding.vo</code></li>
<li>63 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/DeleteMax.vo</code></li>
<li>59 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/Deleting.vo</code></li>
<li>30 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/nat_trees.vo</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/List2Trees.vo</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/search_trees.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/extraction.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/Deleting.glob</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/DeleteMax.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/Searching.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/Deleting.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/search_trees.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/Adding.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/More_on_Lists.vo</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/DeleteMax.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/Adding.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/search_trees.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/nat_trees.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/List2Trees.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/nat_trees.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/List2Trees.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/Searching.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/More_on_Lists.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/extraction.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/Searching.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/extraction.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/SearchTrees/More_on_Lists.glob</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-search-trees.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
commons-el-1.0/docs/api/constant-values.html | kennetham/LTA-Traffic-Demo | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc on Wed Jun 18 10:16:52 PDT 2003 -->
<TITLE>
Constant Field Values
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
</HEAD>
<SCRIPT>
function asd()
{
parent.document.title="Constant Field Values";
}
</SCRIPT>
<BODY BGCOLOR="white" onload="asd();">
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_top"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="constant-values.html" TARGET="_top"><B>NO FRAMES</B></A>
<SCRIPT>
<!--
if(window==top) {
document.writeln('<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
<CENTER>
<H1>
Constant Field Values</H1>
</CENTER>
<HR SIZE="4" NOSHADE>
<B>Contents</B><UL>
<LI><A HREF="#org.apache">org.apache.*</A>
</UL>
<A NAME="org.apache"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD ALIGN="left"><FONT SIZE="+2">
<B>org.apache.*</B></FONT></TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TD COLSPAN=3><B>org.apache.commons.el.<A HREF="org/apache/commons/el/ImplicitObjects.html">ImplicitObjects</A></B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<A NAME="org.apache.commons.el.ImplicitObjects.sAttributeName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
<CODE>static final java.lang.String</CODE></FONT></TD>
<TD ALIGN="left"><CODE><A HREF="org/apache/commons/el/ImplicitObjects.html#sAttributeName">sAttributeName</A></CODE></TD>
<TD ALIGN="right"><CODE>"org.apache.taglibs.standard.ImplicitObjects"</CODE></TD>
</TR>
</FONT></TD>
</TR>
</TABLE>
<P>
<P>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TD COLSPAN=3><B>org.apache.commons.el.parser.<A HREF="org/apache/commons/el/parser/SimpleCharStream.html">SimpleCharStream</A></B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<A NAME="org.apache.commons.el.parser.SimpleCharStream.staticFlag"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
<CODE>public static final boolean</CODE></FONT></TD>
<TD ALIGN="left"><CODE><A HREF="org/apache/commons/el/parser/SimpleCharStream.html#staticFlag">staticFlag</A></CODE></TD>
<TD ALIGN="right"><CODE>0</CODE></TD>
</TR>
</FONT></TD>
</TR>
</TABLE>
<P>
<P>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TD COLSPAN=3><B>org.apache.commons.el.parser.<A HREF="org/apache/commons/el/parser/TokenMgrError.html">TokenMgrError</A></B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<A NAME="org.apache.commons.el.parser.TokenMgrError.INVALID_LEXICAL_STATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
<CODE>static final int</CODE></FONT></TD>
<TD ALIGN="left"><CODE><A HREF="org/apache/commons/el/parser/TokenMgrError.html#INVALID_LEXICAL_STATE">INVALID_LEXICAL_STATE</A></CODE></TD>
<TD ALIGN="right"><CODE>2</CODE></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<A NAME="org.apache.commons.el.parser.TokenMgrError.LEXICAL_ERROR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
<CODE>static final int</CODE></FONT></TD>
<TD ALIGN="left"><CODE><A HREF="org/apache/commons/el/parser/TokenMgrError.html#LEXICAL_ERROR">LEXICAL_ERROR</A></CODE></TD>
<TD ALIGN="right"><CODE>0</CODE></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<A NAME="org.apache.commons.el.parser.TokenMgrError.LOOP_DETECTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
<CODE>static final int</CODE></FONT></TD>
<TD ALIGN="left"><CODE><A HREF="org/apache/commons/el/parser/TokenMgrError.html#LOOP_DETECTED">LOOP_DETECTED</A></CODE></TD>
<TD ALIGN="right"><CODE>3</CODE></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<A NAME="org.apache.commons.el.parser.TokenMgrError.STATIC_LEXER_ERROR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
<CODE>static final int</CODE></FONT></TD>
<TD ALIGN="left"><CODE><A HREF="org/apache/commons/el/parser/TokenMgrError.html#STATIC_LEXER_ERROR">STATIC_LEXER_ERROR</A></CODE></TD>
<TD ALIGN="right"><CODE>1</CODE></TD>
</TR>
</FONT></TD>
</TR>
</TABLE>
<P>
<P>
<HR>
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="constant-values.html" TARGET="_top"><B>NO FRAMES</B></A>
<SCRIPT>
<!--
if(window==top) {
document.writeln('<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
Copyright (c) 2001-2002 - Apache Software Foundation
</BODY>
</HTML>
|
_includes/job/sfp/thank-you.html | tayox/tales | <section class="" id="sfp-thanks">
<div class="container">
<!-- THANKS -->
<article class="thanks content">
{{ site.data.sfp.thankYou | markdownify }}
{{ site.data.sfp.thankYouNote | markdownify }}
{% for item in site.data.settings.contact %}
<a href="{{ item.url }}" class="contact">
<i class="fa fa-{{ item.icon }}"></i>{{ item.data }}
</a>
{% endfor %}
</article>
<!-- VIDEO -->
<article class="video content">
<a href="#" class="big-link thanks-play"><i class="fa fa-play"></i></a>
<div class="videoWrapper curtains">
<!-- -->
</div>
</article>
</div>
</section> |
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/61dd64ebb4e07952719ecda3507d617d1148f1e0d810995db808173c1d50d2eb.html | simonmysun/praxis | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./2ca27f1b38b516e2d1a8bc0a93e43eb991bacf00b6ffbf6a3151f0525b0eda04.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> |
public/Windows 10 x64 (18362.239)/_OBJECT_FOOTER.html | epikcraw/ggool | <html><body>
<h4>Windows 10 x64 (18362.239)</h4><br>
<h2>_OBJECT_FOOTER</h2>
<font face="arial"> +0x000 HandleRevocationInfo : <a href="./_HANDLE_REVOCATION_INFO.html">_HANDLE_REVOCATION_INFO</a><br>
+0x020 ExtendedUserInfo : <a href="./_OB_EXTENDED_USER_INFO.html">_OB_EXTENDED_USER_INFO</a><br>
</font></body></html> |
public/Windows 10 x64 (18363.900)/_KPRCBFLAG.html | epikcraw/ggool | <html><body>
<h4>Windows 10 x64 (18363.900)</h4><br>
<h2>_KPRCBFLAG</h2>
<font face="arial"> +0x000 PrcbFlags : Int4B<br>
+0x000 BamQosLevel : Pos 0, 2 Bits<br>
+0x000 PendingQosUpdate : Pos 2, 2 Bits<br>
+0x000 CacheIsolationEnabled : Pos 4, 1 Bit<br>
+0x000 PrcbFlagsReserved : Pos 5, 27 Bits<br>
</font></body></html> |
test/index.html | stoffeastrom/touche | <!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Touché Test Suite</title>
<link rel="stylesheet" href="mocha/mocha.css">
</head>
<body>
<div id="mocha"></div>
<script src="mocha/expect.js"></script>
<script src="mocha/mocha.js"></script>
<script>mocha.setup('bdd')</script>
<script src="../lib/core/augment.js"></script>
<script src="../lib/core/touche.js"></script>
<script src="../lib/core/util.js"></script>
<script src="../lib/core/cache.js"></script>
<script src="../lib/core/flow-handler.js"></script>
<script src="../lib/core/gesture-handler.js"></script>
<script src="../lib/core/super-handler.js"></script>
<script src="../lib/core/gesture.js"></script>
<script src="../lib/core/binder.js"></script>
<script src="../lib/core/point.js"></script>
<script src="../lib/core/rect.js"></script>
<script src="../lib/core/request-animation-frame.js"></script>
<script src="../lib/gestures/tap.js"></script>
<script src="../lib/gestures/doubletap.js"></script>
<script src="../lib/gestures/longtap.js"></script>
<script src="../lib/gestures/swipe.js"></script>
<script src="simulator.js"></script>
<script src="test.helper.js"></script>
<script src="test.utils.js"></script>
<script src="test.point.js"></script>
<script src="test.rect.js"></script>
<script src="test.tap.js"></script>
<script src="test.doubletap.js"></script>
<script src="test.longtap.js"></script>
<script src="test.2fingertap.js"></script>
<script src="test.swipe.js"></script>
<script src="test.combined.js"></script>
<script src="test.user-api.js"></script>
<script>if (!window._phantom) mocha.run();</script>
</body>
</html>
|
examples/list.html | lloiser/jquery-searcher | <!DOCTYPE html>
<html>
<head>
<title>List example</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="../src/jquery.searcher.js"></script>
</head>
<body>
<label>Search for: <input id="listsearchinput" type="text" /></label>
<strong class="list-header">#. Title - Artist (Year)</strong>
<ol id="listdata" class="list-group">
<li>Like a Rolling Stone - Bob Dylan (1965)</li>
<li>(I Can't Get No) Satisfaction - The Rolling Stones (1965)</li>
<li>Imagine - John Lennon (1971)</li>
<li>What's Going On - Marvin Gaye (1971)</li>
<li>Respect - Aretha Franklin (1967)</li>
<li>Good Vibrations - The Beach Boys (1966)</li>
<li>Johnny B. Goode - Chuck Berry (1958)</li>
<li>Hey Jude - The Beatles (1968)</li>
<li>Smells Like Teen Spirit - Nirvana (1991)</li>
<li>What'd I Say - Ray Charles (1959)</li>
<li>My Generation - The Who (1965)</li>
<li>A Change Is Gonna Come - Sam Cooke (1964)</li>
<li>Yesterday - The Beatles (1965)</li>
<li>Blowin' in the Wind - Bob Dylan (1963)</li>
<li>London Calling - The Clash (1980)</li>
<li>I Want to Hold Your Hand - The Beatles (1963)</li>
<li>Purple Haze - Jimi Hendrix (1967)</li>
<li>Maybellene - Chuck Berry (1955)</li>
<li>Hound Dog - Elvis Presley (1956)</li>
<li>Let It Be - The Beatles (1970)</li>
<li>Born to Run - Bruce Springsteen (1975)</li>
<li>Be My Baby - The Ronettes (1963)</li>
<li>In My Life - The Beatles (1965)</li>
<li>People Get Ready - The Impressions (1965)</li>
<li>God Only Knows - The Beach Boys (1966)</li>
<li>A Day in the Life - The Beatles (1967)</li>
<li>Layla - Derek and the Dominos (1970)</li>
<li>(Sittin' on) the Dock of the Bay - Otis Redding (1968)</li>
<li>Help! - The Beatles (1965)</li>
<li>I Walk the Line - Johnny Cash (1956)</li>
<li>Stairway to Heaven - Led Zeppelin (1971)</li>
<li>Sympathy for the Devil - The Rolling Stones (1968)</li>
<li>River Deep, Mountain High - Tina Turner (1966)</li>
<li>You've Lost That Lovin' Feeling - Righteous Brothers (1964)</li>
<li>Light My Fire - The Doors (1967)</li>
<li>One - U2 (1991)</li>
<li>No Woman, No Cry - Bob Marley (1975)</li>
<li>Gimme Shelter - The Rolling Stones (1969)</li>
<li>That'll Be the Day - Buddy Holly (1957)</li>
<li>Dancin' in the Streets - Martha and the Vandellas (1964)</li>
<li>The Weight - The Band (1968)</li>
<li>Waterloo Sunset - The Kinks (1968)</li>
<li>Tutti Frutti - Little Richard (1956)</li>
<li>Georgia on My Mind - Ray Charles (1960)</li>
<li>Heartbreak Hotel - Elvis Presley (1956)</li>
<li>Heroes - David Bowie (1977)</li>
<li>Bridge Over Troubled Water - Simon & Garfunkel (1970)</li>
<li>All Along the Watchtower - Jimi Hendrix (1968)</li>
<li>Hotel California - The Eagles (1976)</li>
<li>The Tracks of My Tears - Smokey Robinson (1965)</li>
<li>The Message - Grandmaster Flash (1982)</li>
<li>When Doves Cry - Prince (1984)</li>
<li>Anarchy in the U.K. - The Sex Pistols (1977)</li>
<li>When a Man Loves a Woman - Percy Sledge (1966)</li>
<li>Louie Louie - The Kingsmen (1963)</li>
<li>Long Tall Sally - Little Richard (1956)</li>
<li>A Whiter Shade of Pale - Procol Harum (1967)</li>
<li>Billie Jean - Michael Jackson (1983)</li>
<li>The Times They Are A-Changin' - Bob Dylan (1964)</li>
<li>Let's Stay Together - Al Green (1971)</li>
<li>Whole Lotta Shakin' Going On - Jerry Lee Lewis (1957)</li>
<li>Bo Diddley - Bo Diddley (1955)</li>
<li>For What It's Worth - Buffalo Springfield (1967)</li>
<li>She Loves You - The Beatles (1963)</li>
<li>Sunshine of Your Love - Cream (1968)</li>
<li>Redemption Song - Bob Marley (1980)</li>
<li>Jailhouse Rock - Elvis Presley (1957)</li>
<li>Tangled Up in Blue - Bob Dylan (1975)</li>
<li>Crying - Roy Orbison (1961)</li>
<li>Walk On By - Dionne Warwick (1964)</li>
<li>California Girls - The Beach Boys (1965)</li>
<li>Papa's Got a Brand New Bag - James Brown (1966)</li>
<li>Summertime Blues - Eddie Cochran (1958)</li>
<li>Superstition - Stevie Wonder (1972)</li>
<li>Whole Lotta Love - Led Zeppelin (1969)</li>
<li>Strawberry Fields Forever - The Beatles (1967)</li>
<li>Mystery Train - Elvis Presley (1955)</li>
<li>I Got You (I Feel Good) - James Brown (1965)</li>
<li>Mr. Tambourine Man - The Byrds (1965)</li>
<li>I Heard It Through the Grapevine - Marvin Gaye (1968)</li>
<li>Blueberry Hill - Fats Domino (1956)</li>
<li>You Really Got Me - The Kinks (1964)</li>
<li>Norwegian Wood (This Bird Has Flown) - The Beatles (1965)</li>
<li>Every Breath You Take - The Police (1983)</li>
<li>Crazy - Patsy Cline (1961)</li>
<li>Thunder Road - Bruce Springsteen (1975)</li>
<li>Ring of Fire - Johnny Cash (1963)</li>
<li>My Girl - The Temptations (1965)</li>
<li>California Dreamin' - The Mamas & The Papas (1965)</li>
<li>In the Still of the Night - The Five Satins (1956)</li>
<li>Suspicious Minds - Elvis Presley (1969)</li>
<li>Blitzkrieg Bop - The Ramones (1976)</li>
<li>I Still Haven't Found What I'm Looking For - U2 (1987)</li>
<li>Good Golly, Miss Molly - Little Richard (1958)</li>
<li>Blue Suede Shoes - Carl Perkins (1956)</li>
<li>Great Balls of Fire - Jerry Lee Lewis (1957)</li>
<li>Roll Over Beethoven - Chuck Berry (1956)</li>
<li>Love and Happiness - Al Green (1972)</li>
<li>Fortunate Son - Creedence Clearwater Revival (1969)</li>
<li>You Can't Always Get What You Want - Rolling Stones (1969)</li>
</ol>
<script>
$("#listdata").searcher({
itemSelector: "li",
textSelector: "",
inputSelector: "#listsearchinput"
});
</script>
</body>
</html> |
src/popup/index.css | cafe4it/Youtube-Multi-Downloader | body{
min-width: 500px;
width: 500px;
}
table.table-youtube{
min-width: 500px;
border-collapse: collapse;
}
table.table-youtube > caption{
text-align: left;
vertical-align: middle;
font-weight: bolder;
}
table.table-youtube > th, td {
border: 1px solid #000088;
}
table.table-streams {
width: 100%;
height: 100%;
}
table.table-streams tr:nth-child(1){
max-height: 25px;
height: 23px;
}
.streams-body{
min-height: 114px;
height: 114px;
} |
darth-vader/08_restful_apis_backbonejs/d02/Joe_Greene/thursmornEx/style.css | ga-chicago/ga-chicago.github.io | .ex{
background: black;
float: left;
width: 200px;
height: 200px
margin: 1%;
box-shadow: 5px 5px 5px 5px #888;
}
/*
media query
set width rem&% will shrink relative*/
|
clean/Linux-x86_64-4.01.0-1.2.0/unstable/8.4.dev/contrib:ergo/dev/index.html | coq-bench/coq-bench.github.io-old | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li class="active"><a href="">8.4.dev / contrib:ergo dev</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../../..">« Up</a>
<h1>contrib:ergo <small>dev</small></h1>
<table class="table table-striped text-center">
<thead>
<tr>
<td>Date</td>
<td>Time</td>
<td>Relative</td>
<td>Status</td>
</tr>
</thead>
<tbody>
<tr>
<td>2015-01-30</td>
<td>03:04:02</td>
<td><script>document.write(moment("2015-01-30 03:04:02 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2015-01-30_03-04-02.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2015-01-07</td>
<td>03:53:32</td>
<td><script>document.write(moment("2015-01-07 03:53:32 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2015-01-07_03-53-32.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-12-12</td>
<td>08:42:09</td>
<td><script>document.write(moment("2014-12-12 08:42:09 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2014-12-12_08-42-09.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-12-04</td>
<td>23:21:02</td>
<td><script>document.write(moment("2014-12-04 23:21:02 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2014-12-04_23-21-02.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-11-29</td>
<td>09:29:33</td>
<td><script>document.write(moment("2014-11-29 09:29:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2014-11-29_09-29-33.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-11-20</td>
<td>13:31:52</td>
<td><script>document.write(moment("2014-11-20 13:31:52 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2014-11-20_13-31-52.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-11-18</td>
<td>23:44:23</td>
<td><script>document.write(moment("2014-11-18 23:44:23 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="danger"><a href="2014-11-18_23-44-23.html">Lint error</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html> |
demo/demo.css | munro/react-blocks | *,
*:before,
*:after {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background: 'whitesmoke';
font-family: "Roboto";
font-weight: 400;
font-size: 14px;
}
#container {
margin: 0 auto;
}
small {
font-size: 20px;
font-weight: 200;
}
@media screen and (min-width: 768px) {
#container {
width: 600px;
}
header small {
font-size: 28px;
}
}
@media screen and (min-width: 1024px) {
#container {
width: 800px;
}
}
a{
color: blue;
}
h4{
margin: 20px 0 0 0;
font-weight: 500;
font-size: 18px;
}
pre > code{
padding: 10px !important;
border-radius: 4px;
font-family: 'Consolas', 'Liberation Mono', 'Menlo', Courier, monospace;
}
.demo {
margin: 20px 0;
padding: 4px;
background: whitesmoke;
}
.demo > div {
margin: 4px;
padding: 12px;
background: white;
}
|
web/css/style.css | SrGio/GestorFCT |
.side-nav{
top: 100px;
}
.navbar-brand > h1{
margin-top: 0;
}
.navbar-fixed-top{
min-height: 100px;
}
ul li{
list-style:none;
color: red;
font-weight:bold;
}
|
docs/html/group___s_p_i___slave___select__management.html | team-diana/nucleo-dynamixel | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>nucleo-dynamixel: SPI Slave Select Management</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">nucleo-dynamixel
 <span id="projectnumber">0.0.1</span>
</div>
<div id="projectbrief">A library for controlling dynamixel servomotors, designed for nucleo stm32</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li class="current"><a href="modules.html"><span>Modules</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('group___s_p_i___slave___select__management.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="summary">
<a href="#define-members">Macros</a> </div>
<div class="headertitle">
<div class="title">SPI Slave Select Management<div class="ingroups"><a class="el" href="group___s_t_m32_f4xx___h_a_l___driver.html">STM32F4xx_HAL_Driver</a> » <a class="el" href="group___s_p_i.html">SPI</a> » <a class="el" href="group___s_p_i___exported___constants.html">SPI Exported Constants</a></div></div> </div>
</div><!--header-->
<div class="contents">
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="define-members"></a>
Macros</h2></td></tr>
<tr class="memitem:ga0bf14691b9d03eb158f190cefa7ab8fc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0bf14691b9d03eb158f190cefa7ab8fc"></a>
#define </td><td class="memItemRight" valign="bottom"><b>SPI_NSS_SOFT</b>   <a class="el" href="group___peripheral___registers___bits___definition.html#ga0e236047e05106cf1ba7929766311382">SPI_CR1_SSM</a></td></tr>
<tr class="separator:ga0bf14691b9d03eb158f190cefa7ab8fc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga62c42a5e28ce3b0dc92c5186c10accf8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga62c42a5e28ce3b0dc92c5186c10accf8"></a>
#define </td><td class="memItemRight" valign="bottom"><b>SPI_NSS_HARD_INPUT</b>   ((uint32_t)0x00000000)</td></tr>
<tr class="separator:ga62c42a5e28ce3b0dc92c5186c10accf8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gab7f2da432661406a37fa2afe4efacd87"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab7f2da432661406a37fa2afe4efacd87"></a>
#define </td><td class="memItemRight" valign="bottom"><b>SPI_NSS_HARD_OUTPUT</b>   ((uint32_t)0x00040000)</td></tr>
<tr class="separator:gab7f2da432661406a37fa2afe4efacd87"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.11 </li>
</ul>
</div>
</body>
</html>
|
application/tests/build/coverage/views_errors.html | kveeen/monitorTA | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Code Coverage for C:\xampp\htdocs\monitor\application/views/errors</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="span12">
<ul class="breadcrumb">
<li><a href="index.html">C:\xampp\htdocs\monitor\application</a> <span class="divider">/</span></li>
<li><a href="views.html">views</a> <span class="divider">/</span></li>
<li class="active">errors</li>
<li>(<a href="views_errors.dashboard.html">Dashboard</a>)</li>
</ul>
</div>
</div>
</div>
</header>
<div class="container">
<table class="table table-bordered">
<thead>
<tr>
<td> </td>
<td colspan="9"><div align="center"><strong>Code Coverage</strong></div></td>
</tr>
<tr>
<td> </td>
<td colspan="3"><div align="center"><strong>Lines</strong></div></td>
<td colspan="3"><div align="center"><strong>Functions and Methods</strong></div></td>
<td colspan="3"><div align="center"><strong>Classes and Traits</strong></div></td>
</tr>
</thead>
<tbody>
<tr>
<td class="danger">Total</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 185</div></td>
<td class="None big"> </td>
<td class="None small"><div align="right"></div></td>
<td class="None small"><div align="right"> </div></td>
<td class="None big"> </td>
<td class="None small"><div align="right"></div></td>
<td class="None small"><div align="right"> </div></td>
</tr>
<tr>
<td class="danger"><i class="icon-folder-open"></i> <a href="views_errors_cli.html">cli</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 17</div></td>
<td class="None big"> </td>
<td class="None small"><div align="right"></div></td>
<td class="None small"><div align="right"> </div></td>
<td class="None big"> </td>
<td class="None small"><div align="right"></div></td>
<td class="None small"><div align="right"> </div></td>
</tr>
<tr>
<td class="danger"><i class="icon-folder-open"></i> <a href="views_errors_html.html">html</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 168</div></td>
<td class="None big"> </td>
<td class="None small"><div align="right"></div></td>
<td class="None small"><div align="right"> </div></td>
<td class="None big"> </td>
<td class="None small"><div align="right"></div></td>
<td class="None small"><div align="right"> </div></td>
</tr>
</tbody>
</table>
<footer>
<h4>Legend</h4>
<p>
<span class="danger"><strong>Low</strong>: 0% to 35%</span>
<span class="warning"><strong>Medium</strong>: 35% to 70%</span>
<span class="success"><strong>High</strong>: 70% to 100%</span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.11</a> using <a href="http://www.php.net/" target="_top">PHP 7.1.9</a> and <a href="http://phpunit.de/">PHPUnit 3.7.21</a> at Mon Oct 16 12:22:29 CEST 2017.</small>
</p>
</footer>
</div>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
</body>
</html>
|
SDKs/VST3 SDK/doc/base/search/typedefs_66.html | rcgilbert/csc344-wi14 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head><title></title>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="search.css"/>
<script type="text/javascript" src="search.js"></script>
</head>
<body class="SRPage">
<div id="SRIndex">
<div class="SRStatus" id="Loading">Loading...</div>
<div class="SRResult" id="SR_fidstring">
<div class="SREntry">
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../namespaceSteinberg.html#ad4c02134d1ee42389f3d94717935a1d5" target="_parent">FIDString</a>
<span class="SRScope">Steinberg</span>
</div>
</div>
<div class="SRStatus" id="Searching">Searching...</div>
<div class="SRStatus" id="NoMatches">No Matches</div>
<script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults");
searchResults.Search();
--></script>
</div>
</body>
</html>
|
docs/html/javadoc/continuum/slice/Filter.html | zackb/continuum | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_73) on Thu Mar 24 14:34:21 PDT 2016 -->
<title>Filter (continuum-core 0.1.2 API)</title>
<meta name="date" content="2016-03-24">
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Filter (continuum-core 0.1.2 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-all.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../continuum/slice/Const.html" title="class in continuum.slice"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../continuum/slice/Filter.Action.html" title="enum in continuum.slice"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?continuum/slice/Filter.html" target="_top">Frames</a></li>
<li><a href="Filter.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li><a href="#nested.class.summary">Nested</a> | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">continuum.slice</div>
<h2 title="Interface Filter" class="title">Interface Filter</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Known Implementing Classes:</dt>
<dd><a href="../../continuum/core/slice/AndFilter.html" title="class in continuum.core.slice">AndFilter</a>, <a href="../../continuum/core/slice/KTimestampFilter.html" title="class in continuum.core.slice">KTimestampFilter</a>, <a href="../../continuum/core/slice/NameFilter.html" title="class in continuum.core.slice">NameFilter</a>, <a href="../../continuum/core/slice/ParticlesFilter.html" title="class in continuum.core.slice">ParticlesFilter</a>, <a href="../../continuum/core/slice/STimestampFilter.html" title="class in continuum.core.slice">STimestampFilter</a></dd>
</dl>
<hr>
<br>
<pre>public interface <span class="typeNameLabel">Filter</span></pre>
<div class="block">Time scan filter engines
Created by zack on 2/12/16.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Interface and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../continuum/slice/Filter.Action.html" title="enum in continuum.slice">Filter.Action</a></span></code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="../../continuum/slice/Filter.Action.html" title="enum in continuum.slice">Filter.Action</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../continuum/slice/Filter.html#filter-continuum.atom.Atom-">filter</a></span>(<a href="../../continuum/atom/Atom.html" title="interface in continuum.atom">Atom</a> atom)</code> </td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="filter-continuum.atom.Atom-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>filter</h4>
<pre><a href="../../continuum/slice/Filter.Action.html" title="enum in continuum.slice">Filter.Action</a> filter(<a href="../../continuum/atom/Atom.html" title="interface in continuum.atom">Atom</a> atom)</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-all.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../continuum/slice/Const.html" title="class in continuum.slice"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../continuum/slice/Filter.Action.html" title="enum in continuum.slice"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?continuum/slice/Filter.html" target="_top">Frames</a></li>
<li><a href="Filter.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li><a href="#nested.class.summary">Nested</a> | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
src/PortalWeb/Portal.Web/Content/jquery.bxslider.css | isboat/ibunionportal | /**
* BxSlider v4.1.2 - Fully loaded, responsive content slider
* http://bxslider.com
*
* Written by: Steven Wanderski, 2014
* http://stevenwanderski.com
* (while drinking Belgian ales and listening to jazz)
*
* CEO and founder of bxCreative, LTD
* http://bxcreative.com
*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
position: relative;
margin: 0 auto 60px;
padding: 0;
*zoom: 1;
}
.bx-wrapper img {
max-width: 100%;
display: block;
}
/** THEME
===================================*/
.bx-wrapper .bx-viewport {
-moz-box-shadow: 0 0 5px #ccc;
-webkit-box-shadow: 0 0 5px #ccc;
box-shadow: 0 0 5px #ccc;
border: 5px solid #fff;
left: -5px;
background: #fff;
/*fix other elements on the page moving (on Chrome)*/
-webkit-transform: translatez(0);
-moz-transform: translatez(0);
-ms-transform: translatez(0);
-o-transform: translatez(0);
transform: translatez(0);
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
position: absolute;
bottom: -30px;
width: 100%;
}
/* LOADER */
.bx-wrapper .bx-loading {
min-height: 50px;
background: url(images/bx_loader.gif) center center no-repeat #fff;
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 2000;
}
/* PAGER */
.bx-wrapper .bx-pager {
text-align: center;
font-size: .85em;
font-family: Arial;
font-weight: bold;
color: #666;
padding-top: 20px;
}
.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
display: inline-block;
*zoom: 1;
*display: inline;
}
.bx-wrapper .bx-pager.bx-default-pager a {
background: #666;
text-indent: -9999px;
display: block;
width: 10px;
height: 10px;
margin: 0 5px;
outline: 0;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
background: #000;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
left: 10px;
background: url(images/controls.png) no-repeat 0 -32px;
}
.bx-wrapper .bx-next {
right: 10px;
background: url(images/controls.png) no-repeat -43px -32px;
}
.bx-wrapper .bx-prev:hover {
background-position: 0 0;
}
.bx-wrapper .bx-next:hover {
background-position: -43px 0;
}
.bx-wrapper .bx-controls-direction a {
position: absolute;
top: 50%;
margin-top: -16px;
outline: 0;
width: 32px;
height: 32px;
text-indent: -9999px;
z-index: 1;
}
.bx-wrapper .bx-controls-direction a.disabled {
display: none;
}
/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
display: block;
text-indent: -9999px;
width: 10px;
height: 11px;
outline: 0;
background: url(images/controls.png) -86px -11px no-repeat;
margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
background-position: -86px 0;
}
.bx-wrapper .bx-controls-auto .bx-stop {
display: block;
text-indent: -9999px;
width: 9px;
height: 11px;
outline: 0;
background: url(images/controls.png) -86px -44px no-repeat;
margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
text-align: left;
width: 80%;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
right: 0;
width: 35px;
}
/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
position: absolute;
bottom: 0;
left: 0;
background: #666\9;
background: rgba(80, 80, 80, 0.75);
width: 100%;
}
.bx-wrapper .bx-caption span {
color: #fff;
font-family: Arial;
display: block;
font-size: .85em;
padding: 10px;
}
|
public/src/css/validation.css | nguyennam9696/EvidationHealth | input.ng-invalid.ng-dirty {
border: solid 1px red;
}
input.ng-valid.ng-dirty {
border: solid 1px green;
} |
clean/Linux-x86_64-4.08.1-2.0.5/released/8.7.0/gappa/1.4.6.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>gappa: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.0 / gappa - 1.4.6</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
gappa
<small>
1.4.6
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-26 20:28:19 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-26 20:28:19 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.7.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.08.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.08.1 Official release 4.08.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "guillaume.melquiond@inria.fr"
homepage: "https://gappa.gitlabpages.inria.fr/"
dev-repo: "git+https://gitlab.inria.fr/gappa/coq.git"
bug-reports: "https://gitlab.inria.fr/gappa/coq/issues"
license: "LGPL-3.0-or-later"
build: [
["autoconf"] {dev}
["./configure"]
["./remake" "-j%{jobs}%"]
]
install: ["./remake" "install"]
depends: [
"ocaml"
"ocamlfind" {build}
"coq" {>= "8.8.1" & < "8.14~"}
"coq-flocq" {>= "3.0" & < "4~"}
"conf-autoconf" {build & dev}
("conf-g++" {build} | "conf-clang" {build})
]
tags: [
"keyword:floating-point arithmetic"
"keyword:interval arithmetic"
"keyword:decision procedure"
"category:Computer Science/Decision Procedures and Certified Algorithms/Decision procedures"
"logpath:Gappa"
"date:2021-01-04"
]
authors: [ "Guillaume Melquiond <guillaume.melquiond@inria.fr>" ]
synopsis: "A Coq tactic for discharging goals about floating-point arithmetic and round-off errors using the Gappa prover"
url {
src: "https://gappa.gitlabpages.inria.fr/releases/gappalib-coq-1.4.6.tar.gz"
checksum: "sha512=bb9c431d320d9c66998ec02ba7d459ee3f00cb7b16f89e57f3d7eb4b89cd3c9254e98e3906a8dfac31f73e5a32918ad12eaeaf7504750d3bfdce878913b745d3"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-gappa.1.4.6 coq.8.7.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.0).
The following dependencies couldn't be met:
- coq-gappa -> coq >= 8.8.1
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-gappa.1.4.6</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
ajax/libs/jsoneditor/2.3.3/jsoneditor-min.css | yogeshsaroya/new-cdnjs | version https://git-lfs.github.com/spec/v1
oid sha256:70788db784012cc3ada03edf72e0c4c1f881fedf2d0f2da8e405151e20a87b26
size 10612
|
web/css/navgoco/jquery.navgoco.css | novesanchez/project-hangout | .nav, .nav ul, .nav li {
list-style: none;
}
.nav ul {
padding: 0;
margin: 0 0 0 18px;
}
.nav {
padding: 4px;
margin: 0px;
}
.nav > li {
margin: 4px 0;
}
.nav > li li {
margin: 2px 0;
}
.nav a {
color: #333;
display: block;
outline: none;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
text-decoration: none;
}
.nav a .caret {
float: right;
width: 0;
height: 0;
display: inline-block;
vertical-align: top;
border-top: 4px solid #000;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
content: "";
margin-top: 8px;
margin-left: 2px;
}
.nav a:hover .caret {
border-top-color: #fff;
}
.nav li.open > a > .caret {
border-top: none;
border-bottom: 4px solid #000;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
}
.nav li.open > a:hover > .caret {
border-bottom-color: #fff;
}
.nav a:hover, .nav li.active > a {
background-color: #5D5D5D;
color: #f5f5f5;
}
.nav > li.active > a {
background-color: #4D90FE;
}
.nav li a {
font-size: 12px;
line-height: 18px;
padding: 2px 10px;
}
.nav > li > a {
font-size: 14px;
line-height: 20px;
padding: 4px 10px;
} |
sample/inertia1.21/theme/inertia.custom.css | hellgorithm/inertia.js | presentation-title{
position:absolute;
bottom:30%;
left:5%;
font-size:60px;
}
author{
position:absolute;
bottom:25%;
left:5%;
font-size:40px;
}
p,h1,h2,h3,h4,h5,h6{
margin:5px 20px;
}
p{
font-size:25px;
}
.center{
text-align:center;
}
.hey{
position:absolute;
bottom:10%;
right:10%;
}
|
application/tests/build/coverage/views_akun_v_login.php.html | satrio6210/KPPL | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Code Coverage for C:\xampp\htdocs\findingkostweb\application/views/akun/v_login.php</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="span12">
<ul class="breadcrumb">
<li><a href="index.html">C:\xampp\htdocs\findingkostweb\application</a> <span class="divider">/</span></li>
<li><a href="views.html">views</a> <span class="divider">/</span></li>
<li><a href="views_akun.html">akun</a> <span class="divider">/</span></li>
<li class="active">v_login.php</li>
</ul>
</div>
</div>
</div>
</header>
<div class="container">
<table class="table table-bordered">
<thead>
<tr>
<td> </td>
<td colspan="10"><div align="center"><strong>Code Coverage</strong></div></td>
</tr>
<tr>
<td> </td>
<td colspan="3"><div align="center"><strong>Classes and Traits</strong></div></td>
<td colspan="4"><div align="center"><strong>Functions and Methods</strong></div></td>
<td colspan="3"><div align="center"><strong>Lines</strong></div></td>
</tr>
</thead>
<tbody>
<tr>
<td class="None">Total</td>
<td class="None big"> </td>
<td class="None small"><div align="right"></div></td>
<td class="None small"><div align="right"> </div></td>
<td class="None big"> </td>
<td class="None small"><div align="right"></div></td>
<td class="None small"><div align="right"> </div></td>
<td class="None small"><acronym title="Change Risk Anti-Patterns (CRAP) Index">CRAP</acronym></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">22 / 22</div></td>
</tr>
</tbody>
</table>
<table class="table table-borderless table-condensed">
<tbody>
<tr><td><div align="right"><a name="1"></a><a href="#1">1</a></div></td><td class="codeLine"><?php</td></tr>
<tr><td><div align="right"><a name="2"></a><a href="#2">2</a></div></td><td class="codeLine">$n = array(</td></tr>
<tr class="success popin" data-title="1 test covers line 3" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="3"></a><a href="#3">3</a></div></td><td class="codeLine"> 'type' => 'text',</td></tr>
<tr class="success popin" data-title="1 test covers line 4" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="4"></a><a href="#4">4</a></div></td><td class="codeLine"> 'name' => 'username',</td></tr>
<tr class="success popin" data-title="1 test covers line 5" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="5"></a><a href="#5">5</a></div></td><td class="codeLine"> 'id' => 'username',</td></tr>
<tr class="success popin" data-title="1 test covers line 6" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="6"></a><a href="#6">6</a></div></td><td class="codeLine"> 'value' => set_value('username'),</td></tr>
<tr><td><div align="right"><a name="7"></a><a href="#7">7</a></div></td><td class="codeLine"> 'class' => 'validate required'</td></tr>
<tr class="success popin" data-title="1 test covers line 8" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="8"></a><a href="#8">8</a></div></td><td class="codeLine">);</td></tr>
<tr><td><div align="right"><a name="9"></a><a href="#9">9</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="10"></a><a href="#10">10</a></div></td><td class="codeLine">$p = array(</td></tr>
<tr class="success popin" data-title="1 test covers line 11" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="11"></a><a href="#11">11</a></div></td><td class="codeLine"> 'type' => 'password',</td></tr>
<tr class="success popin" data-title="1 test covers line 12" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="12"></a><a href="#12">12</a></div></td><td class="codeLine"> 'name' => 'password',</td></tr>
<tr class="success popin" data-title="1 test covers line 13" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="13"></a><a href="#13">13</a></div></td><td class="codeLine"> 'id' => 'password',</td></tr>
<tr><td><div align="right"><a name="14"></a><a href="#14">14</a></div></td><td class="codeLine"> 'class' => 'validate required'</td></tr>
<tr class="success popin" data-title="1 test covers line 15" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="15"></a><a href="#15">15</a></div></td><td class="codeLine">);</td></tr>
<tr><td><div align="right"><a name="16"></a><a href="#16">16</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="17"></a><a href="#17">17</a></div></td><td class="codeLine">$s = array(</td></tr>
<tr class="success popin" data-title="1 test covers line 18" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="18"></a><a href="#18">18</a></div></td><td class="codeLine"> 'type' => 'submit',</td></tr>
<tr class="success popin" data-title="1 test covers line 19" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="19"></a><a href="#19">19</a></div></td><td class="codeLine"> 'name' => 'submit',</td></tr>
<tr class="success popin" data-title="1 test covers line 20" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="20"></a><a href="#20">20</a></div></td><td class="codeLine"> 'id' => 'login',</td></tr>
<tr class="success popin" data-title="1 test covers line 21" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="21"></a><a href="#21">21</a></div></td><td class="codeLine"> 'value' => 'true',</td></tr>
<tr class="success popin" data-title="1 test covers line 22" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="22"></a><a href="#22">22</a></div></td><td class="codeLine"> 'class' => 'btn waves-effect waves-light indigo darken-4',</td></tr>
<tr><td><div align="right"><a name="23"></a><a href="#23">23</a></div></td><td class="codeLine"> 'content'=> 'Login<i class="material-icons right">send</i>'</td></tr>
<tr class="success popin" data-title="1 test covers line 24" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="24"></a><a href="#24">24</a></div></td><td class="codeLine">);</td></tr>
<tr class="success popin" data-title="1 test covers line 25" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="25"></a><a href="#25">25</a></div></td><td class="codeLine">echo form_open('akun/submit_masuk');</td></tr>
<tr><td><div align="right"><a name="26"></a><a href="#26">26</a></div></td><td class="codeLine">?></td></tr>
<tr><td><div align="right"><a name="27"></a><a href="#27">27</a></div></td><td class="codeLine"><div class="row"></td></tr>
<tr><td><div align="right"><a name="28"></a><a href="#28">28</a></div></td><td class="codeLine"> <div class="input-field col s8 offset-s2 indigo-text darken-4"></td></tr>
<tr><td><div align="right"><a name="29"></a><a href="#29">29</a></div></td><td class="codeLine"> <i class="material-icons prefix">perm_identity</i></td></tr>
<tr><td><div align="right"><a name="30"></a><a href="#30">30</a></div></td><td class="codeLine"><?php</td></tr>
<tr class="success popin" data-title="1 test covers line 31" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="31"></a><a href="#31">31</a></div></td><td class="codeLine">echo form_input($n);</td></tr>
<tr class="success popin" data-title="1 test covers line 32" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="32"></a><a href="#32">32</a></div></td><td class="codeLine">echo form_label($n['name'], $n['name']);</td></tr>
<tr><td><div align="right"><a name="33"></a><a href="#33">33</a></div></td><td class="codeLine">?></td></tr>
<tr><td><div align="right"><a name="34"></a><a href="#34">34</a></div></td><td class="codeLine"> </div></td></tr>
<tr><td><div align="right"><a name="35"></a><a href="#35">35</a></div></td><td class="codeLine"> <div class="input-field col s8 offset-s2 indigo-text darken-4"></td></tr>
<tr><td><div align="right"><a name="36"></a><a href="#36">36</a></div></td><td class="codeLine"> <i class="material-icons prefix">vpn_key</i></td></tr>
<tr><td><div align="right"><a name="37"></a><a href="#37">37</a></div></td><td class="codeLine"><?php</td></tr>
<tr class="success popin" data-title="1 test covers line 38" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="38"></a><a href="#38">38</a></div></td><td class="codeLine">echo form_input($p);</td></tr>
<tr class="success popin" data-title="1 test covers line 39" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="39"></a><a href="#39">39</a></div></td><td class="codeLine">echo form_label($p['name'], $p['name']);</td></tr>
<tr><td><div align="right"><a name="40"></a><a href="#40">40</a></div></td><td class="codeLine">?></td></tr>
<tr><td><div align="right"><a name="41"></a><a href="#41">41</a></div></td><td class="codeLine"> </div></td></tr>
<tr><td><div align="right"><a name="42"></a><a href="#42">42</a></div></td><td class="codeLine"></div></td></tr>
<tr><td><div align="right"><a name="43"></a><a href="#43">43</a></div></td><td class="codeLine"><div class="row center-align"></td></tr>
<tr><td><div align="right"><a name="44"></a><a href="#44">44</a></div></td><td class="codeLine"><?php</td></tr>
<tr class="success popin" data-title="1 test covers line 45" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="45"></a><a href="#45">45</a></div></td><td class="codeLine">echo form_button($s);</td></tr>
<tr class="success popin" data-title="1 test covers line 46" data-content="<ul><li class="success">Akun_test::test_masuk</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="46"></a><a href="#46">46</a></div></td><td class="codeLine">echo form_close();</td></tr>
<tr><td><div align="right"><a name="47"></a><a href="#47">47</a></div></td><td class="codeLine">?></td></tr>
</tbody>
</table>
<footer>
<h4>Legend</h4>
<p>
<span class="success"><strong>Executed</strong></span>
<span class="danger"><strong>Not Executed</strong></span>
<span class="warning"><strong>Dead Code</strong></span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.11</a> using <a href="http://www.php.net/" target="_top">PHP 5.6.3</a> and <a href="http://phpunit.de/">PHPUnit 3.7.21</a> at Sat Oct 14 6:11:08 CEST 2017.</small>
</p>
</footer>
</div>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script type="text/javascript">$('.popin').popover({trigger: 'hover'});</script>
</body>
</html>
|
all-data/15000-15999/15554-22.html | BuzzAcademy/idioms-moe-unformatted-data | <table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目 </b></th><td class="std2">掣襟露肘</td></tr>
<tr><th class="std1"><b>注音 </b></th><td class="std2">ㄔㄜ<sup class="subfont">ˋ</sup> ㄐ|ㄣ ㄌㄨ<sup class="subfont">ˋ</sup> ㄓㄡ<sup class="subfont">ˇ</sup></td></tr>
<tr><th class="std1"><b>漢語拼音 </b></th><td class="std2"><font class="english_word">chè jīn lù zhǒu</font></td></tr>
<tr><th class="std1"><b>釋義 </b></th><td class="std2">拉整衣襟,即露出手肘。形容處境的困窘。醒世姻緣傳˙第三十五回:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>宗昭原是寒素之家,中了舉,百務齊作的時候,去了這四十兩銀,弄得手裡掣襟露肘。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>亦作<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>掣襟肘見<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>。</td></tr>
<tr><th class="std1"><b><font class="fltypefont">附錄</font> </b></th><td class="std2">修訂本參考資料</td></tr>
</td></tr></table></div> <!-- flayoutclass_first --><div class="flayoutclass_second"></div> <!-- flayoutclass_second --></div> <!-- flayoutclass --></td></tr></table>
|
app/app.css | Davidw1339/hiccup-frontend | /* app css stylesheet */
body, html{
height: 100%;
}
body {
overflow: hidden;
}
hr {
margin: 5px;
}
.banner {
text-align: center;
margin-top: 125px;
margin-bottom: 30px;
}
form {
text-align: center;
/*padding-left: 250px;
padding-right: 250px;*/
margin-left: auto;
margin-right: auto;
max-width: 500px;
}
#topnav {
margin-bottom: 0px;
}
#feed {
border-left: 2px solid #D3D3D3;
}
.no-pad {
padding: 0px;
}
.tab-content {
height: 100%;
}
.tab-pane {
padding: 12px;
overflow-y: scroll;
height: 75%;
}
.post-list {
padding-left: 0px;
list-style: none;
}
.post {
padding: 10px;
border-radius: 5px;
box-shadow: 1px 1px 2px #888888;
background-color: #f5f5f5;
margin-bottom: 5px;
word-wrap:break-word;
}
.poll {
padding: 10px;
border-radius: 5px;
box-shadow: 1px 1px 2px #888888;
background-color: #f5f5f5;
font-size: 18px;
margin-bottom: 5px;
word-wrap:break-word;
text-align: center;
padding-bottom: 80px;
}
.panel-tab {
border-bottom: 1px solid #dddddd;
}
.like-btn {
padding: 1px 50px 1px 50px;
font-size: 40px;
}
.panel {
margin-top: 15px;
height: 35%;
}
.panel-body {
overflow: auto;
}
/*.panel-header {
position: relative;
}*/
.right-btn {
/*position: absolute;*/
padding: 0px 8px 0px 8px;
float:right;
margin-top: -5px;
display: none;
/*right: 10px;*/
/*top: 5px;*/
}
.bottom {
position: fixed;
bottom: 5px;
}
.btn-stretch {
width: 100%;
}
.large-link {
font-size: 16px;
}
.full-height {
height: 100%;
}
#sponsor-info{
overflow: auto;
}
|
waffles.html | Angelinacraig1234/final_project | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Recipes - Easy Eatz! - Start Bootstrap Theme</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/business-casual.css" rel="stylesheet">
<!-- Fonts -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Josefin+Slab:100,300,400,600,700,100italic,300italic,400italic,600italic,700italic" rel="stylesheet" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="brand">Easy Eatz!</div>
<!-- Navigation -->
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- navbar-brand is hidden on larger screens, but visible when the menu is collapsed -->
<a class="navbar-brand" href="index.html">Easy Eatz!</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">Health Tips</a>
</li>
<li>
<a href="blog.html">Healthify</a>
</li>
<li>
<a href="contact.html">Submit A Recipe</a>
</li>
<li>
<a href="recipes.html">Recipes</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<div class="container">
<div class="row">
<div class="box">
<div class="col-lg-12">
<hr>
<h2 class="intro-text text-center"> Easy Eatz! Recipes
<strong>!</strong>
</h2>
<hr>
</div>
<div class="col-lg-12 text-center">
<img class="img-responsive img-border img-full" src="img/waffles.jpg" alt="">
<h2>Spinach Protein Waffles</h2>
<p>Nutrition Information
Serving size: 1 waffle Calories: 217 Fat: 7 g Saturated fat: 2 g Unsaturated fat: 4 g Trans fat: 0 g Carbohydrates: 22 g Sugar: 4 g Sodium: 121 mg Fiber: 3 g Protein: 18 g Cholesterol: 191 mg
</p>
<br>
<h2><small>|15 minutes| 224 cal| </small>
</h2>
<p> This batter couldn’t be easier to put together. All you gotta do is blend up spinach, oats, Greek yogurt,
and egg and some stevia and you have yourself a real treat. Plus, you can’t really ever complain about a recipe that hides veggies!.. </p>
</h2>
</h2>
<p> Ingredients: </p>
<p>1 large egg</p>
<p>1/3 cup non-fat plain greek yogurt)</p>
<p>1/3 cup oats</p>
<p>1/2 packet stevia</p>
<p>1 handful of spanich</p>
<hr>
<img class="img-responsive img-border img-left" src="img/waffle2.jpg" alt="">
<hr class="visible-xs">
<p><b>Instructions</b>:</p>
Plug in waffle iron and turn on.
Blend all ingredients together.
When waffle iron is ready, pour all batter into the iron and close.
Cook until no longer steaming (5 minutes or so). Waffle will be slightly golden brown. Add fruits ontop to add more flavor if you want.
|
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/b021234ab3df7c01ea4306aa0557d764795dcf037fbee98710fd2b59a20e43d9.html | simonmysun/praxis | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./567896e70f699dfe094084709054d4c1b0730dce79813030eeac341250fcfd15.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> |
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/8fee551e1e3c59b020f86ab7dc2b15275cff02c484ad2323c604da60246c1d86.html | simonmysun/praxis | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./66a638782d9b0be12626e97e840504e657e1fdc71b8417cd214f7fafbf0df0a1.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> |
_scraping/_node/48.html | esclapes/esclapes.github.com | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es" dir="ltr">
<!-- Mirrored from esclap.es/node/48 by HTTrack Website Copier/3.x [XR&CO'2010], Wed, 04 Jun 2014 07:45:07 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Veranos de la Villa: Alternativa oficial. | Eduardo Esclap.es</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link type="text/css" rel="stylesheet" media="all" href="http://esclap.es/sites/esclap.es/files/css/css_267e79d13662e7dee2ccbe79a7f8f1aa.css" />
<style type="text/css">#container{width:960px;}.two-sidebars .content-inner{margin-right:480px;margin-left:0;}.sidebar-first .content-inner{margin-right:300px;margin-left:0;}.sidebar-last .content-inner{margin-right:180px;margin-left:0;}#sidebar-first{width:300px;margin-left:-480px;}#sidebar-last{width:180px;margin-left:-180px;}.sidebar-first #sidebar-first{width:300px;margin-left:-300px;}</style> <script type="text/javascript" src="http://esclap.es/sites/esclap.es/files/js/js_0a7639d91b02dc77717be30994429d96.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, { "basePath": "/", "googleanalytics": { "trackOutgoing": 1, "trackMailto": 1, "trackDownload": 1, "trackDownloadExtensions": "7z|aac|avi|csv|doc|exe|flv|gif|gz|jpe?g|js|mp(3|4|e?g)|mov|pdf|phps|png|ppt|rar|sit|tar|torrent|txt|wma|wmv|xls|xml|zip" } });
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
$(function() {
$("#main-content img").lazyload({
threshhold : 0,
placeholder : "/sites/esclap.es/modules/lazy_image_loader/images/transparent.gif",
event : "scroll",
effect : "fadeIn",
failurelimit : 10
});
});
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var typekitHost = (("https:" == document.location.protocol) ? "https://" : "http://");
document.write(unescape("%3Cscript src='" + typekitHost + "use.typekit.com/yfi3gyd.js' type='text/javascript'%3E%3C/script%3E"));
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
try{Typekit.load();}catch(e){}
//--><!]]>
</script>
</head>
<body class="one-sidebar sidebar-first">
<div id="container">
<div id="skip-nav" class="element-invisible">
<!-- To adjust the display of the skip link see the Advanced theme settings (General settings), and never use display:none! -->
<a href="#main-content">Skip to main content</a>
</div>
<div id="header" class="clearfix">
<div id="branding">
<div class="logo-site-name"><strong>
<span id="site-name"><a href="http://esclap.es/" rel="home">Eduardo Esclap.es</a></span> </strong></div>
<div id="site-slogan">Otro blog, este ya si eso.</div>
</div> <!-- /branding -->
<div id="header-region"><div class="block at-inline-menu clearfix primary-links">
<div class="block-inner">
<ul class="menu">
<li class="leaf"><a href="http://esclap.es/" title="">Blog</a></li>
</ul>
</div>
</div> <!-- /block -->
</div> <!-- /header region -->
</div> <!-- /header -->
<div id="columns"><div class="columns-inner clearfix">
<div id="content-column"><div class="content-inner">
<div id="main-content">
<div id="main-content-header">
<h1 id="page-title">Veranos de la Villa: Alternativa oficial.</h1> </div>
<div id="content"><div class="article">
<p class="submitted">Publicado el <em class="time">Mar, 11/08/2009 - 13:51</em></p>
En Agosto Madrid también chana! Así empieza esta <a href="http://patiomaravillas.net/veranosmaravillas/veranos-de-la-villa-2009.html">alternativa </a>a los <a href="http://patiomaravillas.net/veranosmaravillas/">veranos de la villa</a> llamada Los Veranos Maravillas. Actividades Culturales Gratuitas frente a la oferta de pago de la Comunidad de Madrid<br /><div class="separator" style="clear: both; text-align: center;"><a href="http://esclap.es/sites/esclap.es/files/images/veranos_maravillas_copia1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="198" src="http://esclap.es/sites/esclap.es/files/images/veranos_maravillas_copia1.jpg" width="200" /></a></div><div style="text-align: center;"></div>
<ul class="links inline"><li class="comment_forbidden">Array</li>
</ul>
</div> <!-- /article -->
</div>
</div> <!-- /main-content -->
</div></div> <!-- /content-column -->
<div id="sidebar-first" class="sidebar"><div class="block social-icons clear-block">
<div class="block-inner">
<p><a href="http://esclap.es/rss.xml" title="Suscribete al blog"><img class="rss" src="http://esclap.es/sites/all/icons/rss-128x128.png" /></a><a rel="me" href="http://www.linkedin.com/in/esclapes" title="Mi perfil en LinkedIn"><img src="http://esclap.es/sites/all/icons/linkedin.png" /></a><a href="http://delicious.com/ciberligre" title="Mis favoritos en Del.icio.us" rel="me"><img src="http://esclap.es/sites/all/icons/delicious.png" /></a><a href="http://picasaweb.google.com/ligre307" title="Fotos en Picasa"><img src="http://esclap.es/sites/all/icons/picasa.png" /></a><a rel="me" href="http://www.youtube.com/user/ciberligre" title="Canal en Youtube"><img src="http://esclap.es/sites/all/icons/youtube.png" /></a></p>
</div>
</div> <!-- /block -->
<div class="block twitterbox">
<div class="block-inner">
<h2 class="block-title title"><a href="http://twitter.com/esclapes" title="esclapes en twitter"><img height="23" src="http://esclap.es/sites/esclap.es/files/resize/sites/all/icons/twitter_logo-98x23.png" alt="" /></a></h2>
<div id="twitter_div">
<ul id="twitter_update_list"></ul>
</div>
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script><script text="text/javascript" src="http://twitter.com/statuses/user_timeline/esclapes.json?callback=twitterCallback2&count=1"></script>
</div>
</div> <!-- /block -->
<div class="block at-center-content addfree">
<div class="block-inner">
<p><a href="http://www.adfreeblog.org/" target="_blank"> <img src="http://www.adfreeblog.org/adfreebutton2.jpg" /></a></p>
</div>
</div> <!-- /block -->
</div> <!-- /sidebar-first -->
</div></div> <!-- /columns -->
</div> <!-- /container -->
<script type="text/javascript" src="http://esclap.es/sites/esclap.es/files/js/js_fc71a33cb18511a062ab0a21fc79378b.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
try{var pageTracker = _gat._getTracker("UA-966627-7");pageTracker._trackPageview();} catch(err) {}
//--><!]]>
</script>
</body>
<!-- Mirrored from esclap.es/node/48 by HTTrack Website Copier/3.x [XR&CO'2010], Wed, 04 Jun 2014 07:45:07 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
</html> |
j-forms/source/templates/booking_multistep_with_steps.html | Serious-Rage/SOCIAL-RAGE | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Booking form</title>
<!-- Your META here -->
<meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0" name="viewport">
<!-- Stylesheets -->
<link rel="stylesheet" href="j-folder/css/demo.css">
<link rel="stylesheet" href="j-folder/css/font-awesome.min.css">
<link rel="stylesheet" href="j-folder/css/j-forms.css">
<!-- Scripts -->
<script src="j-folder/js/jquery.1.11.1.min.js"></script>
<script src="j-folder/js/jquery.ui.min.js"></script>
<script src="j-folder/js/jquery.maskedinput.min.js"></script>
<script src="j-folder/js/j-forms-multistep.js"></script>
<!--[if lt IE 10]>
<script src="j-folder/js/jquery.placeholder.min.js"></script>
<![endif]-->
</head>
<body class="bg-pic">
<div class="wrapper wrapper-640">
<form action="" method="" class="j-forms j-multistep" id="j-forms" novalidate>
<div class="header">
<p>Booking</p>
</div>
<!-- end /.header-->
<div class="content">
<!-- start steps -->
<div class="j-row">
<div class="span4 step">
<div class="steps">
<span>Step 1:</span>
<p>Personal info</p>
</div>
</div>
<div class="span4 step">
<div class="steps">
<span>Step 2:</span>
<p>Booking details</p>
</div>
</div>
<div class="span4 step">
<div class="steps">
<span>Step 3:</span>
<p>Comments</p>
</div>
</div>
</div>
<!-- end steps -->
<fieldset>
<div class="divider gap-bottom-25"></div>
<!-- start name -->
<div class="unit">
<label class="label">Your name</label>
<div class="input">
<label class="icon-right" for="name">
<i class="fa fa-user"></i>
</label>
<input type="text" id="name" name="name">
</div>
</div>
<!-- end name -->
<!-- start email phone -->
<div class="j-row">
<div class="span6 unit">
<label class="label">Your email</label>
<div class="input">
<label class="icon-right" for="email">
<i class="fa fa-envelope-o"></i>
</label>
<input type="email" id="email" name="email">
</div>
</div>
<div class="span6 unit">
<label class="label">Phone/Mobile</label>
<div class="input">
<label class="icon-right" for="phone">
<i class="fa fa-phone"></i>
</label>
<input type="text" id="phone" name="phone">
</div>
</div>
</div>
<!-- end email phone -->
</fieldset>
<fieldset>
<div class="divider gap-bottom-25"></div>
<!-- start guests -->
<div class="j-row">
<div class="span6 unit">
<label class="label">Adult guests</label>
<div class="input">
<label class="icon-right" for="adults">
<i class="fa fa-male"></i>
</label>
<input type="text" id="adults" name="adults">
<span class="tooltip tooltip-right-top">Number of adult guests</span>
</div>
</div>
<div class="span6 unit">
<label class="label">Children guests</label>
<div class="input">
<label class="icon-right" for="children">
<i class="fa fa-female"></i>
</label>
<input type="text" id="children" name="children">
<span class="tooltip tooltip-right-top">Number of children</span>
</div>
</div>
</div>
<!-- end guests -->
<!-- start date -->
<div class="j-row">
<div class="span6 unit">
<label class="label">Check-in date</label>
<div class="input">
<label class="icon-right" for="date_from">
<i class="fa fa-calendar"></i>
</label>
<input type="text" id="date_from" name="date_from">
</div>
</div>
<div class="span6 unit">
<label class="label">Check-out date</label>
<div class="input">
<label class="icon-right" for="date_to">
<i class="fa fa-calendar"></i>
</label>
<input type="text" id="date_to" name="date_to">
</div>
</div>
</div>
<!-- end date -->
</fieldset>
<fieldset>
<div class="divider gap-bottom-25"></div>
<!-- start message -->
<div class="unit">
<label class="label">Comments/Message</label>
<div class="input">
<textarea spellcheck="false" name="message"></textarea>
</div>
</div>
<!-- end message -->
</fieldset>
</div>
<!-- end /.content -->
<div class="footer">
<button type="submit" class="primary-btn multi-submit-btn">Booking</button>
<button type="button" class="primary-btn multi-next-btn">Next</button>
<button type="button" class="secondary-btn multi-prev-btn">Back</button>
</div>
<!-- end /.footer -->
</form>
</div>
<script>
$(document).ready(function(){
// Phone masking
$("#phone").mask('(999) 999-9999', {placeholder:'x'});
// Popup time interval
$(function() {
$( "#date_from" ).datepicker({
dateFormat: 'mm/dd/yy',
prevText: '<i class="fa fa-caret-left"></i>',
nextText: '<i class="fa fa-caret-right"></i>',
onClose: function( selectedDate ) {
$( "#date_to" ).datepicker( "option", "minDate", selectedDate );
}
});
$( "#date_to" ).datepicker({
dateFormat: 'mm/dd/yy',
prevText: '<i class="fa fa-caret-left"></i>',
nextText: '<i class="fa fa-caret-right"></i>',
onClose: function( selectedDate ) {
$( "#date_from" ).datepicker( "option", "maxDate", selectedDate );
}
});
});
});
</script>
</body>
</html> |
api/v0.6.6/core/gameobject/GameObject.this.html | Circular-Studios/Dash-Docs |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/><!-- using block title in layout.dt--><!-- using block ddox.defs in ddox.layout.dt--><!-- using block ddox.title in ddox.layout.dt-->
<title>Constructor GameObject.this</title>
<link rel="stylesheet" type="text/css" href="../../styles/ddox.css"/>
<link rel="stylesheet" href="../../prettify/prettify.css" type="text/css"/>
<script type="text/javascript" src="../../scripts/jquery.js">/**/</script>
<script type="text/javascript" src="../../prettify/prettify.js">/**/</script>
<script type="text/javascript" src="../../scripts/ddox.js">/**/</script>
</head>
<body onload="prettyPrint(); setupDdox();">
<nav id="main-nav"><!-- using block navigation in layout.dt-->
<ul class="tree-view">
<li class="collapsed tree-view">
<a href="#" class="package">components</a>
<ul class="tree-view">
<li>
<a href="../../components/animation.html" class=" module">animation</a>
</li>
<li>
<a href="../../components/assets.html" class=" module">assets</a>
</li>
<li>
<a href="../../components/camera.html" class=" module">camera</a>
</li>
<li>
<a href="../../components/icomponent.html" class=" module">icomponent</a>
</li>
<li>
<a href="../../components/lights.html" class=" module">lights</a>
</li>
<li>
<a href="../../components/material.html" class=" module">material</a>
</li>
<li>
<a href="../../components/mesh.html" class=" module">mesh</a>
</li>
<li>
<a href="../../components/userinterface.html" class=" module">userinterface</a>
</li>
</ul>
</li>
<li class=" tree-view">
<a href="#" class="package">core</a>
<ul class="tree-view">
<li>
<a href="../../core/dgame.html" class=" module">dgame</a>
</li>
<li>
<a href="../../core/gameobject.html" class="selected module">gameobject</a>
</li>
<li>
<a href="../../core/prefabs.html" class=" module">prefabs</a>
</li>
<li>
<a href="../../core/properties.html" class=" module">properties</a>
</li>
<li>
<a href="../../core/reflection.html" class=" module">reflection</a>
</li>
<li>
<a href="../../core/scene.html" class=" module">scene</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">graphics</a>
<ul class="tree-view">
<li class="collapsed tree-view">
<a href="#" class="package">adapters</a>
<ul class="tree-view">
<li>
<a href="../../graphics/adapters/adapter.html" class=" module">adapter</a>
</li>
<li>
<a href="../../graphics/adapters/linux.html" class=" module">linux</a>
</li>
<li>
<a href="../../graphics/adapters/mac.html" class=" module">mac</a>
</li>
<li>
<a href="../../graphics/adapters/win32.html" class=" module">win32</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">shaders</a>
<ul class="tree-view">
<li class="collapsed tree-view">
<a href="#" class="package">glsl</a>
<ul class="tree-view">
<li>
<a href="../../graphics/shaders/glsl/ambientlight.html" class=" module">ambientlight</a>
</li>
<li>
<a href="../../graphics/shaders/glsl/animatedgeometry.html" class=" module">animatedgeometry</a>
</li>
<li>
<a href="../../graphics/shaders/glsl/directionallight.html" class=" module">directionallight</a>
</li>
<li>
<a href="../../graphics/shaders/glsl/geometry.html" class=" module">geometry</a>
</li>
<li>
<a href="../../graphics/shaders/glsl/pointlight.html" class=" module">pointlight</a>
</li>
<li>
<a href="../../graphics/shaders/glsl/userinterface.html" class=" module">userinterface</a>
</li>
</ul>
</li>
<li>
<a href="../../graphics/shaders/glsl.html" class=" module">glsl</a>
</li>
<li>
<a href="../../graphics/shaders/shaders.html" class=" module">shaders</a>
</li>
</ul>
</li>
<li>
<a href="../../graphics/adapters.html" class=" module">adapters</a>
</li>
<li>
<a href="../../graphics/graphics.html" class=" module">graphics</a>
</li>
<li>
<a href="../../graphics/shaders.html" class=" module">shaders</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">utility</a>
<ul class="tree-view">
<li>
<a href="../../utility/awesomium.html" class=" module">awesomium</a>
</li>
<li>
<a href="../../utility/concurrency.html" class=" module">concurrency</a>
</li>
<li>
<a href="../../utility/config.html" class=" module">config</a>
</li>
<li>
<a href="../../utility/filepath.html" class=" module">filepath</a>
</li>
<li>
<a href="../../utility/input.html" class=" module">input</a>
</li>
<li>
<a href="../../utility/output.html" class=" module">output</a>
</li>
<li>
<a href="../../utility/string.html" class=" module">string</a>
</li>
<li>
<a href="../../utility/tasks.html" class=" module">tasks</a>
</li>
<li>
<a href="../../utility/time.html" class=" module">time</a>
</li>
</ul>
</li>
<li>
<a href="../../components.html" class=" module">components</a>
</li>
<li>
<a href="../../core.html" class=" module">core</a>
</li>
<li>
<a href="../../graphics.html" class=" module">graphics</a>
</li>
<li>
<a href="../../utility.html" class=" module">utility</a>
</li>
</ul>
<noscript>
<p style="color: red">The search functionality needs JavaScript enabled</p>
</noscript>
<div id="symbolSearchPane" style="display: none">
<p>
<input id="symbolSearch" type="text" placeholder="Search for symbols" onchange="performSymbolSearch(24);" onkeypress="this.onchange();" onpaste="this.onchange();" oninput="this.onchange();"/>
</p>
<ul id="symbolSearchResults" style="display: none"></ul>
<script type="application/javascript" src="../../symbols.js"></script>
<script type="application/javascript">
//<![CDATA[
var symbolSearchRootDir = "../../"; $('#symbolSearchPane').show();
//]]>
</script>
</div>
</nav>
<div id="main-contents">
<h1>Constructor GameObject.this</h1><!-- using block body in layout.dt--><!-- Default block ddox.description in ddox.layout.dt--><!-- Default block ddox.sections in ddox.layout.dt--><!-- using block ddox.members in ddox.layout.dt-->
<p> Creates basic <a href="../../core/gameobject/GameObject.html"><code class="prettyprint lang-d">GameObject</code></a> with <a href="../../core/gameobject/GameObject.transform.html"><code class="prettyprint lang-d">transform</code></a> and connection to <a href="../../core/gameobject/GameObject.transform.html"><code class="prettyprint lang-d">transform</code></a>'s emitter.
</p>
<section>
</section>
<section>
<h2>Prototype</h2>
<pre class="code prettyprint lang-d prototype">
this() shared;</pre>
</section>
<section>
<h2>Authors</h2><!-- using block ddox.authors in ddox.layout.dt-->
</section>
<section>
<h2>Copyright</h2><!-- using block ddox.copyright in ddox.layout.dt-->
</section>
<section>
<h2>License</h2><!-- using block ddox.license in ddox.layout.dt-->
</section>
</div>
</body>
</html> |
tag/eclipse/index.html | vaporize93/blog | <!DOCTYPE html>
<html lang="ko">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width">
<title>Junshoong의 기술블로그 - eclipse tag</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" href="../../theme/css/pygment.css" />
<link rel="stylesheet" href="../../theme/css/style.css" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">
</head>
<body>
<div class="container-fluid">
<div class="row justify-content-start sticky-top header">
<div class="col-1 header-img">
<img class="profile-img" src="../../images/profile.png">
</div>
<div class="col header-title">
<h2 class="sitename"><a href="../.."> Junshoong의 기술블로그 </a></h2>
</div>
</div> <div class="row justify-content-around">
<div class="col-md-8 content">
<div class="posts">
<div class="post">
<h1 class="post-title">
<a href="../../linux/eclipse-freeze-linux/">[Linux] eclipse 실행시 시스템이 멈추는 현상</a>
</h1>
<span class="post-date">2016-03-08, Tue</span>
<p>
<p>eclipse 실행시 OS가 굳어버리는 문제가 있다.</p>
<p>GTK 버전 관련 이슈라고 한다.</p>
<p>실행 파일이 있는 디렉터리를 확인해보면 <code>eclipse.ini</code> 라는 설정 …</p>
</p>
</div>
</div>
</div>
<div class="col-md-3 sidebar">
<div class="list-group category">
<div class="list-group-item list-group-item-primary"> Category </div>
<a class="list-group-item list-group-item-action category-item" href="../../agile/">
Agile
<span class="category-item-count">(2)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../angular/">
Angular
<span class="category-item-count">(1)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../blog/">
Blog
<span class="category-item-count">(3)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../book/">
Book
<span class="category-item-count">(3)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../css/">
CSS
<span class="category-item-count">(1)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../ctf/">
CTF
<span class="category-item-count">(4)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../devops/">
DevOps
<span class="category-item-count">(2)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../django/">
Django
<span class="category-item-count">(6)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../docker/">
Docker
<span class="category-item-count">(2)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../editor/">
Editor
<span class="category-item-count">(3)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../english/">
English
<span class="category-item-count">(2)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../etc/">
ETC
<span class="category-item-count">(11)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../game/">
Game
<span class="category-item-count">(2)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../git/">
Git
<span class="category-item-count">(2)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../life/">
Life
<span class="category-item-count">(22)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../linux/">
Linux
<span class="category-item-count">(19)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../mac/">
Mac
<span class="category-item-count">(1)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../movie/">
Movie
<span class="category-item-count">(1)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../nginx/">
Nginx
<span class="category-item-count">(2)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../pelican/">
Pelican
<span class="category-item-count">(1)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../python/">
Python
<span class="category-item-count">(8)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../regex/">
Regex
<span class="category-item-count">(1)</span>
</a>
<a class="list-group-item list-group-item-action category-item" href="../../shell/">
Shell
<span class="category-item-count">(2)</span>
</a>
</div>
<div class="list-group social">
<div class="list-group-item list-group-item-primary"> Social </div>
<a class="list-group-item list-group-item-action" href="mailto:junshoong@gmail.com"> email </a>
<a class="list-group-item list-group-item-action" href="https://www.facebook.com/vaporize93"> facebook </a>
<a class="list-group-item list-group-item-action" href="https://www.linkedin.com/in/junshoong"> linkedin </a>
<a class="list-group-item list-group-item-action" href="https://www.slideshare.net/junshoong"> slideshare </a>
<a class="list-group-item list-group-item-action" href="https://github.com/junshoong"> github </a>
<a class="list-group-item list-group-item-action" href="https://www.stackoverflow.com/users/4466697/junsu-kim"> stack-overflow </a>
<a class="list-group-item list-group-item-action" href=""> FEED </a>
</div>
</div> </div>
</div>
</body>
</html> |
modulos/Rutinas/Rutinas_Prefinal.html | lindemann18/spingyma | <style type="text/css">
.ListaInstructores {margin-left: 4%; margin-top: 0%; visibility:hidden}
.size {font-size: 15px;}
.jumbotron{border-radius: 18px;}
.infocont{color:#fff; background-color: #D14841; margin: 1%; margin-bottom: 2%; border-radius: 13px;}
.infodesc{color:#fff; background-color: #D14841; margin-left: 20%; margin-bottom: 2%; border-radius: 13px;}
.user{}
.first{margin-left: 13%;}
.DescIco{margin-left: 47%;}
</style>
<!-- Right side column. Contains the navbar and content of the page -->
<aside class="right-side">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Rutinas
<small>Finalizar Rutina</small>
</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Inicio</a></li>
<li class="">Rutinas</li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<!-- HEADER DEL CONTENIDO-->
<h4 class="page-header">
Listado de Clientes
<small>
En este apartado encontrará toda la información de la rutina registrada para los Clientes de <span class="text-red">spin gym</span>,
podrá dar de alta los números de repeticiones y de circuitos para cada ejercicio de toda la rutina.
</small>
</h4>
<!-- HEADER DEL CONTENIDO-->
<div class="alert alert-success alert-dismissible" role="alert" style="display:none;" id="UsuarioEliminadoNotificacion">
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<strong>Bien Hecho!</strong> Cliente Eliminado.</div>
<div class="row">
<div class="col-xs-12">
<div class="box">
<div class="box-header">
<div class="col-sm-12">
<h4>Para relizar algún cambio de click sobre los campos vacíos (o con números si ya contiene) de <strong>Repeticiones</strong>
y <strong>Circuitos</strong>, anote los números y presionte <strong>Enter</strong>.
</h4>
</div>
</div><!-- /.box-header -->
<div class="box-body table-responsive" id="TablaDatos">
<div class="col-md-11">
<legend class="text-center">Información</legend>
<div class="row">
<div class="col-lg-3 infocont first col-xs-12">
<h4 class="text-center">Rutina</h4>
<i class="fa fa-star fa-3x col-md-offset-5"></i>
<p class="text-center">{{ejercicios[0].nb_rutina}}</p>
</div>
<div class="col-lg-3 infocont User col-xs-12">
<h4 class="text-center">Entrenador</h4>
<i class="fa fa-user fa-3x col-md-offset-5"></i>
<p class="text-center">{{ejercicios[0].nb_nombre+" "+ejercicios[0].nb_apellidos}}</p>
</div>
<div class="col-lg-3 infocont col-xs-12">
<h4 class="text-center">Categoria</h4>
<i class="fa fa-book fa-3x col-md-offset-5"></i>
<p class="text-center">{{ejercicios[0].nb_categoriarutina}}</p>
</div>
<div class="col-lg-8 infodesc col-xs-12">
<h4 class="text-center">Descripción</h4>
<i class="fa fa-commenting-o fa-3x DescIco" align="center"></i>
<p class="text-center">{{ejercicios[0].desc_rutina}}</p>
</div>
</div>
</div>
<table id="listados" class="table table-bordered table-striped col-xs-11 col-sm-11 size" >
<thead>
<tr>
<th class="text-center"> CODIGO </th>
<th class="text-center">EJERCICIO</th>
<th class="text-center">REPETICIONES</th>
<th class="text-center">SERIES</th>
<th class="text-center">DIA</th>
<th class="text-center">TIPO RUTINA</th>
<th class="text-center">MUSCULO</th>
</tr>
</thead>
<tbody id="tablecontent">
</tbody>
<tfoot>
<tr>
<th class="text-center"> CODIGO </th>
<th class="text-center">EJERCICIO</th>
<th class="text-center">REPETICIONES</th>
<th class="text-center">SERIES</th>
<th class="text-center">DIA</th>
<th class="text-center">TIPO RUTINA</th>
<th class="text-center">MUSCULO</th>
</tr>
</tfoot>
</table>
<div class="row">
<div class="col-sm-12">
<h3 class="box-title">Acciones</h3>
</div>
<div class="col-sm-1">
<button class="btn btn-success btn-sm" id="agregar" ng-click="FinalizarRutina()"><i class="fa fa-plus"></i> Finalizar Rutina</button>
</div>
</div>
</div>
</div>
</div>
</section>
</aside>
</div>
|
css/tour-themes/default.css | drazion/Crimson-Tour | .hidden { display: none; visibility: hidden; }
.crimson-dialog { padding:0px; border: 2px solid black; background-color: white; width: 200px; height: auto; box-shadow: 3px 3px 5px 6px #ccc; border-radius: 1em; }
.crimson-dialog .crimson-title { position: absolute; top: 0px; border-bottom: 1px solid black; text-align: center; background-color: #A71B2A; width: 100%; border-radius: .7em .7em 0 0; font-size: 1.1em; font-weight: bold; color: white; }
.crimson-dialog .crimson-content { border-bottom: 1px solid black; margin-left: 10px; margin-top: 25px; width: 180px; min-height: 50px; height: auto;}
.crimson-dialog .crimson-nav { position: relative; top: -6px; font-weight: bold; cursor: pointer; margin-left: 10px; font-size: .8em; }
.crimson-dialog .crimson-nav div { margin-top: 6px; float: left; width: 33%; }
/* RED POINTERS */
.crimson-dialog .red-north-pointer { position: absolute; top:-16px; left: 45%; background: url('images/tour_pointers.png') no-repeat -2px -1px; width: 26px; height: 16px;}
.crimson-dialog .red-east-pointer { position: absolute; top: 10px; right: -27px; background: url('images/tour_pointers.png') no-repeat -2px -18px; width: 26px; height: 26px;}
.crimson-dialog .red-south-pointer { position: absolute; bottom: -17px; left: 10px; background: url('images/tour_pointers.png') no-repeat -2px -45px; width: 26px; height: 16px;}
.crimson-dialog .red-west-pointer { position: absolute; left: -26px; top: 10px; background: url('images/tour_pointers.png') no-repeat -12px -62px; width: 26px; height: 26px;}
/* WHITE POINTERS */
.crimson-dialog .white-north-pointer { position: absolute; top:-16px; left: 45%; background: url('images/tour_pointers.png') no-repeat -29px -1px; width: 26px; height: 16px;}
.crimson-dialog .white-east-pointer { position: absolute; top: 10px; right: -27px; background: url('images/tour_pointers.png') no-repeat -29px -18px; width: 26px; height: 26px;}
.crimson-dialog .white-south-pointer { position: absolute; bottom: -17px; left: 10px; background: url('images/tour_pointers.png') no-repeat -29px -45px; width: 26px; height: 16px;}
.crimson-dialog .white-west-pointer { position: absolute; left: -26px; top: 10px; background: url('images/tour_pointers.png') no-repeat -39px -62px; width: 26px; height: 26px;}
/* BLACK POINTERS */
.crimson-dialog .black-north-pointer { position: absolute; top:-16px; left: 45%; background: url('images/tour_pointers.png') no-repeat -56px -1px; width: 26px; height: 16px;}
.crimson-dialog .black-east-pointer { position: absolute; top: 10px; right: -27px; background: url('images/tour_pointers.png') no-repeat -56px -18px; width: 26px; height: 26px;}
.crimson-dialog .black-south-pointer { position: absolute; bottom: -17px; left: 10px; background: url('images/tour_pointers.png') no-repeat -56px -45px; width: 26px; height: 16px;}
.crimson-dialog .black-west-pointer { position: absolute; left: -26px; top: 10px; background: url('images/tour_pointers.png') no-repeat -56px -62px; width: 26px; height: 26px;}
/* BLUE POINTERS */
.crimson-dialog .blue-north-pointer { position: absolute; top:-16px; left: 45%; background: url('images/tour_pointers.png') no-repeat -83px -1px; width: 26px; height: 16px;}
.crimson-dialog .blue-east-pointer { position: absolute; top: 10px; right: -27px; background: url('images/tour_pointers.png') no-repeat -83px -18px; width: 26px; height: 26px;}
.crimson-dialog .blue-south-pointer { position: absolute; bottom: -17px; left: 10px; background: url('images/tour_pointers.png') no-repeat -83px -45px; width: 26px; height: 16px;}
.crimson-dialog .blue-west-pointer { position: absolute; left: -26px; top: 10px; background: url('images/tour_pointers.png') no-repeat -83px -62px; width: 26px; height: 26px;}
/* GREEN POINTERS */
.crimson-dialog .green-north-pointer { position: absolute; top:-16px; left: 45%; background: url('images/tour_pointers.png') no-repeat -110px -1px; width: 26px; height: 16px;}
.crimson-dialog .green-east-pointer { position: absolute; top: 10px; right: -27px; background: url('images/tour_pointers.png') no-repeat -110px -18px; width: 26px; height: 26px;}
.crimson-dialog .green-south-pointer { position: absolute; bottom: -17px; left: 10px; background: url('images/tour_pointers.png') no-repeat -110px -45px; width: 26px; height: 16px;}
.crimson-dialog .green-west-pointer { position: absolute; left: -26px; top: 10px; background: url('images/tour_pointers.png') no-repeat -110px -62px; width: 26px; height: 26px;}
|
_site/deutsch/helper/index.html | makepanic/jekyll-i18n-boilerplate | <!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Helper - Jekyll Boilerplate - Einfach statisch, mulitlinguale Seiten</title>
<meta name="description" content="Lorem ipsum">
<meta name="keywords" content="jekyll, boilerplate, html5, static">
<meta name="robots" content="index, follow" />
<meta name="language" content="de">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="/css/normalize.css">
<link rel="stylesheet" href="/css/foundation.css">
<link rel="stylesheet" href="/css/main.css">
<script src="/js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<!-- Add your site or application content here -->
<nav class="top-bar">
<ul class="title-area">
<!-- Title Area -->
<li class="name">
<h1><a href="/">Jekyll Boilerplate</a></h1>
</li>
<!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone -->
<li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
</ul>
<ul class="right">
<li class="divider hide-for-small">
<dl class="sub-nav">
<dt>Sprache:</dt>
<dd class="active">
<a href="/deutsch/helper/">Deutsch</a>
</dd>
<dd >
<a href="/english/helper/">English</a>
</dd>
</dl>
</li>
</ul>
</nav>
<div class="row"></div>
<div class="row">
<div class="columns large-2">
<ul class="side-nav">
<li><h3>Navigation</h3></li>
<li class="divider"></li>
<li ><a href="/deutsch/debug/">Debug</a></li>
<li class="active"><a href="/deutsch/helper/">Helper</a></li>
</ul>
</div>
<div class="columns large-10">
<h2>Helper</h2>
<ul class="side-nav">
<li><a href="/deutsch/helper/lang-chooser/">Sprach-Wähler</a></li>
<li><a href="/deutsch/helper/navigation/">Navigation</a></li>
<li><a href="/deutsch/helper/url-builder/">Link-Builder</a></li>
</ul>
</div>
</div>
</body>
</html>
|
src/popup.html | mmai/giaffer | <!doctype html>
<html ng-csp ng-app="ngGiaffer.popup" ng-controller="PopupCtrl">
<head>
<link ng-href="vendor/bootstrap/dist/css/bootstrap-{{csstheme}}.css" rel="stylesheet" />
<script src="vendor/angular/angular.js"></script>
<script src="vendor/angular-florm/lib/angular-florm.js"></script>
<script src="vendor/jquery/dist/jquery.js"></script>
<script src="vendor/lodash/dist/lodash.js"></script>
<script src="vendor/bootstrap/dist/js/bootstrap.js"></script>
<script src="vendor/angular-bootstrap/ui-bootstrap-tpls.js"></script>
<script src="chrome/conf.js"></script>
<script src="lib/Giaffer.js"></script>
<script src="common/services/interestService.js"></script>
<script src="common/services/settingsService.js"></script>
<script src="chrome/popup/popup.js"></script>
<style>
body {
width: 500px;
height: 300px;
}
.ng-hide {
display:none;
}
section {
margin: 30px 30px 10px 30px;
text-align: center;
}
.results {
margin: 25px 10px 25px;
font-size: 1.2em;
}
.interest {
font-size: 115%;
font-weight:bold;
font-style:italic;
}
header {
padding: 1px 40px 1px 1px;
text-align: center;
}
.logo {
/* float: left;
margin: 15px 15px 0 30px;
*/
}
footer {
padding: 10px;
}
</style>
</head>
<body>
<header class="navbar-default">
<h2>
<img class="logo" src="images/icon-38.png">
Giaffer
</h2>
<div style="clear:both;"></div>
</header>
<section>
<div ng-show="firstVisit" class="alert alert-warning">
You have not configured your own interests yet.<br><a href="options.html#/interests/" target="_blank">Click here to manage them</a>
</div>
<p class="results">What about searching for <br>
<span ng-repeat="theme in search.themes"> <span ng-show='!$last && !$first'>,</span><span ng-show='$last'> and</span> <span class="interest">{{theme.name}}</span> </span> ?
</p>
<p>
<a class="btn btn-default btn-md" ng-click='newterms()'>
<span class="glyphicon glyphicon-refresh"></span> Pick others
</a>
<a id='search' class="btn btn-primary btn-md" role="button" href="{{search.url}}" target="_blank">
<span class="glyphicon glyphicon-search"></span> Let's search that !
</a>
</p>
</section>
<footer>
<div align="right" ng-show="!firstVisit">
<a href="options.html#/interests/" target="_blank">Manage interests</a>
</div>
</footer>
</body>
</html>
|
GoPass/download.html | Ephellon/ephellon.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<base href="https://www.appsgeyser.com/">
<meta name="description" content="" />
<meta name="keywords" content="" />
<link rel="stylesheet" type="text/css" href="https://app.appsgeyser.com/assets/deaec8c1/css/apps-style.css" media="all" />
<title>GoPass Android App - Download GoPass</title>
<meta name="keywords" content="App Builder,free app creator for android, android,
app, mobile, create app, free and easy, create app free no coding, create free android app,
Free App Builder, application creator, gopass">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- <link rel="image_src" href="-->
<!--" />-->
<meta property="og:title" content="Android App: GoPass" />
<meta property="og:site_name" content="AppsGeyser" />
<meta property="og:type" content="website">
<meta property="og:image" content="https://app.appsgeyser.com/public/247/2476601/4365912/thumbs/icon_GoPass_4365912_72.png" />
<!-- <meta property="og:image" content="https://chart.apis.google.com/chart?cht=qr&chs=300x300&chld=L|0&chl=-->
<!--"/>-->
<meta property="og:description" content="Make an App for Android for FREE. AppsGeyser is a free app maker. Build an app in seconds, promote existent business and earn a passive income." />
<meta property="og:url" content="https://app.appsgeyser.com/getwidget/GoPass_4365912" />
<meta name="geo.region" content="US-VA" />
<meta name="geo.placename" content="Alexandria" />
<meta name="geo.position" content="38.799972;-77.05069" />
<meta name="ICBM" content="38.799972, -77.05069" />
<meta name="description" content="Make an App for Android for FREE. AppsGeyser is a free app maker. Build an app in seconds, promote existent business and earn a passive income." />
<meta name="title" content="Android App: GoPass" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<meta name="robots" content="nofollow">
<link rel="canonical" href="https://app.appsgeyser.com/getwidget/GoPass_4365912" />
<link rel="stylesheet" type="text/css" href="https://yui.yahooapis.com/3.2.0/build/cssreset/reset-min.css" />
<link rel="stylesheet" type="text/css" href="https://app.appsgeyser.com/css/getwidget.css?c=0" />
<link rel="shortcut icon" href="https://app.appsgeyser.com/img/favicon.ico" type="image/x-icon" />
<script src="https://app.appsgeyser.com/js/jquery-2.0.3.min.js" type="text/javascript"></script>
<script src="https://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-179316-6']);
_gaq.push(['_setDomainName', 'appsgeyser.com']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
</script>
<style type="text/css">
div.seo-keywords {
position: absolute;
top: -2000px;
}
</style>
<script type="text/javascript" src="https://app.appsgeyser.com/js/fix-for-iframe-location-changing.js"></script>
</head>
<body style="margin: 0;">
<!-- Google Tag Manager -->
<noscript>
<iframe src="//www.googletagmanager.com/ns.html?id=GTM-NFSPN8" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<script>
(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src = '//www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-NFSPN8');
</script>
<!-- End Google Tag Manager -->
<div id="fb-root"></div>
<script>
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div class="seo-keywords"> <a href="https://app.appsgeyser.com/gamemaker/" title="App Builder">App Builder</a> FREE & Easy!App Builder No Coding! <img src="https://chart.apis.google.com/chart?cht=qr&chs=300x300&chld=L|0&chl=http%3A%2F%2Ffiles.appsgeyser.com%2FGoPass_4365912.apk"
alt="App Builder - How to make an app." title="App Builder"> FREE & Easy!App Builder No Coding! </div>
<div class="body">
<link rel="stylesheet" type="text/css" href="https://app.appsgeyser.com/css/slick.css" />
<script type="text/javascript" src="https://app.appsgeyser.com/js/slick.min.js"></script>
<script type="text/javascript" src="https://app.appsgeyser.com/js/magnific_popup.js"></script>
<script type="text/javascript" src="https://app.appsgeyser.com/js/getwidget.js"></script>
<script type="text/javascript" src="https://app.appsgeyser.com/js/jquery.js"></script>
<script type="text/javascript" src="https://app.appsgeyser.com/js/fancy.js"></script>
<link rel="stylesheet" type="text/css" href="https://app.appsgeyser.com/css/magnific_popup.css" />
<link rel="stylesheet" type="text/css" href="https://app.appsgeyser.com/css/getwidget_landing.css?c=0" />
<script type="text/javascript" src="https://app.appsgeyser.com/js/fancy.js"></script>
<script>
var jq142 = jQuery.noConflict();
</script>
<div class="landingPage" style="">
<section class="section section-main">
<div class="backgroundImage"></div>
<div class="phoneAndText">
<div class="titleBlock sectionBlock" style="">
<div class="appName"> GoPass </div>
<div class="shortDescription">
Introducing GoPass, the all-in-one transit tool that is like having a travel-sized tour guide at your side.
GoPass is the easy way to buy transit passes for DART, The T, the TRE and DCTA -- right on your phone!</br>
You can also plan trips, get next bus or train times and find out what’s happening in DFW.</br>
GoPass is your complete travel tool. The app is so easy to setup and use -- you’ll never buy a paper ticket again.
</div>
<div class="downloadBlockLanding">
<div class="scan-qr-code-block">
<div class="qrcode-top"> </div>
<div class="qrcode-middle"> <img src="https://chart.apis.google.com/chart?cht=qr&chs=140x140&chld=L|0&chl=
http%3A%2F%2Ffiles.appsgeyser.com%2FGoPass_4365912.apk" title="Download GoPass for Android" alt=" - " />
<div style="color: #666;"> Scan
<br/> QR code </div>
</div>
<div class="qrcode-bottom"> </div>
</div>
<div class="buttonsBlock">
<a id="downloadAPK" style="width: 252px;" href="https://app.appsgeyser.com/widgetdownload.php?widget=GoPass_4365912" class="download-button button growSmall" title="Download GoPass for Android">
<!-- <img src="https://www.appsgeyser.com/img/ic_file_download_white_24dp_2x.png" /> -->download </a>
</div>
</div>
<div class="social-links">
<a class="twitterIcon grow" href="https://twitter.com/intent/tweet?status=Download GoPass for Android!+https://appsgeyser.com/4365912"> <img src="https://appsgeyser.com/img/social_icons/twitter.png"> </a>
<a class="facebookIcon grow" href="https://www.facebook.com/sharer/sharer.php?u=https://appsgeyser.com/4365912&title=DownloadGoPass for Android!"> <img src="https://appsgeyser.com/img/social_icons/facebook.png"> </a>
<a class="plusIcon grow" href="https://plus.google.com/share?url=https://appsgeyser.com/4365912"> <img src="https://appsgeyser.com/img/social_icons/google.png"> </a>
</div>
<!--
<div class="createSameBlock">
<div class="createSameBlockText"> This App was created with AppsGeyser.
<br> Create an App like this one today! </div> <a href="https://www.appsgeyser.com/create/start/" class="create-button-top button grow" title="App Maker - How to make an app." alt="App Builder - How to create an app.">
create now
</a> </div>
-->
</div>
</div>
</section>
</div>
</div>
<!--
<div class="footer dashboardfooter">
<div class="footer-centered">
<div class="left_footer_block"> <span class="appgeysercopyright">Copyright <a rel="nofollow" href="https://www.besttoolbars.net/">Besttoolbars</a>, 2017</span> </div>
<div class="right_footer_block">
<ul class="dashboardinfolinks infolinks">
<li><a href="https://app.appsgeyser.com/" class="">App Maker</a></li>
<li><a href="https://app.appsgeyser.com/create/start" class="">Business App Maker</a></li>
<li><a href="https://app.appsgeyser.com/gamemaker" class="">App Game Maker</a></li>
<li><a rel="nofollow" href="https://app.appsgeyser.com/privacy" class="">Privacy Policy</a></li>
<li><a rel="nofollow" href="https://app.appsgeyser.com/legal" class="">Legal Info</a></li>
<li class="lastli"><a rel="nofollow" href="https://app.appsgeyser.com/dmca" class="">DMCA</a></li>
</ul>
</div>
</div>
</div>
-->
<!-- Google Code for Visited Appsgeyser Remarketing List -->
<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = 1070959368;
var google_conversion_language = "en";
var google_conversion_format = "3";
var google_conversion_color = "666666";
var google_conversion_label = "jqjDCJK4iAIQiJbW_gM";
var google_conversion_value = 0;
/* ]]> */
</script>
<script type="text/javascript" src="https://www.googleadservices.com/pagead/conversion.js">
</script>
<noscript>
<div style="display:inline;"> <img height="1" width="1" style="border-style:none;" alt="" src="https://www.googleadservices.com/pagead/conversion/1070959368/?label=jqjDCJK4iAIQiJbW_gM&guid=ON&script=0" /> </div>
</noscript>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
(function(d, w, c) {
(w[c] = w[c] || []).push(function() {
try {
w.yaCounter22613605 = new Ya.Metrika({
id: 22613605,
webvisor: true,
clickmap: true,
trackLinks: true,
accurateTrackBounce: true
});
} catch (e) {}
});
var n = d.getElementsByTagName("script")[0],
s = d.createElement("script"),
f = function() {
n.parentNode.insertBefore(s, n);
};
s.type = "text/javascript";
s.async = true;
s.src = (d.location.protocol == "https:" ? "https:" : "https:") + "//mc.yandex.ru/metrika/watch.js";
if (w.opera == "[object Opera]") {
d.addEventListener("DOMContentLoaded", f, false);
} else {
f();
}
})(document, window, "yandex_metrika_callbacks");
</script>
<noscript>
<div><img src="//mc.yandex.ru/watch/22613605" style="position:absolute; left:-9999px;" alt="" /></div>
</noscript>
<!-- /Yandex.Metrika counter -->
</body>
</html>
|
_includes/themes/bootstrap/footer.html | lantoniotrento/lantoniotrento.github.io | <!-- footer -->
<footer>
<div class="top-bar" style = "background: -webkit-linear-gradient( rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url({{ BASE_PATH }}/assets/images/pattern_background4.jpg); background: linear-gradient( rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url({{ BASE_PATH }}/assets/images/pattern_background4.jpg); color: #333; padding: 150px 0 150px; background-repeat: repeat; background-position: center center; background-attachment: fixed; text-align: center;">
<h1><b>Hai un progetto in mente?</b></h1>
<p><i>"Sono sempre aperto ed interessato a nuove collaborazioni! Perchè non mi parli del tuo progetto?"</i></p>
<br /><p><a target="_blank" href="https://antoniotrento.net/it/contatti"><b>Contattami</b></a></p>
<div class="wave-container hidden-sm-down">
<div class="wave wave--grey"></div>
<div class="wave wave--white"></div>
</div>
</div>
</div>
</footer>
<!-- end footer -->
|
index.html | paulbremer/floatlist | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>FloatList</title>
<base href="/">
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
|
public/422.html | yhordi/nfg_rails | <!DOCTYPE html>
<html>
<head>
<title>The change you wanted was rejected (422)</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" href="errors.css">
</head>
<body class="rejected">
<!-- This file lives in public/422.html -->
<div class="dialog backdrop">
<div>
<h1 class="mainMessage">The change you wanted was rejected.</h1>
<p>Maybe you tried to change something you didn't have access to.</p>
</div>
<p>This means you'll most likely have to get ahold of Jordan.</p>
</div>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.