path
stringlengths 5
312
| repo_name
stringlengths 5
116
| content
stringlengths 2
1.04M
|
---|---|---|
doc/common/styles/html/coqremote/footer.html | mlasson/coq | <div id="sidebarWrapper">
<div id="sidebar">
<div class="block">
<h2 class="title">Navigation</h2>
<div class="content">
<ul class="menu">
<li class="leaf">Standard Library
<ul class="menu">
<li><a href="index.html">Table of contents</a></li>
<li><a href="genindex.html">Index</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div id="nav-footer">
<ul class="links-menu-footer">
<li><a href="mailto:coq-www_@_inria.fr">webmaster</a></li>
<li><a href="http://validator.w3.org/">xhtml valid</a></li>
<li><a href="http://jigsaw.w3.org/css-validator/">CSS valid</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>
|
tests/wpt/web-platform-tests/css/vendor-imports/mozilla/mozilla-central-reftests/align3/flex-abspos-staticpos-align-content-vertWM-001-ref.html | shinglyu/servo | <!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
<title>CSS Reference</title>
<link rel="author" title="Daniel Holbert" href="mailto:[email protected]">
<meta charset="utf-8">
<style>
.container {
display: block;
padding: 1px 2px;
border: 1px solid black;
background: yellow;
margin-bottom: 5px;
margin-right: 5px;
float: left; /* For testing in "rows" of containers */
}
br { clear: both }
.big > .container {
height: 10px;
width: 16px;
}
.small > .container {
height: 2px;
width: 4px;
}
.container > * {
background: teal;
height: 6px;
width: 8px;
}
.big .alignStart { margin-left: 8px }
.big .alignCenter { margin-left: 4px }
.big .alignEnd { /* nothing special */ }
.small .alignStart { margin-left: -4px }
.small .alignCenter { margin-left: -2px }
.small .alignEnd { /* nothing special */ }
</style>
</head>
<body>
<div class="big">
<!-- The various align-content values, from
https://www.w3.org/TR/css-align-3/#propdef-align-content -->
<!-- normal -->
<div class="container"><div class="alignCenter"><!--normal--></div></div>
<br>
<!-- <baseline-position> -->
<div class="container"><div class="alignStart"><!--baseline--></div></div>
<div class="container"><div class="alignEnd"><!--last baseline--></div></div>
<br>
<!-- <content-distribution> -->
<div class="container"><div class="alignStart"><!--space-between--></div></div>
<div class="container"><div class="alignCenter"><!--space-around--></div></div>
<div class="container"><div class="alignCenter"><!--space-evenly--></div></div>
<div class="container"><div class="alignCenter"><!--stretch (+ align-self:center)--></div></div>
<br>
<!-- <content-position>, part 1: -->
<div class="container"><div class="alignCenter"><!--center--></div></div>
<div class="container"><div class="alignStart"><!--start--></div></div>
<div class="container"><div class="alignEnd"><!--end--></div></div>
<br>
<!-- <content-position>, part 2: -->
<div class="container"><div class="alignStart"><!--flex-start--></div></div>
<div class="container"><div class="alignEnd"><!--flex-end--></div></div>
<div class="container"><div class="alignStart"><!--left--></div></div>
<div class="container"><div class="alignStart"><!--right--></div></div>
<br>
</div>
<div class="small">
<!-- The various align-content values, from
https://www.w3.org/TR/css-align-3/#propdef-align-content -->
<!-- normal -->
<div class="container"><div class="alignCenter"><!--normal--></div></div>
<br>
<!-- <baseline-position> -->
<div class="container"><div class="alignStart"><!--baseline--></div></div>
<div class="container"><div class="alignEnd"><!--last baseline--></div></div>
<br>
<!-- <content-distribution> -->
<div class="container"><div class="alignStart"><!--space-between--></div></div>
<div class="container"><div class="alignCenter"><!--space-around--></div></div>
<div class="container"><div class="alignCenter"><!--space-evenly--></div></div>
<div class="container"><div class="alignCenter"><!--stretch (+ align-self:center)--></div></div>
<br>
<!-- <content-position>, part 1: -->
<div class="container"><div class="alignCenter"><!--center--></div></div>
<div class="container"><div class="alignStart"><!--start--></div></div>
<div class="container"><div class="alignEnd"><!--end--></div></div>
<br>
<!-- <content-position>, part 2: -->
<div class="container"><div class="alignStart"><!--flex-start--></div></div>
<div class="container"><div class="alignEnd"><!--flex-end--></div></div>
<div class="container"><div class="alignStart"><!--left--></div></div>
<div class="container"><div class="alignStart"><!--right--></div></div>
<br>
</div>
</body>
</html>
|
third_party/blink/web_tests/fast/css/placeholder-shown-basics-expected.html | scheib/chromium | <!DOCTYPE html>
<style>
input, textarea {
height: 8px;
}
.placeholder-shown {
background-color: green;
}
</style>
<p>This test checks how various input elements are styled when :placeholder-shown is applied.</p>
<div>
<textarea></textarea>
<textarea placeholder></textarea>
<textarea placeholder="Placeholder text" class="placeholder-shown"></textarea>
<textarea placeholder="Placeholder text">Foobar</textarea>
</div>
<div>
<input>
<input placeholder>
<input placeholder="Placeholder text" class="placeholder-shown">
<input placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="">
<input type="" placeholder>
<input type="" placeholder="Placeholder text" class="placeholder-shown">
<input type="" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="hidden">
<input type="hidden" placeholder>
<input type="hidden" placeholder="Placeholder text" class="placeholder-shown">
<input type="hidden" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="text">
<input type="text" placeholder>
<input type="text" placeholder="Placeholder text" class="placeholder-shown">
<input type="text" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="tel">
<input type="tel" placeholder>
<input type="tel" placeholder="Placeholder text" class="placeholder-shown">
<input type="tel" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="url">
<input type="url" placeholder>
<input type="url" placeholder="Placeholder text" class="placeholder-shown">
<input type="url" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="email">
<input type="email" placeholder>
<input type="email" placeholder="Placeholder text" class="placeholder-shown">
<input type="email" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="password">
<input type="password" placeholder>
<input type="password" placeholder="Placeholder text" class="placeholder-shown">
<input type="password" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="search">
<input type="search" placeholder>
<input type="search" placeholder="Placeholder text" class="placeholder-shown">
<input type="search" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="date">
<input type="date" placeholder>
<input type="date" placeholder="Placeholder text">
<input type="date" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="month">
<input type="month" placeholder>
<input type="month" placeholder="Placeholder text">
<input type="month" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="week">
<input type="week" placeholder>
<input type="week" placeholder="Placeholder text">
<input type="week" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="time">
<input type="time" placeholder>
<input type="time" placeholder="Placeholder text">
<input type="time" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="datetime-local">
<input type="datetime-local" placeholder>
<input type="datetime-local" placeholder="Placeholder text">
<input type="datetime-local" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="number">
<input type="number" placeholder>
<input type="number" placeholder="Placeholder text" class="placeholder-shown">
<input type="number" placeholder="Placeholder text" value="0">
</div>
<div>
<input type="range">
<input type="range" placeholder>
<input type="range" placeholder="Placeholder text">
<input type="range" placeholder="Placeholder text" value="1">
</div>
<div>
<input type="checkbox">
<input type="checkbox" placeholder>
<input type="checkbox" placeholder="Placeholder text">
<input type="checkbox" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="radio">
<input type="radio" placeholder>
<input type="radio" placeholder="Placeholder text">
<input type="radio" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="file">
<input type="file" placeholder>
<input type="file" placeholder="Placeholder text">
<input type="file" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="submit">
<input type="submit" placeholder>
<input type="submit" placeholder="Placeholder text">
<input type="submit" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="image">
<input type="image" placeholder>
<input type="image" placeholder="Placeholder text">
<input type="image" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="reset">
<input type="reset" placeholder>
<input type="reset" placeholder="Placeholder text">
<input type="reset" placeholder="Placeholder text" value="Foobar">
</div>
<div>
<input type="color">
<input type="color" placeholder>
<input type="color" placeholder="Placeholder text">
<input type="color" placeholder="Placeholder text" value="Foobar">
</div>
|
skins/classic/templates/folders.html | ThijsFeryn/roundcubemail | <!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><roundcube:object name="pagetitle" /></title>
<roundcube:include file="/includes/links.html" />
<script type="text/javascript" src="/functions.js"></script>
<script type="text/javascript" src="/splitter.js"></script>
<style type="text/css">
#folder-manager { width: <roundcube:exp expression="!empty(cookie:folderviewsplitter) ? cookie:folderviewsplitter-5 : 295" />px; }
#folder-box { left: <roundcube:exp expression="!empty(cookie:folderviewsplitter) ? cookie:folderviewsplitter+5 : 305" />px;
<roundcube:exp expression="browser:ie ? ('width:expression((parseInt(this.parentNode.offsetWidth)-'.(!empty(cookie:folderviewsplitter) ? cookie:folderviewsplitter+5 : 305).')+\\'px\\');') : ''" />
}
</style>
</head>
<body>
<roundcube:include file="/includes/taskbar.html" />
<roundcube:include file="/includes/header.html" />
<roundcube:include file="/includes/settingstabs.html" />
<div id="mainscreen">
<div id="folder-manager">
<div id="folderlist-title" class="boxtitle"><span class="rightalign"><roundcube:label name="subscribed" /></span><roundcube:label name="folders" /></div>
<div id="folderlist-content" class="boxlistcontent">
<roundcube:object name="foldersubscription" form="subscriptionform" id="subscription-table" noheader="true"
cellpadding="1" cellspacing="0" summary="Folder subscription table" class="records-table" />
</div>
<div id="folderlist-footer" class="boxfooter">
<roundcube:button command="create-folder" type="link" title="createfolder" class="buttonPas addgroup" classAct="button addgroup" content=" " />
<roundcube:button name="mailboxmenulink" id="mailboxmenulink" type="link" title="folderactions" class="button groupactions" onclick="rcmail_ui.show_popup('mailboxmenu');return false" content=" " />
<roundcube:if condition="env:quota" />
<img id="quotaimg" src="/images/quota.<roundcube:exp expression="browser:ie && browser:ver < 7 ? 'gif' : 'png'" />" alt="" width="102" height="16" />
<div id="quota">
<roundcube:object name="quotaDisplay" display="image" width="100" height="14" id="quotadisplay" />
</div>
<roundcube:endif />
</div>
</div>
<script type="text/javascript">
var folderviewsplit = new rcube_splitter({id:'folderviewsplitter', p1: 'folder-manager', p2: 'folder-box', orientation: 'v', relative: true, start: 300 });
rcmail.add_onload('folderviewsplit.init()');
</script>
<div id="folder-box">
<roundcube:object name="folderframe" id="folder-frame" width="100%" height="100%" frameborder="0" src="/watermark.html" />
</div>
</div>
<div id="mailboxoptionsmenu" class="popupmenu">
<ul>
<li><roundcube:button command="delete-folder" label="delete" classAct="active" /></li>
<li><roundcube:button command="purge" type="link" label="empty" classAct="active" /></li>
<roundcube:container name="mailboxoptions" id="mailboxoptionsmenu" />
</ul>
</div>
<script type="text/javascript">
rcube_init_mail_ui();
</script>
</body>
</html>
|
web/src/app/theme/components/widgets/widgets.html | 99xt/interns-portal | <div class="widgets">
<div ng-repeat="widgetBlock in ngModel" ng-class="{'row': widgetBlock.widgets.length > 1}">
<div ng-repeat="widgetCol in widgetBlock.widgets" ng-class="{'col-md-6': widgetBlock.widgets.length === 2}" ng-model="widgetCol" class="widgets-block">
<div ba-panel ba-panel-title="{{::widget.title}}" ng-repeat="widget in widgetCol" ba-panel-class="with-scroll {{widget.panelClass}}">
<div ng-include="widget.url"></div>
</div>
</div>
</div>
</div>
|
www/web/dist/oauth2-redirect.html | greggyDp/apiTask | <!doctype html>
<html lang="en-US">
<body onload="run()">
</body>
</html>
<script>
'use strict';
function run () {
var oauth2 = window.opener.swaggerUIRedirectOauth2;
var sentState = oauth2.state;
var redirectUrl = oauth2.redirectUrl;
var isValid, qp, arr;
if (/code|token|error/.test(window.location.hash)) {
qp = window.location.hash.substring(1);
} else {
qp = location.search.substring(1);
}
arr = qp.split("&")
arr.forEach(function (v,i,_arr) { _arr[i] = '"' + v.replace('=', '":"') + '"';})
qp = qp ? JSON.parse('{' + arr.join() + '}',
function (key, value) {
return key === "" ? value : decodeURIComponent(value)
}
) : {}
isValid = qp.state === sentState
if ((
oauth2.auth.schema.get("flow") === "accessCode"||
oauth2.auth.schema.get("flow") === "authorizationCode"
) && !oauth2.auth.code) {
if (!isValid) {
oauth2.errCb({
authId: oauth2.auth.name,
source: "auth",
level: "warning",
message: "Authorization may be unsafe, passed state was changed in server Passed state wasn't returned from auth server"
});
}
if (qp.code) {
delete oauth2.state;
oauth2.auth.code = qp.code;
oauth2.callback({auth: oauth2.auth, redirectUrl: redirectUrl});
} else {
oauth2.errCb({
authId: oauth2.auth.name,
source: "auth",
level: "error",
message: "Authorization failed: no accessCode received from the server"
});
}
} else {
oauth2.callback({auth: oauth2.auth, token: qp, isValid: isValid, redirectUrl: redirectUrl});
}
window.close();
}
</script>
|
ajax/libs/oojs-ui/0.9.3/oojs-ui-mediawiki-icons-content.vector.rtl.css | dada0423/cdnjs | /*!
* OOjs UI v0.9.3
* 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-19T23:19:18Z
*/
.oo-ui-icon-article {
background-image: /* @embed */ url(themes/mediawiki/images/icons/article-rtl.svg);
}
.oo-ui-icon-articleCheck {
background-image: /* @embed */ url(themes/mediawiki/images/icons/articleCheck-rtl.svg);
}
.oo-ui-icon-articleSearch {
background-image: /* @embed */ url(themes/mediawiki/images/icons/articleSearch-rtl.svg);
}
.oo-ui-icon-book {
background-image: /* @embed */ url(themes/mediawiki/images/icons/book-rtl.svg);
}
.oo-ui-icon-citeArticle {
background-image: /* @embed */ url(themes/mediawiki/images/icons/citeArticle-rtl.svg);
}
.oo-ui-icon-die {
background-image: /* @embed */ url(themes/mediawiki/images/icons/die-rtl.svg);
}
.oo-ui-icon-download {
background-image: /* @embed */ url(themes/mediawiki/images/icons/download-rtl.svg);
}
.oo-ui-icon-folderPlaceholder {
background-image: /* @embed */ url(themes/mediawiki/images/icons/folderPlaceholder-rtl.svg);
}
.oo-ui-icon-journal {
background-image: /* @embed */ url(themes/mediawiki/images/icons/journal-rtl.svg);
}
.oo-ui-icon-newspaper {
background-image: /* @embed */ url(themes/mediawiki/images/icons/newspaper-rtl.svg);
}
.oo-ui-icon-upload {
background-image: /* @embed */ url(themes/mediawiki/images/icons/upload-rtl.svg);
}
|
ajax/libs/blaze/3.0.0-alpha.2/components.tabs.min.css | dlueth/cdnjs | /*!v3.0.0-alpha.2*/.c-tabs{display:block}.c-tabs__headings{display:-ms-flexbox;display:flex;text-align:center;cursor:pointer}.c-tab-heading{-ms-flex:1;flex:1;margin:0;padding:1em;box-shadow:inset 0 -.2em 0 0 #f1f1f1}.c-tab-heading--active{box-shadow:inset 0 -.2em 0 0 #adadad}.c-tabs--primary .c-tab-heading--active{box-shadow:inset 0 -.2em 0 0 #42a5f5}.c-tabs--secondary .c-tab-heading--active{box-shadow:inset 0 -.2em 0 0 #ff7043}.c-tabs--success .c-tab-heading--active{box-shadow:inset 0 -.2em 0 0 #66bb6a}.c-tabs--error .c-tab-heading--active{box-shadow:inset 0 -.2em 0 0 #ef4f52}.c-tab-heading--disabled{background-color:initial;color:#adadad;cursor:not-allowed}.c-tabs__tab{display:none;padding:1em}.c-tabs__tab--active{display:block} |
webroot/bower_components/amcharts3/samples/pie3D.html | si-quimera/avante | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>amCharts examples</title>
<link rel="stylesheet" href="style.css" type="text/css">
<script src="../amcharts/amcharts.js" type="text/javascript"></script>
<script src="../amcharts/pie.js" type="text/javascript"></script>
<script>
var chart;
var legend;
var chartData = [
{
"country": "Lithuania",
"value": 260
},
{
"country": "Ireland",
"value": 201
},
{
"country": "Germany",
"value": 65
},
{
"country": "Australia",
"value": 39
},
{
"country": "UK",
"value": 19
},
{
"country": "Latvia",
"value": 10
}
];
AmCharts.ready(function () {
// PIE CHART
chart = new AmCharts.AmPieChart();
chart.dataProvider = chartData;
chart.titleField = "country";
chart.valueField = "value";
chart.outlineColor = "#FFFFFF";
chart.outlineAlpha = 0.8;
chart.outlineThickness = 2;
chart.balloonText = "[[title]]<br><span style='font-size:14px'><b>[[value]]</b> ([[percents]]%)</span>";
// this makes the chart 3D
chart.depth3D = 15;
chart.angle = 30;
// WRITE
chart.write("chartdiv");
});
</script>
</head>
<body>
<div id="chartdiv" style="width: 100%; height: 400px;"></div>
</body>
</html> |
zorna/media/javascript/codemirror/mode/jinja2/index.html | zorna/zorna | <!doctype html>
<html>
<head>
<title>CodeMirror 2: Jinja2 mode</title>
<link rel="stylesheet" href="../../lib/codemirror.css">
<script src="../../lib/codemirror.js"></script>
<script src="jinja2.js"></script>
<link rel="stylesheet" href="../../theme/default.css">
<style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
<link rel="stylesheet" href="../../css/docs.css">
</head>
<body>
<h1>CodeMirror 2: Jinja2 mode</h1>
<form><textarea id="code" name="code">
<html style="color: green">
<!-- this is a comment -->
<head>
<title>Jinja2 Example</title>
</head>
<body>
<ul>
{# this is a comment #}
{%- for item in li -%}
<li>
{{ item.label }}
</li>
{% endfor -%}
</ul>
</body>
</html>
</textarea></form>
<script>
var editor =
CodeMirror.fromTextArea(document.getElementById("code"), {mode:
{name: "jinja2", htmlMode: true}});
</script>
</body>
</html>
|
third_party/WebKit/LayoutTests/fast/dom/horizontal-scrollbar-in-rtl.html | js0701/chromium-crosswalk | <html dir=rtl>
<head>
<script language="javascript">
function log(str)
{
var li = document.createElement("li");
li.appendChild(document.createTextNode(str));
var console = document.getElementById("console");
console.appendChild(li);
}
function assertEqual(message, actual, expected)
{
if (actual != expected)
log("\n" + message + ": Failure, actual: " + actual + "; expected: " + expected);
else
log("\n" + message + ": Success");
}
function assertClose(message, actual, expected)
{
if ((actual >= expected && actual - expected < 5) ||
(expected >= actual && expected - actual < 5))
log("\n" + message + ": Success");
else
log("\n" + message + ": Failure, actual: " + actual + "; expected: " + expected);
}
var expectedScrollX = -1000;
var expectedScrollY = 500;
onload = function()
{
if (window.testRunner)
testRunner.dumpAsText();
// Test horizontal scroll bar presents and was initially at the right for RTL page.
assertEqual("original scroll x for RTL page ", window.scrollX, 0);
// Test horizontal scroll.
window.scrollTo(expectedScrollX, expectedScrollY);
assertEqual("horizontal scroll: ", window.scrollX, expectedScrollX);
// Test calling window.scrollX continuously wont change the scrollX position.
assertEqual("continuously call window.scrollX ", window.scrollX, expectedScrollX);
// Test zooming wont reset scroll position.
if (window.eventSender) {
window.scrollTo(expectedScrollX, expectedScrollY);
eventSender.zoomPageIn();
eventSender.zoomPageOut();
assertClose("zoom in and out preserve scroll position", window.scrollX,expectedScrollX);
}
// Test resize wont reset scroll position.
window.resizeTo(1000, window.innerHeight);
window.scrollTo(expectedScrollX, expectedScrollY);
window.resizeTo(2000, window.innerHeight);
assertEqual("resize preserves scroll position", window.scrollX, expectedScrollX);
// Test HOME/END operation.
if (window.eventSender) {
// Not using assert equal here since the behavior is different in each port.
// For example, in Mac, HOME/END key reset both x and y scroll position.
// In Chromium, HOME/END key only reset y scroll position, and x scroll position is preserved.
window.scrollTo(expectedScrollX, expectedScrollY);
eventSender.keyDown("home");
log("KeyDown HOME move x-scroll position to right for RTL page: " + window.scrollX, 0);
window.scrollTo(expectedScrollX, expectedScrollY);
eventSender.keyDown("end");
log("KeyDown END move x-scroll position to right for RTL page: " + window.scrollX, 0);
}
// Test select all selects all document content.
window.resizeTo(500, 500);
var div = document.getElementById("div");
div.focus();
document.execCommand("SelectAll");
var selection = window.getSelection();
assertEqual("selectAll selects all document", selection.toString().substring(0, div.innerHTML.length), div.innerHTML);
div.style.display = "none";
}
</script>
</head>
<body>
<div id="div" style="whitespace:nowrap; width: 4000px; height: 1000px; border: 1px solid red;">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."</div>
<ul id="console" dir=ltr></ul>
</body>
</html>
|
src/webapp/js/yui/console-filters/assets/skins/sam/console-filters.css | sergiomt/zesped | /*
YUI 3.5.1 (build 22)
Copyright 2012 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
.yui3-skin-sam .yui3-console-ft .yui3-console-filters-categories,.yui3-skin-sam .yui3-console-ft .yui3-console-filters-sources{text-align:left;padding:5px 0;border:1px inset;margin:0 2px}.yui3-skin-sam .yui3-console-ft .yui3-console-filters-categories{background:#fff;border-bottom:2px ridge}.yui3-skin-sam .yui3-console-ft .yui3-console-filters-sources{background:#fff;margin-bottom:2px;border-top:0 none;border-bottom-right-radius:10px;border-bottom-left-radius:10px;-moz-border-radius-bottomright:10px;-moz-border-radius-bottomleft:10px;-webkit-border-bottom-right-radius:10px;-webkit-border-bottom-left-radius:10px}.yui3-skin-sam .yui3-console-filter-label{white-space:nowrap;margin-left:1ex}#yui3-css-stamp.skin-sam-console-filters{display:none}
|
ajax/libs/formstone/0.8.47/css/checkbox.css | froala/cdnjs | /*! formstone v0.8.47 [checkbox.css] 2016-04-17 | MIT License | formstone.it */
/**
* @class
* @name .fs-checkbox-element
* @type element
* @description Target elmement
*/
/**
* @class
* @name .fs-checkbox
* @type element
* @description Base widget class
*/
/**
* @class
* @name .fs-checkbox.fs-checkbox-checked
* @type modifier
* @description Indicates checked state
*/
/**
* @class
* @name .fs-checkbox.fs-checkbox-radio
* @type modifier
* @description Indicates radio interface
*/
/**
* @class
* @name .fs-checkbox.fs-checkbox-toggle
* @type modifier
* @description Indicates toggle interface
*/
/**
* @class
* @name .fs-checkbox.fs-checkbox-focus
* @type modifier
* @description Indicates focused state
*/
/**
* @class
* @name .fs-checkbox.fs-checkbox-disabled
* @type modifier
* @description Indicates disabled state
*/
.fs-checkbox {
/**
* @class
* @name .fs-checkbox-enabled
* @type modifier
* @description Indicates enabled state
*/
/**
* @class
* @name .fs-checkbox-label
* @type element
* @description Label element
*/
/**
* @class
* @name .fs-checkbox-marker
* @type element
* @description Marker element
*/
/**
* @class
* @name .fs-checkbox-flag
* @type element
* @description Flag element
*/
}
.fs-checkbox.fs-checkbox-enabled {
cursor: pointer;
margin: 0 0 10px 0;
overflow: hidden;
}
.fs-checkbox.fs-checkbox-enabled:focus {
box-shadow: none;
outline: none;
}
.fs-checkbox,
.fs-checkbox:after,
.fs-checkbox:before,
.fs-checkbox *,
.fs-checkbox *:after,
.fs-checkbox *:before {
box-sizing: border-box;
-webkit-transition: none;
transition: none;
-webkit-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
user-select: none !important;
}
.fs-checkbox-element_wrapper {
position: relative;
border: 0;
height: 0;
margin: 0;
opacity: 0;
overflow: hidden;
padding: 0;
width: 0;
}
.fs-checkbox-element {
position: absolute;
top: 0;
left: 0;
z-index: -1;
pointer-events: none;
-webkit-transition: none;
transition: none;
}
.fs-checkbox-label {
color: #666666;
cursor: pointer;
display: block;
font-size: 14px;
line-height: 20px;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.fs-checkbox-marker {
width: 20px;
height: 20px;
background: #ffffff;
border: 1px solid #cccccc;
border-radius: 3px;
cursor: pointer;
display: block;
float: left;
margin: 0 10px 0 0;
}
.fs-checkbox-flag {
width: 100%;
height: 100%;
margin: 0;
}
.fs-checkbox-flag:before {
width: 5px;
height: 10px;
border: 2px solid #999999;
border-top: 0;
border-left: 0;
content: '';
display: block;
margin: 3px 0 0 6px;
-webkit-transition: -webkit-transform 0.15s ease;
transition: transform 0.15s ease;
-webkit-transform: rotate(45deg) scale(0);
-ms-transform: rotate(45deg) scale(0);
transform: rotate(45deg) scale(0);
}
.fs-checkbox-checked .fs-checkbox-flag:before {
-webkit-transform: rotate(45deg) scale(1);
-ms-transform: rotate(45deg) scale(1);
transform: rotate(45deg) scale(1);
}
.no-csstransforms .fs-checkbox-flag:before {
width: 100%;
height: 100%;
content: "\2713";
display: none;
line-height: 1;
text-align: center;
}
.no-csstransforms .fs-checkbox-checked .fs-checkbox-flag:before {
display: block;
}
.fs-checkbox-radio .fs-checkbox-marker {
border-radius: 100%;
}
.fs-checkbox-radio .fs-checkbox-flag {
background: #999999;
border: 3px solid #ffffff;
border-radius: 100%;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: -webkit-transform 0.15s ease;
transition: transform 0.15s ease;
}
.fs-checkbox-radio .fs-checkbox-flag:before {
display: none;
}
.fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag:before {
display: none;
}
.no-csstransforms .fs-checkbox-radio .fs-checkbox-flag:before {
display: none;
}
.no-csstransforms .fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag:before {
display: block;
}
.fs-checkbox-focus .fs-checkbox-label {
color: #333333;
}
.fs-checkbox-focus .fs-checkbox-marker {
border-color: #999999;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.fs-checkbox-disabled {
cursor: default;
opacity: 0.5;
}
.fs-checkbox-disabled .fs-checkbox-label {
color: #666666;
cursor: default;
}
.fs-checkbox-disabled .fs-checkbox-marker {
border-color: #cccccc;
cursor: default;
}
.fs-checkbox-toggle {
position: relative;
}
.fs-checkbox-toggle .fs-checkbox-label {
line-height: 40px;
}
.fs-checkbox-toggle .fs-checkbox-marker {
width: 100px;
height: 40px;
position: relative;
border-radius: 3px;
}
.fs-checkbox-toggle .fs-checkbox-marker:after {
clear: both;
content: '';
display: table;
}
.fs-checkbox-toggle .fs-checkbox-flag {
width: 50%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #999999;
border: 2px solid #ffffff;
border-radius: 3px;
display: block;
margin: 0;
-webkit-transition: left 0.15s ease;
transition: left 0.15s ease;
}
.fs-checkbox-toggle .fs-checkbox-flag:before {
display: none;
}
.fs-checkbox-toggle .fs-checkbox-flag:after {
width: 2px;
height: 10px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #ffffff;
box-shadow: 3px 0 0 #ffffff, -3px 0 0 #ffffff;
content: '';
margin: auto;
opacity: 0.75;
}
.no-touchevents .fs-checkbox-toggle:hover .fs-checkbox-flag:after {
opacity: 1;
}
.fs-checkbox-toggle.fs-checkbox-checked .fs-checkbox-flag {
left: 50%;
}
.fs-checkbox-toggle.fs-checkbox-checked .fs-checkbox-flag:before {
display: none;
}
.fs-checkbox-toggle.fs-checkbox-disabled .fs-checkbox-flag:after {
display: none;
}
.fs-checkbox-toggle .fs-checkbox-state {
width: 50%;
color: #666666;
display: block;
font-size: 12px;
line-height: 40px;
margin: 0;
text-align: center;
text-transform: uppercase;
}
.fs-checkbox-toggle .fs-checkbox-state_on {
float: left;
}
.fs-checkbox-toggle .fs-checkbox-state_off {
float: right;
}
|
airflow/www/templates/airflow/model_create.html | b-cuts/airflow | {% extends 'admin/model/edit.html' %}
{% block body %}
{% if admin_view.verbose_name %}
<h2>
{{ admin_view.verbose_name|title }}
<small>[create]</small>
</h2>
<hr/>
{% endif %}
{{ super() }}
{% endblock %}
|
testing/client-side/java/watchdog/resources/jsp-golden/core_syntax/directives/include/positiveIncludeStaticAbs.html | toanalien/opengse | <html>
<title>positiveIncludeStaticAbs</title>
<body>
<!- testing Request-time static inclusion with absolute url from docroot -->
<html>
<title>included</title>
<body>
This is included file
</body>
</html>
</body>
</html>
|
openstack_dashboard/dashboards/project/volumes/templates/volumes/snapshots/_detail_overview.html | yjxtogo/horizon | {% load i18n sizeformat parse_date %}
{% load url from future %}
<h3>{% trans "Volume Snapshot Overview" %}</h3>
<div class="info row detail">
<h4>{% trans "Information" %}</h4>
<hr class="header_rule">
<dl class="dl-horizontal">
<dt>{% trans "Name" %}</dt>
<dd>{{ snapshot.name }}</dd>
<dt>{% trans "ID" %}</dt>
<dd>{{ snapshot.id }}</dd>
{% if snapshot.description %}
<dt>{% trans "Description" %}</dt>
<dd>{{ snapshot.description }}</dd>
{% endif %}
<dt>{% trans "Status" %}</dt>
<dd>{{ snapshot.status|capfirst }}</dd>
<dt>{% trans "Volume" %}</dt>
<dd>
<a href="{% url 'horizon:project:volumes:volumes:detail' snapshot.volume_id %}">
{% if volume.name %}
{{ volume.name }}
{% else %}
{{ snapshot.volume_id }}
{% endif %}
</a>
</dd>
</dl>
</div>
<div class="specs row detail">
<h4>{% trans "Specs" %}</h4>
<hr class="header_rule">
<dl class="dl-horizontal">
<dt>{% trans "Size" %}</dt>
<dd>{{ snapshot.size }} {% trans "GB" %}</dd>
<dt>{% trans "Created" %}</dt>
<dd>{{ snapshot.created_at|parse_date }}</dd>
</dl>
</div>
|
static/can/control/plugin/demo-update.html | willametteuniversity/webcirc2 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>Controller Example</title>
<style type='text/css'>
</style>
</head>
<body>
<div id="demo-html">
<form action='' id='createRecipes'>
<input type='text' name='name'/>
<input type='submit' value='Create Recipe'/>
<ul id="list"></ul>
</form>
</div>
<script type='text/javascript' src='../../../steal/steal.js'></script>
<script type='text/javascript' id="demo-source">
steal("can/control/plugin",
"can/model",
"can/util/fixture",
function(){
can.fixture.delay = 2000;
can.fixture("POST /recipes",function(){
return {};
})
can.Model('Recipe',{
create : "/recipes"
},{});
can.Control('Creator', {
"{recipe} created" : function(recipe, event){
this.element.find('#list').append('<li>'+
this.element.find('[type=text]').val()+'</li>');
this.element[0].reset();
this.element.find("[type=submit]").val("Create Recipe")
this.update({recipe : new Recipe()});
},
"submit" : function(el, ev){
ev.preventDefault();
var recipe = this.options.recipe;
recipe.attr({ name: $('.name').val() });
this.element.find("[type=submit]").val("Saving...")
recipe.save();
}
});
$('#createRecipes').creator({recipe: new Recipe()})
})
</script>
</body>
</html> |
tests/wpt/web-platform-tests/css/vendor-imports/mozilla/mozilla-central-reftests/text-decor-3/text-emphasis-style-property-005a.html | alajara/servo | <!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Test: text-emphasis-style, vertical-lr</title>
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-style-property">
<meta name="assert" content="Emphasis marks must remain upright in vertical writing modes">
<link rel="match" href="text-emphasis-style-property-005-ref.html">
<p>Pass if the emphasis marks 'V' are upright:</p>
<div style="writing-mode: vertical-lr; line-height: 5; text-emphasis-style: 'V'">試験テスト</div>
|
source/sig/doc/doxy/html/search/files_b.html | SpaceHAUC-Beam-Steering/Recursive-Least-Square | <!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"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<link rel="stylesheet" type="text/css" href="search.css"/>
<script type="text/javascript" src="files_b.js"></script>
<script type="text/javascript" src="search.js"></script>
</head>
<body class="SRPage">
<div id="SRIndex">
<div class="SRStatus" id="Loading">Loading...</div>
<div id="SRResults"></div>
<script type="text/javascript"><!--
createResults();
--></script>
<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>
|
tests/wpt/web-platform-tests/css/css-position/position-sticky-top-ref.html | dsandeephegde/servo | <!DOCTYPE html>
<title>Reference for position:sticky elements should respect the top constraint</title>
<style>
.group {
display: inline-block;
position: relative;
width: 150px;
height: 250px;
}
.scroller {
position: relative;
width: 100px;
height: 200px;
overflow-x: hidden;
overflow-y: auto;
}
.contents {
height: 500px;
}
.indicator {
background-color: green;
position: absolute;
left: 0;
}
.box {
width: 100%;
height: 100px;
}
</style>
<script>
window.addEventListener('load', function() {
document.getElementById('scroller1').scrollTop = 50;
document.getElementById('scroller2').scrollTop = 125;
document.getElementById('scroller3').scrollTop = 200;
});
</script>
<div class="group">
<div id="scroller1" class="scroller">
<div class="contents">
<div class="indicator box" style="top: 150px;"></div>
</div>
</div>
</div>
<div class="group">
<div id="scroller2" class="scroller">
<div class="contents">
<div class="indicator box" style="top: 175px;"></div>
</div>
</div>
</div>
<div class="group">
<div id="scroller3" class="scroller">
<div class="contents">
<div class="indicator box" style="top: 200px;"></div>
</div>
</div>
</div>
<div>You should see three green boxes above. No red should be visible.</div>
|
api/master/Thelia/Model/Map/AttributeTemplateTableMap.html | Mertiozys/thelia.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index, follow, all" />
<title>Thelia\Model\Map\AttributeTemplateTableMap | </title>
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
</head>
<body id="class">
<div class="header">
<ul>
<li><a href="../../../classes.html">Classes</a></li>
<li><a href="../../../namespaces.html">Namespaces</a></li>
<li><a href="../../../interfaces.html">Interfaces</a></li>
<li><a href="../../../traits.html">Traits</a></li>
<li><a href="../../../doc-index.html">Index</a></li>
</ul>
<div id="title"></div>
<div class="type">Class</div>
<h1><a href="../../../Thelia/Model/Map.html">Thelia\Model\Map</a>\AttributeTemplateTableMap</h1>
</div>
<div class="content">
<p> class
<strong>AttributeTemplateTableMap</strong> extends <abbr title="Propel\Runtime\Map\TableMap">TableMap</abbr></p>
<div class="description">
<p>This class defines the structure of the 'attribute_template' table.</p>
<p>This map class is used by Propel to do runtime db structure discovery.
For example, the createSelectSql() method checks the type of a given column used in an
ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
(i.e. if it's a text column type).</p>
</div>
<h2>Constants</h2>
<table>
<tr>
<td>CLASS_NAME</td>
<td class="last">
<p><em>The (dot-path) name of this class</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>DATABASE_NAME</td>
<td class="last">
<p><em>The default database name for this class</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>TABLE_NAME</td>
<td class="last">
<p><em>The table name for this class</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>OM_CLASS</td>
<td class="last">
<p><em>The related Propel class for this table</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>CLASS_DEFAULT</td>
<td class="last">
<p><em>A class that can be returned by this tableMap</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>NUM_COLUMNS</td>
<td class="last">
<p><em>The total number of columns</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>NUM_LAZY_LOAD_COLUMNS</td>
<td class="last">
<p><em>The number of lazy-loaded columns</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>NUM_HYDRATE_COLUMNS</td>
<td class="last">
<p><em>The number of columns to hydrate (NUM<em>COLUMNS - NUM</em>LAZY<em>LOAD</em>COLUMNS)</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>ID</td>
<td class="last">
<p><em>the column name for the ID field</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>ATTRIBUTE_ID</td>
<td class="last">
<p><em>the column name for the ATTRIBUTE_ID field</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>TEMPLATE_ID</td>
<td class="last">
<p><em>the column name for the TEMPLATE_ID field</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>POSITION</td>
<td class="last">
<p><em>the column name for the POSITION field</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>CREATED_AT</td>
<td class="last">
<p><em>the column name for the CREATED_AT field</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>UPDATED_AT</td>
<td class="last">
<p><em>the column name for the UPDATED_AT field</em></p>
<p>
</p>
</td>
</tr>
<tr>
<td>DEFAULT_STRING_FORMAT</td>
<td class="last">
<p><em>The default string format for model objects of the related table</em></p>
<p>
</p>
</td>
</tr>
</table>
<h2>Methods</h2>
<table>
<tr>
<td class="type">
void
</td>
<td class="last">
<a href="#method_initialize">initialize</a>()
<p>Initialize the table attributes and columns Relations are not initialized by this method since they are lazy loaded</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_buildRelations">buildRelations</a>()
<p>Build the RelationMap objects for this table relationships</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
array
</td>
<td class="last">
<a href="#method_getBehaviors">getBehaviors</a>()
<p>Gets the list of behaviors registered for this table</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
static
</td>
<td class="last">
<a href="#method_getPrimaryKeyHashFromRow">getPrimaryKeyHashFromRow</a>(array $row, int $offset, string $indexType = TableMap::TYPE_NUM)
<p>Retrieves a string version of the primary key from the DB resultset row that can be used to uniquely identify a row in this table.</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
static mixed
</td>
<td class="last">
<a href="#method_getPrimaryKeyFromRow">getPrimaryKeyFromRow</a>(array $row, int $offset, string $indexType = TableMap::TYPE_NUM)
<p>Retrieves the primary key from the DB resultset row For tables with a single-column primary key, that simple pkey value will be returned.</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
static string
</td>
<td class="last">
<a href="#method_getOMClass">getOMClass</a>(boolean $withPrefix = true)
<p>The class that the tableMap will make instances of.</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
static array
</td>
<td class="last">
<a href="#method_populateObject">populateObject</a>(array $row, int $offset, string $indexType = TableMap::TYPE_NUM)
<p>Populates an object of the default type or an object that inherit from the default.</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
static array
</td>
<td class="last">
<a href="#method_populateObjects">populateObjects</a>(<abbr title="Propel\Runtime\DataFetcher\DataFetcherInterface">DataFetcherInterface</abbr> $dataFetcher)
<p>The returned array will contain objects of the default type or objects that inherit from the default.</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
static
</td>
<td class="last">
<a href="#method_addSelectColumns">addSelectColumns</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria, string $alias = null)
<p>Add all the columns needed to create a new object.</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
static <abbr title="Propel\Runtime\Map\TableMap">TableMap</abbr>
</td>
<td class="last">
<a href="#method_getTableMap">getTableMap</a>()
<p>Returns the TableMap related to this object.</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
static
</td>
<td class="last">
<a href="#method_buildTableMap">buildTableMap</a>()
<p>Add a TableMap instance to the database for this tableMap class.</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
static int
</td>
<td class="last">
<a href="#method_doDelete">doDelete</a>(mixed $values, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)
<p>Performs a DELETE on the database, given a AttributeTemplate or Criteria object OR a primary key value.</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
static int
</td>
<td class="last">
<a href="#method_doDeleteAll">doDeleteAll</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)
<p>Deletes all rows from the attribute_template table.</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
static mixed
</td>
<td class="last">
<a href="#method_doInsert">doInsert</a>(mixed $criteria, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)
<p>Performs an INSERT on the database, given a AttributeTemplate or Criteria object.</p>
</td>
<td></td>
</tr>
</table>
<h2>Details</h2>
<h3 id="method_initialize">
<div class="location">at line 145</div>
<code> public void
<strong>initialize</strong>()</code>
</h3>
<div class="details">
<p>Initialize the table attributes and columns Relations are not initialized by this method since they are lazy loaded</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td>void</td>
<td>
</td>
</tr>
</table>
<h4>Exceptions</h4>
<table>
<tr>
<td><abbr title="PropelException">PropelException</abbr></td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_buildRelations">
<div class="location">at line 166</div>
<code> public
<strong>buildRelations</strong>()</code>
</h3>
<div class="details">
<p>Build the RelationMap objects for this table relationships</p>
<p>
</p>
<div class="tags">
</div>
</div>
<h3 id="method_getBehaviors">
<div class="location">at line 178</div>
<code> public array
<strong>getBehaviors</strong>()</code>
</h3>
<div class="details">
<p>Gets the list of behaviors registered for this table</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td>array</td>
<td>Associative array (name => parameters) of behaviors</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getPrimaryKeyHashFromRow">
<div class="location">at line 196</div>
<code> static public
<strong>getPrimaryKeyHashFromRow</strong>(array $row, int $offset, string $indexType = TableMap::TYPE_NUM)</code>
</h3>
<div class="details">
<p>Retrieves a string version of the primary key from the DB resultset row that can be used to uniquely identify a row in this table.</p>
<p>For tables with a single-column primary key, that simple pkey value will be returned. For tables with
a multi-column primary key, a serialize()d version of the primary key will be returned.</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td>array</td>
<td>$row</td>
<td>resultset row.</td>
</tr>
<tr>
<td>int</td>
<td>$offset</td>
<td>The 0-based offset for reading from the resultset row.</td>
</tr>
<tr>
<td>string</td>
<td>$indexType</td>
<td>One of the class type constants TableMap::TYPE<em>PHPNAME, TableMap::TYPE</em>STUDLYPHPNAME TableMap::TYPE<em>COLNAME, TableMap::TYPE</em>FIELDNAME, TableMap::TYPE_NUM</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getPrimaryKeyFromRow">
<div class="location">at line 218</div>
<code> static public mixed
<strong>getPrimaryKeyFromRow</strong>(array $row, int $offset, string $indexType = TableMap::TYPE_NUM)</code>
</h3>
<div class="details">
<p>Retrieves the primary key from the DB resultset row For tables with a single-column primary key, that simple pkey value will be returned.</p>
<p>For tables with
a multi-column primary key, an array of the primary key columns will be returned.</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td>array</td>
<td>$row</td>
<td>resultset row.</td>
</tr>
<tr>
<td>int</td>
<td>$offset</td>
<td>The 0-based offset for reading from the resultset row.</td>
</tr>
<tr>
<td>string</td>
<td>$indexType</td>
<td>One of the class type constants TableMap::TYPE<em>PHPNAME, TableMap::TYPE</em>STUDLYPHPNAME TableMap::TYPE<em>COLNAME, TableMap::TYPE</em>FIELDNAME, TableMap::TYPE_NUM</td>
</tr>
</table>
<h4>Return Value</h4>
<table>
<tr>
<td>mixed</td>
<td>The primary key of the row</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getOMClass">
<div class="location">at line 239</div>
<code> static public string
<strong>getOMClass</strong>(boolean $withPrefix = true)</code>
</h3>
<div class="details">
<p>The class that the tableMap will make instances of.</p>
<p>If $withPrefix is true, the returned path
uses a dot-path notation which is translated into a path
relative to a location on the PHP include_path.
(e.g. path.to.MyClass -> 'path/to/MyClass.php')</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td>boolean</td>
<td>$withPrefix</td>
<td>Whether or not to return the path with the class name</td>
</tr>
</table>
<h4>Return Value</h4>
<table>
<tr>
<td>string</td>
<td>path.to.ClassName</td>
</tr>
</table>
</div>
</div>
<h3 id="method_populateObject">
<div class="location">at line 257</div>
<code> static public array
<strong>populateObject</strong>(array $row, int $offset, string $indexType = TableMap::TYPE_NUM)</code>
</h3>
<div class="details">
<p>Populates an object of the default type or an object that inherit from the default.</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td>array</td>
<td>$row</td>
<td>row returned by DataFetcher->fetch().</td>
</tr>
<tr>
<td>int</td>
<td>$offset</td>
<td>The 0-based offset for reading from the resultset row.</td>
</tr>
<tr>
<td>string</td>
<td>$indexType</td>
<td>The index type of $row. Mostly DataFetcher->getIndexType(). One of the class type constants TableMap::TYPE<em>PHPNAME, TableMap::TYPE</em>STUDLYPHPNAME TableMap::TYPE<em>COLNAME, TableMap::TYPE</em>FIELDNAME, TableMap::TYPE_NUM.</td>
</tr>
</table>
<h4>Return Value</h4>
<table>
<tr>
<td>array</td>
<td>(AttributeTemplate object, last column rank)</td>
</tr>
</table>
<h4>Exceptions</h4>
<table>
<tr>
<td><abbr title="PropelException">PropelException</abbr></td>
<td>Any exceptions caught during processing will be rethrown wrapped into a PropelException.</td>
</tr>
</table>
</div>
</div>
<h3 id="method_populateObjects">
<div class="location">at line 284</div>
<code> static public array
<strong>populateObjects</strong>(<abbr title="Propel\Runtime\DataFetcher\DataFetcherInterface">DataFetcherInterface</abbr> $dataFetcher)</code>
</h3>
<div class="details">
<p>The returned array will contain objects of the default type or objects that inherit from the default.</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td><abbr title="Propel\Runtime\DataFetcher\DataFetcherInterface">DataFetcherInterface</abbr></td>
<td>$dataFetcher</td>
<td>
</td>
</tr>
</table>
<h4>Return Value</h4>
<table>
<tr>
<td>array</td>
<td>
</td>
</tr>
</table>
<h4>Exceptions</h4>
<table>
<tr>
<td><abbr title="PropelException">PropelException</abbr></td>
<td>Any exceptions caught during processing will be rethrown wrapped into a PropelException.</td>
</tr>
</table>
</div>
</div>
<h3 id="method_addSelectColumns">
<div class="location">at line 320</div>
<code> static public
<strong>addSelectColumns</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria, string $alias = null)</code>
</h3>
<div class="details">
<p>Add all the columns needed to create a new object.</p>
<p>Note: any columns that were marked with lazyLoad="true" in the
XML schema will not be added to the select list and only loaded
on demand.</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td>
<td>$criteria</td>
<td>object containing the columns to add.</td>
</tr>
<tr>
<td>string</td>
<td>$alias</td>
<td>optional table alias</td>
</tr>
</table>
<h4>Exceptions</h4>
<table>
<tr>
<td><abbr title="PropelException">PropelException</abbr></td>
<td>Any exceptions caught during processing will be rethrown wrapped into a PropelException.</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getTableMap">
<div class="location">at line 346</div>
<code> static public <abbr title="Propel\Runtime\Map\TableMap">TableMap</abbr>
<strong>getTableMap</strong>()</code>
</h3>
<div class="details">
<p>Returns the TableMap related to this object.</p>
<p>This method is not needed for general use but a specific application could have a need.</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td><abbr title="Propel\Runtime\Map\TableMap">TableMap</abbr></td>
<td>
</td>
</tr>
</table>
<h4>Exceptions</h4>
<table>
<tr>
<td><abbr title="PropelException">PropelException</abbr></td>
<td>Any exceptions caught during processing will be rethrown wrapped into a PropelException.</td>
</tr>
</table>
</div>
</div>
<h3 id="method_buildTableMap">
<div class="location">at line 354</div>
<code> static public
<strong>buildTableMap</strong>()</code>
</h3>
<div class="details">
<p>Add a TableMap instance to the database for this tableMap class.</p>
<p>
</p>
<div class="tags">
</div>
</div>
<h3 id="method_doDelete">
<div class="location">at line 373</div>
<code> static public int
<strong>doDelete</strong>(mixed $values, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code>
</h3>
<div class="details">
<p>Performs a DELETE on the database, given a AttributeTemplate or Criteria object OR a primary key value.</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td>mixed</td>
<td>$values</td>
<td>Criteria or AttributeTemplate object or primary key or array of primary keys which is used to create the DELETE statement</td>
</tr>
<tr>
<td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td>
<td>$con</td>
<td>the connection to use</td>
</tr>
</table>
<h4>Return Value</h4>
<table>
<tr>
<td>int</td>
<td>The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows if supported by native driver or if emulated using Propel.</td>
</tr>
</table>
<h4>Exceptions</h4>
<table>
<tr>
<td><abbr title="PropelException">PropelException</abbr></td>
<td>Any exceptions caught during processing will be rethrown wrapped into a PropelException.</td>
</tr>
</table>
</div>
</div>
<h3 id="method_doDeleteAll">
<div class="location">at line 407</div>
<code> static public int
<strong>doDeleteAll</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code>
</h3>
<div class="details">
<p>Deletes all rows from the attribute_template table.</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td>
<td>$con</td>
<td>the connection to use</td>
</tr>
</table>
<h4>Return Value</h4>
<table>
<tr>
<td>int</td>
<td>The number of affected rows (if supported by underlying database driver).</td>
</tr>
</table>
</div>
</div>
<h3 id="method_doInsert">
<div class="location">at line 421</div>
<code> static public mixed
<strong>doInsert</strong>(mixed $criteria, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code>
</h3>
<div class="details">
<p>Performs an INSERT on the database, given a AttributeTemplate or Criteria object.</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td>mixed</td>
<td>$criteria</td>
<td>Criteria or AttributeTemplate object containing data that is used to create the INSERT statement.</td>
</tr>
<tr>
<td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td>
<td>$con</td>
<td>the ConnectionInterface connection to use</td>
</tr>
</table>
<h4>Return Value</h4>
<table>
<tr>
<td>mixed</td>
<td>The new primary key.</td>
</tr>
</table>
<h4>Exceptions</h4>
<table>
<tr>
<td><abbr title="PropelException">PropelException</abbr></td>
<td>Any exceptions caught during processing will be rethrown wrapped into a PropelException.</td>
</tr>
</table>
</div>
</div>
</div>
<div id="footer">
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
</div>
</body>
</html>
|
wiki/src/inc/stable_amd64_version.html | cbrownstein/tails | 3.7.1
|
ajax/libs/formstone/0.6.7/css/pagination.css | dada0423/cdnjs | /*! formstone v0.6.7 [pagination.css] 2015-06-13 | MIT License | formstone.it */
/**
* @class
* @name .fs-pagination-element
* @type element
* @description Target elmement
*/
/**
* @class
* @name .fs-pagination
* @type element
* @description Base widget class
*/
/**
* @class
* @name .fs-pagination.fs-pagination-mobile
* @type modifier
* @description Indicates mobile display
*/
.fs-pagination {
/**
* @class
* @name .fs-pagination
* @type element
* @description Pages container
*/
/**
* @class
* @name .fs-pagination-page
* @type element
* @description Page element
*/
/**
* @class
* @name .fs-pagination-ellipsis
* @type element
* @description Ellipsis element
*/
/**
* @class
* @name .fs-pagination-page.fs-pagination-active
* @type modifier
* @description Indicates active page
*/
/**
* @class
* @name .fs-pagination-page.fs-pagination-first
* @type modifier
* @description Indicates first page
*/
/**
* @class
* @name .fs-pagination-page.fs-pagination-last
* @type modifier
* @description Indicates last page
*/
/**
* @class
* @name .fs-pagination-page.fs-pagination-visible
* @type modifier
* @description Indicates visible page
*/
/**
* @class
* @name .fs-pagination-control
* @type element
* @description Pagination button
*/
/**
* @class
* @name .fs-pagination-control.fs-pagination-control_previous
* @type modifier
* @description Indicates previous control
*/
/**
* @class
* @name .fs-pagination-control.fs-pagination-control_next
* @type modifier
* @description Indicates next control
*/
/**
* @class
* @name .fs-pagination-position
* @type element
* @description Mobile position indicator
*/
/**
* @class
* @name .fs-pagination-select
* @type element
* @description Mobile page dropdown
*/
}
.fs-pagination-pages {
text-align: center;
}
.fs-pagination-page,
.fs-pagination-ellipsis {
display: none;
margin: 0 5px;
}
.fs-pagination-active,
.fs-pagination-first,
.fs-pagination-last,
.fs-pagination-visible {
display: inline-block;
}
.fs-pagination-control {
border: none;
display: block;
}
.fs-pagination-control:focus {
outline: none;
}
.fs-pagination-control_previous {
float: left;
}
.fs-pagination-control_next {
float: right;
}
.fs-pagination-position,
.fs-pagination-select {
display: none;
}
.fs-pagination-mobile .fs-pagination-pages {
display: none;
}
.fs-pagination-mobile .fs-pagination-position {
display: block;
text-align: center;
}
.fs-pagination-mobile .fs-pagination-select {
position: absolute;
z-index: -1;
display: block;
opacity: 0;
}
|
wp-content/themes/alamindit/mailchimp-mandrill-api-php-e1eda7352f24/docs/class-Mandrill_Unknown_Subaccount.html | usmanasif/Taiche | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="ApiGen 2.8.0" />
<title>Class Mandrill_Unknown_Subaccount</title>
<script type="text/javascript" src="resources/combined.js?394153670"></script>
<script type="text/javascript" src="elementlist.js?882160656"></script>
<link rel="stylesheet" type="text/css" media="all" href="resources/style.css?3505392360" />
</head>
<body>
<div id="left">
<div id="menu">
<a href="index.html" title="Overview"><span>Overview</span></a>
<div id="groups">
<h3>Namespaces</h3>
<ul>
<li class="active"><a href="namespace-None.html">None</a>
</li>
<li><a href="namespace-PHP.html">PHP</a>
</li>
</ul>
</div>
<hr />
<div id="elements">
<h3>Classes</h3>
<ul>
<li><a href="class-Mandrill.html">Mandrill</a></li>
<li><a href="class-Mandrill_Exports.html">Mandrill_Exports</a></li>
<li><a href="class-Mandrill_Inbound.html">Mandrill_Inbound</a></li>
<li><a href="class-Mandrill_Internal.html">Mandrill_Internal</a></li>
<li><a href="class-Mandrill_Ips.html">Mandrill_Ips</a></li>
<li><a href="class-Mandrill_Messages.html">Mandrill_Messages</a></li>
<li><a href="class-Mandrill_Metadata.html">Mandrill_Metadata</a></li>
<li><a href="class-Mandrill_Rejects.html">Mandrill_Rejects</a></li>
<li><a href="class-Mandrill_Senders.html">Mandrill_Senders</a></li>
<li><a href="class-Mandrill_Subaccounts.html">Mandrill_Subaccounts</a></li>
<li><a href="class-Mandrill_Tags.html">Mandrill_Tags</a></li>
<li><a href="class-Mandrill_Templates.html">Mandrill_Templates</a></li>
<li><a href="class-Mandrill_Urls.html">Mandrill_Urls</a></li>
<li><a href="class-Mandrill_Users.html">Mandrill_Users</a></li>
<li><a href="class-Mandrill_Webhooks.html">Mandrill_Webhooks</a></li>
<li><a href="class-Mandrill_Whitelists.html">Mandrill_Whitelists</a></li>
</ul>
<h3>Exceptions</h3>
<ul>
<li><a href="class-Mandrill_Error.html">Mandrill_Error</a></li>
<li><a href="class-Mandrill_HttpError.html">Mandrill_HttpError</a></li>
<li><a href="class-Mandrill_Invalid_CustomDNS.html">Mandrill_Invalid_CustomDNS</a></li>
<li><a href="class-Mandrill_Invalid_CustomDNSPending.html">Mandrill_Invalid_CustomDNSPending</a></li>
<li><a href="class-Mandrill_Invalid_DeleteDefaultPool.html">Mandrill_Invalid_DeleteDefaultPool</a></li>
<li><a href="class-Mandrill_Invalid_DeleteNonEmptyPool.html">Mandrill_Invalid_DeleteNonEmptyPool</a></li>
<li><a href="class-Mandrill_Invalid_EmptyDefaultPool.html">Mandrill_Invalid_EmptyDefaultPool</a></li>
<li><a href="class-Mandrill_Invalid_Key.html">Mandrill_Invalid_Key</a></li>
<li><a href="class-Mandrill_Invalid_Reject.html">Mandrill_Invalid_Reject</a></li>
<li><a href="class-Mandrill_Invalid_Tag_Name.html">Mandrill_Invalid_Tag_Name</a></li>
<li><a href="class-Mandrill_Invalid_Template.html">Mandrill_Invalid_Template</a></li>
<li><a href="class-Mandrill_IP_ProvisionLimit.html">Mandrill_IP_ProvisionLimit</a></li>
<li><a href="class-Mandrill_Metadata_FieldLimit.html">Mandrill_Metadata_FieldLimit</a></li>
<li><a href="class-Mandrill_NoSendingHistory.html">Mandrill_NoSendingHistory</a></li>
<li><a href="class-Mandrill_PaymentRequired.html">Mandrill_PaymentRequired</a></li>
<li><a href="class-Mandrill_PoorReputation.html">Mandrill_PoorReputation</a></li>
<li><a href="class-Mandrill_ServiceUnavailable.html">Mandrill_ServiceUnavailable</a></li>
<li><a href="class-Mandrill_Unknown_Export.html">Mandrill_Unknown_Export</a></li>
<li><a href="class-Mandrill_Unknown_InboundDomain.html">Mandrill_Unknown_InboundDomain</a></li>
<li><a href="class-Mandrill_Unknown_InboundRoute.html">Mandrill_Unknown_InboundRoute</a></li>
<li><a href="class-Mandrill_Unknown_IP.html">Mandrill_Unknown_IP</a></li>
<li><a href="class-Mandrill_Unknown_Message.html">Mandrill_Unknown_Message</a></li>
<li><a href="class-Mandrill_Unknown_MetadataField.html">Mandrill_Unknown_MetadataField</a></li>
<li><a href="class-Mandrill_Unknown_Pool.html">Mandrill_Unknown_Pool</a></li>
<li><a href="class-Mandrill_Unknown_Sender.html">Mandrill_Unknown_Sender</a></li>
<li class="active"><a href="class-Mandrill_Unknown_Subaccount.html">Mandrill_Unknown_Subaccount</a></li>
<li><a href="class-Mandrill_Unknown_Template.html">Mandrill_Unknown_Template</a></li>
<li><a href="class-Mandrill_Unknown_TrackingDomain.html">Mandrill_Unknown_TrackingDomain</a></li>
<li><a href="class-Mandrill_Unknown_Url.html">Mandrill_Unknown_Url</a></li>
<li><a href="class-Mandrill_Unknown_Webhook.html">Mandrill_Unknown_Webhook</a></li>
<li><a href="class-Mandrill_ValidationError.html">Mandrill_ValidationError</a></li>
</ul>
</div>
</div>
</div>
<div id="splitter"></div>
<div id="right">
<div id="rightInner">
<form id="search">
<input type="hidden" name="cx" value="" />
<input type="hidden" name="ie" value="UTF-8" />
<input type="text" name="q" class="text" />
<input type="submit" value="Search" />
</form>
<div id="navigation">
<ul>
<li>
<a href="index.html" title="Overview"><span>Overview</span></a>
</li>
<li>
<a href="namespace-None.html" title="Summary of None"><span>Namespace</span></a>
</li>
<li class="active">
<span>Class</span> </li>
</ul>
<ul>
<li>
<a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a>
</li>
</ul>
<ul>
</ul>
</div>
<div id="content" class="class">
<h1>Class Mandrill_Unknown_Subaccount</h1>
<div class="description">
<p>The provided subaccount id does not exist.</p>
</div>
<dl class="tree">
<dd style="padding-left:0px">
<a href="class-Exception.html"><span>Exception</span></a>
</dd>
<dd style="padding-left:30px">
<img src="resources/inherit.png" alt="Extended by" />
<a href="class-Mandrill_Error.html"><span>Mandrill_Error</span></a>
</dd>
<dd style="padding-left:60px">
<img src="resources/inherit.png" alt="Extended by" />
<b><span>Mandrill_Unknown_Subaccount</span></b>
</dd>
</dl>
<div class="info">
<b>Located at</b> <a href="source-class-Mandrill_Unknown_Subaccount.html#21-24" title="Go to source code">Mandrill/Exceptions.php</a><br />
</div>
<table class="summary inherited">
<caption>Methods inherited from <a href="class-Exception.html#methods">Exception</a></caption>
<tr>
<td><code>
<a href="class-Exception.html#___construct">__construct()</a>,
<a href="class-Exception.html#___toString">__toString()</a>,
<a href="class-Exception.html#_getCode">getCode()</a>,
<a href="class-Exception.html#_getFile">getFile()</a>,
<a href="class-Exception.html#_getLine">getLine()</a>,
<a href="class-Exception.html#_getMessage">getMessage()</a>,
<a href="class-Exception.html#_getPrevious">getPrevious()</a>,
<a href="class-Exception.html#_getTrace">getTrace()</a>,
<a href="class-Exception.html#_getTraceAsString">getTraceAsString()</a>
</code></td>
</tr>
</table>
<table class="summary inherited">
<caption>Properties inherited from <a href="class-Exception.html#properties">Exception</a></caption>
<tr>
<td><code>
<a href="class-Exception.html#$code"><var>$code</var></a>,
<a href="class-Exception.html#$file"><var>$file</var></a>,
<a href="class-Exception.html#$line"><var>$line</var></a>,
<a href="class-Exception.html#$message"><var>$message</var></a>
</code></td>
</tr>
</table>
</div>
<div id="footer">
API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a>
</div>
</div>
</div>
</body>
</html>
|
ajax/libs/oojs-ui/0.12.4/oojs-ui-mediawiki-icons-wikimedia.rtl.css | dlueth/cdnjs | /*!
* OOjs UI v0.12.4
* https://www.mediawiki.org/wiki/OOjs_UI
*
* Copyright 2011–2015 OOjs UI Team and other contributors.
* Released under the MIT license
* http://oojs.mit-license.org
*
* Date: 2015-08-13T21:01:12Z
*/
.oo-ui-icon-logoCC {
background-image: url("themes/mediawiki/images/icons/logo-cc.png");
background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url("themes/mediawiki/images/icons/logo-cc.svg");
background-image: linear-gradient(transparent, transparent), /* @embed */ url("themes/mediawiki/images/icons/logo-cc.svg");
background-image: -o-linear-gradient(transparent, transparent), url("themes/mediawiki/images/icons/logo-cc.png");
}
.oo-ui-icon-logoCC-invert {
background-image: url("themes/mediawiki/images/icons/logo-cc-invert.png");
background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url("themes/mediawiki/images/icons/logo-cc-invert.svg");
background-image: linear-gradient(transparent, transparent), /* @embed */ url("themes/mediawiki/images/icons/logo-cc-invert.svg");
background-image: -o-linear-gradient(transparent, transparent), url("themes/mediawiki/images/icons/logo-cc-invert.png");
}
.oo-ui-icon-logoWikimediaCommons {
background-image: url("themes/mediawiki/images/icons/logo-wikimediaCommons.png");
background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url("themes/mediawiki/images/icons/logo-wikimediaCommons.svg");
background-image: linear-gradient(transparent, transparent), /* @embed */ url("themes/mediawiki/images/icons/logo-wikimediaCommons.svg");
background-image: -o-linear-gradient(transparent, transparent), url("themes/mediawiki/images/icons/logo-wikimediaCommons.png");
}
.oo-ui-icon-logoWikimediaCommons-invert {
background-image: url("themes/mediawiki/images/icons/logo-wikimediaCommons-invert.png");
background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url("themes/mediawiki/images/icons/logo-wikimediaCommons-invert.svg");
background-image: linear-gradient(transparent, transparent), /* @embed */ url("themes/mediawiki/images/icons/logo-wikimediaCommons-invert.svg");
background-image: -o-linear-gradient(transparent, transparent), url("themes/mediawiki/images/icons/logo-wikimediaCommons-invert.png");
}
.oo-ui-icon-logoWikipedia {
background-image: url("themes/mediawiki/images/icons/logo-wikipedia.png");
background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url("themes/mediawiki/images/icons/logo-wikipedia.svg");
background-image: linear-gradient(transparent, transparent), /* @embed */ url("themes/mediawiki/images/icons/logo-wikipedia.svg");
background-image: -o-linear-gradient(transparent, transparent), url("themes/mediawiki/images/icons/logo-wikipedia.png");
}
.oo-ui-icon-logoWikipedia-invert {
background-image: url("themes/mediawiki/images/icons/logo-wikipedia-invert.png");
background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url("themes/mediawiki/images/icons/logo-wikipedia-invert.svg");
background-image: linear-gradient(transparent, transparent), /* @embed */ url("themes/mediawiki/images/icons/logo-wikipedia-invert.svg");
background-image: -o-linear-gradient(transparent, transparent), url("themes/mediawiki/images/icons/logo-wikipedia-invert.png");
}
|
ajax/libs/oojs-ui/0.12.2/oojs-ui-mediawiki-icons-wikimedia.raster.rtl.css | brix/cdnjs | /*!
* OOjs UI v0.12.2
* https://www.mediawiki.org/wiki/OOjs_UI
*
* Copyright 2011–2015 OOjs UI Team and other contributors.
* Released under the MIT license
* http://oojs.mit-license.org
*
* Date: 2015-07-28T23:01:40Z
*/
.oo-ui-icon-logoCC {
background-image: /* @embed */ url(themes/mediawiki/images/icons/logo-cc.png);
}
.oo-ui-icon-logoCC-invert {
background-image: /* @embed */ url(themes/mediawiki/images/icons/logo-cc-invert.png);
}
.oo-ui-icon-logoWikimediaCommons {
background-image: /* @embed */ url(themes/mediawiki/images/icons/logo-wikimediaCommons.png);
}
.oo-ui-icon-logoWikimediaCommons-invert {
background-image: /* @embed */ url(themes/mediawiki/images/icons/logo-wikimediaCommons-invert.png);
}
.oo-ui-icon-logoWikipedia {
background-image: /* @embed */ url(themes/mediawiki/images/icons/logo-wikipedia.png);
}
.oo-ui-icon-logoWikipedia-invert {
background-image: /* @embed */ url(themes/mediawiki/images/icons/logo-wikipedia-invert.png);
}
|
files/formstone/0.8.26/css/lightbox.css | as-com/jsdelivr | /*! formstone v0.8.26 [lightbox.css] 2015-11-01 | MIT License | formstone.it */
/**
* @class
* @name .fs-lightbox-element
* @type element
* @description Target elmement
*/
/**
* @class
* @name .fs-lightbox
* @type element
* @description Base widget class
*/
/**
* @class
* @name .fs-lightbox.fs-lightbox-open
* @type modifier
* @description Indicates open state
*/
/**
* @class
* @name .fs-lightbox.fs-lightbox-loading
* @type modifier
* @description Indicates loading state
*/
/**
* @class
* @name .fs-lightbox.fs-lightbox-animating
* @type modifier
* @description Indicates animating state
*/
/**
* @class
* @name .fs-lightbox.fs-lightbox-mobile
* @type modifier
* @description Indicates mobile display
*/
/**
* @class
* @name .fs-lightbox.fs-lightbox-fixed
* @type modifier
* @description Indicates fixed positioning
*/
/**
* @class
* @name .fs-lightbox.fs-lightbox-inline
* @type modifier
* @description Indicates inline content
*/
/**
* @class
* @name .fs-lightbox.fs-lightbox-iframed
* @type modifier
* @description Indicates iFrame content
*/
/**
* @class
* @name .fs-lightbox.fs-lightbox-has_caption
* @type modifier
* @description Indicates caption is present
*/
/**
* @class
* @name .fs-lightbox.fs-lightbox-has_controls
* @type modifier
* @description Indicates controls are present
*/
.fs-lightbox {
width: 200px;
height: 200px;
position: absolute;
right: 0;
left: 0;
z-index: 101;
background: #ffffff;
border-radius: 3px;
box-shadow: 0 0 25px #000000;
opacity: 0;
margin: 0 auto;
padding: 10px;
-webkit-transform: translateZ(0);
/**
* @class
* @name .fs-lightbox-overlay
* @type element
* @description Overlay element
*/
/**
* @class
* @name .fs-lightbox-close
* @type element
* @description Close element
*/
/**
* @class
* @name .fs-lightbox-loading_icon
* @type element
* @description Loading icon element
*/
/**
* @class
* @name .fs-lightbox-container
* @type element
* @description Container element
*/
/**
* @class
* @name .fs-lightbox-content
* @type element
* @description Content element
*/
/**
* @class
* @name .fs-lightbox-image
* @type element
* @description Image element
*/
/**
* @class
* @name .fs-lightbox-video
* @type element
* @description Video element
*/
/**
* @class
* @name .fs-lightbox-iframe
* @type element
* @description iFrame element
*/
/**
* @class
* @name .fs-lightbox-tools
* @type element
* @description Tools element
*/
/**
* @class
* @name .fs-lightbox-meta
* @type element
* @description Meta info element
*/
/**
* @class
* @name .fs-lightbox-controls
* @type element
* @description Controls container element
*/
/**
* @class
* @name .fs-lightbox-control
* @type element
* @description Control element
*/
/**
* @class
* @name .fs-lightbox-control.fs-lightbox-control_previous
* @type modifier
* @description Indicates previous control
*/
/**
* @class
* @name .fs-lightbox-control.fs-lightbox-control_next
* @type modifier
* @description Indicates next control
*/
/**
* @class
* @name .fs-lightbox-control.fs-lightbox-control_disabled
* @type modifier
* @description Indicates disbaled state
*/
/**
* @class
* @name .fs-lightbox-position
* @type element
* @description Position element
*/
/**
* @class
* @name .fs-lightbox-position_current
* @type element
* @description Current position element
*/
/**
* @class
* @name .fs-lightbox-position_total
* @type element
* @description Total position element
*/
/**
* @class
* @name .fs-lightbox-caption
* @type element
* @description Caption element
*/
/**
* @class
* @name .fs-lightbox-error
* @type element
* @description Error message element
*/
/**
* @class
* @name .fs-lightbox-lock
* @type modifier
* @description Indicates locked state; Applied to body element
*/
}
.fs-lightbox,
.fs-lightbox *:not(input):not(textarea) {
box-sizing: border-box;
-webkit-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
user-select: none !important;
}
.fs-lightbox-fixed {
position: fixed;
top: 0;
bottom: 0;
margin: auto;
}
.fs-lightbox-inline {
padding: 30px;
}
.fs-lightbox-animating {
-webkit-transition: height 0.25s ease, width 0.25s ease, opacity 0.25s linear, top 0.25s ease;
transition: height 0.25s ease, width 0.25s ease, opacity 0.25s linear, top 0.25s ease;
}
.fs-lightbox-animating .fs-lightbox-container {
-webkit-transition: opacity 0.25s linear 0.25s, visibility 0.25s linear 0.25s;
transition: opacity 0.25s linear 0.25s, visibility 0.25s linear 0.25s;
}
.fs-lightbox-mobile .fs-lightbox-image_container {
-webkit-transform: translate3D(0, 0, 0);
-ms-transform: translate3D(0, 0, 0);
transform: translate3D(0, 0, 0);
}
.fs-lightbox-mobile.fs-lightbox-animating .fs-lightbox-image_container {
-webkit-transition: height 0.25s ease, width 0.25s ease, top 0.25s ease, left 0.25s ease;
transition: height 0.25s ease, width 0.25s ease, top 0.25s ease, left 0.25s ease;
}
.fs-lightbox-overlay {
width: 100%;
height: 100%;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 100;
background: #000000;
opacity: 0;
-webkit-transition: opacity 0.25s linear;
transition: opacity 0.25s linear;
}
.fs-lightbox-open {
opacity: 1;
}
.fs-lightbox-overlay.fs-lightbox-open {
opacity: 0.75;
}
.fs-lightbox-close {
border: none;
width: 30px;
height: 30px;
position: absolute;
top: -7.5px;
right: -7.5px;
z-index: 105;
background: #ffffff;
border-radius: 100%;
cursor: pointer;
display: block;
overflow: hidden;
padding: 0;
text-indent: 200%;
white-space: nowrap;
}
.fs-lightbox-close:focus {
outline: none;
}
.fs-lightbox-close:before {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
color: #333333;
content: "\00d7";
display: block;
font-family: "Helvetica", Arial, sans-serif;
font-size: 22px;
font-weight: 700;
line-height: 30px;
margin: auto;
text-align: center;
text-indent: 0;
-webkit-transition: color 0.15s linear;
transition: color 0.15s linear;
}
.no-opacity .fs-lightbox-close {
text-indent: -999px;
}
.fs-lightbox-loading_icon {
width: 50px;
height: 50px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 105;
display: block;
margin: auto;
opacity: 0;
-webkit-transition: opacity 0.25s linear, visibility 0.25s linear;
transition: opacity 0.25s linear, visibility 0.25s linear;
visibility: hidden;
}
.fs-lightbox-loading_icon:before,
.fs-lightbox-loading_icon:after {
width: 100%;
height: 100%;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
border-radius: 110%;
content: '';
display: block;
}
.fs-lightbox-loading_icon:before {
border: 5px solid rgba(51, 51, 51, 0.25);
}
.fs-lightbox-loading_icon:after {
-webkit-animation: fs-lightbox-loading-spin 0.75s linear infinite;
animation: fs-lightbox-loading-spin 0.75s linear infinite;
border: 5px solid transparent;
border-top-color: #333333;
}
@-webkit-keyframes fs-lightbox-loading-spin {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes fs-lightbox-loading-spin {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.fs-lightbox-container {
width: 100%;
height: 100%;
position: relative;
z-index: 103;
background: #ffffff;
overflow: hidden;
}
.fs-lightbox-container:after {
clear: both;
content: '';
display: table;
}
.fs-lightbox-content {
width: 100%;
background: #ffffff;
opacity: 1;
overflow: hidden;
padding: 0;
visibility: visible;
}
.fs-lightbox-content:after {
clear: both;
content: '';
display: table;
}
.fs-lightbox-inline .fs-lightbox-content {
width: auto;
}
.fs-lightbox-iframed .fs-lightbox-content {
width: 100%;
height: 100%;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.fs-lightbox-mobile .fs-lightbox-image_container {
width: 1px;
height: 1px;
margin: 0;
position: absolute;
}
.fs-lightbox-image {
float: left;
}
.fs-lightbox-mobile .fs-lightbox-image {
position: relative;
float: none;
}
.fs-lightbox-video {
width: 100%;
height: 100%;
}
.fs-lightbox-iframe {
width: 100%;
height: 100%;
border: none;
float: left;
overflow: auto;
}
.fs-lightbox-meta {
clear: both;
padding: 10px 10px 0;
}
.fs-lightbox-control {
border: none;
width: 40px;
height: 40px;
position: absolute;
top: 0;
z-index: 105;
background: #ffffff;
border-radius: 100%;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
cursor: pointer;
display: block;
margin-right: auto;
margin-left: auto;
opacity: 1;
overflow: hidden;
text-indent: 200%;
-webkit-transition: opacity 0.15s linear, visibility 0.15s linear;
transition: opacity 0.15s linear, visibility 0.15s linear;
white-space: nowrap;
visibility: visible;
}
.fs-lightbox-control:focus {
outline: none;
}
.fs-lightbox-control:before {
width: 0;
height: 0;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
content: '';
margin: auto;
}
.no-opacity .fs-lightbox-control {
text-indent: -999px;
}
.fs-lightbox-control_previous {
left: 20px;
}
.fs-lightbox-control_previous:before {
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
border-right: 10.4px solid #333333;
margin-left: 14px;
}
.fs-lightbox-control_next {
right: 20px;
}
.fs-lightbox-control_next:before {
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
border-left: 10.4px solid #333333;
margin-right: 14px;
}
.fs-lightbox-control_disabled {
opacity: 0;
visibility: hidden;
}
.no-touch .fs-lightbox .fs-lightbox-control {
opacity: 0;
visibility: hidden;
}
.no-touch .fs-lightbox:hover .fs-lightbox-control {
opacity: 1;
visibility: visible;
}
.no-touch .fs-lightbox .fs-lightbox-control_disabled,
.no-touch .fs-lightbox:hover .fs-lightbox-control_disabled {
opacity: 0;
cursor: default;
visibility: hidden;
}
.fs-lightbox-position {
color: #999999;
font-size: 12px;
margin: 5px 0;
padding: 0;
}
.fs-lightbox-caption:after {
clear: both;
content: '';
display: table;
}
.fs-lightbox-caption p {
color: #666666;
font-size: 14px;
margin: 5px 0;
padding: 0;
}
.fs-lightbox-caption_toggle {
display: none;
}
.fs-lightbox-error {
width: 250px;
}
.fs-lightbox-error p {
color: #990000;
font-size: 14px;
margin: 0;
padding: 25px;
text-align: center;
text-transform: uppercase;
}
.fs-lightbox-loading .fs-lightbox-container {
opacity: 0;
-webkit-transition: opacity 0.25s linear;
transition: opacity 0.25s linear;
visibility: hidden;
}
.fs-lightbox-loading .fs-lightbox-loading_icon {
opacity: 1;
visibility: visible;
}
.fs-lightbox-mobile {
width: 100%;
height: 100%;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #111111;
border-radius: 0;
padding: 40px 0 0;
}
.fs-lightbox-mobile .fs-lightbox-close {
height: 40px;
width: 40px;
top: 0;
right: 0;
background: #111111;
border-radius: 0;
}
.fs-lightbox-mobile .fs-lightbox-close:before {
color: #cccccc;
font-size: 28px;
font-weight: 700;
line-height: 40px;
}
.fs-lightbox-mobile .fs-lightbox-loading_icon:before {
border-color: rgba(153, 153, 153, 0.25);
}
.fs-lightbox-mobile .fs-lightbox-loading_icon:after {
border-top-color: #999999;
}
.fs-lightbox-mobile .fs-lightbox-container {
position: static;
background: #111111;
}
.fs-lightbox-mobile .fs-lightbox-content {
background-color: #111111;
padding: 0 15px;
}
.fs-lightbox-mobile .fs-lightbox-tools {
width: 100%;
position: fixed;
right: 0;
bottom: 0;
left: 0;
background-color: #111111;
}
.fs-lightbox-mobile .fs-lightbox-control {
width: 50px;
height: 100%;
min-height: 50px;
background: #111111;
border-radius: 0;
box-shadow: none;
opacity: 1;
visibility: visible;
}
.fs-lightbox-mobile .fs-lightbox-control_previous {
left: 0;
}
.fs-lightbox-mobile .fs-lightbox-control_previous:before {
border-right-color: #eeeeee;
margin-left: 19px;
}
.fs-lightbox-mobile .fs-lightbox-control_next {
right: 0;
}
.fs-lightbox-mobile .fs-lightbox-control_next:before {
border-left-color: #eeeeee;
margin-right: 19px;
}
.no-touch .fs-lightbox-mobile .fs-lightbox-control,
.no-touch .fs-lightbox-mobile:hover .fs-lightbox-control {
opacity: 1;
visibility: visible;
}
.fs-lightbox-mobile .fs-lightbox-control_disabled,
.no-touch .fs-lightbox-mobile .fs-lightbox-control_disabled,
.no-touch .fs-lightbox-mobile:hover .fs-lightbox-control_disabled {
opacity: 0;
cursor: default !important;
visibility: hidden;
}
.fs-lightbox-mobile .fs-lightbox-meta {
padding: 15px 65px;
}
.fs-lightbox-mobile .fs-lightbox-position {
color: #999999;
font-size: 12px;
margin: 0;
padding: 0 15px 0 0;
}
.fs-lightbox-mobile .fs-lightbox-caption p {
color: #eeeeee;
font-size: 14px;
margin: 0;
padding: 0;
}
.fs-lightbox-mobile .fs-lightbox-image {
-webkit-transition: none !important;
transition: none !important;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
}
.fs-lightbox-mobile.fs-lightbox-animated .fs-lightbox-image {
-webkit-transition: -webkit-transform 0.25s ease-out !important;
transition: transform 0.25s ease-out !important;
}
.fs-lightbox-mobile.fs-lightbox-inline .fs-lightbox-content,
.fs-lightbox-mobile.fs-lightbox-iframe .fs-lightbox-content {
height: 100%;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
.fs-lightbox-lock {
overflow: hidden !important;
}
.fs-lightbox-mobile.fs-lightbox-touch .fs-lightbox-tools {
width: auto;
position: static;
background: transparent;
}
.fs-lightbox-mobile.fs-lightbox-touch .fs-lightbox-controls {
width: 100%;
height: 50px;
position: fixed;
right: 0;
bottom: 0;
left: 0;
z-index: 105;
background-color: #111111;
padding: 0 65px;
}
.fs-lightbox-mobile.fs-lightbox-touch .fs-lightbox-caption_toggle {
color: #999999;
display: block;
font-size: 12px;
line-height: 50px;
}
.fs-lightbox-mobile.fs-lightbox-touch .fs-lightbox-meta {
width: 100%;
height: 80%;
position: fixed;
top: 20%;
right: 0;
bottom: 0;
left: 0;
z-index: 104;
background: #222222;
box-shadow: 0 0 25px #000000;
padding: 15px 15px 65px;
-webkit-transform: translate(0, 100%);
-ms-transform: translate(0, 100%);
transform: translate(0, 100%);
-webkit-transition: -webkit-transform 0.25s ease;
transition: transform 0.25s ease;
}
.fs-lightbox-touch.fs-lightbox-caption_open .fs-lightbox-meta {
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
}
|
ajax/libs/survey-vue/0.12.23/survey.css | joeyparrish/cdnjs | /*!
* surveyjs - Survey JavaScript library v0.12.23
* Copyright (c) 2015-2017 Devsoft Baltic OÜ - http://surveyjs.org/
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
*/
.sv_window {
position: fixed;
bottom: 3px;
right: 10px;
background-color: cadetblue;
padding: 1px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
white-space: normal;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
line-break: auto; }
.sv_window_title {
padding: 8px 14px;
margin: 0;
font-size: 14px;
background-color: #f7f7f7;
border-bottom: 1px solid #ebebeb;
border-radius: 5px 5px 0 0; }
.sv_window_content {
padding: 8px;
margin: 0; }
.sv_window_title a, .sv_window_title a:link, .sv_window_title a:visited {
text-decoration: none;
font-size: 14px;
font-style: normal;
color: black; }
.sv_main {
width: 100%; }
sv_body {
margin-bottom: 10px; }
.sv_page_empty {
height: 100px;
width: 100%;
display: table; }
.sv_page_empty_content {
display: table-cell;
vertical-align: middle;
text-align: center; }
.sv_row {
border-bottom: 1px solid #ccc;
border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
.sv_q {
padding: 10px 3px;
margin: 0;
clear: none;
box-sizing: border-box; }
.sv_q_title {
width: 100%; }
.sv_q_description {
font-size: small;
width: 100%; }
.sv_q_erbox {
padding: 2px;
color: red; }
.sv_q_matrix {
width: 100%;
max-width: 100%; }
.sv_q_matrix th, .sv_q_matrix td {
text-align: center;
vertical-align: central; }
.sv_q_matrix td:first-child {
text-align: left; }
.sv_q_checkbox {
display: inline-block; }
.sv_q_other {
padding-left: 4px; }
.sv_q_radiogroup {
display: inline-block; }
.sv_q_rating {
display: inline-block; }
.sv_q_rating > :first-child {
border-bottom-left-radius: 4px;
border-top-left-radius: 4px; }
.sv_q_rating > :last-child {
border-bottom-right-radius: 4px;
border-top-right-radius: 4px; }
.sv_q_rating_item {
margin-left: -1px;
padding: 6px 12px;
margin-bottom: 0px;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid #ccc; }
.sv_q_rating_item.active {
background-color: #d4d4d4;
border-color: #8c8c8c; }
.sv_q_rating_item:hover {
background-color: #e6e6e6;
border-color: #adadad; }
.sv_q_rating > .sv_q_rating_item input[type='radio'] {
position: absolute;
clip: rect(0px, 0px, 0px, 0px);
pointer-events: none; }
|
www/lib/angular-material/modules/js/radioButton/radioButton.css | GDGGhana/GDGGhana.github.io | /*!
* Angular Material Design
* https://github.com/angular/material
* @license MIT
* v0.10.0
*/
/* mixin definition ; sets LTR and RTL within the same style call */
md-radio-button, .md-switch-thumb {
box-sizing: border-box;
display: block;
margin: 15px;
white-space: nowrap;
cursor: pointer; }
md-radio-button *, md-radio-button *:before, md-radio-button *:after, .md-switch-thumb *, .md-switch-thumb *:before, .md-switch-thumb *:after {
box-sizing: border-box; }
md-radio-button input, .md-switch-thumb input {
display: none; }
md-radio-button .md-container, .md-switch-thumb .md-container {
position: relative;
top: 4px;
display: inline-block;
width: 16px;
height: 16px;
cursor: pointer; }
md-radio-button .md-container .md-ripple-container, .md-switch-thumb .md-container .md-ripple-container {
position: absolute;
display: block;
width: 48px;
height: 48px;
left: -16px;
top: -16px; }
md-radio-button .md-container:before, .md-switch-thumb .md-container:before {
background-color: transparent;
border-radius: 50%;
content: '';
position: absolute;
display: block;
height: auto;
left: 0;
top: 0;
right: 0;
bottom: 0;
transition: all 0.5s;
width: auto; }
md-radio-button .md-off, .md-switch-thumb .md-off {
position: absolute;
top: 0;
left: 0;
width: 16px;
height: 16px;
border-style: solid;
border-width: 2px;
border-radius: 50%;
transition: border-color ease 0.28s; }
md-radio-button .md-on, .md-switch-thumb .md-on {
position: absolute;
top: 0;
left: 0;
width: 16px;
height: 16px;
border-radius: 50%;
transition: -webkit-transform ease 0.28s;
transition: transform ease 0.28s;
-webkit-transform: scale(0);
transform: scale(0); }
md-radio-button.md-checked .md-on, .md-switch-thumb.md-checked .md-on {
-webkit-transform: scale(0.5);
transform: scale(0.5); }
md-radio-button .md-label, .md-switch-thumb .md-label {
position: relative;
display: inline-block;
margin-left: 10px;
margin-right: 10px;
vertical-align: middle;
white-space: normal;
pointer-events: none;
width: auto; }
md-radio-button .circle, .md-switch-thumb .circle {
border-radius: 50%; }
md-radio-group:focus {
outline: none; }
md-radio-group.md-focused .md-checked .md-container:before {
left: -8px;
top: -8px;
right: -8px;
bottom: -8px; }
@media screen and (-ms-high-contrast: active) {
md-radio-button.md-default-theme .md-on {
background-color: #fff; } }
|
tests/wpt/web-platform-tests/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/cross-origin.http.html | danlrobertson/servo | <!DOCTYPE html>
<!-- DO NOT EDIT! Generated by referrer-policy/generic/tools/generate.py using referrer-policy/generic/template/test.release.html.template. -->
<html>
<head>
<title>Referrer-Policy: Referrer Policy is set to 'same-origin'</title>
<meta name="description" content="Check that cross-origin subresources get no referrer information and same-origin get the stripped referrer URL.">
<meta name="referrer" content="same-origin">
<link rel="author" title="Kristijan Burnik" href="[email protected]">
<link rel="help" href="https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-same-origin">
<meta name="assert" content="The referrer URL is omitted when a
document served over http requires an https
sub-resource via iframe-tag using the meta-referrer
delivery method with swap-origin-redirect and when
the target request is cross-origin.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<!-- TODO(kristijanburnik): Minify and merge both: -->
<script src="/referrer-policy/generic/common.js"></script>
<script src="/referrer-policy/generic/referrer-policy-test-case.js?pipe=sub"></script>
</head>
<body>
<script>
ReferrerPolicyTestCase(
{
"referrer_policy": "same-origin",
"delivery_method": "meta-referrer",
"redirection": "swap-origin-redirect",
"origin": "cross-origin",
"source_protocol": "http",
"target_protocol": "https",
"subresource": "iframe-tag",
"subresource_path": "/referrer-policy/generic/subresource/document.py",
"referrer_url": "omitted"
},
document.querySelector("meta[name=assert]").content,
new SanityChecker()
).start();
</script>
<div id="log"></div>
</body>
</html>
|
ajax/libs/fixed-data-table/0.4.2/fixed-data-table-base.css | menuka94/cdnjs | /**
* FixedDataTable v0.4.2
*
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
/**
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule ScrollbarLayout
*/
.ScrollbarLayout_main {
box-sizing: border-box;
outline: none;
overflow: hidden;
position: absolute;
-webkit-transition-duration: 250ms;
transition-duration: 250ms;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.ScrollbarLayout_mainVertical {
bottom: 0;
right: 0;
top: 0;
-webkit-transition-property: background-color width;
transition-property: background-color width;
width: 15px;
}
.ScrollbarLayout_mainVertical.public_Scrollbar_mainActive,
.ScrollbarLayout_mainVertical:hover {
width: 17px;
}
.ScrollbarLayout_mainHorizontal {
bottom: 0;
height: 15px;
left: 0;
-webkit-transition-property: background-color height;
transition-property: background-color height;
}
/* Touching the scroll-track directly makes the scroll-track bolder */
.ScrollbarLayout_mainHorizontal.public_Scrollbar_mainActive,
.ScrollbarLayout_mainHorizontal:hover {
height: 17px;
}
.ScrollbarLayout_face {
left: 0;
overflow: hidden;
position: absolute;
z-index: 1;
}
/**
* This selector renders the "nub" of the scrollface. The nub must
* be rendered as pseudo-element so that it won't receive any UI events then
* we can get the correct `event.offsetX` and `event.offsetY` from the
* scrollface element while dragging it.
*/
.ScrollbarLayout_face:after {
border-radius: 6px;
content: '';
display: block;
position: absolute;
-webkit-transition: background-color 250ms ease;
transition: background-color 250ms ease;
}
.ScrollbarLayout_faceHorizontal {
bottom: 0;
left: 0;
top: 0;
}
.ScrollbarLayout_faceHorizontal:after {
bottom: 4px;
left: 0;
top: 4px;
width: 100%;
}
.ScrollbarLayout_faceVertical {
left: 0;
right: 0;
top: 0;
}
.ScrollbarLayout_faceVertical:after {
height: 100%;
left: 4px;
right: 4px;
top: 0;
}
/**
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule fixedDataTableCellGroupLayout
*/
.fixedDataTableCellGroupLayout_cellGroup {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
left: 0;
overflow: hidden;
position: absolute;
top: 0;
white-space: nowrap;
}
.fixedDataTableCellGroupLayout_cellGroup > .public_fixedDataTableCell_main {
display: inline-block;
vertical-align: top;
white-space: normal;
}
.fixedDataTableCellGroupLayout_cellGroupWrapper {
position: absolute;
top: 0;
}
/**
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule fixedDataTableCellLayout
*/
.fixedDataTableCellLayout_main {
border-right-style: solid;
border-right-width: 1px;
border-width: 0 1px 0 0;
box-sizing: border-box;
display: block;
overflow: hidden;
position: absolute;
white-space: normal;
}
.fixedDataTableCellLayout_lastChild {
border-width: 0 1px 1px 0;
}
.fixedDataTableCellLayout_alignRight {
text-align: right;
}
.fixedDataTableCellLayout_alignCenter {
text-align: center;
}
.fixedDataTableCellLayout_wrap1 {
display: table;
}
.fixedDataTableCellLayout_wrap2 {
display: table-row;
}
.fixedDataTableCellLayout_wrap3 {
display: table-cell;
vertical-align: middle;
}
.fixedDataTableCellLayout_columnResizerContainer {
position: absolute;
right: 0px;
width: 6px;
z-index: 1;
}
.fixedDataTableCellLayout_columnResizerContainer:hover {
cursor: ew-resize;
}
.fixedDataTableCellLayout_columnResizerContainer:hover .fixedDataTableCellLayout_columnResizerKnob {
visibility: visible;
}
.fixedDataTableCellLayout_columnResizerKnob {
position: absolute;
right: 0px;
visibility: hidden;
width: 4px;
}
/**
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule fixedDataTableColumnResizerLineLayout
*/
.fixedDataTableColumnResizerLineLayout_mouseArea {
cursor: ew-resize;
position: absolute;
right: -5px;
width: 12px;
}
.fixedDataTableColumnResizerLineLayout_main {
border-right-style: solid;
border-right-width: 1px;
box-sizing: border-box;
position: absolute;
z-index: 10;
}
body[dir="rtl"] .fixedDataTableColumnResizerLineLayout_main {
/* the resizer line is in the wrong position in RTL with no easy fix.
* Disabling is more useful than displaying it.
* #167 (github) should look into this and come up with a permanent fix.
*/
display: none !important;
}
.fixedDataTableColumnResizerLineLayout_hiddenElem {
display: none !important;
}
/**
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule fixedDataTableLayout
*/
.fixedDataTableLayout_main {
border-style: solid;
border-width: 1px;
box-sizing: border-box;
overflow: hidden;
position: relative;
}
.fixedDataTableLayout_header,
.fixedDataTableLayout_hasBottomBorder {
border-bottom-style: solid;
border-bottom-width: 1px;
}
.fixedDataTableLayout_footer .public_fixedDataTableCell_main {
border-top-style: solid;
border-top-width: 1px;
}
.fixedDataTableLayout_topShadow,
.fixedDataTableLayout_bottomShadow {
height: 4px;
left: 0;
position: absolute;
right: 0;
z-index: 1;
}
.fixedDataTableLayout_bottomShadow {
margin-top: -4px;
}
.fixedDataTableLayout_rowsContainer {
overflow: hidden;
position: relative;
}
.fixedDataTableLayout_horizontalScrollbar {
bottom: 0;
position: absolute;
}
/**
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule fixedDataTableRowLayout
*/
.fixedDataTableRowLayout_main {
box-sizing: border-box;
overflow: hidden;
position: absolute;
top: 0;
}
.fixedDataTableRowLayout_body {
left: 0;
position: absolute;
top: 0;
}
.fixedDataTableRowLayout_fixedColumnsDivider {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
border-left-style: solid;
border-left-width: 1px;
left: 0;
position: absolute;
top: 0;
width: 0;
}
.fixedDataTableRowLayout_columnsShadow {
width: 4px;
}
.fixedDataTableRowLayout_rowWrapper {
position: absolute;
top: 0;
}
|
tests/wpt/web-platform-tests/html/browsers/browsing-the-web/navigating-across-documents/source/navigate-child-function-parent.html | anthgur/servo | <!doctype html>
<meta charset=utf-8>
<title>Set location from a parent</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<iframe></iframe>
<script>
onload = function() {
var fr = document.querySelector("iframe")
fr.contentWindow.location = "support/dummy.html"
fr.onload = function() {
assert_equals(fr.contentDocument.referrer, document.URL)
done()
}
}
</script>
|
www-dev/src/bower-assets/neon-animation/animations/slide-down-animation.html | iShafayet/nedbmgr | <!--
@license
Copyright (c) 2015 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
-->
<link rel="import" href="../../polymer/polymer.html">
<link rel="import" href="../neon-animation-behavior.html">
<link rel="import" href="../web-animations.html">
<!--
`<slide-down-animation>` animates the transform of an element from `none` `translateY(100%)`.
The `transformOrigin` defaults to `50% 0`.
Configuration:
```
{
name: 'slide-down-animation',
node: <node>,
transformOrigin: <transform-origin>,
timing: <animation-timing>
}
```
-->
<script>
Polymer({
is: 'slide-down-animation',
behaviors: [
Polymer.NeonAnimationBehavior
],
configure: function(config) {
var node = config.node;
this._effect = new KeyframeEffect(node, [
{'transform': 'translateY(0%)'},
{'transform': 'translateY(100%)'}
], this.timingFromConfig(config));
if (config.transformOrigin) {
this.setPrefixedProperty(node, 'transformOrigin', config.transformOrigin);
} else {
this.setPrefixedProperty(node, 'transformOrigin', '50% 0');
}
return this._effect;
}
});
</script>
|
yafsrc/YetAnotherForum.NET/Scripts/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css | YAFNET/YAFNET | .scayt-lang-list > div
{
padding-bottom: 6px !important;
}
.scayt-lang-list > div input
{
margin-right: 4px;
}
#scayt_about_
{
margin: 30px auto 0 auto;
}
#scayt_about_ p
{
text-align: center;
margin-bottom: 10px;
}
.cke_dialog_contents_body div[name=dictionaries] .cke_dialog_ui_hbox_last > a.cke_dialog_ui_button
{
margin-top: 0;
}
|
software/externals/sam/CMSIS/Device/ATMEL/sam4s/html/SMC.html | MITHyperloopTeam/software_core | <?xml version="1.0" encoding="UTF-8"?>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>SAM4S SMC</title>
<link rel="stylesheet" type="text/css" href="css/html.css" media="all" />
</head>
<body id="abstract">
<div id="container">
<div id="content">
<a id="SMC"></a>
<h1>SAM4S SMC</h1>
<a id="SMC__User_Interface"></a>
<h2>Static Memory Controller (SMC) User Interface</h2>
<!--As per 6498C programmer datasheet.-->
<h3>Registers</h3>
<table class="registers">
<caption>Register Mapping</caption>
<thead>
<tr>
<th class="address">Address</th>
<th class="description">Register</th>
<th class="name">Name</th>
<th class="access">Access</th>
<th class="reset">Reset</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="address" id="address_0x400E0000">0x400E0000</td>
<td class="description">SMC Setup Register (CS_number = 0)</td>
<td class="name">
<a href="#SMC_SETUP0" title="SMC Setup Register (CS_number = 0)" class="one_click_away">SMC_SETUP0</a>
</td>
<td class="access">read-write</td>
<td class="address">0x01010101</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400E0004">0x400E0004</td>
<td class="description">SMC Pulse Register (CS_number = 0)</td>
<td class="name">
<a href="#SMC_PULSE0" title="SMC Pulse Register (CS_number = 0)" class="one_click_away">SMC_PULSE0</a>
</td>
<td class="access">read-write</td>
<td class="address">0x01010101</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400E0008">0x400E0008</td>
<td class="description">SMC Cycle Register (CS_number = 0)</td>
<td class="name">
<a href="#SMC_CYCLE0" title="SMC Cycle Register (CS_number = 0)" class="one_click_away">SMC_CYCLE0</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00030003</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400E000C">0x400E000C</td>
<td class="description">SMC Mode Register (CS_number = 0)</td>
<td class="name">
<a href="#SMC_MODE0" title="SMC Mode Register (CS_number = 0)" class="one_click_away">SMC_MODE0</a>
</td>
<td class="access">read-write</td>
<td class="address">0x10000003</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400E0010">0x400E0010</td>
<td class="description">SMC Setup Register (CS_number = 1)</td>
<td class="name">
<a href="#SMC_SETUP1" title="SMC Setup Register (CS_number = 1)" class="one_click_away">SMC_SETUP1</a>
</td>
<td class="access">read-write</td>
<td class="address">0x01010101</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400E0014">0x400E0014</td>
<td class="description">SMC Pulse Register (CS_number = 1)</td>
<td class="name">
<a href="#SMC_PULSE1" title="SMC Pulse Register (CS_number = 1)" class="one_click_away">SMC_PULSE1</a>
</td>
<td class="access">read-write</td>
<td class="address">0x01010101</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400E0018">0x400E0018</td>
<td class="description">SMC Cycle Register (CS_number = 1)</td>
<td class="name">
<a href="#SMC_CYCLE1" title="SMC Cycle Register (CS_number = 1)" class="one_click_away">SMC_CYCLE1</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00030003</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400E001C">0x400E001C</td>
<td class="description">SMC Mode Register (CS_number = 1)</td>
<td class="name">
<a href="#SMC_MODE1" title="SMC Mode Register (CS_number = 1)" class="one_click_away">SMC_MODE1</a>
</td>
<td class="access">read-write</td>
<td class="address">0x10000003</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400E0020">0x400E0020</td>
<td class="description">SMC Setup Register (CS_number = 2)</td>
<td class="name">
<a href="#SMC_SETUP2" title="SMC Setup Register (CS_number = 2)" class="one_click_away">SMC_SETUP2</a>
</td>
<td class="access">read-write</td>
<td class="address">0x01010101</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400E0024">0x400E0024</td>
<td class="description">SMC Pulse Register (CS_number = 2)</td>
<td class="name">
<a href="#SMC_PULSE2" title="SMC Pulse Register (CS_number = 2)" class="one_click_away">SMC_PULSE2</a>
</td>
<td class="access">read-write</td>
<td class="address">0x01010101</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400E0028">0x400E0028</td>
<td class="description">SMC Cycle Register (CS_number = 2)</td>
<td class="name">
<a href="#SMC_CYCLE2" title="SMC Cycle Register (CS_number = 2)" class="one_click_away">SMC_CYCLE2</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00030003</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400E002C">0x400E002C</td>
<td class="description">SMC Mode Register (CS_number = 2)</td>
<td class="name">
<a href="#SMC_MODE2" title="SMC Mode Register (CS_number = 2)" class="one_click_away">SMC_MODE2</a>
</td>
<td class="access">read-write</td>
<td class="address">0x10000003</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400E0030">0x400E0030</td>
<td class="description">SMC Setup Register (CS_number = 3)</td>
<td class="name">
<a href="#SMC_SETUP3" title="SMC Setup Register (CS_number = 3)" class="one_click_away">SMC_SETUP3</a>
</td>
<td class="access">read-write</td>
<td class="address">0x01010101</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400E0034">0x400E0034</td>
<td class="description">SMC Pulse Register (CS_number = 3)</td>
<td class="name">
<a href="#SMC_PULSE3" title="SMC Pulse Register (CS_number = 3)" class="one_click_away">SMC_PULSE3</a>
</td>
<td class="access">read-write</td>
<td class="address">0x01010101</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400E0038">0x400E0038</td>
<td class="description">SMC Cycle Register (CS_number = 3)</td>
<td class="name">
<a href="#SMC_CYCLE3" title="SMC Cycle Register (CS_number = 3)" class="one_click_away">SMC_CYCLE3</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00030003</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400E003C">0x400E003C</td>
<td class="description">SMC Mode Register (CS_number = 3)</td>
<td class="name">
<a href="#SMC_MODE3" title="SMC Mode Register (CS_number = 3)" class="one_click_away">SMC_MODE3</a>
</td>
<td class="access">read-write</td>
<td class="address">0x10000003</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400E0040">0x400E0040</td>
<td class="description">SMC Setup Register (CS_number = 4)</td>
<td class="name">
<a href="#SMC_SETUP4" title="SMC Setup Register (CS_number = 4)" class="one_click_away">SMC_SETUP4</a>
</td>
<td class="access">read-write</td>
<td class="address">0x01010101</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400E0044">0x400E0044</td>
<td class="description">SMC Pulse Register (CS_number = 4)</td>
<td class="name">
<a href="#SMC_PULSE4" title="SMC Pulse Register (CS_number = 4)" class="one_click_away">SMC_PULSE4</a>
</td>
<td class="access">read-write</td>
<td class="address">0x01010101</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400E0048">0x400E0048</td>
<td class="description">SMC Cycle Register (CS_number = 4)</td>
<td class="name">
<a href="#SMC_CYCLE4" title="SMC Cycle Register (CS_number = 4)" class="one_click_away">SMC_CYCLE4</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00030003</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400E004C">0x400E004C</td>
<td class="description">SMC Mode Register (CS_number = 4)</td>
<td class="name">
<a href="#SMC_MODE4" title="SMC Mode Register (CS_number = 4)" class="one_click_away">SMC_MODE4</a>
</td>
<td class="access">read-write</td>
<td class="address">0x10000003</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400E0080">0x400E0080</td>
<td class="description">SMC OCMS MODE Register</td>
<td class="name">
<a href="#SMC_OCMS" title="SMC OCMS MODE Register" class="one_click_away">SMC_OCMS</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400E0084">0x400E0084</td>
<td class="description">SMC OCMS KEY1 Register</td>
<td class="name">
<a href="#SMC_KEY1" title="SMC OCMS KEY1 Register" class="one_click_away">SMC_KEY1</a>
</td>
<td class="access">write-only</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400E0088">0x400E0088</td>
<td class="description">SMC OCMS KEY2 Register</td>
<td class="name">
<a href="#SMC_KEY2" title="SMC OCMS KEY2 Register" class="one_click_away">SMC_KEY2</a>
</td>
<td class="access">write-only</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400E00E4">0x400E00E4</td>
<td class="description">SMC Write Protect Mode Register</td>
<td class="name">
<a href="#SMC_WPMR" title="SMC Write Protect Mode Register" class="one_click_away">SMC_WPMR</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400E00E8">0x400E00E8</td>
<td class="description">SMC Write Protect Status Register</td>
<td class="name">
<a href="#SMC_WPSR" title="SMC Write Protect Status Register" class="one_click_away">SMC_WPSR</a>
</td>
<td class="access">read-only</td>
<td class="address">0x00000000</td>
</tr>
</tbody>
</table>
<h3>Register Fields</h3>
<h4 id="SMC_SETUP0">SMC SMC Setup Register (CS_number = 0)</h4>
<p><strong>Name</strong>: SMC_SETUP0</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0000</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP0__NCS_RD_SETUP" title="NCS Setup Length in READ Access">NCS_RD_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP0__NRD_SETUP" title="NRD Setup Length">NRD_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP0__NCS_WR_SETUP" title="NCS Setup Length in WRITE Access">NCS_WR_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP0__NWE_SETUP" title="NWE Setup Length">NWE_SETUP</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_SETUP0__NWE_SETUP"><strong>NWE_SETUP</strong>: NWE Setup Length</li>
<p>-</p>
<li id="SMC_SETUP0__NCS_WR_SETUP"><strong>NCS_WR_SETUP</strong>: NCS Setup Length in WRITE Access</li>
<p>-</p>
<li id="SMC_SETUP0__NRD_SETUP"><strong>NRD_SETUP</strong>: NRD Setup Length</li>
<p>-</p>
<li id="SMC_SETUP0__NCS_RD_SETUP"><strong>NCS_RD_SETUP</strong>: NCS Setup Length in READ Access</li>
<p>-</p>
</ul>
<h4 id="SMC_PULSE0">SMC SMC Pulse Register (CS_number = 0)</h4>
<p><strong>Name</strong>: SMC_PULSE0</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0004</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE0__NCS_RD_PULSE" title="NCS Pulse Length in READ Access">NCS_RD_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE0__NRD_PULSE" title="NRD Pulse Length">NRD_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE0__NCS_WR_PULSE" title="NCS Pulse Length in WRITE Access">NCS_WR_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE0__NWE_PULSE" title="NWE Pulse Length">NWE_PULSE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_PULSE0__NWE_PULSE"><strong>NWE_PULSE</strong>: NWE Pulse Length</li>
<p>-</p>
<li id="SMC_PULSE0__NCS_WR_PULSE"><strong>NCS_WR_PULSE</strong>: NCS Pulse Length in WRITE Access</li>
<p>-</p>
<li id="SMC_PULSE0__NRD_PULSE"><strong>NRD_PULSE</strong>: NRD Pulse Length</li>
<p>-</p>
<li id="SMC_PULSE0__NCS_RD_PULSE"><strong>NCS_RD_PULSE</strong>: NCS Pulse Length in READ Access</li>
<p>-</p>
</ul>
<h4 id="SMC_CYCLE0">SMC SMC Cycle Register (CS_number = 0)</h4>
<p><strong>Name</strong>: SMC_CYCLE0</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0008</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_CYCLE0__NRD_CYCLE" title="Total Read Cycle Length">NRD_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_CYCLE0__NRD_CYCLE" title="Total Read Cycle Length">NRD_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_CYCLE0__NWE_CYCLE" title="Total Write Cycle Length">NWE_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_CYCLE0__NWE_CYCLE" title="Total Write Cycle Length">NWE_CYCLE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_CYCLE0__NWE_CYCLE"><strong>NWE_CYCLE</strong>: Total Write Cycle Length</li>
<p>-</p>
<li id="SMC_CYCLE0__NRD_CYCLE"><strong>NRD_CYCLE</strong>: Total Read Cycle Length</li>
<p>-</p>
</ul>
<h4 id="SMC_MODE0">SMC SMC Mode Register (CS_number = 0)</h4>
<p><strong>Name</strong>: SMC_MODE0</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E000C</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE0__PS" title="Page Size">PS</a>
</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE0__PMEN" title="Page Mode Enabled">PMEN</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE0__TDF_MODE" title="TDF Optimization">TDF_MODE</a>
</td>
<td colspan="4">
<a href="#SMC_MODE0__TDF_CYCLES" title="Data Float Time">TDF_CYCLES</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE0__DBW" title="Data Bus Width">DBW</a>
</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE0__EXNW_MODE" title="NWAIT Mode">EXNW_MODE</a>
</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE0__WRITE_MODE" title="">WRITE_MODE</a>
</td>
<td colspan="1">
<a href="#SMC_MODE0__READ_MODE" title="">READ_MODE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_MODE0__READ_MODE">
<strong>READ_MODE</strong>
<table class="values">
<thead>
<tr>
<th>Value</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="value">0</td>
<td class="name">-</td>
<td class="description">The read operation is controlled by the NCS signal.</td>
</tr>
<tr class="even">
<td class="value">1</td>
<td class="name">-</td>
<td class="description">The read operation is controlled by the NRD signal.</td>
</tr>
</tbody>
</table>
</li>
<li id="SMC_MODE0__WRITE_MODE">
<strong>WRITE_MODE</strong>
<table class="values">
<thead>
<tr>
<th>Value</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="value">0</td>
<td class="name">-</td>
<td class="description">The write operation is controlled by the NCS signal.</td>
</tr>
<tr class="even">
<td class="value">1</td>
<td class="name">-</td>
<td class="description">The write operation is controlled by the NWE signal.</td>
</tr>
</tbody>
</table>
</li>
<li id="SMC_MODE0__EXNW_MODE"><strong>EXNW_MODE</strong>: NWAIT Mode<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">DISABLED</td><td class="description">Disabled</td></tr><tr class="even"><td class="value">0x2</td><td class="name">FROZEN</td><td class="description">Frozen Mode</td></tr><tr class="odd"><td class="value">0x3</td><td class="name">READY</td><td class="description">Ready Mode</td></tr></tbody></table></li>
<li id="SMC_MODE0__DBW"><strong>DBW</strong>: Data Bus Width<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">8_BIT</td><td class="description">8-bit bus</td></tr><tr class="even"><td class="value">0x1</td><td class="name">16_BIT</td><td class="description">16-bit bus</td></tr><tr class="odd"><td class="value">0x2</td><td class="name">32_BIT</td><td class="description">32-bit bus</td></tr></tbody></table></li>
<li id="SMC_MODE0__TDF_CYCLES"><strong>TDF_CYCLES</strong>: Data Float Time</li>
<p>-</p>
<li id="SMC_MODE0__TDF_MODE"><strong>TDF_MODE</strong>: TDF Optimization<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">TDF optimization is disabled.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">TDF optimization is enabled.</td></tr></tbody></table></li>
<li id="SMC_MODE0__PMEN"><strong>PMEN</strong>: Page Mode Enabled<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">Standard read is applied.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">Asynchronous burst read in page mode is applied on the corresponding chip select.</td></tr></tbody></table></li>
<li id="SMC_MODE0__PS"><strong>PS</strong>: Page Size<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">4_BYTE</td><td class="description">4-byte page</td></tr><tr class="even"><td class="value">0x1</td><td class="name">8_BYTE</td><td class="description">8-byte page</td></tr><tr class="odd"><td class="value">0x2</td><td class="name">16_BYTE</td><td class="description">16-byte page</td></tr><tr class="even"><td class="value">0x3</td><td class="name">32_BYTE</td><td class="description">32-byte page</td></tr></tbody></table></li>
</ul>
<h4 id="SMC_SETUP1">SMC SMC Setup Register (CS_number = 1)</h4>
<p><strong>Name</strong>: SMC_SETUP1</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0010</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP1__NCS_RD_SETUP" title="NCS Setup Length in READ Access">NCS_RD_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP1__NRD_SETUP" title="NRD Setup Length">NRD_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP1__NCS_WR_SETUP" title="NCS Setup Length in WRITE Access">NCS_WR_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP1__NWE_SETUP" title="NWE Setup Length">NWE_SETUP</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_SETUP1__NWE_SETUP"><strong>NWE_SETUP</strong>: NWE Setup Length</li>
<p>-</p>
<li id="SMC_SETUP1__NCS_WR_SETUP"><strong>NCS_WR_SETUP</strong>: NCS Setup Length in WRITE Access</li>
<p>-</p>
<li id="SMC_SETUP1__NRD_SETUP"><strong>NRD_SETUP</strong>: NRD Setup Length</li>
<p>-</p>
<li id="SMC_SETUP1__NCS_RD_SETUP"><strong>NCS_RD_SETUP</strong>: NCS Setup Length in READ Access</li>
<p>-</p>
</ul>
<h4 id="SMC_PULSE1">SMC SMC Pulse Register (CS_number = 1)</h4>
<p><strong>Name</strong>: SMC_PULSE1</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0014</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE1__NCS_RD_PULSE" title="NCS Pulse Length in READ Access">NCS_RD_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE1__NRD_PULSE" title="NRD Pulse Length">NRD_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE1__NCS_WR_PULSE" title="NCS Pulse Length in WRITE Access">NCS_WR_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE1__NWE_PULSE" title="NWE Pulse Length">NWE_PULSE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_PULSE1__NWE_PULSE"><strong>NWE_PULSE</strong>: NWE Pulse Length</li>
<p>-</p>
<li id="SMC_PULSE1__NCS_WR_PULSE"><strong>NCS_WR_PULSE</strong>: NCS Pulse Length in WRITE Access</li>
<p>-</p>
<li id="SMC_PULSE1__NRD_PULSE"><strong>NRD_PULSE</strong>: NRD Pulse Length</li>
<p>-</p>
<li id="SMC_PULSE1__NCS_RD_PULSE"><strong>NCS_RD_PULSE</strong>: NCS Pulse Length in READ Access</li>
<p>-</p>
</ul>
<h4 id="SMC_CYCLE1">SMC SMC Cycle Register (CS_number = 1)</h4>
<p><strong>Name</strong>: SMC_CYCLE1</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0018</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_CYCLE1__NRD_CYCLE" title="Total Read Cycle Length">NRD_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_CYCLE1__NRD_CYCLE" title="Total Read Cycle Length">NRD_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_CYCLE1__NWE_CYCLE" title="Total Write Cycle Length">NWE_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_CYCLE1__NWE_CYCLE" title="Total Write Cycle Length">NWE_CYCLE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_CYCLE1__NWE_CYCLE"><strong>NWE_CYCLE</strong>: Total Write Cycle Length</li>
<p>-</p>
<li id="SMC_CYCLE1__NRD_CYCLE"><strong>NRD_CYCLE</strong>: Total Read Cycle Length</li>
<p>-</p>
</ul>
<h4 id="SMC_MODE1">SMC SMC Mode Register (CS_number = 1)</h4>
<p><strong>Name</strong>: SMC_MODE1</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E001C</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE1__PS" title="Page Size">PS</a>
</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE1__PMEN" title="Page Mode Enabled">PMEN</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE1__TDF_MODE" title="TDF Optimization">TDF_MODE</a>
</td>
<td colspan="4">
<a href="#SMC_MODE1__TDF_CYCLES" title="Data Float Time">TDF_CYCLES</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE1__DBW" title="Data Bus Width">DBW</a>
</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE1__EXNW_MODE" title="NWAIT Mode">EXNW_MODE</a>
</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE1__WRITE_MODE" title="">WRITE_MODE</a>
</td>
<td colspan="1">
<a href="#SMC_MODE1__READ_MODE" title="">READ_MODE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_MODE1__READ_MODE">
<strong>READ_MODE</strong>
<table class="values">
<thead>
<tr>
<th>Value</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="value">0</td>
<td class="name">-</td>
<td class="description">The read operation is controlled by the NCS signal.</td>
</tr>
<tr class="even">
<td class="value">1</td>
<td class="name">-</td>
<td class="description">The read operation is controlled by the NRD signal.</td>
</tr>
</tbody>
</table>
</li>
<li id="SMC_MODE1__WRITE_MODE">
<strong>WRITE_MODE</strong>
<table class="values">
<thead>
<tr>
<th>Value</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="value">0</td>
<td class="name">-</td>
<td class="description">The write operation is controlled by the NCS signal.</td>
</tr>
<tr class="even">
<td class="value">1</td>
<td class="name">-</td>
<td class="description">The write operation is controlled by the NWE signal.</td>
</tr>
</tbody>
</table>
</li>
<li id="SMC_MODE1__EXNW_MODE"><strong>EXNW_MODE</strong>: NWAIT Mode<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">DISABLED</td><td class="description">Disabled</td></tr><tr class="even"><td class="value">0x2</td><td class="name">FROZEN</td><td class="description">Frozen Mode</td></tr><tr class="odd"><td class="value">0x3</td><td class="name">READY</td><td class="description">Ready Mode</td></tr></tbody></table></li>
<li id="SMC_MODE1__DBW"><strong>DBW</strong>: Data Bus Width<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">8_BIT</td><td class="description">8-bit bus</td></tr><tr class="even"><td class="value">0x1</td><td class="name">16_BIT</td><td class="description">16-bit bus</td></tr><tr class="odd"><td class="value">0x2</td><td class="name">32_BIT</td><td class="description">32-bit bus</td></tr></tbody></table></li>
<li id="SMC_MODE1__TDF_CYCLES"><strong>TDF_CYCLES</strong>: Data Float Time</li>
<p>-</p>
<li id="SMC_MODE1__TDF_MODE"><strong>TDF_MODE</strong>: TDF Optimization<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">TDF optimization is disabled.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">TDF optimization is enabled.</td></tr></tbody></table></li>
<li id="SMC_MODE1__PMEN"><strong>PMEN</strong>: Page Mode Enabled<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">Standard read is applied.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">Asynchronous burst read in page mode is applied on the corresponding chip select.</td></tr></tbody></table></li>
<li id="SMC_MODE1__PS"><strong>PS</strong>: Page Size<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">4_BYTE</td><td class="description">4-byte page</td></tr><tr class="even"><td class="value">0x1</td><td class="name">8_BYTE</td><td class="description">8-byte page</td></tr><tr class="odd"><td class="value">0x2</td><td class="name">16_BYTE</td><td class="description">16-byte page</td></tr><tr class="even"><td class="value">0x3</td><td class="name">32_BYTE</td><td class="description">32-byte page</td></tr></tbody></table></li>
</ul>
<h4 id="SMC_SETUP2">SMC SMC Setup Register (CS_number = 2)</h4>
<p><strong>Name</strong>: SMC_SETUP2</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0020</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP2__NCS_RD_SETUP" title="NCS Setup Length in READ Access">NCS_RD_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP2__NRD_SETUP" title="NRD Setup Length">NRD_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP2__NCS_WR_SETUP" title="NCS Setup Length in WRITE Access">NCS_WR_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP2__NWE_SETUP" title="NWE Setup Length">NWE_SETUP</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_SETUP2__NWE_SETUP"><strong>NWE_SETUP</strong>: NWE Setup Length</li>
<p>-</p>
<li id="SMC_SETUP2__NCS_WR_SETUP"><strong>NCS_WR_SETUP</strong>: NCS Setup Length in WRITE Access</li>
<p>-</p>
<li id="SMC_SETUP2__NRD_SETUP"><strong>NRD_SETUP</strong>: NRD Setup Length</li>
<p>-</p>
<li id="SMC_SETUP2__NCS_RD_SETUP"><strong>NCS_RD_SETUP</strong>: NCS Setup Length in READ Access</li>
<p>-</p>
</ul>
<h4 id="SMC_PULSE2">SMC SMC Pulse Register (CS_number = 2)</h4>
<p><strong>Name</strong>: SMC_PULSE2</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0024</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE2__NCS_RD_PULSE" title="NCS Pulse Length in READ Access">NCS_RD_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE2__NRD_PULSE" title="NRD Pulse Length">NRD_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE2__NCS_WR_PULSE" title="NCS Pulse Length in WRITE Access">NCS_WR_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE2__NWE_PULSE" title="NWE Pulse Length">NWE_PULSE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_PULSE2__NWE_PULSE"><strong>NWE_PULSE</strong>: NWE Pulse Length</li>
<p>-</p>
<li id="SMC_PULSE2__NCS_WR_PULSE"><strong>NCS_WR_PULSE</strong>: NCS Pulse Length in WRITE Access</li>
<p>-</p>
<li id="SMC_PULSE2__NRD_PULSE"><strong>NRD_PULSE</strong>: NRD Pulse Length</li>
<p>-</p>
<li id="SMC_PULSE2__NCS_RD_PULSE"><strong>NCS_RD_PULSE</strong>: NCS Pulse Length in READ Access</li>
<p>-</p>
</ul>
<h4 id="SMC_CYCLE2">SMC SMC Cycle Register (CS_number = 2)</h4>
<p><strong>Name</strong>: SMC_CYCLE2</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0028</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_CYCLE2__NRD_CYCLE" title="Total Read Cycle Length">NRD_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_CYCLE2__NRD_CYCLE" title="Total Read Cycle Length">NRD_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_CYCLE2__NWE_CYCLE" title="Total Write Cycle Length">NWE_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_CYCLE2__NWE_CYCLE" title="Total Write Cycle Length">NWE_CYCLE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_CYCLE2__NWE_CYCLE"><strong>NWE_CYCLE</strong>: Total Write Cycle Length</li>
<p>-</p>
<li id="SMC_CYCLE2__NRD_CYCLE"><strong>NRD_CYCLE</strong>: Total Read Cycle Length</li>
<p>-</p>
</ul>
<h4 id="SMC_MODE2">SMC SMC Mode Register (CS_number = 2)</h4>
<p><strong>Name</strong>: SMC_MODE2</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E002C</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE2__PS" title="Page Size">PS</a>
</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE2__PMEN" title="Page Mode Enabled">PMEN</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE2__TDF_MODE" title="TDF Optimization">TDF_MODE</a>
</td>
<td colspan="4">
<a href="#SMC_MODE2__TDF_CYCLES" title="Data Float Time">TDF_CYCLES</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE2__DBW" title="Data Bus Width">DBW</a>
</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE2__EXNW_MODE" title="NWAIT Mode">EXNW_MODE</a>
</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE2__WRITE_MODE" title="">WRITE_MODE</a>
</td>
<td colspan="1">
<a href="#SMC_MODE2__READ_MODE" title="">READ_MODE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_MODE2__READ_MODE">
<strong>READ_MODE</strong>
<table class="values">
<thead>
<tr>
<th>Value</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="value">0</td>
<td class="name">-</td>
<td class="description">The read operation is controlled by the NCS signal.</td>
</tr>
<tr class="even">
<td class="value">1</td>
<td class="name">-</td>
<td class="description">The read operation is controlled by the NRD signal.</td>
</tr>
</tbody>
</table>
</li>
<li id="SMC_MODE2__WRITE_MODE">
<strong>WRITE_MODE</strong>
<table class="values">
<thead>
<tr>
<th>Value</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="value">0</td>
<td class="name">-</td>
<td class="description">The write operation is controlled by the NCS signal.</td>
</tr>
<tr class="even">
<td class="value">1</td>
<td class="name">-</td>
<td class="description">The write operation is controlled by the NWE signal.</td>
</tr>
</tbody>
</table>
</li>
<li id="SMC_MODE2__EXNW_MODE"><strong>EXNW_MODE</strong>: NWAIT Mode<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">DISABLED</td><td class="description">Disabled</td></tr><tr class="even"><td class="value">0x2</td><td class="name">FROZEN</td><td class="description">Frozen Mode</td></tr><tr class="odd"><td class="value">0x3</td><td class="name">READY</td><td class="description">Ready Mode</td></tr></tbody></table></li>
<li id="SMC_MODE2__DBW"><strong>DBW</strong>: Data Bus Width<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">8_BIT</td><td class="description">8-bit bus</td></tr><tr class="even"><td class="value">0x1</td><td class="name">16_BIT</td><td class="description">16-bit bus</td></tr><tr class="odd"><td class="value">0x2</td><td class="name">32_BIT</td><td class="description">32-bit bus</td></tr></tbody></table></li>
<li id="SMC_MODE2__TDF_CYCLES"><strong>TDF_CYCLES</strong>: Data Float Time</li>
<p>-</p>
<li id="SMC_MODE2__TDF_MODE"><strong>TDF_MODE</strong>: TDF Optimization<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">TDF optimization is disabled.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">TDF optimization is enabled.</td></tr></tbody></table></li>
<li id="SMC_MODE2__PMEN"><strong>PMEN</strong>: Page Mode Enabled<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">Standard read is applied.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">Asynchronous burst read in page mode is applied on the corresponding chip select.</td></tr></tbody></table></li>
<li id="SMC_MODE2__PS"><strong>PS</strong>: Page Size<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">4_BYTE</td><td class="description">4-byte page</td></tr><tr class="even"><td class="value">0x1</td><td class="name">8_BYTE</td><td class="description">8-byte page</td></tr><tr class="odd"><td class="value">0x2</td><td class="name">16_BYTE</td><td class="description">16-byte page</td></tr><tr class="even"><td class="value">0x3</td><td class="name">32_BYTE</td><td class="description">32-byte page</td></tr></tbody></table></li>
</ul>
<h4 id="SMC_SETUP3">SMC SMC Setup Register (CS_number = 3)</h4>
<p><strong>Name</strong>: SMC_SETUP3</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0030</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP3__NCS_RD_SETUP" title="NCS Setup Length in READ Access">NCS_RD_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP3__NRD_SETUP" title="NRD Setup Length">NRD_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP3__NCS_WR_SETUP" title="NCS Setup Length in WRITE Access">NCS_WR_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP3__NWE_SETUP" title="NWE Setup Length">NWE_SETUP</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_SETUP3__NWE_SETUP"><strong>NWE_SETUP</strong>: NWE Setup Length</li>
<p>-</p>
<li id="SMC_SETUP3__NCS_WR_SETUP"><strong>NCS_WR_SETUP</strong>: NCS Setup Length in WRITE Access</li>
<p>-</p>
<li id="SMC_SETUP3__NRD_SETUP"><strong>NRD_SETUP</strong>: NRD Setup Length</li>
<p>-</p>
<li id="SMC_SETUP3__NCS_RD_SETUP"><strong>NCS_RD_SETUP</strong>: NCS Setup Length in READ Access</li>
<p>-</p>
</ul>
<h4 id="SMC_PULSE3">SMC SMC Pulse Register (CS_number = 3)</h4>
<p><strong>Name</strong>: SMC_PULSE3</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0034</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE3__NCS_RD_PULSE" title="NCS Pulse Length in READ Access">NCS_RD_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE3__NRD_PULSE" title="NRD Pulse Length">NRD_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE3__NCS_WR_PULSE" title="NCS Pulse Length in WRITE Access">NCS_WR_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE3__NWE_PULSE" title="NWE Pulse Length">NWE_PULSE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_PULSE3__NWE_PULSE"><strong>NWE_PULSE</strong>: NWE Pulse Length</li>
<p>-</p>
<li id="SMC_PULSE3__NCS_WR_PULSE"><strong>NCS_WR_PULSE</strong>: NCS Pulse Length in WRITE Access</li>
<p>-</p>
<li id="SMC_PULSE3__NRD_PULSE"><strong>NRD_PULSE</strong>: NRD Pulse Length</li>
<p>-</p>
<li id="SMC_PULSE3__NCS_RD_PULSE"><strong>NCS_RD_PULSE</strong>: NCS Pulse Length in READ Access</li>
<p>-</p>
</ul>
<h4 id="SMC_CYCLE3">SMC SMC Cycle Register (CS_number = 3)</h4>
<p><strong>Name</strong>: SMC_CYCLE3</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0038</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_CYCLE3__NRD_CYCLE" title="Total Read Cycle Length">NRD_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_CYCLE3__NRD_CYCLE" title="Total Read Cycle Length">NRD_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_CYCLE3__NWE_CYCLE" title="Total Write Cycle Length">NWE_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_CYCLE3__NWE_CYCLE" title="Total Write Cycle Length">NWE_CYCLE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_CYCLE3__NWE_CYCLE"><strong>NWE_CYCLE</strong>: Total Write Cycle Length</li>
<p>-</p>
<li id="SMC_CYCLE3__NRD_CYCLE"><strong>NRD_CYCLE</strong>: Total Read Cycle Length</li>
<p>-</p>
</ul>
<h4 id="SMC_MODE3">SMC SMC Mode Register (CS_number = 3)</h4>
<p><strong>Name</strong>: SMC_MODE3</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E003C</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE3__PS" title="Page Size">PS</a>
</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE3__PMEN" title="Page Mode Enabled">PMEN</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE3__TDF_MODE" title="TDF Optimization">TDF_MODE</a>
</td>
<td colspan="4">
<a href="#SMC_MODE3__TDF_CYCLES" title="Data Float Time">TDF_CYCLES</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE3__DBW" title="Data Bus Width">DBW</a>
</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE3__EXNW_MODE" title="NWAIT Mode">EXNW_MODE</a>
</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE3__WRITE_MODE" title="">WRITE_MODE</a>
</td>
<td colspan="1">
<a href="#SMC_MODE3__READ_MODE" title="">READ_MODE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_MODE3__READ_MODE">
<strong>READ_MODE</strong>
<table class="values">
<thead>
<tr>
<th>Value</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="value">0</td>
<td class="name">-</td>
<td class="description">The read operation is controlled by the NCS signal.</td>
</tr>
<tr class="even">
<td class="value">1</td>
<td class="name">-</td>
<td class="description">The read operation is controlled by the NRD signal.</td>
</tr>
</tbody>
</table>
</li>
<li id="SMC_MODE3__WRITE_MODE">
<strong>WRITE_MODE</strong>
<table class="values">
<thead>
<tr>
<th>Value</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="value">0</td>
<td class="name">-</td>
<td class="description">The write operation is controlled by the NCS signal.</td>
</tr>
<tr class="even">
<td class="value">1</td>
<td class="name">-</td>
<td class="description">The write operation is controlled by the NWE signal.</td>
</tr>
</tbody>
</table>
</li>
<li id="SMC_MODE3__EXNW_MODE"><strong>EXNW_MODE</strong>: NWAIT Mode<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">DISABLED</td><td class="description">Disabled</td></tr><tr class="even"><td class="value">0x2</td><td class="name">FROZEN</td><td class="description">Frozen Mode</td></tr><tr class="odd"><td class="value">0x3</td><td class="name">READY</td><td class="description">Ready Mode</td></tr></tbody></table></li>
<li id="SMC_MODE3__DBW"><strong>DBW</strong>: Data Bus Width<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">8_BIT</td><td class="description">8-bit bus</td></tr><tr class="even"><td class="value">0x1</td><td class="name">16_BIT</td><td class="description">16-bit bus</td></tr><tr class="odd"><td class="value">0x2</td><td class="name">32_BIT</td><td class="description">32-bit bus</td></tr></tbody></table></li>
<li id="SMC_MODE3__TDF_CYCLES"><strong>TDF_CYCLES</strong>: Data Float Time</li>
<p>-</p>
<li id="SMC_MODE3__TDF_MODE"><strong>TDF_MODE</strong>: TDF Optimization<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">TDF optimization is disabled.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">TDF optimization is enabled.</td></tr></tbody></table></li>
<li id="SMC_MODE3__PMEN"><strong>PMEN</strong>: Page Mode Enabled<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">Standard read is applied.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">Asynchronous burst read in page mode is applied on the corresponding chip select.</td></tr></tbody></table></li>
<li id="SMC_MODE3__PS"><strong>PS</strong>: Page Size<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">4_BYTE</td><td class="description">4-byte page</td></tr><tr class="even"><td class="value">0x1</td><td class="name">8_BYTE</td><td class="description">8-byte page</td></tr><tr class="odd"><td class="value">0x2</td><td class="name">16_BYTE</td><td class="description">16-byte page</td></tr><tr class="even"><td class="value">0x3</td><td class="name">32_BYTE</td><td class="description">32-byte page</td></tr></tbody></table></li>
</ul>
<h4 id="SMC_SETUP4">SMC SMC Setup Register (CS_number = 4)</h4>
<p><strong>Name</strong>: SMC_SETUP4</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0040</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP4__NCS_RD_SETUP" title="NCS Setup Length in READ Access">NCS_RD_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP4__NRD_SETUP" title="NRD Setup Length">NRD_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP4__NCS_WR_SETUP" title="NCS Setup Length in WRITE Access">NCS_WR_SETUP</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="6">
<a href="#SMC_SETUP4__NWE_SETUP" title="NWE Setup Length">NWE_SETUP</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_SETUP4__NWE_SETUP"><strong>NWE_SETUP</strong>: NWE Setup Length</li>
<p>-</p>
<li id="SMC_SETUP4__NCS_WR_SETUP"><strong>NCS_WR_SETUP</strong>: NCS Setup Length in WRITE Access</li>
<p>-</p>
<li id="SMC_SETUP4__NRD_SETUP"><strong>NRD_SETUP</strong>: NRD Setup Length</li>
<p>-</p>
<li id="SMC_SETUP4__NCS_RD_SETUP"><strong>NCS_RD_SETUP</strong>: NCS Setup Length in READ Access</li>
<p>-</p>
</ul>
<h4 id="SMC_PULSE4">SMC SMC Pulse Register (CS_number = 4)</h4>
<p><strong>Name</strong>: SMC_PULSE4</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0044</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE4__NCS_RD_PULSE" title="NCS Pulse Length in READ Access">NCS_RD_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE4__NRD_PULSE" title="NRD Pulse Length">NRD_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE4__NCS_WR_PULSE" title="NCS Pulse Length in WRITE Access">NCS_WR_PULSE</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="7">
<a href="#SMC_PULSE4__NWE_PULSE" title="NWE Pulse Length">NWE_PULSE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_PULSE4__NWE_PULSE"><strong>NWE_PULSE</strong>: NWE Pulse Length</li>
<p>-</p>
<li id="SMC_PULSE4__NCS_WR_PULSE"><strong>NCS_WR_PULSE</strong>: NCS Pulse Length in WRITE Access</li>
<p>-</p>
<li id="SMC_PULSE4__NRD_PULSE"><strong>NRD_PULSE</strong>: NRD Pulse Length</li>
<p>-</p>
<li id="SMC_PULSE4__NCS_RD_PULSE"><strong>NCS_RD_PULSE</strong>: NCS Pulse Length in READ Access</li>
<p>-</p>
</ul>
<h4 id="SMC_CYCLE4">SMC SMC Cycle Register (CS_number = 4)</h4>
<p><strong>Name</strong>: SMC_CYCLE4</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0048</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_CYCLE4__NRD_CYCLE" title="Total Read Cycle Length">NRD_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_CYCLE4__NRD_CYCLE" title="Total Read Cycle Length">NRD_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_CYCLE4__NWE_CYCLE" title="Total Write Cycle Length">NWE_CYCLE</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_CYCLE4__NWE_CYCLE" title="Total Write Cycle Length">NWE_CYCLE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_CYCLE4__NWE_CYCLE"><strong>NWE_CYCLE</strong>: Total Write Cycle Length</li>
<p>-</p>
<li id="SMC_CYCLE4__NRD_CYCLE"><strong>NRD_CYCLE</strong>: Total Read Cycle Length</li>
<p>-</p>
</ul>
<h4 id="SMC_MODE4">SMC SMC Mode Register (CS_number = 4)</h4>
<p><strong>Name</strong>: SMC_MODE4</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E004C</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE4__PS" title="Page Size">PS</a>
</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE4__PMEN" title="Page Mode Enabled">PMEN</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE4__TDF_MODE" title="TDF Optimization">TDF_MODE</a>
</td>
<td colspan="4">
<a href="#SMC_MODE4__TDF_CYCLES" title="Data Float Time">TDF_CYCLES</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE4__DBW" title="Data Bus Width">DBW</a>
</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="2">
<a href="#SMC_MODE4__EXNW_MODE" title="NWAIT Mode">EXNW_MODE</a>
</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_MODE4__WRITE_MODE" title="">WRITE_MODE</a>
</td>
<td colspan="1">
<a href="#SMC_MODE4__READ_MODE" title="">READ_MODE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_MODE4__READ_MODE">
<strong>READ_MODE</strong>
<table class="values">
<thead>
<tr>
<th>Value</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="value">0</td>
<td class="name">-</td>
<td class="description">The read operation is controlled by the NCS signal.</td>
</tr>
<tr class="even">
<td class="value">1</td>
<td class="name">-</td>
<td class="description">The read operation is controlled by the NRD signal.</td>
</tr>
</tbody>
</table>
</li>
<li id="SMC_MODE4__WRITE_MODE">
<strong>WRITE_MODE</strong>
<table class="values">
<thead>
<tr>
<th>Value</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="value">0</td>
<td class="name">-</td>
<td class="description">The write operation is controlled by the NCS signal.</td>
</tr>
<tr class="even">
<td class="value">1</td>
<td class="name">-</td>
<td class="description">The write operation is controlled by the NWE signal.</td>
</tr>
</tbody>
</table>
</li>
<li id="SMC_MODE4__EXNW_MODE"><strong>EXNW_MODE</strong>: NWAIT Mode<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">DISABLED</td><td class="description">Disabled</td></tr><tr class="even"><td class="value">0x2</td><td class="name">FROZEN</td><td class="description">Frozen Mode</td></tr><tr class="odd"><td class="value">0x3</td><td class="name">READY</td><td class="description">Ready Mode</td></tr></tbody></table></li>
<li id="SMC_MODE4__DBW"><strong>DBW</strong>: Data Bus Width<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">8_BIT</td><td class="description">8-bit bus</td></tr><tr class="even"><td class="value">0x1</td><td class="name">16_BIT</td><td class="description">16-bit bus</td></tr><tr class="odd"><td class="value">0x2</td><td class="name">32_BIT</td><td class="description">32-bit bus</td></tr></tbody></table></li>
<li id="SMC_MODE4__TDF_CYCLES"><strong>TDF_CYCLES</strong>: Data Float Time</li>
<p>-</p>
<li id="SMC_MODE4__TDF_MODE"><strong>TDF_MODE</strong>: TDF Optimization<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">TDF optimization is disabled.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">TDF optimization is enabled.</td></tr></tbody></table></li>
<li id="SMC_MODE4__PMEN"><strong>PMEN</strong>: Page Mode Enabled<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">Standard read is applied.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">Asynchronous burst read in page mode is applied on the corresponding chip select.</td></tr></tbody></table></li>
<li id="SMC_MODE4__PS"><strong>PS</strong>: Page Size<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">4_BYTE</td><td class="description">4-byte page</td></tr><tr class="even"><td class="value">0x1</td><td class="name">8_BYTE</td><td class="description">8-byte page</td></tr><tr class="odd"><td class="value">0x2</td><td class="name">16_BYTE</td><td class="description">16-byte page</td></tr><tr class="even"><td class="value">0x3</td><td class="name">32_BYTE</td><td class="description">32-byte page</td></tr></tbody></table></li>
</ul>
<h4 id="SMC_OCMS">SMC SMC OCMS MODE Register</h4>
<p><strong>Name</strong>: SMC_OCMS</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E0080</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_OCMS__CS3SE" title="Chip Select (x = 0 to 3) Scrambling Enable">CS3SE</a>
</td>
<td colspan="1">
<a href="#SMC_OCMS__CS2SE" title="Chip Select (x = 0 to 3) Scrambling Enable">CS2SE</a>
</td>
<td colspan="1">
<a href="#SMC_OCMS__CS1SE" title="Chip Select (x = 0 to 3) Scrambling Enable">CS1SE</a>
</td>
<td colspan="1">
<a href="#SMC_OCMS__CS0SE" title="Chip Select (x = 0 to 3) Scrambling Enable">CS0SE</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_OCMS__SMSE" title="Static Memory Controller Scrambling Enable">SMSE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_OCMS__SMSE"><strong>SMSE</strong>: Static Memory Controller Scrambling Enable<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">Disable Scrambling for SMC access.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">Enable Scrambling for SMC access.</td></tr></tbody></table></li>
<li id="SMC_OCMS__CS0SE"><strong>CS0SE</strong>: Chip Select (x = 0 to 3) Scrambling Enable<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">Disable Scrambling for CSx.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">Enable Scrambling for CSx.</td></tr></tbody></table></li>
<li id="SMC_OCMS__CS1SE"><strong>CS1SE</strong>: Chip Select (x = 0 to 3) Scrambling Enable<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">Disable Scrambling for CSx.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">Enable Scrambling for CSx.</td></tr></tbody></table></li>
<li id="SMC_OCMS__CS2SE"><strong>CS2SE</strong>: Chip Select (x = 0 to 3) Scrambling Enable<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">Disable Scrambling for CSx.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">Enable Scrambling for CSx.</td></tr></tbody></table></li>
<li id="SMC_OCMS__CS3SE"><strong>CS3SE</strong>: Chip Select (x = 0 to 3) Scrambling Enable<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">Disable Scrambling for CSx.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">Enable Scrambling for CSx.</td></tr></tbody></table></li>
</ul>
<h4 id="SMC_KEY1">SMC SMC OCMS KEY1 Register</h4>
<p><strong>Name</strong>: SMC_KEY1</p>
<p><strong>Access</strong>: write-only</p>
<p><strong>Address</strong>: 0x400E0084</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_KEY1__KEY1" title="Off Chip Memory Scrambling (OCMS) Key Part 1">KEY1</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_KEY1__KEY1" title="Off Chip Memory Scrambling (OCMS) Key Part 1">KEY1</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_KEY1__KEY1" title="Off Chip Memory Scrambling (OCMS) Key Part 1">KEY1</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_KEY1__KEY1" title="Off Chip Memory Scrambling (OCMS) Key Part 1">KEY1</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_KEY1__KEY1"><strong>KEY1</strong>: Off Chip Memory Scrambling (OCMS) Key Part 1</li>
<p>-</p>
</ul>
<h4 id="SMC_KEY2">SMC SMC OCMS KEY2 Register</h4>
<p><strong>Name</strong>: SMC_KEY2</p>
<p><strong>Access</strong>: write-only</p>
<p><strong>Address</strong>: 0x400E0088</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_KEY2__KEY2" title="Off Chip Memory Scrambling (OCMS) Key Part 2">KEY2</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_KEY2__KEY2" title="Off Chip Memory Scrambling (OCMS) Key Part 2">KEY2</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_KEY2__KEY2" title="Off Chip Memory Scrambling (OCMS) Key Part 2">KEY2</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_KEY2__KEY2" title="Off Chip Memory Scrambling (OCMS) Key Part 2">KEY2</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_KEY2__KEY2"><strong>KEY2</strong>: Off Chip Memory Scrambling (OCMS) Key Part 2</li>
<p>-</p>
</ul>
<h4 id="SMC_WPMR">SMC SMC Write Protect Mode Register</h4>
<p><strong>Name</strong>: SMC_WPMR</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400E00E4</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_WPMR__WPKEY" title="Write Protect KEY">WPKEY</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_WPMR__WPKEY" title="Write Protect KEY">WPKEY</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_WPMR__WPKEY" title="Write Protect KEY">WPKEY</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_WPMR__WPEN" title="Write Protect Enable">WPEN</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_WPMR__WPEN"><strong>WPEN</strong>: Write Protect Enable<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">Disables the Write Protect if WPKEY corresponds to 0x534D43 ("SMC" in ASCII).</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">Enables the Write Protect if WPKEY corresponds to 0x534D43 ("SMC" in ASCII).</td></tr></tbody></table></li>
<li id="SMC_WPMR__WPKEY"><strong>WPKEY</strong>: Write Protect KEY</li>
<p>-</p>
</ul>
<h4 id="SMC_WPSR">SMC SMC Write Protect Status Register</h4>
<p><strong>Name</strong>: SMC_WPSR</p>
<p><strong>Access</strong>: read-only</p>
<p><strong>Address</strong>: 0x400E00E8</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_WPSR__WPVSRC" title="Write Protect Violation Source">WPVSRC</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#SMC_WPSR__WPVSRC" title="Write Protect Violation Source">WPVSRC</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#SMC_WPSR__WPVS" title="Write Protect Enable">WPVS</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="SMC_WPSR__WPVS"><strong>WPVS</strong>: Write Protect Enable<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0</td><td class="name">-</td><td class="description">No Write Protect Violation has occurred since the last read of the SMC_WPSR register.</td></tr><tr class="even"><td class="value">1</td><td class="name">-</td><td class="description">A Write Protect Violation occurred since the last read of the SMC_WPSR register. If this violation is an unauthorized attempt to write a protected register, the associated violation is reported into field WPVSRC.</td></tr></tbody></table></li>
<li id="SMC_WPSR__WPVSRC"><strong>WPVSRC</strong>: Write Protect Violation Source</li>
<p>-</p>
</ul>
</div>
</div>
</body>
</html>
|
yii/web/js/source/jui/css/base/jquery.ui.core.css | ptheofan/deployer | /*
* jQuery UI CSS Framework 1.8.17
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Theming/API
*/
.ui-helper-hidden{display:none;}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none;}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;}.ui-helper-clearfix:after{clear:both;}.ui-helper-clearfix{zoom:1;}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0);}.ui-state-disabled{cursor:default!important;}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%;} |
wp-content/plugins/pdf-light-viewer/assets/bower_components/pure/tables.css | Saurabh2711/wordpress | /*!
Pure v0.5.0
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
https://github.com/yui/pure/blob/master/LICENSE.md
*/
.pure-table {
/* Remove spacing between table cells (from Normalize.css) */
border-collapse: collapse;
border-spacing: 0;
empty-cells: show;
border: 1px solid #cbcbcb;
}
.pure-table caption {
color: #000;
font: italic 85%/1 arial, sans-serif;
padding: 1em 0;
text-align: center;
}
.pure-table td,
.pure-table th {
border-left: 1px solid #cbcbcb;/* inner column border */
border-width: 0 0 0 1px;
font-size: inherit;
margin: 0;
overflow: visible; /*to make ths where the title is really long work*/
padding: 0.5em 1em; /* cell padding */
}
.pure-table td:first-child,
.pure-table th:first-child {
border-left-width: 0;
}
.pure-table thead {
background: #e0e0e0;
color: #000;
text-align: left;
vertical-align: bottom;
}
/*
striping:
even - #fff (white)
odd - #f2f2f2 (light gray)
*/
.pure-table td {
background-color: transparent;
}
.pure-table-odd td {
background-color: #f2f2f2;
}
/* nth-child selector for modern browsers */
.pure-table-striped tr:nth-child(2n-1) td {
background-color: #f2f2f2;
}
/* BORDERED TABLES */
.pure-table-bordered td {
border-bottom: 1px solid #cbcbcb;
}
.pure-table-bordered tbody > tr:last-child td,
.pure-table-horizontal tbody > tr:last-child td {
border-bottom-width: 0;
}
/* HORIZONTAL BORDERED TABLES */
.pure-table-horizontal td,
.pure-table-horizontal th {
border-width: 0 0 1px 0;
border-bottom: 1px solid #cbcbcb;
}
.pure-table-horizontal tbody > tr:last-child td {
border-bottom-width: 0;
}
|
unittest-files/folder1/style.css | edge-code/edge-inspect-extension | This is a file in folder 1. |
public/stylesheets/style.css | leogsouza/elearn | /*
99Lime.com HTML KickStart by Joshua Gatcke
style.css
*/
/*---------------------------------
IMPORTS
-----------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Arimo:400,700);
/*---------------------------------
OVERRIDES
-----------------------------------*/
h1,h2,h3,h4,h5,h6{
font-family: "Arimo", arial, verdana, sans-serif;
font-weight:normal;
}
thead th,
tbody th{
font-family: "Arimo", arial, verdana, sans-serif;
}
button,
a.btn,
input[type="submit"],
input[type="reset"],
input[type="button"]{
font-family: "Arimo", arial, verdana, sans-serif;
}
.menu{
font-family: "Arimo", arial, verdana, sans-serif;
}
blockquote{
font-family: "Arimo", arial, verdana, sans-serif;
}
/*---------------------------------
LAYOUT
-----------------------------------*/
body{
margin:0;
padding:0 0 0 0;
color:#000;
background:#efefef url(css/img/gray_jean.png);
font:normal 0.9em/150% 'Arimo', arial, verdana, sans-serif;
text-shadow: 0 0 1px transparent; /* google font pixelation fix */
}
#wrap{
width:100%;
background:#fff;
margin:30px auto 30px auto;
padding:0 2%;
border:1px solid #ccc;
}
#footer{
text-align:center;
padding:20px;
margin:0;
border-top:1px solid #ddd;
color:#999;
font-size:0.8em;
text-shadow:0px 1px 1px #fff;
position: relative;
top:0;
left:0;
background:#fff;
}
#link-top{
display:none;
}
/* NAV BAR*/
.navbar{
position:fixed;
top:0;
left:0;
width: 100%;
background:#000;
color:#fff;
z-index:1000;
}
.navbar #logo{
position:absolute;
top:0;
right:0;
padding:0.5em 1em;
font-size: 1.7em;
color:#efefef;
text-decoration:none;
}
.navbar span{
color:#86dc00;
}
.navbar ul{
display:inline-block;
margin:0;
padding:0;
}
.navbar li{
margin:0;
padding:0;
list-style-type:0;
display:inline-block;
}
.navbar li a{
display:inline-block;
color:#efefef;
padding:1em 1.3em;
text-decoration:none;
text-transform: uppercase;
line-height:100%;
font-size: 1.2em;
}
.callout{
background:#4598ef;/*#86dc00;*/
padding:3em 0;
color:#fff;
box-shadow:inset 0 0 10px rgba(0,0,0,0.2);
text-align: center;
text-shadow:0px 1px 3px rgba(0,0,0,0.2);
display:block;
}
.callout + div.grid{margin-top:50px;}
a.callout{cursor:pointer;}
.callout i.icon-4x{font-size:6em;}
.callout h4{margin-bottom:30px;}
.callout-top{margin:50px 0 0 0;}
.callout p{margin-bottom:0;}
.callout .button{margin-top:10px;}
.callout.green{background:#19ad0b;/*#86dc00;*/}
#mc_embed_signup{
padding:30px 0;
}
#ui-preview{
border:5px solid #ddd;
margin:30px 0;
display:block;
}
.block {
background: #f4f4f4;
border: 1px solid #ccc;
padding: 10px;
margin-bottom: 20px;
}
form label {
display: inline-block;
width: 180px;
}
|
forum/templates/forum/parts/thread.html | ashbc/tgrsite | {% extends "forum/parts/response.html" %}
{% block edit_links %}
{% if user.member == response.author or perms.forum.change_thread or perms.forum.delete_thread %}
<div class="card-footer">
<div class="btn-group">
{% if user.member == response.author or perms.forum.change_thread %}
<a class="btn btn-outline-success" href="{% url 'forum:thread_edit' thread.id %}"><i class="fas fa-pencil-alt"></i></a>
{% endif %}
{% if user.member == response.author or perms.forum.delete_thread %}
<a class="btn btn-outline-danger" href="{% url 'forum:thread_delete' thread.id %}"><i class="fas fa-trash-alt"></i></a>
{% endif %}
</div>
</div>
{% endif %}
{% endblock %}
{% block id %}OP{% endblock %}{# remove the #}
{% block permalink %}{% endblock %} |
test/fixtures/sonnet.CXXXV.html | isaacs/fgrep | <HTML><HEAD><TITLE>Sonnet CXXXV</TITLE></HEAD>
<BODY><H1>Sonnet CXXXV</H1>
<BLOCKQUOTE>Whoever hath her wish, thou hast thy 'Will,'<BR>
And 'Will' to boot, and 'Will' in overplus;<BR>
More than enough am I that vex thee still,<BR>
To thy sweet will making addition thus.<BR>
Wilt thou, whose will is large and spacious,<BR>
Not once vouchsafe to hide my will in thine?<BR>
Shall will in others seem right gracious,<BR>
And in my will no fair acceptance shine?<BR>
The sea all water, yet receives rain still<BR>
And in abundance addeth to his store;<BR>
So thou, being rich in 'Will,' add to thy 'Will'<BR>
One will of mine, to make thy large 'Will' more.<BR>
Let no unkind, no fair beseechers kill;<BR>
Think all but one, and me in that one 'Will.'<BR>
</BLOCKQUOTE>
</BODY></HTML>
|
node_modules/csvtojson/coverage/lcov-report/csv2json/libs/core/index.js.html | pVelocity/pvserverhelper | <!doctype html>
<html lang="en">
<head>
<title>Code coverage report for csv2json/libs/core/index.js</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="../../../prettify.css" />
<link rel="stylesheet" href="../../../base.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type='text/css'>
.coverage-summary .sorter {
background-image: url(../../../sort-arrow-sprite.png);
}
</style>
</head>
<body>
<div class='wrapper'>
<div class='pad1'>
<h1>
<a href="../../../index.html">All files</a> / <a href="index.html">csv2json/libs/core</a> index.js
</h1>
<div class='clearfix'>
<div class='fl pad1y space-right2'>
<span class="strong">0% </span>
<span class="quiet">Statements</span>
<span class='fraction'>0/3</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">100% </span>
<span class="quiet">Branches</span>
<span class='fraction'>0/0</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">0% </span>
<span class="quiet">Functions</span>
<span class='fraction'>0/1</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">0% </span>
<span class="quiet">Lines</span>
<span class='fraction'>0/3</span>
</div>
</div>
<p class="quiet">
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
</p>
</div>
<div class='status-line low'></div>
<pre><table class="coverage">
<tr><td class="line-count quiet"><a name='L1'></a><a href='#L1'>1</a>
<a name='L2'></a><a href='#L2'>2</a>
<a name='L3'></a><a href='#L3'>3</a>
<a name='L4'></a><a href='#L4'>4</a>
<a name='L5'></a><a href='#L5'>5</a>
<a name='L6'></a><a href='#L6'>6</a>
<a name='L7'></a><a href='#L7'>7</a></td><td class="line-coverage quiet"><span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js"><span class="cstat-no" title="statement not covered" >module.exports = constructor;</span>
<span class="cstat-no" title="statement not covered" >module.exports.Converter = require("./Converter.js");</span>
function <span class="fstat-no" title="function not covered" >constructor(</span>param,options) {
<span class="cstat-no" title="statement not covered" > return new module.exports.Converter(param, options);</span>
}
</pre></td></tr>
</table></pre>
<div class='push'></div><!-- for sticky footer -->
</div><!-- /wrapper -->
<div class='footer quiet pad2 space-top1 center small'>
Code coverage
generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Fri May 11 2018 21:20:20 GMT+0100 (IST)
</div>
</div>
<script src="../../../prettify.js"></script>
<script>
window.onload = function () {
if (typeof prettyPrint === 'function') {
prettyPrint();
}
};
</script>
<script src="../../../sorter.js"></script>
<script src="../../../block-navigation.js"></script>
</body>
</html>
|
_layouts/post.html | dianaband/dianaband.github.io | ---
layout: default
---
<style>body { max-width: 460px; }</style>
{{ content }}
|
ajax/libs/yui/2.9.0/tabview/assets/border_tabs.css | yogeshsaroya/new-cdnjs | version https://git-lfs.github.com/spec/v1
oid sha256:485aa377b0faaaa2d2b35cb3b0f556e0f2527305847b131a4a66b0f06727aaea
size 1597
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.7.2/prosa/0.4.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>prosa: 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.2 / prosa - 0.4</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
prosa
<small>
0.4
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-21 08:36:37 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-21 08:36:37 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.7.2 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Pierre Roux <[email protected]>"
homepage: "https://prosa.mpi-sws.org/"
dev-repo: "git+https://gitlab.mpi-sws.org/RT-PROOFS/rt-proofs.git"
bug-reports: "https://gitlab.mpi-sws.org/RT-PROOFS/rt-proofs/issues"
license: "BSD-2-Clause"
build: [
["./create_makefile.sh"]
[make "-j%{jobs}%"]
]
install: [make "install"]
depends: [
"coq" {>= "8.9" & < "8.11~"}
"coq-mathcomp-ssreflect" {>= "1.9" & < "1.10~"}
]
tags: [
"keyword:prosa"
"keyword:real time"
"keyword:schedulability analysis"
"logpath:prosa"
]
authors: [
"Felipe Cerqueira"
"Björn Brandenburg"
"Maxime Lesourd"
"Sergey Bozhko"
"Xiaojie Guo"
"Sophie Quinton"
"Marco Perronet"
]
synopsis: "A Foundation for Formally Proven Schedulability Analysis"
description: """Prosa is a repository of definitions and proofs for
real-time schedulability analysis built with Coq. Prosa’s
distinguishing characteristic is that Prosa prioritizes readability
over all other concerns to ensure that specifications remain
accessible to readers without a background in formal proofs. (A
background in real-time scheduling is assumed.)"""
url {
src: "https://prosa.mpi-sws.org/releases/v0.4/prosa_v04.zip"
checksum: "sha256=5e11497895528700672e6881da6819962a34702efe1713f61309c50f0f853957"
}
</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-prosa.0.4 coq.8.7.2</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.2).
The following dependencies couldn't be met:
- coq-prosa -> coq >= 8.9
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-prosa.0.4</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>
|
app/views/imprint.html | BeneStem/tomatoes-and-eggs | {% extends 'layouts/home.html' %}
{% block content %}
<h1 class="cover-heading">Imprint</h1>
<h2>Kontakt</h2>
<p>Benedikt Stemmildt
<br/>Friedrich-Ebert-Damm 81
<br/>22047 Hamburg</p>
<p>Telefon (Festnetz): +49 40 36196212
<br/>Telefon (Mobil): +49 171 1443957
<br/>E-Mail: [email protected]</p>
<h2>Haftungsausschluss</h2>
<h3>Haftung für Inhalte</h3>
<p>Die Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit, Vollständigkeit und Aktualität
der Inhalte können wir jedoch keine Gewähr übernehmen. Als Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene
Inhalte auf diesen Seiten nach den allgemeinen Gesetzen verantwortlich. Nach §§ 8 bis 10 TMG sind wir als
Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicherte fremde Informationen zu überwachen oder
nach Umständen zu forschen, die auf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder
Sperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben hiervon unberührt. Eine diesbezügliche
Haftung ist jedoch erst ab dem Zeitpunkt der Kenntnis einer konkreten Rechtsverletzung möglich. Bei Bekanntwerden
von entsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfernen.</p>
<h3>Haftung für Links</h3>
<p>Unser Angebot enthält Links zu externen Webseiten Dritter, auf deren Inhalte wir keinen Einfluss haben. Deshalb
können wir für diese fremden Inhalte auch keine Gewähr übernehmen. Für die Inhalte der verlinkten Seiten ist stets
der jeweilige Anbieter oder Betreiber der Seiten verantwortlich. Die verlinkten Seiten wurden zum Zeitpunkt der
Verlinkung auf mögliche Rechtsverstöße überprüft. Rechtswidrige Inhalte waren zum Zeitpunkt der Verlinkung nicht
erkennbar. Eine permanente inhaltliche Kontrolle der verlinkten Seiten ist jedoch ohne konkrete Anhaltspunkte einer
Rechtsverletzung nicht zumutbar. Bei Bekanntwerden von Rechtsverletzungen werden wir derartige Links umgehend
entfernen.</p>
<h3>Urheberrecht</h3>
<p>Die durch die Seitenbetreiber erstellten Inhalte und Werke auf diesen Seiten unterliegen dem deutschen Urheberrecht.
Die Vervielfältigung, Bearbeitung, Verbreitung und jede Art der Verwertung außerhalb der Grenzen des Urheberrechtes
bedürfen der schriftlichen Zustimmung des jeweiligen Autors bzw. Erstellers. Downloads und Kopien dieser Seite sind
nur für den privaten, nicht kommerziellen Gebrauch gestattet. Soweit die Inhalte auf dieser Seite nicht vom
Betreiber erstellt wurden, werden die Urheberrechte Dritter beachtet. Insbesondere werden Inhalte Dritter als solche
gekennzeichnet. Sollten Sie trotzdem auf eine Urheberrechtsverletzung aufmerksam werden, bitten wir um einen
entsprechenden Hinweis. Bei Bekanntwerden von Rechtsverletzungen werden wir derartige Inhalte umgehend
entfernen.</p>
<h3>Datenschutz</h3>
<p>Die Nutzung unserer Webseite ist in der Regel ohne Angabe personenbezogener Daten möglich. Soweit auf unseren Seiten
personenbezogene Daten (beispielsweise Name, Anschrift oder eMail-Adressen) erhoben werden, erfolgt dies, soweit
möglich, stets auf freiwilliger Basis. Diese Daten werden ohne Ihre ausdrückliche Zustimmung nicht an Dritte
weitergegeben. Wir weisen darauf hin, dass die Datenübertragung im Internet (z.B. bei der Kommunikation per E-Mail)
Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich.
Der Nutzung von im Rahmen der Impressumspflicht veröffentlichten Kontaktdaten durch Dritte zur Übersendung von nicht
ausdrücklich angeforderter Werbung und Informationsmaterialien wird hiermit ausdrücklich widersprochen. Die
Betreiber der Seiten behalten sich ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von
Werbeinformationen, etwa durch Spam-Mails, vor.</p>
{% endblock %} |
data science/machine_learning_for_the_web/chapter_4/movie/26136.html | xianjunzhengbackup/code | <HTML><HEAD>
<TITLE>Review for Nurse Betty (2000)</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0171580">Nurse Betty (2000)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Rose+%27Bams%27+Cooper">Rose 'Bams' Cooper</A></H3><HR WIDTH="40%" SIZE="4">
<PRE>'3BlackChicks Review...'</PRE>
<P>NURSE BETTY (2000)
Rated R; running time 112 minutes
Genre: Comedy
IMDB site: <A HREF="http://us.imdb.com/Details?0171580">http://us.imdb.com/Details?0171580</A>
Official site: <A HREF="http://www.nurse-betty.com/">http://www.nurse-betty.com/</A>
Written by: John C. Richards, James Flamberg
Directed by: Neil LaBute
Cast: Morgan Freeman, Renee Zellweger, Chris Rock, Greg Kinnear,
Pruitt Taylor Vince, Tia Texada, Crispin Glover, Harriet Sansom Harris,
Aaron Eckhart, Kathleen Wilhoite (Sue Ann), Sheila Kelley (Joyce),
Allison Janney (Lyla), Sung Hi Lee (Jasmine), Laird Mackintosh
(Dr. Lonnie Walsh)</P>
<P>Review Copyright Rose Cooper, 2000
Review URL: <A HREF="http://www.3blackchicks.com/bamsnurse.html">http://www.3blackchicks.com/bamsnurse.html</A></P>
<P>Have you ever found yourself watching a movie that you know you're
"supposed" to like, but it just fails to grab you like you thought it
would?</P>
<PRE>Happens to me all the time lately.</PRE>
<P>The Story (WARNING: **spoilers contained below**):
Betty Sizemore (Renee Zellweger) is stuck somewhere between Wonderland
and Oz.</P>
<P>A stone soap opera junkie living and breathing the serial "A Reason To
Live", waitress Betty is unable to cope with reality when she sees her
rotten car salesman husband Del (Aaron Eckhart) scalped by wired hitman
Wesley (Chris Rock) and his much more Zen accomplice, Charlie (Morgan
Freeman). So Betty creates her own reality: her mind convinces her that
she is the ex-fiancee of Dr. David Ravell, a fictional soap opera
character played by George McCord (played by Greg Kinnear). Betty so
believes she is destined to be with Dr. David - remember, the fictional
soap opera character played by a fictional actor played by a real [I
suppose] actor - that she takes off from Neverneverland, Kansas, to
pursue her dream man, much to the dismay of local yokel Sheriff Ballard
(Pruitt Taylor Vince) and reporter Roy (Crispin Glover), who wonder just
how involved Betty was in Del's death.</P>
<P>And following Betty in hot pursuit are Wesley and Charlie, who want
something Betty may not know she has...</P>
<P>The Upshot:
All the signs were there. I should've loved this movie. It's my kind
of flick: weird in a RAISING ARIZONA kinda way, filled with great
acting, and one that avoided the easy out of making the local yokels
look butt-dumb (as witnessed by Charlie's opening conversation with
Del). With all of that going for it, you might think I'd be tickled
pink after watching NURSE BETTY. I wasn't.</P>
<P>To be sure, it had its good points. Through "Betty", I gained a whole
new level of respect for Renee Zellweger. Rarely has an actor been more
perfectly cast; she had Space Cadet down. I've loathed Zellweger in
previous movies [THE BACHELOR especially, though I can't blame her
entirely for ME, MYSELF, AND IRENE. There's more than enough blame to
go around for that one], but she shined brightly as Betty in "Betty".
Equally good was Morgan Freeman, though I always have to contend with
the fact that he reminds me of my mama's preacher, Rev. Isaac [except
for the cussin'. By Mr. Freeman, not Rev. Isaac. uh...] when I watch
Freeman on screen. Still, Freeman is always a joy to watch; he classes
up the joint in most every movie he's in.</P>
<P>The balance of the surrounding, supporting cast also defies my
relatively low-rating of "Betty". Rarely have I enjoyed most of the
supporters of a main story the way I did in this movie; from Greg
Kinnear's surprisingly light touch with David/George (more of a
sarcastic actor in his previous turns, Kinnear's performance here might
go unfairly unnoticed. Bammer sez notice it) to Crispin Glover's (for
once) not-over-the-top Roy, to Tia Texada's out-of-the-blue-friend Rosa,
to Harriet Sansom Harris as Ellen the world-weary bartender (hard to
believe she plays Bebe on NBC's FRASIER, eh?), the people living in
Betty's Neighborhood were a fun bunch o' folks.</P>
<P>With all that, why'd I give NURSE BETTY the cautionary flashing
yellowlight? It's simple, really, having had a little something to do
with the nosebleed my Disbelief got from having to be Suspended for far
too long at far too great a height. The aforementioned RAISING ARIZONA
was farce at its finest, and though it did stretch the imagination, I
could easily see its situations play themselves out. But never, not for
one second, did I even *begin* to believe that Charlie, Zen hitman
though he might have been, would go gaga for Betty the way he did.
That, combined with "Betty"'s lack of a strong voice on either side of
the comedy scale - it wasn't broad enough to be good farce, nor dark
enough to be a great black comedy - diminished my enjoyment of the tale.</P>
<P>And once my Disbelief got an altitude migraine, that was all she wrote.
Everything went downhill from there.</P>
<P>The "Black Factor" [ObDisclaimer: We Are Not A Monolith]:
I started to not even included the BF here; after all, NURSE BETTY never
directly dealt with it (much to its credit, says I), so...why me, why
here, why now? Alas, it has more to do with what I read about the movie
before it came out, than the movie itself.</P>
<P>I received a forwarded email message from one of 3BC's readers that
described the characters of Wesley and Charlie as "drug dealers" instead
of the hitmen they clearly portray in this movie. While on the one
hand, I probably shouldn't trip over such things, and on the other a
thug is a thug is a thug, I got my Dander up over the description.
After all, the Hitman Profession is a time-honored calling in Show
Bidness (witness THE GODFATHER, GOODFELLAS, THE SOPRANOS, et al) - but
nobody loves a drug dealer (NEW JACK CITY), eh? Well, maybe except for
an older White British female drug dealer (SAVING GRACE). Hmmm...</P>
<P>Took a while for my Dander to recover from that little faux pas, it did.</P>
<P>Bammer's Bottom Line:
Not for nuthin', but the Governor of the Great State Of Michigan -
Republican stalwart John Engler - was in my NURSE BETTY audience
yesterday. I wonder what Gov. Engler thinks of a comedy in which two
Black guys scalp a White guy, wax philosophic about the honorable nature
of murder, and almost come out as sympathetic characters.</P>
<P>But I should leave him alone: after all, stalwart Republican Governors
deserve a night on the town, too - even if it is to enjoy depictions of
the Hollywood Violence they claim to detest. Hmmm...</P>
<P>NURSE BETTY (rating: flashing yellowlight):
This flick could've stood a transfusion of Wacky Hilarity, or Dark
Pathos. The middling ground it seemed content to stand on, was its
ultimate undoing.</P>
<PRE>Rose "Bams" Cooper /~\
Webchick and Editor, /','\
3BlackChicks Review /','`'\
Movie Reviews With Flava! /',',','/`,
Copyright Rose Cooper, 2000 `~-._'c /
EMAIL: <A HREF="mailto:[email protected]">[email protected]</A> `\ (
<A HREF="http://www.3blackchicks.com/">http://www.3blackchicks.com/</A> /====\</PRE>
<HR><P CLASS=flush><SMALL>The review above was posted to the
<A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR>
The Internet Movie Database accepts no responsibility for the contents of the
review and has no editorial control. Unless stated otherwise, the copyright
belongs to the author.<BR>
Please direct comments/criticisms of the review to relevant newsgroups.<BR>
Broken URLs inthe reviews are the responsibility of the author.<BR>
The formatting of the review is likely to differ from the original due
to ASCII to HTML conversion.
</SMALL></P>
<P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P>
</P></BODY></HTML>
|
example/deploy/example.html | ff0000/statix | <!doctype html>
<html>
<head>
<title>example.html</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">index.html</a></li>
<li><a href="example.html">example.html</a></li>
</ul>
</nav>
</header>
<div id="content">
<h1>This is the example.html page</h1>
</div>
<footer>
</footer>
</body>
</html> |
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/91337decd505c49d503e43e4d15e258c82f3a2652b9aeb86213ce6d606cf8419.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="./81b3368c092284bfa2b58111e0ac189f7b0f452e2dfa1eb2b515910479115b02.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> |
src/assets/css/primeng/primeui-ng-all.min.css | malikme3/angular4 | /* jQuery UI - v1.9.2 - 2012-11-23* Copyright (c) 2012 jQuery Foundation and other contributors Licensed MIT */
.ui-helper-hidden {
display: none
}
.ui-helper-hidden-accessible {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px
}
.ui-helper-reset {
margin: 0;
padding: 0;
border: 0;
outline: 0;
line-height: 1.3;
text-decoration: none;
font-size: 100%;
list-style: none
}
.ui-helper-clearfix:before, .ui-helper-clearfix:after {
content: "";
display: table
}
.ui-helper-clearfix:after {
clear: both
}
.ui-helper-clearfix {
zoom: 1
}
.ui-helper-zfix {
width: 100%;
height: 100%;
top: 0;
left: 0;
position: absolute;
opacity: 0;
filter: Alpha(Opacity=0)
}
.ui-state-disabled {
cursor: default !important
}
.ui-icon {
display: block;
text-indent: -99999px;
overflow: hidden;
background-repeat: no-repeat
}
.ui-widget-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%
}
/* * jQuery UI Resizable 1.9.2 * http://jqueryui.com * * Copyright 2012 jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * * http://docs.jquery.com/UI/Resizable#theming */
.ui-resizable {
position: relative
}
.ui-resizable-handle {
position: absolute;
font-size: .1px;
display: block
}
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
display: none
}
.ui-resizable-n {
cursor: n-resize;
height: 7px;
width: 100%;
top: -5px;
left: 0
}
.ui-resizable-s {
cursor: s-resize;
height: 7px;
width: 100%;
bottom: -5px;
left: 0
}
.ui-resizable-e {
cursor: e-resize;
width: 7px;
right: -5px;
top: 0;
height: 100%
}
.ui-resizable-w {
cursor: w-resize;
width: 7px;
left: -5px;
top: 0;
height: 100%
}
.ui-resizable-se {
cursor: se-resize;
width: 12px;
height: 12px;
right: 1px;
bottom: 1px
}
.ui-resizable-sw {
cursor: sw-resize;
width: 9px;
height: 9px;
left: -5px;
bottom: -5px
}
.ui-resizable-nw {
cursor: nw-resize;
width: 9px;
height: 9px;
left: -5px;
top: -5px
}
.ui-resizable-ne {
cursor: ne-resize;
width: 9px;
height: 9px;
right: -5px;
top: -5px
}
.ui-slider {
position: relative;
text-align: left
}
.ui-slider .ui-slider-handle {
position: absolute;
z-index: 2;
width: 1.2em;
height: 1.2em;
cursor: default;
-ms-touch-action: none;
touch-action: none
}
.ui-slider .ui-slider-range {
position: absolute;
z-index: 1;
font-size: .7em;
display: block;
border: 0;
background-position: 0 0
}
.ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range {
filter: inherit
}
.ui-slider-horizontal {
height: .8em
}
.ui-slider-horizontal .ui-slider-handle {
top: -.3em;
margin-left: -.6em
}
.ui-slider-horizontal .ui-slider-range {
top: 0;
height: 100%
}
.ui-slider-horizontal .ui-slider-range-min {
left: 0
}
.ui-slider-horizontal .ui-slider-range-max {
right: 0
}
.ui-slider-vertical {
width: .8em;
height: 100px
}
.ui-slider-vertical .ui-slider-handle {
left: -.3em;
margin-left: 0;
margin-bottom: -.6em
}
.ui-slider-vertical .ui-slider-range {
left: 0;
width: 100%
}
.ui-slider-vertical .ui-slider-range-min {
bottom: 0
}
.ui-slider-vertical .ui-slider-range-max {
top: 0
}
.ui-datepicker {
width: 17em;
padding: .2em .2em 0;
display: none
}
.ui-datepicker .ui-datepicker-header {
position: relative;
padding: .2em 0
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
position: absolute;
top: 2px;
width: 1.8em;
height: 1.8em
}
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
top: 1px
}
.ui-datepicker .ui-datepicker-prev {
left: 2px
}
.ui-datepicker .ui-datepicker-next {
right: 2px
}
.ui-datepicker .ui-datepicker-prev-hover {
left: 1px
}
.ui-datepicker .ui-datepicker-next-hover {
right: 1px
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
display: block;
position: absolute;
left: 50%;
margin-left: -8px;
top: 50%;
margin-top: -8px
}
.ui-datepicker .ui-datepicker-title {
margin: 0 2.3em;
line-height: 1.8em;
text-align: center
}
.ui-datepicker .ui-datepicker-title select {
font-size: 1em;
margin: 1px 0
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
width: 45%
}
.ui-datepicker table {
width: 100%;
font-size: .9em;
border-collapse: collapse;
margin: 0 0 .4em
}
.ui-datepicker th {
padding: .7em .3em;
text-align: center;
font-weight: bold;
border: 0
}
.ui-datepicker td {
border: 0;
padding: 1px
}
.ui-datepicker td span, .ui-datepicker td a {
display: block;
padding: .2em;
text-align: right;
text-decoration: none
}
.ui-datepicker .ui-datepicker-buttonpane {
background-image: none;
margin: .7em 0 0 0;
padding: 0 .2em;
border-left: 0;
border-right: 0;
border-bottom: 0
}
.ui-datepicker .ui-datepicker-buttonpane button {
float: right;
margin: .5em .2em .4em;
cursor: pointer;
padding: .2em .6em .3em .6em;
width: auto;
overflow: visible
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
float: left
}
.ui-datepicker.ui-datepicker-multi {
width: auto
}
.ui-datepicker-multi .ui-datepicker-group {
float: left
}
.ui-datepicker-multi .ui-datepicker-group table {
width: 95%;
margin: 0 auto .4em
}
.ui-datepicker-multi-2 .ui-datepicker-group {
width: 50%
}
.ui-datepicker-multi-3 .ui-datepicker-group {
width: 33.3%
}
.ui-datepicker-multi-4 .ui-datepicker-group {
width: 25%
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
border-left-width: 0
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
clear: left
}
.ui-datepicker-row-break {
clear: both;
width: 100%;
font-size: 0
}
.ui-datepicker-rtl {
direction: rtl
}
.ui-datepicker-rtl .ui-datepicker-prev {
right: 2px;
left: auto
}
.ui-datepicker-rtl .ui-datepicker-next {
left: 2px;
right: auto
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
right: 1px;
left: auto
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
left: 1px;
right: auto
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
clear: right
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
float: left
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group {
float: right
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
border-right-width: 0;
border-left-width: 1px
}
.ui-timepicker-div .ui-widget-header {
margin-bottom: 8px
}
.ui-timepicker-div dl {
text-align: left
}
.ui-timepicker-div dl dt {
float: left;
clear: left;
padding: 0 0 0 5px
}
.ui-timepicker-div dl dd {
margin: 0 10px 10px 40%
}
.ui-timepicker-div td {
font-size: 90%
}
.ui-tpicker-grid-label {
background: 0;
border: 0;
margin: 0;
padding: 0
}
.ui-timepicker-div .ui_tpicker_unit_hide {
display: none
}
.ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input {
background: 0;
color: inherit;
border: 0;
outline: 0;
border-bottom: solid 1px #555;
width: 95%
}
.ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input:focus {
border-bottom-color: #aaa
}
.ui-timepicker-rtl {
direction: rtl
}
.ui-timepicker-rtl dl {
text-align: right;
padding: 0 5px 0 0
}
.ui-timepicker-rtl dl dt {
float: right;
clear: right
}
.ui-timepicker-rtl dl dd {
margin: 0 40% 10px 10px
}
.ui-timepicker-div.ui-timepicker-oneLine {
padding-right: 2px
}
.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time, .ui-timepicker-div.ui-timepicker-oneLine dt {
display: none
}
.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time_label {
display: block;
padding-top: 2px
}
.ui-timepicker-div.ui-timepicker-oneLine dl {
text-align: right
}
.ui-timepicker-div.ui-timepicker-oneLine dl dd, .ui-timepicker-div.ui-timepicker-oneLine dl dd > div {
display: inline-block;
margin: 0
}
.ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_minute:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_second:before {
content: ':';
display: inline-block
}
.ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_millisec:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_microsec:before {
content: '.';
display: inline-block
}
.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide, .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide:before {
display: none
}
.ui-accordion {
width: 100%
}
.ui-accordion .ui-accordion-header {
cursor: pointer;
position: relative;
margin-top: 1px;
zoom: 1
}
.ui-accordion .ui-accordion-header a {
display: block;
font-size: 1em;
padding: .5em .5em .5em 2.2em
}
.ui-accordion .ui-accordion-header .fa {
position: absolute;
left: .5em;
top: 50%;
margin-top: -8px
}
.ui-accordion .ui-accordion-content {
padding: 1em 2.2em;
border-top: 0;
margin-top: -2px;
position: relative;
top: 1px;
margin-bottom: 2px;
overflow: auto;
zoom: 1
}
.ui-accordion .ui-accordion-header.ui-state-disabled, .ui-accordion .ui-accordion-header.ui-state-disabled a {
cursor: default
}
.ui-autocomplete {
width: auto;
zoom: 1;
cursor: pointer;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
position: relative;
display: inline-block
}
.ui-autocomplete .ui-autocomplete-dropdown {
position: absolute;
height: 100%;
width: 2.4em
}
.ui-autocomplete-query {
font-weight: bold
}
.ui-autocomplete-panel {
position: absolute;
overflow: auto
}
.ui-autocomplete-panel .ui-autocomplete-list {
padding: .4em;
border: 0 none
}
.ui-autocomplete-panel .ui-autocomplete-list-item {
border: 0 none;
cursor: pointer;
font-weight: normal;
margin: 1px 0;
padding: 3px 5px;
text-align: left
}
.ui-autocomplete-panel .ui-autocomplete-table {
border-collapse: collapse;
width: 100%
}
.ui-autocomplete-panel .ui-autocomplete-table td {
border-width: 1px;
border-style: solid;
border-color: inherit;
padding: 4px 10px 4px 10px
}
.ui-autocomplete .ui-button-icon-only .ui-button-text {
padding: .29em
}
.ui-autocomplete-multiple {
clear: left;
cursor: text;
list-style-type: none;
margin: 0;
min-height: 1px;
overflow: hidden
}
.ui-autocomplete-multiple-container.ui-inputfield {
padding: 0
}
.ui-autocomplete-token {
cursor: default;
float: left;
overflow: hidden;
padding: 1px 3px;
white-space: nowrap;
position: relative;
margin: 2px
}
.ui-autocomplete-token-label {
display: block;
padding: 0 2.1em 0 .5em
}
.ui-autocomplete-token-icon {
margin-top: -9px;
position: absolute;
right: .2em;
top: 50%;
cursor: pointer
}
.ui-autocomplete-input-token {
float: left;
list-style-type: none;
margin: 2px;
padding: 1px
}
.ui-autocomplete-input-token .ui-inputtext {
border: 0 none;
width: 140px;
outline: medium none;
background-color: transparent;
margin: 0;
padding: 0;
box-shadow: none
}
.ui-autocomplete-itemtip-content {
display: none
}
.ui-autocomplete-itemtip {
position: absolute;
display: none;
padding: .4em
}
.ui-autocomplete-emptyMessage {
padding: 3px 5px
}
.ui-autocomplete-panel .ui-autocomplete-group {
font-weight: bold;
cursor: default
}
.ui-autocomplete-dd input.ui-corner-all {
-moz-border-radius-topright: 0;
-webkit-border-top-right-radius: 0;
border-top-right-radius: 0;
-moz-border-radius-bottomright: 0;
-webkit-border-bottom-right-radius: 0;
border-bottom-right-radius: 0
}
.ui-autocomplete-dd .ui-autocomplete-dropdown.ui-corner-all {
-moz-border-radius-topleft: 0;
-webkit-border-top-left-radius: 0;
border-top-left-radius: 0;
-moz-border-radius-bottomleft: 0;
-webkit-border-bottom-left-radius: 0;
border-bottom-left-radius: 0
}
.ui-fluid .ui-autocomplete, .ui-fluid .ui-autocomplete-input {
width: 100%
}
.ui-fluid .ui-autocomplete .ui-autocomplete-dropdown.ui-button {
width: 2.4em
}
.ui-button {
display: inline-block;
position: relative;
padding: 0;
margin-right: .1em;
text-decoration: none !important;
cursor: pointer;
text-align: center;
zoom: 1;
overflow: visible
}
.ui-button-icon-only {
width: 2.4em
}
.ui-button .ui-button-text {
display: block;
line-height: normal
}
.ui-button-text-only .ui-button-text {
padding: .3em 1em
}
.ui-button-icon-only .ui-button-text {
padding: .3em;
text-indent: -9999999px
}
.ui-button-text-icon-left .ui-button-text {
padding: .3em 1em .3em 2.1em
}
.ui-button-text-icon-right .ui-button-text {
padding: .3em 2.1em .3em 1em
}
.ui-button-icon-only .fa, .ui-button-text-icon-left .fa, .ui-button-text-icon-right .fa {
position: absolute;
top: 50%;
margin-top: -7px
}
.ui-button-icon-only .fa {
left: 50%;
margin-left: -8px
}
.ui-button-icon-left {
left: .5em
}
.ui-button-icon-right {
right: .5em
}
.ui-buttonset {
margin-right: 7px
}
.ui-buttonset .ui-button {
margin-left: 0;
margin-right: 0
}
button.ui-button::-moz-focus-inner {
border: 0;
padding: 0
}
.ui-fluid .ui-button {
width: 100%;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box
}
.ui-fluid .ui-buttonset {
width: 100%
}
.ui-fluid .ui-buttonset.ui-buttonset-1 .ui-button {
width: 100%
}
.ui-fluid .ui-buttonset.ui-buttonset-2 .ui-button {
width: 50%
}
.ui-fluid .ui-buttonset.ui-buttonset-3 .ui-button {
width: 33.3%
}
.ui-fluid .ui-buttonset.ui-buttonset-4 .ui-button {
width: 25%
}
.ui-fluid .ui-buttonset.ui-buttonset-5 .ui-button {
width: 20%
}
.ui-fluid .ui-buttonset.ui-buttonset-6 .ui-button {
width: 16.6%
}
@media (max-width: 640px) {
.ui-fluid .ui-buttonset.ui-buttonset-1 .ui-button, .ui-fluid .ui-buttonset.ui-buttonset-2 .ui-button, .ui-fluid .ui-buttonset.ui-buttonset-3 .ui-button, .ui-fluid .ui-buttonset.ui-buttonset-4 .ui-button, .ui-fluid .ui-buttonset.ui-buttonset-5 .ui-button, .ui-fluid .ui-buttonset.ui-buttonset-6 .ui-button {
width: 100%
}
}
.ui-calendar {
position: relative;
display: inline-block
}
.ui-calendar button {
position: absolute;
height: 100%;
border-top-left-radius: 0;
border-bottom-left-radius: 0
}
.ui-fluid .ui-calendar {
width: 100%
}
.ui-carousel {
position: relative;
padding: 1px
}
.ui-carousel .ui-carousel-viewport .ui-carousel-items {
list-style: none outside none;
margin: 0;
padding: 0;
position: relative;
width: 32000px;
left: 0
}
.ui-carousel .ui-carousel-viewport .ui-carousel-items .ui-carousel-item {
margin: 1px;
padding: 0;
float: left;
box-sizing: border-box
}
.ui-carousel .ui-carousel-viewport {
overflow: hidden;
position: relative;
border: 0
}
.ui-carousel .ui-carousel-footer {
margin: 1px 1px 0 1px;
padding-top: 9px;
padding-bottom: 6px;
padding-right: 10px;
padding-left: 10px;
overflow: hidden
}
.ui-carousel .ui-carousel-header {
margin: 0 1px;
overflow: hidden;
padding-top: 7px;
padding-bottom: 8px;
padding-right: 10px;
padding-left: 10px
}
.ui-carousel .ui-carousel-header .ui-carousel-header-title {
display: inline-block;
padding-top: 2px;
overflow: hidden
}
.ui-carousel .ui-carousel-dropdown, .ui-carousel .ui-carousel-mobiledropdown {
float: right;
margin: 0 10px;
background-image: none
}
.ui-carousel .ui-carousel-dropdown option, .ui-carousel .ui-carousel-mobiledropdown option {
background-image: none;
border: 0 none;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none
}
.ui-carousel .ui-carousel-button {
float: right;
margin: 2px
}
.ui-carousel .ui-carousel-page-link {
float: left;
margin: 0 2px
}
.ui-carousel .ui-carousel-page-link, .ui-carousel .ui-carousel-button {
cursor: pointer
}
.ui-carousel .ui-carousel-page-links {
margin: 0 9px;
margin-top: 2px;
display: inline-table;
float: right
}
.ui-carousel .ui-carousel-mobiledropdown {
display: none
}
.ui-chkbox {
display: inline-block;
cursor: pointer;
vertical-align: middle
}
.ui-chkbox .ui-chkbox-box {
float: left;
width: 16px;
height: 16px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
margin-right: 3px
}
.ui-chkbox .ui-chkbox-icon {
margin-top: 1px;
margin-left: -1px
}
.ui-chkbox-label {
vertical-align: middle
}
.ui-shadow {
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3)
}
.ui-unselectable-text {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none
}
.ui-scrollbar-measure {
width: 100px;
height: 100px;
overflow: scroll;
position: absolute;
top: -9999px
}
.ui-datagrid .ui-paginator {
text-align: center;
border-top: 0 none
}
.ui-datagrid-column {
padding: 3px
}
.ui-datagrid-content-empty {
padding: 4px 10px
}
.ui-datagrid .ui-datagrid-header, .ui-datagrid .ui-datagrid-footer {
text-align: center;
padding: 4px 10px
}
.ui-datagrid .ui-datagrid-header {
border-bottom: 0 none
}
.ui-datagrid .ui-datagrid-footer {
border-top: 0 none
}
.ui-datagrid .ui-paginator-top {
border-bottom: 0 none
}
.ui-datagrid .ui-paginator-bottom {
border-top: 0 none
}
.ui-datagrid-content {
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
align-items: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-align-content: flex-end;
align-content: flex-end
}
.ui-datagrid-content > div {
box-sizing: border-box
}
.ui-datagrid-col-1 > div {
width: 100%
}
.ui-datagrid-col-2 > div {
width: 50%
}
.ui-datagrid-col-3 > div {
width: 33.33333%
}
.ui-datagrid-col-4 > div {
width: 25%
}
.ui-datagrid-col-5 > div {
width: 20%
}
.ui-datagrid-col-6 > div {
width: 16.66666%
}
.ui-datagrid-col-7 > div {
width: 14.28571%
}
.ui-datagrid-col-8 > div {
width: 12.5%
}
.ui-datagrid-col-9 > div {
width: 11.11111%
}
.ui-datagrid-col-10 > div {
width: 10%
}
@media (max-width: 640px) {
.ui-datagrid-content {
display: block
}
.ui-datagrid-col-1 > div, .ui-datagrid-col-2 > div, .ui-datagrid-col-3 > div, .ui-datagrid-col-4 > div, .ui-datagrid-col-5 > div, .ui-datagrid-col-6 > div, .ui-datagrid-col-7 > div, .ui-datagrid-col-8 > div, .ui-datagrid-col-9 > div, .ui-datagrid-col-10 > div, .ui-datagrid-col-11 > div, .ui-datagrid-col-12 > div {
width: 100%
}
}
.ui-datascroller .ui-datascroller-header {
text-align: center;
padding: 4px 10px;
border-bottom: 0 none
}
.ui-datascroller .ui-datascroller-footer {
text-align: center;
padding: 4px 10px;
border-top: 0 none
}
.ui-datascroller .ui-datascroller-content {
padding: 4px 10px
}
.ui-datascroller-inline .ui-datascroller-content {
overflow: auto
}
.ui-datascroller .ui-datascroller-list {
list-style-type: none;
margin: 0;
padding: 0
}
.ui-datascroller .ui-datascroller-item {
border: 0 none
}
.ui-datascroller .ui-datascroller-loader {
text-align: center;
padding: 4px 10px
}
.ui-datascroller .ui-datascroller-loading {
background: url("./images/loadingbar.gif") center center no-repeat;
width: 220px;
height: 19px;
padding: 0;
margin: 0;
display: inline-block
}
.ui-datalist .ui-datalist-header, .ui-datalist .ui-datalist-footer {
text-align: center;
padding: 4px 10px
}
.ui-datalist .ui-datalist-header {
border-bottom: 0 none
}
.ui-datalist .ui-datalist-footer {
border-top: 0 none
}
.ui-datalist .ui-paginator {
border-top: 0 none
}
.ui-datalist .ui-datalist-data {
margin: 0;
padding: 0
}
.ui-datalist .ui-datalist-data > li {
list-style-type: none
}
.ui-datatable table {
border-collapse: collapse;
width: 100%;
table-layout: fixed
}
.ui-datatable .ui-datatable-header, .ui-datatable .ui-datatable-caption, .ui-datatable .ui-datatable-footer {
text-align: center;
padding: 4px 10px;
box-sizing: border-box
}
.ui-datatable .ui-datatable-caption, .ui-datatable .ui-datatable-header {
border-bottom: 0 none
}
.ui-datatable .ui-datatable-footer {
border-top: 0 none
}
.ui-datatable thead th, .ui-datatable tfoot td {
text-align: center
}
.ui-datatable thead th, .ui-datatable tbody td, .ui-datatable tfoot td, .ui-datatable tfoot th {
padding: 4px 10px;
overflow: hidden;
border-width: 1px;
border-style: solid
}
.ui-datatable thead tr {
border-width: 0
}
.ui-datatable thead th {
border-color: inherit;
box-sizing: border-box
}
.ui-datatable tbody {
outline: 0
}
.ui-datatable tbody td {
border-color: inherit
}
.ui-datatable .ui-sortable-column {
cursor: pointer
}
.ui-datatable .ui-sortable-column-icon {
display: inline-block;
margin: -3px 0 -3px 2px
}
.ui-datatable tr.ui-state-highlight {
cursor: pointer
}
.ui-datatable-scrollable-body {
overflow: auto
}
.ui-datatable-scrollable-header {
overflow: hidden;
border: 0 none
}
.ui-datatable-scrollable .ui-datatable-scrollable-header {
position: relative
}
.ui-datatable-scrollable .ui-datatable-scrollable-header td {
font-weight: normal
}
.ui-datatable .ui-datatable-scrollable-body {
min-height: 0
}
.ui-datatable .ui-datatable-data tr.ui-state-hover {
border-color: inherit;
font-weight: inherit;
cursor: pointer
}
.ui-datatable-scrollable-theadclone {
height: 0
}
.ui-datatable-scrollable-theadclone tr {
height: 0
}
.ui-datatable-scrollable-theadclone th.ui-state-default {
height: 0;
border-bottom-width: 0;
border-top-width: 0;
padding-top: 0;
padding-bottom: 0;
outline: 0 none
}
.ui-datatable-scrollable-theadclone th span.ui-column-title {
display: block;
height: 0
}
.ui-datatable .ui-paginator {
padding: 2px;
border-top: 0 none
}
.ui-datatable-rtl {
direction: rtl
}
.ui-datatable-rtl.ui-datatable thead th, .ui-datatable-rtl.ui-datatable tfoot td {
text-align: right
}
.ui-row-toggler {
cursor: pointer
}
.ui-datatable .ui-column-resizer {
display: block;
position: absolute !important;
top: 0;
right: 0;
margin: 0;
width: 8px;
height: 100%;
padding: 0;
cursor: col-resize;
border: 1px solid transparent
}
.ui-datatable .ui-column-resizer-helper {
width: 1px;
position: absolute;
z-index: 10;
display: none
}
.ui-datatable-resizable {
padding-bottom: 1px;
overflow: auto
}
.ui-datatable-resizable thead th, .ui-datatable-resizable tbody td, .ui-datatable-resizable tfoot td {
white-space: nowrap
}
.ui-datatable-resizable th.ui-resizable-column {
background-clip: padding-box;
position: relative
}
.ui-datatable-reflow .ui-datatable-data td .ui-column-title {
display: none
}
.ui-datatable .ui-column-filter {
display: block;
width: 100%;
box-sizing: border-box;
margin-top: 4px
}
.ui-datatable td.ui-cell-editing {
padding: 0
}
.ui-datatable td.ui-cell-editing input {
box-sizing: border-box;
width: 100%;
border: 0 none;
outline: 0
}
.ui-datatable .ui-editable-column .ui-cell-editor {
display: none
}
.ui-datatable .ui-editable-column.ui-cell-editing .ui-cell-editor {
display: inline
}
.ui-datatable .ui-editable-column.ui-cell-editing .ui-cell-data {
display: none
}
@media (max-width: 35em) {
.ui-datatable-reflow thead th, .ui-datatable-reflow tfoot td {
display: none !important
}
.ui-datatable-reflow .ui-datatable-data td {
text-align: left;
display: block;
border: 0 none;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
clear: left
}
.ui-datatable-reflow .ui-datatable-data.ui-widget-content {
border: 0 none
}
.ui-datatable-reflow .ui-datatable-data tr.ui-widget-content {
border-left: 0 none;
border-right: 0 none
}
.ui-datatable-reflow .ui-datatable-data td .ui-column-title {
padding: .4em;
min-width: 30%;
display: inline-block;
margin: -.4em 1em -.4em -.4em;
font-weight: bold
}
}
.ui-datatable-stacked thead th, .ui-datatable-stacked tfoot td {
display: none !important
}
.ui-datatable-stacked .ui-datatable-data td {
text-align: left;
display: block;
border: 0 none;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
clear: left
}
.ui-datatable-stacked .ui-datatable-data.ui-widget-content {
border: 0 none
}
.ui-datatable-stacked .ui-datatable-data tr.ui-widget-content {
border-left: 0 none;
border-right: 0 none
}
.ui-datatable-stacked .ui-datatable-data td .ui-column-title {
padding: .4em;
min-width: 30%;
display: inline-block;
margin: -.4em 1em -.4em -.4em;
font-weight: bold
}
.ui-datatable .ui-selection-column .ui-chkbox, .ui-datatable .ui-selection-column .ui-radiobutton {
margin: 0;
display: block
}
.ui-datatable .ui-selection-column .ui-chkbox-box, .ui-datatable .ui-selection-column .ui-radiobutton-box {
display: block;
box-sizing: border-box;
height: 17px;
width: 17px
}
.ui-dialog {
position: fixed;
padding: 0;
overflow: hidden;
width: 300px
}
.ui-dialog .ui-dialog-titlebar {
padding: .4em .4em .4em 1em;
position: relative;
border: 0
}
.ui-dialog .ui-dialog-title {
float: left;
margin: .3em 16px .1em 0
}
.ui-dialog .ui-dialog-content {
position: relative;
border: 0;
padding: .5em 1em;
background: 0;
overflow: auto;
zoom: 1
}
.ui-dialog .ui-dialog-buttonpane {
text-align: left;
border-width: 1px 0 0 0;
background-image: none;
margin: .5em 0 0 0;
padding: .3em 1em .5em .4em
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
float: right
}
.ui-dialog .ui-dialog-buttonpane button {
margin: .5em .4em .5em 0;
cursor: pointer;
float: right
}
.ui-dialog .ui-resizable-se {
width: 14px;
height: 14px;
right: 3px;
bottom: 3px
}
.ui-draggable .ui-dialog-titlebar {
cursor: move
}
.ui-dialog .ui-dialog-titlebar-close, .ui-dialog .ui-dialog-titlebar-minimize, .ui-dialog .ui-dialog-titlebar-maximize {
float: right;
margin-top: 2px;
top: 0;
padding: 1px;
cursor: pointer;
height: 16px
}
.ui-dialog .ui-dialog-titlebar-close span, .ui-dialog .ui-dialog-titlebar-minimize span, .ui-dialog .ui-dialog-titlebar-maximize span {
display: block;
margin: 0
}
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus, .ui-dialog .ui-dialog-titlebar-minimize:hover, .ui-dialog .ui-dialog-titlebar-minimize:focus, .ui-dialog .ui-dialog-titlebar-maximize:hover, .ui-dialog .ui-dialog-titlebar-maximize:focus {
padding: 0
}
.ui-dialog-footer {
padding: .4em 1em;
border-width: 1px 0 0 0;
text-align: left
}
.ui-dialog-docking-zone {
position: fixed;
bottom: 0;
left: 0
}
.ui-dialog-minimizing {
border: 2px dotted gray
}
.ui-confirm-dialog-severity {
float: left;
margin: 3px 7px 20px 0
}
.ui-dialog.ui-dialog-minimized {
*width: 200px !important
}
.ui-dialog-mask {
position: fixed;
width: 100%;
height: 100%
}
.ui-dialog-rtl {
direction: rtl
}
.ui-dialog.ui-dialog-rtl .ui-dialog-title {
float: right
}
.ui-dialog.ui-dialog-rtl .ui-dialog-titlebar-close, .ui-dialog.ui-dialog-rtl .ui-dialog-titlebar-minimize, .ui-dialog.ui-dialog-rtl .ui-dialog-titlebar-maximize {
float: left
}
.ui-dialog.ui-dialog-rtl .ui-dialog-footer {
text-align: right
}
.ui-dialog-draggable .ui-dialog-titlebar {
cursor: move
}
.ui-dropdown {
display: inline-block;
position: relative;
width: auto;
zoom: 1;
cursor: pointer;
padding-right: 2em
}
.ui-dropdown .ui-dropdown-trigger {
border-right: 0;
border-top: 0;
border-bottom: 0;
cursor: pointer;
width: 16px;
height: 100%;
position: absolute;
right: 0;
top: 0;
padding: 0 3px
}
.ui-dropdown .ui-dropdown-trigger .fa {
margin-top: 4px;
margin-left: -1px
}
.ui-dropdown .ui-dropdown-label {
display: block;
border: 0;
white-space: nowrap;
overflow: hidden;
font-weight: normal;
width: 100%;
float: left
}
.ui-dropdown .ui-dropdown-label-empty {
text-indent: -9999px
}
.ui-dropdown.ui-state-disabled .ui-dropdown-trigger, .ui-dropdown.ui-state-disabled .ui-dropdown-label {
cursor: default
}
.ui-dropdown label.ui-dropdown-label {
cursor: pointer
}
.ui-dropdown input.ui-dropdown-label {
cursor: default
}
.ui-dropdown .ui-dropdown-panel {
min-width: 100%
}
.ui-dropdown-panel {
position: absolute;
height: auto
}
.ui-dropdown-panel .ui-dropdown-items-wrapper {
overflow: auto
}
.ui-dropdown-panel .ui-dropdown-item {
font-weight: normal;
border: 0 none;
cursor: pointer;
margin: 1px 0;
padding: 3px 5px;
text-align: left
}
.ui-dropdown-panel .ui-dropdown-item-group {
font-weight: bold
}
.ui-dropdown-panel .ui-dropdown-list {
padding: .4em;
border: 0 none
}
.ui-dropdown-panel .ui-dropdown-filter {
width: 100%;
padding-right: 18px;
box-sizing: border-box
}
.ui-dropdown-panel .ui-dropdown-filter-container {
position: relative;
margin: 0;
padding: .4em;
display: inline-block
}
.ui-dropdown-panel .ui-dropdown-filter-container .fa {
position: absolute;
top: 12px;
right: 15px
}
.ui-fluid .ui-dropdown {
width: 100%;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box
}
.ui-fluid .ui-dropdown .ui-dropdown-trigger {
width: 32px;
padding: 0 6px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box
}
.ui-fieldset, .ui-fieldset .ui-fieldset-legend {
padding: .6em 1em
}
.ui-fieldset-toggleable .ui-fieldset-legend {
padding: .5em 1em .5em .5em;
cursor: pointer;
white-space: nowrap
}
.ui-fieldset .ui-fieldset-toggler {
padding-right: .1em;
margin-top: .1em;
float: left
}
.ui-galleria {
overflow: hidden;
visibility: hidden;
position: relative
}
.ui-galleria-panel-wrapper {
position: relative;
padding: 0;
margin: 0
}
.ui-galleria-panel {
filter: inherit;
position: absolute;
top: 0;
left: 0;
list-style-type: none
}
.ui-galleria-filmstrip-wrapper {
overflow: hidden;
margin: 5px auto;
position: relative
}
.ui-galleria-filmstrip {
list-style: none outside none;
margin: 0;
padding: 0;
width: 2340px;
z-index: 900;
position: absolute;
top: 0;
left: 0
}
.ui-galleria-frame {
float: left;
margin-right: 5px;
opacity: .3;
cursor: pointer
}
.ui-galleria-frame-active {
opacity: 1
}
.ui-galleria-frame-content {
overflow: hidden
}
.ui-galleria-nav-next, .ui-galleria-nav-prev {
cursor: pointer;
position: absolute
}
.ui-galleria-nav-prev {
left: 5px
}
.ui-galleria-nav-next {
right: 5px
}
.ui-galleria-caption {
position: absolute;
left: 1px;
background-color: rgba(0, 0, 0, 0.5);
display: none;
color: #ededed;
padding: .2em 1em
}
.ui-galleria-caption h4 {
color: #ededed
}
.ui-galleria-panel-content {
padding: 1em 1.4em
}
.ui-grid {
clear: both;
padding: 0;
margin: 0
}
.ui-grid:before, .ui-grid:after {
content: "";
display: table
}
.ui-grid:after {
clear: both
}
.ui-grid .ui-grid-row {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
clear: both
}
.ui-grid-row:after {
clear: both;
content: "";
display: table
}
.ui-grid-col-1, .ui-grid-col-2, .ui-grid-col-3, .ui-grid-col-4, .ui-grid-col-5, .ui-grid-col-6, .ui-grid-col-7, .ui-grid-col-8, .ui-grid-col-9, .ui-grid-col-10, .ui-grid-col-11, .ui-grid-col-12 {
float: left;
box-sizing: border-box
}
.ui-grid-col-1 {
width: 8.33333%
}
.ui-grid-col-2 {
width: 33.33333%
}
.ui-grid-col-3 {
width: 25%
}
.ui-grid-col-4 {
width: 33.33333%
}
.ui-grid-col-5 {
width: 41.66666%
}
.ui-grid-col-6 {
width: 50%
}
.ui-grid-col-7 {
width: 58.33333%
}
.ui-grid-col-8 {
width: 66.66666%
}
.ui-grid-col-9 {
width: 75%
}
.ui-grid-col-10 {
width: 83.33333%
}
.ui-grid-col-11 {
width: 91.66666%
}
.ui-grid-col-12 {
width: 100%
}
@media (min-width: 480px) {
.ui-grid-fixed {
width: 480px
}
}
@media (min-width: 768px) {
.ui-grid-fixed {
width: 768px
}
}
@media (min-width: 960px) {
.ui-grid-fixed {
width: 960px
}
}
@media (min-width: 1024px) {
.ui-grid-fixed {
width: 1024px
}
}
@media (max-width: 640px) {
.ui-grid-responsive .ui-grid-row {
display: block
}
.ui-grid-responsive .ui-grid-col-1, .ui-grid-responsive .ui-grid-col-2, .ui-grid-responsive .ui-grid-col-3, .ui-grid-responsive .ui-grid-col-4, .ui-grid-responsive .ui-grid-col-5, .ui-grid-responsive .ui-grid-col-6, .ui-grid-responsive .ui-grid-col-7, .ui-grid-responsive .ui-grid-col-8, .ui-grid-responsive .ui-grid-col-9, .ui-grid-responsive .ui-grid-col-10, .ui-grid-responsive .ui-grid-col-11, .ui-grid-responsive .ui-grid-col-12 {
width: 100%;
float: none
}
}
.ui-grid.ui-grid-pad > .ui-grid-row > div {
padding: 4px 10px
}
@media (max-width: 640px) {
.ui-grid-responsive .ui-grid-row {
display: block
}
.ui-grid-responsive .ui-grid-col-1, .ui-grid-responsive .ui-grid-col-2, .ui-grid-responsive .ui-grid-col-3, .ui-grid-responsive .ui-grid-col-4, .ui-grid-responsive .ui-grid-col-5, .ui-grid-responsive .ui-grid-col-6, .ui-grid-responsive .ui-grid-col-7, .ui-grid-responsive .ui-grid-col-8, .ui-grid-responsive .ui-grid-col-9, .ui-grid-responsive .ui-grid-col-10, .ui-grid-responsive .ui-grid-col-11, .ui-grid-responsive .ui-grid-col-12 {
width: 100%;
float: none
}
}
.ui-g {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-wrap: wrap
}
.ui-g:after {
clear: both;
content: "";
display: table
}
.ui-g-1, .ui-g-2, .ui-g-3, .ui-g-4, .ui-g-5, .ui-g-6, .ui-g-7, .ui-g-8, .ui-g-9, .ui-g-10, .ui-g-11, .ui-g-12 {
float: left;
box-sizing: border-box;
padding: .5em
}
.ui-g-1 {
width: 8.3333%
}
.ui-g-2 {
width: 16.6667%
}
.ui-g-3 {
width: 25%
}
.ui-g-4 {
width: 33.3333%
}
.ui-g-5 {
width: 41.6667%
}
.ui-g-6 {
width: 50%
}
.ui-g-7 {
width: 58.3333%
}
.ui-g-8 {
width: 66.6667%
}
.ui-g-9 {
width: 75%
}
.ui-g-10 {
width: 83.3333%
}
.ui-g-11 {
width: 91.6667%
}
.ui-g-12 {
width: 100%
}
@media screen and (max-width: 40em) {
.ui-sm-1, .ui-sm-2, .ui-sm-3, .ui-sm-4, .ui-sm-5, .ui-sm-6, .ui-sm-7, .ui-sm-8, .ui-sm-9, .ui-sm-10, .ui-sm-11, .ui-sm-12 {
padding: .5em
}
.ui-sm-1 {
width: 8.3333%
}
.ui-sm-2 {
width: 16.6667%
}
.ui-sm-3 {
width: 25%
}
.ui-sm-4 {
width: 33.3333%
}
.ui-sm-5 {
width: 41.6667%
}
.ui-sm-6 {
width: 50%
}
.ui-sm-7 {
width: 58.3333%
}
.ui-sm-8 {
width: 66.6667%
}
.ui-sm-9 {
width: 75%
}
.ui-sm-10 {
width: 83.3333%
}
.ui-sm-11 {
width: 91.6667%
}
.ui-sm-12 {
width: 100%
}
}
@media screen and (min-width: 40.063em) {
.ui-md-1, .ui-md-2, .ui-md-3, .ui-md-4, .ui-md-5, .ui-md-6, .ui-md-7, .ui-md-8, .ui-md-9, .ui-md-10, .ui-md-11, .ui-md-12 {
padding: .5em
}
.ui-md-1 {
width: 8.3333%
}
.ui-md-2 {
width: 16.6667%
}
.ui-md-3 {
width: 25%
}
.ui-md-4 {
width: 33.3333%
}
.ui-md-5 {
width: 41.6667%
}
.ui-md-6 {
width: 50%
}
.ui-md-7 {
width: 58.3333%
}
.ui-md-8 {
width: 66.6667%
}
.ui-md-9 {
width: 75%
}
.ui-md-10 {
width: 83.3333%
}
.ui-md-11 {
width: 91.6667%
}
.ui-md-12 {
width: 100%
}
}
@media screen and (min-width: 64.063em) {
.ui-lg-1, .ui-lg-2, .ui-lg-3, .ui-lg-4, .ui-lg-5, .ui-lg-6, .ui-lg-7, .ui-lg-8, .ui-lg-9, .ui-lg-10, .ui-lg-11, .ui-lg-12 {
padding: .5em
}
.ui-lg-1 {
width: 8.3333%
}
.ui-lg-2 {
width: 16.6667%
}
.ui-lg-3 {
width: 25%
}
.ui-lg-4 {
width: 33.3333%
}
.ui-lg-5 {
width: 41.6667%
}
.ui-lg-6 {
width: 50%
}
.ui-lg-7 {
width: 58.3333%
}
.ui-lg-8 {
width: 66.6667%
}
.ui-lg-9 {
width: 75%
}
.ui-lg-10 {
width: 83.3333%
}
.ui-lg-11 {
width: 91.6667%
}
.ui-lg-12 {
width: 100%
}
}
@media screen and (min-width: 90.063em) {
.ui-xl-1, .ui-xl-2, .ui-xl-3, .ui-xl-4, .ui-xl-5, .ui-xl-6, .ui-xl-7, .ui-xl-8, .ui-xl-9, .ui-xl-10, .ui-xl-11, .ui-xl-12 {
padding: .5em
}
.ui-xl-1 {
width: 8.3333%
}
.ui-xl-2 {
width: 16.6667%
}
.ui-xl-3 {
width: 25%
}
.ui-xl-4 {
width: 33.3333%
}
.ui-xl-5 {
width: 41.6667%
}
.ui-xl-6 {
width: 50%
}
.ui-xl-7 {
width: 58.3333%
}
.ui-xl-8 {
width: 66.6667%
}
.ui-xl-9 {
width: 75%
}
.ui-xl-10 {
width: 83.3333%
}
.ui-xl-11 {
width: 91.6667%
}
.ui-xl-12 {
width: 100%
}
}
.ui-g-nopad {
padding: 0
}
* html .ui-growl {
position: absolute
}
* html .ui-growl-item {
padding-bottom: 0
}
* html .ui-growl-icon-close {
top: 7px;
right: 7px
}
.ui-growl {
position: fixed;
top: 20px;
right: 20px;
width: 301px
}
.ui-growl-item-container {
position: relative;
margin: 0 0 10px 0;
opacity: .85;
filter: alpha(opacity=85)
}
.ui-growl-item {
display: block;
padding: 10px 15px
}
.ui-growl-item p {
padding: 0;
margin: 0
}
.ui-growl-icon-close {
position: absolute;
top: 5px;
right: 3px;
cursor: pointer
}
.ui-growl-title {
font-weight: bold;
padding: 0 0 7px 0;
display: block
}
.ui-growl-image {
float: left;
margin-left: 5px;
padding: 0;
display: block
}
.ui-growl-message {
padding: 0 0 5px 0;
width: 220px;
float: right
}
.ui-growl-message p {
font-weight: normal
}
.ui-inputtext {
margin: 0;
outline: medium none;
padding: 4px;
font-weight: normal
}
.ui-widget-header .ui-inputtext, .ui-widget-content .ui-inputtext {
font-weight: normal
}
.ui-fluid .ui-inputtext {
width: 100%;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box
}
.ui-inputtextarea-resizable {
overflow: hidden;
resize: none
}
.ui-fluid .ui-inputtextarea {
width: 100%
}
.ui-lightbox {
position: fixed
}
.ui-lightbox-content-wrapper {
position: relative
}
.ui-lightbox-content {
position: relative;
margin: 0;
padding: 0;
background-color: #000
}
.ui-lightbox-nav-right, .ui-lightbox-nav-left {
position: absolute;
top: 50%;
cursor: pointer
}
.ui-lightbox-nav-left {
left: 0
}
.ui-lightbox-nav-right {
right: 0
}
.ui-lightbox-loading {
background: url("./images/loading.gif") #000 center center no-repeat
}
.ui-lightbox-caption {
padding: .2em .4em;
display: none
}
.ui-lightbox-caption-text {
margin: .3em 0 .1em 0;
float: left
}
.ui-lightbox-close {
float: right;
margin: 0;
padding: 1px
}
.ui-lightbox-close.ui-state-hover {
padding: 0
}
.ui-lightbox-nav-left, .ui-lightbox-nav-right {
opacity: .5
}
.ui-lightbox-nav-left:hover, .ui-lightbox-nav-right:hover {
opacity: 1
}
.ui-listbox {
overflow: auto;
padding: 2px;
width: 125px
}
.ui-listbox .ui-listbox-list {
list-style-type: none;
margin: 0;
padding: 0
}
.ui-listbox .ui-listbox-item {
padding: 2px;
border: 0 none;
cursor: pointer;
font-weight: normal
}
.ui-listbox.ui-state-disabled .ui-listbox-item {
cursor: default
}
.ui-menu {
width: 12.5em;
padding: .3em;
position: relative
}
.ui-menu.ui-menu-dynamic {
position: absolute;
display: none;
z-index: 100000
}
.ui-menu-list {
position: static
}
.ui-menu .ui-menu-list .ui-menuitem {
border: 0
}
.ui-menu .ui-menu-list .ui-widget-header {
clear: both;
float: left;
width: 98%;
margin: 1px 0
}
.ui-menu .ui-menuitem {
width: 100%;
float: left;
clear: both;
margin: 1px 0;
padding: 0
}
.ui-menu .ui-menuitem-parent {
width: 100%;
float: left;
clear: both;
margin: 1px 0;
padding: 0
}
.ui-menu .ui-menuitem-link {
display: block;
width: 92%;
outline: 0;
text-decoration: none;
font-weight: 400;
border: solid 1px transparent;
float: left;
line-height: 16px;
padding: .3em;
cursor: pointer
}
.ui-menu .ui-menuitem-link .ui-menuitem-icon {
display: inline-block;
float: left
}
.ui-menu .ui-menuitem-text {
float: left
}
.ui-menu .ui-widget-header h1, .ui-menu .ui-widget-header h2, .ui-menu .ui-widget-header h3, .ui-menu .ui-widget-header h4, .ui-menu .ui-widget-header h5, .ui-menu .ui-widget-header h6 {
float: left;
display: block;
font-size: 1em;
margin: 0 auto;
padding: .3em 3%
}
.ui-menu .ui-menu-parent .ui-menu-child {
display: none;
width: 12.5em;
padding: .3em;
position: absolute;
margin: 0;
outline: 0;
line-height: 1.3;
text-decoration: none;
font-size: 100%;
list-style: none
}
.ui-menu .ui-menu-parent {
position: relative
}
.ui-menu .ui-menu-parent .ui-submenu-icon {
float: right;
margin-right: -5px
}
.ui-menubutton {
padding: 0
}
.ui-menubutton .ui-button {
margin: 0
}
.ui-menubar {
width: auto
}
.ui-menubar .ui-menuitem {
width: auto;
clear: none
}
.ui-menubar .ui-menu-child .ui-menuitem {
width: 100%
}
.ui-menubar .ui-menu-child {
top: 25px;
left: 0
}
.ui-menubar .ui-menuitem-link {
width: auto;
padding: .4em .3em
}
.ui-menubar .ui-menu-child .ui-menuitem-link {
width: 92%
}
.ui-menubar .ui-widget-header {
clear: none;
width: auto;
margin: 0 3px 0 0
}
.ui-menubar .ui-widget-header h1, .ui-menubar .ui-widget-header h2, .ui-menubar .ui-widget-header h3, .ui-menubar .ui-widget-header h4, .ui-menubar .ui-widget-header h5, .ui-menubar .ui-widget-header h6 {
padding: .4em .3em
}
.ui-menubar .ui-menubar-options {
float: right
}
.ui-menu .ui-separator {
width: 98%;
height: 0;
float: left;
clear: both;
margin: 1px 0 0 0;
padding: 0;
border-top: 0 none
}
.ui-breadcrumb {
margin: 0;
padding: 0;
overflow: hidden;
padding: 5px 5px 7px 5px
}
.ui-breadcrumb ul {
margin: 0;
padding: 0;
display: block
}
.ui-breadcrumb ul li {
display: block;
float: left;
position: relative;
overflow: hidden
}
.ui-breadcrumb ul li span {
display: block;
overflow: hidden
}
.ui-breadcrumb ul li .ui-menuitem-link {
display: block;
position: relative;
overflow: hidden;
float: left;
margin-top: 3px
}
.ui-breadcrumb ul li.fa {
padding: 0;
margin: 4px 3px 0 3px
}
.ui-breadcrumb-chevron {
float: left
}
.ui-slidemenu .ui-slidemenu-wrapper {
position: relative
}
.ui-slidemenu .ui-slidemenu-content {
overflow-x: hidden;
overflow-y: auto;
position: relative
}
.ui-slidemenu .ui-menu-list {
position: absolute;
top: 0
}
.ui-slidemenu .ui-menu-parent {
position: static
}
.ui-slidemenu .ui-menu-child {
box-shadow: none;
border: 0 none;
background: none repeat scroll 0 0 transparent
}
.ui-slidemenu-backward {
position: absolute;
bottom: 0;
width: 95%;
margin-bottom: .4em;
padding: .2em;
cursor: pointer;
display: none
}
.ui-slidemenu-backward .fa {
float: left;
margin-top: 1px
}
.ui-fluid .ui-menu {
width: 100%
}
.ui-megamenu .ui-megamenu-panel.ui-menu-child {
width: auto
}
.ui-megamenu .ui-megamenu-panel .ui-menu-list {
width: 12.5em
}
.ui-megamenu-vertical {
width: 12.5em
}
.ui-megamenu-vertical .ui-menuitem-link, .ui-megamenu-vertical .ui-menu-list .ui-menuitem {
width: 100%;
box-sizing: border-box
}
.ui-panelmenu {
width: auto
}
.ui-panelmenu .ui-panelmenu-panel {
padding: 0;
margin: 0
}
.ui-panelmenu .ui-panelmenu-header {
cursor: pointer;
position: relative;
margin: 0;
zoom: 1
}
.ui-panelmenu .ui-panelmenu-header a {
display: block;
padding: .5em .5em .5em 2.2em
}
.ui-panelmenu .ui-panelmenu-header .fa {
position: absolute;
left: .5em;
top: 50%;
margin-top: -8px
}
.ui-panelmenu .ui-panelmenu-header .ui-menuitem-icon.fa {
left: 1.5em
}
.ui-panelmenu .ui-panelmenu-content {
padding: .2em 0;
border-top: 0;
margin-top: -2px;
position: relative;
top: 1px;
overflow: auto;
zoom: 1;
outline: 0
}
.ui-panelmenu .ui-panelmenu-header.ui-state-disabled, .ui-panelmenu .ui-panelmenu-header.ui-state-disabled a {
cursor: default
}
.ui-panelmenu .ui-menu-list {
position: static
}
.ui-panelmenu .ui-menuitem {
margin: 1px 0;
padding: 0
}
.ui-panelmenu .ui-menuitem-link {
display: block;
outline: 0;
text-decoration: none;
font-weight: 400;
border: solid 1px transparent;
line-height: 16px;
cursor: pointer;
position: relative;
padding: .3em .3em .3em 2em
}
.ui-panelmenu .ui-menu-parent .ui-menuitem-link-hasicon, .ui-panelmenu .ui-panelmenu-header a.ui-panelmenu-headerlink-hasicon {
padding-left: 2.8em
}
.ui-panelmenu .fa {
position: absolute;
right: auto;
top: 4px;
bottom: 0;
margin: auto 0;
left: .5em
}
.ui-panelmenu .ui-menu-parent > .ui-menuitem-link > .fa {
left: 1.5em
}
.ui-panelmenu .ui-menu-parent .ui-panelmenu-icon.fa {
left: .5em
}
.ui-panelmenu .ui-menuitem-text {
float: none
}
.ui-panelmenu .ui-menu-parent .ui-menu-list {
margin-left: 20px
}
.ui-menuitem-active > .ui-submenu > ul, .ui-menuitem-active > .ui-megamenu-panel {
display: block !important
}
.ui-menuitem-outline {
outline: 1px dotted;
z-index: 1
}
.ui-tabmenu {
position: relative;
zoom: 1
}
.ui-tabmenu .ui-tabmenu-nav {
margin: 0;
padding: .2em .2em 0
}
.ui-tabmenu .ui-tabmenu-nav .ui-tabmenuitem {
list-style: none;
float: left;
position: relative;
margin: 0 .2em 1px 0;
padding: 0;
white-space: nowrap;
display: block;
border-bottom: 0;
top: 1px
}
.ui-tabmenu .ui-tabmenu-nav .ui-tabmenuitem a {
float: left;
padding: .5em 1em;
text-decoration: none
}
.ui-tabmenu .ui-tabmenu-nav a {
padding: .5em 1em
}
.ui-tabmenu .ui-tabmenu-nav .ui-tabmenuitem .ui-icon {
float: left;
cursor: pointer
}
.ui-messages {
border: 1px solid;
margin: 10px 0;
padding: 20px 20px 20px 10px;
display: none;
position: relative
}
.ui-messages-icon {
display: block;
float: left;
margin-top: -5px;
padding: 0;
position: relative
}
.ui-messages-summary {
margin-left: 10px;
font-weight: bold
}
.ui-messages-detail {
margin-left: 5px
}
.ui-messages-info {
color: #fff;
background-color: #2196f3;
border-color: #2196f3
}
.ui-messages-warn {
color: #fff;
background-color: #ff9800;
border-color: #ff9800
}
.ui-messages-error {
color: #fff;
background-color: #f44336;
border-color: #f44336
}
.ui-messages ul {
margin: 0 25px;
padding: 0;
list-style-type: none
}
.ui-messages.ui-messages-noicon ul {
margin: 0 25px 0 0
}
.ui-messages .ui-messages-close {
color: #fff;
cursor: pointer;
position: absolute;
top: 5px;
right: 5px
}
.ui-message {
border: 1px solid;
margin: 0 5px;
padding: 2px 5px
}
.ui-multiselect {
display: inline-block;
position: relative;
width: auto;
zoom: 1;
cursor: pointer
}
.ui-multiselect .ui-multiselect-trigger {
border-right: 0;
border-top: 0;
border-bottom: 0;
cursor: pointer;
width: 16px;
height: 100%;
position: absolute;
right: 0;
top: 0;
padding: 0 3px
}
.ui-multiselect .ui-multiselect-trigger .fa {
margin-top: 3px
}
.ui-multiselect .ui-multiselect-label-container {
overflow: hidden
}
.ui-multiselect .ui-multiselect-label {
display: block;
padding: 3px 26px 3px 5px;
width: auto;
border: 0;
cursor: pointer;
text-overflow: ellipsis;
overflow: hidden
}
.ui-multiselect.ui-state-disabled .ui-multiselect-trigger, .ui-multiselect.ui-state-disabled .ui-multiselect-label {
cursor: auto
}
.ui-multiselect .ui-multiselect-panel {
padding: .2em;
position: absolute;
min-width: 100%
}
.ui-multiselect-panel .ui-multiselect-items-wrapper {
overflow: auto;
position: relative;
padding: .2em 0
}
.ui-multiselect-panel .ui-multiselect-list {
border: 0 none
}
.ui-multiselect-panel .ui-multiselect-item {
border: 0 none;
cursor: pointer;
font-weight: normal;
margin: 1px 0;
padding: 4px;
text-align: left;
white-space: nowrap;
display: block;
position: relative
}
.ui-multiselect-panel .ui-multiselect-item .ui-chkbox {
position: absolute;
top: 50%;
margin-top: -8px
}
.ui-multiselect-panel .ui-multiselect-item label {
display: block;
padding-left: 25px;
padding-top: 3px;
cursor: pointer
}
.ui-multiselect-header {
margin-bottom: .3em;
padding: .3em 0 .3em .4em;
position: relative
}
.ui-multiselect-header .ui-chkbox {
position: absolute;
top: 5px;
left: 5px;
cursor: pointer
}
.ui-multiselect-header .ui-multiselect-filter-container {
position: relative;
margin-left: 20px;
margin-right: 20px
}
.ui-multiselect-header .ui-multiselect-filter-container .fa {
position: absolute;
left: 5px;
top: 3px
}
.ui-multiselect-header .ui-inputtext {
padding: 1px 1px 1px 25px
}
.ui-multiselect-header .ui-multiselect-close {
position: absolute;
right: 2px;
top: 4px;
display: block;
font-size: 18px;
border: 0 none
}
.ui-multiselect-header a.ui-multiselect-all, .ui-multiselect-header a.ui-multiselect-none {
float: left;
margin-right: 10px;
display: block
}
.ui-multiselect-header .ui-multiselect-close.ui-state-hover {
padding: 0
}
.ui-fluid .ui-multiselect {
width: 100%;
box-sizing: border-box
}
.ui-multiselectlistbox-listcontainer {
padding: 2px;
width: 150px
}
.ui-multiselectlistbox-listcontainer {
overflow: auto
}
.ui-multiselectlistbox .ui-multiselectlistbox-list {
list-style-type: none;
margin: 0;
padding: 0
}
.ui-multiselectlistbox .ui-multiselectlistbox-item {
margin: 2px;
border: 0 none;
cursor: pointer;
font-weight: normal
}
.ui-multiselectlistbox .ui-multiselectlistbox-listcontainer {
float: left;
margin-right: 4px
}
.ui-multiselectlistbox .ui-multiselectlistbox-item {
white-space: nowrap
}
.ui-multiselectlistbox.ui-state-disabled .ui-multiselectlistbox-item {
cursor: default
}
.ui-multiselectlistbox .ui-multiselectlistbox-header {
text-align: center;
padding: 2px 10px;
border-bottom: 0 none
}
.ui-notify {
position: fixed;
width: 100%;
height: 100px;
display: none;
padding: 10px
}
.ui-notify-top {
top: 0
}
.ui-notify-bottom {
bottom: 0
}
.ui-notify-close {
position: absolute;
right: 3em;
top: 1em;
cursor: pointer;
opacity: .5
}
.ui-notify-close:hover {
opacity: 1.0
}
.ui-orderlist {
display: table
}
.ui-orderlist .ui-orderlist-caption {
width: 200px
}
.ui-orderlist .ui-orderlist-list {
list-style-type: none;
margin: 0;
padding: 0;
overflow: auto;
height: 200px;
width: 200px
}
.ui-orderlist .ui-orderlist-list li {
margin: 1px;
padding: 2px
}
.ui-orderlist .ui-button {
display: block;
margin-bottom: .3em
}
.ui-orderlist .ui-orderlist-button.ui-button-text-icon-primary {
width: 100%
}
.ui-orderlist .ui-orderlist-item {
cursor: pointer;
border: 0 none;
font-weight: inherit
}
.ui-orderlist .ui-orderlist-caption {
text-align: center;
padding: 4px 0;
border-bottom: 0 none
}
.ui-orderlist table {
width: 100%;
border-collapse: collapse
}
.ui-orderlist.ui-state-disabled .ui-orderlist-item, .ui-orderlist.ui-state-disabled .ui-button {
cursor: default
}
.ui-orderlist.ui-state-disabled .ui-orderlist-list {
overflow: hidden
}
.ui-orderlist.ui-grid-responsive {
display: block;
width: 100%
}
.ui-orderlist.ui-grid-responsive .ui-orderlist-controls {
margin-right: 10px
}
.ui-orderlist.ui-grid-responsive .ui-orderlist-list, .ui-orderlist.ui-grid-responsive .ui-orderlist-caption {
width: 100%
}
.ui-orderlist.ui-grid-responsive .ui-orderlist-controls .ui-button {
width: 100%
}
@media (max-width: 640px) {
.ui-orderlist.ui-grid-responsive .ui-orderlist-controls {
text-align: center
}
.ui-orderlist.ui-grid-responsive .ui-orderlist-controls .ui-button {
display: inline;
width: 20%
}
}
.ui-overlaypanel {
padding: 0;
margin: 0;
position: absolute
}
.ui-overlaypanel-content {
padding: .5em 1em
}
.ui-overlaypanel-close {
position: absolute;
top: -10px;
right: -10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px
}
.ui-paginator {
margin: 0;
text-align: center;
padding: 2px
}
.ui-paginator .ui-paginator-top {
border-bottom: 0 none
}
.ui-paginator .ui-paginator-bottom {
border-top: 0 none
}
.ui-paginator .ui-paginator-page, .ui-paginator .ui-paginator-pages, .ui-paginator .ui-paginator-next, .ui-paginator .ui-paginator-last, .ui-paginator .ui-paginator-first, .ui-paginator .ui-paginator-prev, .ui-paginator .ui-paginator-current {
display: inline-block;
padding: 2px 6px;
zoom: 1;
margin-left: 1px;
margin-right: 1px;
text-decoration: none;
outline: 0
}
.ui-paginator .ui-paginator-page, .ui-paginator .ui-paginator-next, .ui-paginator .ui-paginator-last, .ui-paginator .ui-paginator-first, .ui-paginator .ui-paginator-prev {
cursor: pointer
}
.ui-paginator .ui-paginator-current, .ui-paginator .ui-paginator-rpp-options {
margin-left: 1em;
margin-right: 1em;
background-image: none
}
.ui-paginator .ui-paginator-jtp-select option, .ui-paginator .ui-paginator-rpp-options option {
background-image: none;
border: 0 none;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none
}
.ui-panel {
padding: .2em
}
.ui-panel .ui-panel-titlebar {
padding: .5em 1em .3em
}
.ui-panel .ui-panel-title {
margin: .1em 16px .2em 0
}
.ui-panel .ui-panel-titlebar-icon {
float: right;
cursor: pointer
}
.ui-panel .ui-panel-titlebar-icon, .ui-panel .ui-panel-titlebar-icon:hover, .ui-panel .ui-panel-titlebar-icon:focus {
margin-left: .2em;
margin-top: -0.1em;
*margin: -1.5em 0 0 .2em
}
.ui-panel .ui-panel-content {
border: 0;
background: 0;
padding: .5em 1em
}
.ui-panel .ui-panel-footer {
border-width: 1px 0 0;
margin: .5em 0 0;
padding: .5em 1em;
text-align: left
}
.ui-panel-collapsed-h .ui-panel-titlebar-icon, .ui-panel-collapsed-h .ui-panel-titlebar-icon:hover, .ui-panel-collapsed-h .ui-panel-titlebar-icon:focus {
*margin: -0.2em 0 0 .1em
}
.ui-panel.ui-panel-collapsed-h {
width: 42px
}
.ui-panel.ui-panel-collapsed-h .ui-panel-title {
display: none
}
.ui-password-panel {
padding: 4px 10px;
width: 150px;
margin-top: 2px
}
.ui-password-panel .ui-password-meter {
height: 10px;
background: transparent url("./images/password-meter.png") no-repeat left top;
padding: 0;
margin: 0
}
.ui-password-info {
margin-top: 4px
}
.ui-password-panel-overlay {
position: absolute
}
.ui-picklist > div {
float: left
}
.ui-picklist .ui-picklist-buttons {
height: 200px;
padding: 0 5px
}
.ui-picklist .ui-picklist-list {
list-style-type: none;
margin: 0;
padding: 0;
overflow: auto;
height: 200px;
width: 200px
}
.ui-picklist .ui-picklist-list li {
margin: 1px;
padding: 2px
}
.ui-picklist .ui-button {
display: block;
margin-bottom: .3em
}
.ui-picklist .ui-button-text-icon-left {
width: 100%
}
.ui-picklist .ui-picklist-item {
cursor: pointer;
border: 0 none;
font-weight: inherit
}
.ui-picklist .ui-picklist-caption {
text-align: center;
padding: 4px 0;
border-bottom: 0 none
}
.ui-picklist table {
width: 100%;
border-collapse: collapse
}
.ui-picklist .ui-picklist-filter {
padding-right: 15px;
width: 100%;
box-sizing: border-box
}
.ui-picklist .ui-picklist-filter-container {
position: relative;
margin: 0;
padding: 0
}
.ui-picklist .ui-picklist-filter-container .fa {
position: absolute;
top: 5px;
right: 2px
}
.ui-picklist {
display: table
}
.ui-picklist > div {
float: none;
display: table-cell;
vertical-align: top
}
.ui-picklist .ui-picklist-buttons {
vertical-align: middle
}
.ui-picklist.ui-picklist-vertical {
display: table
}
.ui-picklist.ui-picklist-vertical > div {
float: none;
display: table-row;
vertical-align: top
}
.ui-picklist.ui-picklist-vertical .ui-picklist-buttons {
text-align: center;
height: auto
}
.ui-picklist.ui-picklist-vertical .ui-picklist-buttons .ui-button {
display: inline-block
}
.ui-picklist.ui-picklist-vertical .ui-button {
margin-top: .3em
}
.ui-picklist-outline {
outline: 1px dotted black;
z-index: 1
}
.ui-picklist-list.ui-picklist-source, .ui-picklist-list.ui-picklist-target {
outline: 0
}
.ui-picklist.ui-picklist-responsive * {
box-sizing: border-box
}
.ui-picklist.ui-picklist-responsive {
width: 100%
}
.ui-picklist.ui-picklist-responsive .ui-picklist-listwrapper {
width: 35%
}
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons {
width: 10%
}
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons button {
width: 100%
}
.ui-picklist.ui-picklist-responsive .ui-picklist-list {
width: auto
}
.ui-picklist.ui-picklist-responsive .ui-chkbox-box {
width: 18px;
height: 18px
}
@media (max-width: 640px) {
.ui-picklist.ui-picklist-responsive {
display: block
}
.ui-picklist.ui-picklist-responsive > div {
display: block;
width: 100% !important
}
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons {
text-align: center;
height: auto;
padding: 5px 0
}
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons button {
display: inline;
width: 20%
}
.ui-picklist.ui-picklist-responsive .ui-picklist-source-controls.ui-picklist-buttons {
padding-bottom: 5px
}
.ui-picklist.ui-picklist-responsive .ui-picklist-target-controls.ui-picklist-buttons {
padding-top: 5px
}
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons .fa-angle-right:before {
content: "\f107"
}
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons .fa-angle-double-right:before {
content: "\f103"
}
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons .fa-angle-left:before {
content: "\f106"
}
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons .fa-angle-double-left:before {
content: "\f102"
}
}
.ui-progressbar {
height: 1.2em;
text-align: left;
position: relative
}
.ui-progressbar .ui-progressbar-value {
margin: -1px;
height: 100%;
width: 0;
position: absolute;
display: none
}
.ui-progressbar .ui-progressbar-value-animate {
-webkit-transition: width 1s ease-in-out;
-moz-transition: width 1s ease-in-out;
-o-transition: width 1s ease-in-out;
transition: width 1s ease-in-out
}
.ui-progressbar .ui-progressbar-label {
text-align: center;
height: 100%;
width: 100%;
position: absolute;
display: none;
font-weight: bold
}
.ui-radiobutton {
position: relative;
width: 16px;
margin: 2px 0;
line-height: 16px;
cursor: pointer
}
.ui-radiobutton .ui-radiobutton-box {
width: 16px;
height: 16px;
line-height: 16px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px
}
.ui-radiobutton-icon {
font-size: 10px;
margin-top: 3px;
margin-left: 2px;
display: block
}
.ui-radiobutton, .ui-radiobutton-label {
vertical-align: middle;
display: inline-block
}
.ui-radiobutton-label {
margin-left: 3px
}
.ui-rating-star, .ui-rating-cancel {
float: left;
display: block;
overflow: hidden;
text-indent: -999em;
cursor: pointer
}
.ui-rating-star a, .ui-rating-cancel a {
width: 16px;
height: 15px;
display: block;
background: url("./images/rating.png") no-repeat 0 0
}
.ui-rating-star a {
background-position: 0 -32px
}
.ui-rating-star-on a {
background-position: 0 -48px
}
.ui-rating-star-hover a {
background-position: 0 -64px
}
.ui-rating-cancel-hover a {
background-position: 0 -16px
}
.ui-rating.ui-state-disabled .ui-rating-star, .ui-rating.ui-state-disabled .ui-rating-cancel {
cursor: default
}
.ui-selectbutton {
display: inline-block;
padding: 1px
}
.ui-selectbutton.ui-state-error {
padding: 0
}
.ui-selectbutton .ui-button.ui-state-focus {
outline: 0
}
.ui-spinner {
display: inline-block;
overflow: visible;
padding: 0;
position: relative;
vertical-align: middle
}
.ui-spinner-input {
vertical-align: middle;
text-align: right;
padding-right: 20px
}
.ui-spinner-button {
cursor: default;
display: block;
font-size: .5em;
height: 50%;
margin: 0;
overflow: hidden;
padding: 0;
position: absolute;
right: 0;
text-align: center;
vertical-align: middle;
width: 16px;
z-index: 100
}
.ui-spinner .fa {
left: -1px;
margin-top: -8px;
position: absolute;
top: 50%
}
.ui-spinner-up {
top: 0
}
.ui-spinner-down {
bottom: 0
}
.ui-fluid .ui-spinner {
width: 100%
}
.ui-fluid .ui-spinner .ui-spinner-input {
padding-right: 36px;
width: 100%
}
.ui-fluid .ui-spinner .ui-spinner-button {
width: auto
}
.ui-fluid .ui-spinner .ui-spinner-button .fa {
left: 6px
}
.ui-splitbutton {
position: relative;
padding-right: 2em
}
.ui-splitbutton .ui-button.ui-splitbutton-menubutton {
width: 32px;
position: absolute;
top: 0;
margin-left: -1px;
right: 0
}
.ui-splitbutton {
display: inline-block;
zoom: 1
}
.ui-fluid .ui-splitbutton {
width: 100%;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box
}
.ui-fluid .ui-splitbutton .ui-button {
width: 100%
}
.ui-fluid .ui-splitbutton .ui-button.ui-splitbutton-menubutton {
width: 32px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box
}
.ui-inputswitch {
display: inline-block;
padding: 0;
position: relative;
overflow: hidden;
cursor: pointer;
user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
height: 24px
}
.ui-inputswitch .ui-inputswitch-on, .ui-inputswitch .ui-inputswitch-off {
white-space: nowrap;
display: block;
position: absolute;
top: 0;
width: auto;
overflow: hidden;
user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
font-weight: bold;
height: 20px;
padding-top: 4px
}
.ui-inputswitch .ui-inputswitch-off {
right: 0;
text-align: right
}
.ui-inputswitch .ui-inputswitch-off span {
display: inline-block;
text-align: center;
padding-left: 2px;
padding-right: 3px
}
.ui-inputswitch .ui-inputswitch-on {
left: 0;
padding-right: 4px;
border: 0 none
}
.ui-inputswitch .ui-inputswitch-on span {
display: inline-block;
text-align: center;
padding-left: 3px;
padding-right: 2px
}
.ui-inputswitch .ui-inputswitch-handle {
display: block;
width: 0;
position: absolute;
top: 0;
left: 0;
height: 24px;
border-top: 0 none;
border-bottom: 0 none
}
.ui-tabview {
position: relative;
padding: .2em;
zoom: 1
}
.ui-tabview .ui-tabview-nav {
margin: 0
}
.ui-tabview .ui-tabview-nav li {
list-style: none;
float: left;
position: relative;
margin: 0 .2em 1px 0;
padding: 0;
white-space: nowrap
}
.ui-tabview .ui-tabview-nav li a {
float: left;
padding: .5em 1em;
text-decoration: none
}
.ui-tabview .ui-tabview-nav li.ui-tabview-selected a, .ui-tabview .ui-tabview-nav li.ui-state-disabled a, .ui-tabview .ui-tabview-nav li.ui-state-processing a {
cursor: text
}
.ui-tabview .ui-tabview-nav li a, .ui-tabview.ui-tabview-collapsible .ui-tabview-nav li.ui-tabview-selected a {
cursor: pointer
}
.ui-tabview .ui-tabview-panel {
border-width: 0;
padding: 1em 1.4em;
background: 0
}
.ui-tabview .ui-tabview-nav li {
display: block
}
.ui-tabview .ui-tabview-nav li .ui-tabview-left-icon, .ui-tabview .ui-tabview-nav li .ui-tabview-right-icon {
vertical-align: text-top
}
.ui-tabview .ui-tabview-nav li .ui-tabview-close {
margin: .5em .3em 0 0;
cursor: pointer
}
.ui-tabview.ui-tabview-top > .ui-tabview-nav li {
border-bottom: 0;
top: 1px
}
.ui-tabview.ui-tabview-top > .ui-tabview-nav {
padding: .2em .2em 0
}
.ui-tabview.ui-tabview-bottom > .ui-tabview-nav {
padding: 0 .2em .2em
}
.ui-tabview.ui-tabview-bottom > .ui-tabview-nav li {
border-top: 0
}
.ui-tabview-left:after, .ui-tabview-right:after {
clear: both;
content: ".";
display: block;
height: 0;
visibility: hidden
}
.ui-tabview-left > .ui-tabview-nav {
float: left;
width: 23%;
height: 300px;
background-image: none;
padding-top: 1px
}
.ui-tabview-left > .ui-tabview-panels {
float: right;
width: 75%
}
.ui-tabview.ui-tabview-left > .ui-tabview-nav li, .ui-tabview.ui-tabview-right > .ui-tabview-nav li {
display: block;
float: right;
white-space: normal;
width: 98%
}
.ui-tabview.ui-tabview-left > .ui-tabview-nav li {
margin: 0 0 1px .2em;
border-right: 0 none
}
.ui-tabview.ui-tabview-right > .ui-tabview-nav {
float: right;
width: 23%;
height: 300px;
background-image: none;
padding-top: 1px
}
.ui-tabview.ui-tabview-right > .ui-tabview-panels {
float: left;
width: 75%
}
.ui-tabview.ui-tabview-right > .ui-tabview-nav li {
margin: 0 .2em 1px 0;
border-left: 0 none
}
.ui-terminal {
height: 300px;
overflow: auto;
padding: 3px
}
.ui-terminal-input {
border: 0 none;
background-color: transparent;
color: inherit;
padding: 0;
margin: 0 0 0 2px;
width: 75%;
outline: 0;
vertical-align: baseline
}
.ui-terminal-command {
margin-left: 2px;
-moz-margin-start: 3px
}
.ui-terminal-input::-ms-clear {
display: none
}
.ui-toolbar {
padding: .2em
}
.ui-toolbar-group-left {
float: left
}
.ui-toolbar-group-right {
float: right
}
.ui-tooltip {
position: absolute;
display: none;
padding: 3px 5px
}
.ui-tooltip.ui-tooltip-right, .ui-tooltip.ui-tooltip-left {
padding: 0 5px
}
.ui-tooltip.ui-tooltip-top, .ui-tooltip.ui-tooltip-bottom {
padding: 5px 0
}
.ui-tooltip .ui-tooltip-text {
padding: 3px 10px;
background-color: #4c4c4c;
color: #fff
}
.ui-tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid
}
.ui-tooltip-right .ui-tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-width: 5px 5px 5px 0;
border-right-color: #4c4c4c
}
.ui-tooltip-left .ui-tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-width: 5px 0 5px 5px;
border-left-color: #4c4c4c
}
.ui-tooltip.ui-tooltip-top {
padding: 5px 0
}
.ui-tooltip-top .ui-tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: #4c4c4c
}
.ui-tooltip-bottom .ui-tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-width: 0 5px 5px;
border-bottom-color: #4c4c4c
}
.ui-tree {
width: 300px
}
.ui-tree .ui-tree-container {
height: 100%;
margin: 0;
overflow: auto;
padding: 3px;
white-space: nowrap
}
.ui-tree .ui-treenode-children {
margin: 0;
padding: 0 0 0 16px
}
.ui-tree .ui-treenode {
background-attachment: scroll;
background-color: transparent;
background-image: none;
background-position: 0 0;
background-repeat: repeat-y;
list-style: none outside none;
margin: 0;
padding: 1px 0 0
}
.ui-tree .ui-tree-toggler {
cursor: pointer;
display: inline-block;
margin-top: 3px
}
.ui-tree .ui-treenode-icon {
display: inline-block;
margin-top: 3px
}
.ui-tree .ui-treenode-label {
display: inline-block;
margin: 2px 0 0 0;
padding: 0 3px
}
.ui-tree .ui-treenode-selectable .ui-treenode-label, .ui-tree .ui-treenode-selectable .ui-treenode-icon {
cursor: pointer
}
.ui-tree .ui-treenode-label.ui-state-hover, .ui-tree .ui-treenode-label.ui-state-highlight {
font-weight: normal;
border: 0 none
}
.ui-tree .ui-treenode-leaf-icon {
width: 16px;
height: 16px;
display: inline-block
}
.ui-tree .ui-chkbox-box {
cursor: pointer;
width: 15px;
height: 15px;
float: left
}
.ui-tree .ui-chkbox {
display: inline-block;
zoom: 1
}
.ui-fluid .ui-tree {
width: 100%
}
.ui-treetable table {
border-collapse: collapse;
width: 100%;
table-layout: fixed
}
.ui-treetable .ui-treetable-header, .ui-treetable .ui-treetable-footer {
text-align: center;
padding: 4px 10px
}
.ui-treetable .ui-treetable-header {
border-bottom: 0 none
}
.ui-treetable .ui-treetable-footer {
border-top: 0 none
}
.ui-treetable th, .ui-treetable tfoot td {
text-align: center
}
.ui-treetable thead th, .ui-treetable tbody td, .ui-treetable tfoot td {
padding: 4px 10px;
overflow: hidden;
white-space: nowrap;
border-width: 1px;
border-style: solid
}
.ui-treetable tbody td {
border-color: inherit
}
.ui-treetable .ui-treetable-toggler {
float: left;
cursor: pointer
}
.ui-treetable .ui-treetable-data tr.ui-state-highlight, .ui-treetable .ui-treetable-data tr.ui-state-hover, .ui-treetable .ui-treetable-row.ui-state-highlight, .ui-treetable .ui-treetable-row.ui-state-hover {
cursor: pointer
}
.ui-treetable tr.ui-state-hover {
border-color: inherit;
font-weight: inherit
}
.ui-treetable .ui-treetable-indent {
width: 16px;
height: 16px;
float: left
}
.ui-treetable td.ui-treetable-child-table-container {
padding: 0;
border: 0 none
}
.ui-treetable .ui-treetable-row {
display: table-row;
border-bottom: 0 transparent
}
.ui-treetable .ui-treetable-row.ui-state-hover, .ui-treetable .ui-treetable-row.ui-state-highlight {
border: 0 none
}
.ui-treetable tbody .ui-treetable-row td {
border: 0 none
}
|
public/Windows 10 x64 (18363.900)/_MI_SUB64K_FREE_RANGES.html | epikcraw/ggool | <html><body>
<h4>Windows 10 x64 (18363.900)</h4><br>
<h2>_MI_SUB64K_FREE_RANGES</h2>
<font face="arial"> +0x000 BitMap : <a href="./_RTL_BITMAP_EX.html">_RTL_BITMAP_EX</a><br>
+0x010 ListEntry : <a href="./_LIST_ENTRY.html">_LIST_ENTRY</a><br>
+0x020 Vad : Ptr64 <a href="./_MMVAD_SHORT.html">_MMVAD_SHORT</a><br>
+0x028 SetBits : Uint4B<br>
+0x02c FullSetBits : Uint4B<br>
+0x030 SubListIndex : Pos 0, 2 Bits<br>
+0x030 Hint : Pos 2, 30 Bits<br>
</font></body></html> |
census/templates/admin/base_site.html | mujinyun2009/shakespeare-census | {% extends "admin/base.html" %}
{% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}
{% block branding %}
<h1 id="site-name"><a href="{% url 'admin:index' %}">{{ site_header|default:_('Shakespeare Census') }}</a></h1>
{% endblock %}
{% block nav-global %}{% endblock %}
|
about.html | navdeepsingh/navdeepsingh.github.io | ---
layout: page
title: "About"
description: "This is what I do."
header-img: "img/website-about-bgd.jpg"
---
<p>I have been in web development since 2006. While 6 months industrial training in a small digital agency which was part of my curriculum for Bachelor of Technology in Computer Science, I made my mind to pursue my career in this area. And the decision was right.</p>
<p>Starting first 4 Years, I mostly did procedural coding in PHP and layout setup in HTML/CSS using Dreamweaver that time. During that course of time, I come to know about jQuery and by playing from small animations to complex ajax calls the jQuery takes the prominent place in my skill set permanently.</p>
<p>In 2011, I got the oppurtunity to work directly for a Singapore based social digital company named iNEO. And here the journey to become Full Stack Developer starts by working in multiple types of FB campaigns, Microsites using KOHANA (a MVC framework), jQuery (whole world knows this), GSAP (a cool library for animations) and managing our code using bitbucket and github. I followed one of my senior coding concepts and way to write the code and learnt much from that.</p>
<blockquote>Write the simpler code than simple code</blockquote>
<p>The summer of 2014 already starts and we got all acquired by Publicis Singapore and I am still working for them. So here way of thinking also become vast with its vast culture. And some popular technical resources coined like Bootstrap, Foundation, Material design, Bower, npm, Composer, Gulp, BrowserSync and my favorite Laravel.</p>
<p>These days I am working for a Digital Agency as Technical Consultant mostly convering Front End Development, Wordpress Site Development, Custom Nodejs Solutions, Shopify Websites, Email Marketing, CRM Solutions Provider.</p> |
src/index.html | pavanpaik/ngstore | <!DOCTYPE html>
<html id="ng-app" ng-app="ngBoilerplateShop<% if (dev) {%>.dev<%}%>" ng-controller="AppCtrl" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title ng-bind='app.title | titlize'>ngBoilerPlateShop</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<!-- social media tags -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@joshdmiller">
<meta name="twitter:title" content="ngBoilerplate">
<meta name="twitter:description" content="Non-Trivial AngularJS Made Easy: Everything you need to kickstart AngularJS projects: a best-practice directory structure, an intelligent build system, and the best web design libraries around.">
<meta name="twitter:creator" content="@joshdmiller">
<meta name="twitter:image:src" content="https://a248.e.akamai.net/assets.github.com/images/modules/logos_page/Octocat.png?1366128846">
<meta property="og:title" content="ngBoilerplate" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://bit.ly/ngBoilerplate" />
<meta property="og:image" content="https://a248.e.akamai.net/assets.github.com/images/modules/logos_page/Octocat.png?1366128846" />
<meta property="og:description" content="Non-Trivial AngularJS Made Easy: Everything you need to kickstart AngularJS projects: a best-practice directory structure, an intelligent build system, and the best web design libraries around.">
<!-- font awesome from BootstrapCDN -->
<!--<link href="http://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">-->
<!-- compiled CSS --><% styles.forEach( function ( file ) { %>
<link rel="stylesheet" type="text/css" href="/<%= file %>" /><% }); %>
<!--[if IE 7>
<link rel="stylesheet" href="assets/font-awesome-ie7.min.css />
<![endif]-->
<!-- Internet Explorer AngularJS element creation -->
<!--[if lte IE 8]>
<script>
document.createElement('ng-include');
document.createElement('ng-pluralize');
document.createElement('ng-view');
document.createElement('ng:include');
document.createElement('ng:pluralize');
document.createElement('ng:view');
document.createElement('header');
document.createElement('emspot');
document.createElement('footer');
document.createElement('accordion-heading');
document.createElement('accordion-group');
</script>
<script src="http://cdnjs.cloudfare.com/ajax/libs/json3/3.2.4/json3.min.js"></script>
<![endif]-->
<!-- compiled CSS --><% scripts.forEach( function ( file ) { %>
<script type="text/javascript" src="/<%= file %>"></script><% }); %>
<!-- it's stupid to have to load it here, but this is for the +1 button -->
<!--<script type="text/javascript" src="https://apis.google.com/js/plusone.js">
{ "parsetags": "explicit" }
</script>-->
</head>
<body>
<div id="wrap">
<header ng-include="'layout/header.tpl.html'"></header>
<div menubar class="menu-bar"></div>
<div ng-include="'layout/breadcrumb.tpl.html'"></div>
<div class="main container">
<!-- <div class="" ui-view='breadcrumb'></div> -->
<span emspot emsname='CatalogBanner_Content'></span>
<div class="" ui-view='main'></div>
</div>
</div>
<footer ng-include="'layout/footer.tpl.html'"></footer>
</body>
</html>
|
_includes/adsense1.html | parduck/parduck.github.io |
<div class="container">
<script data-ad-client="ca-pub-0414977799804576" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
</div>
|
src/styles/general.css | thlem/Agilog | /* GENERAL THEM STYLE */
/*RESET*/
*{
margin:0;
padding:0;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); /** Prevent highlight on click on mobile device */
}
/*MAIN*/
html, body{
width:100%;
position:relative;
}
body{
background:#F8F8F8;
color:#7C7C7C;
overflow-x:hidden;
font-size:14px;
font-family:'open sans';
letter-spacing:1px;
line-height:20px;
z-index:0;
padding-bottom:50px;
}
h1{font-size: 2em;}
h2{font-size: 1.5em;}
h3{font-size: 1.3em;}
h4{font-size: 1.2em;}
h1, h2, h3, h4 {
display:block;
line-height:40px;
color:#3B3B3B;
}
ul{
list-style:none;
}
a{
text-decoration: none;
}
/*FLEX-LAYOUT*/
.flex-container{
display:flex;
}
.flex-full{
flex:1 100%;
}
.flex-adjust{
flex:1;
}
.flex-wrap{
flex-flow: row wrap;
}
/*FORMS*/
form.form-title-blue{
border:2px solid #319CCE;
}
form.form-title-blue h1, form.form-title-blue h2{
background:#319CCE;
text-align:center;
color:#F8F8F8;
}
form.form-title-blue > div{
padding:8px;
margin-top:35px;
}
input{
letter-spacing: 2px;
font-family:'Times New Roman';
outline:none;
}
input[type="submit"], button.submit{
border:2px solid #111725;
background:none;
width:50%;
margin:auto;
height:30px;
display:block;
cursor:pointer;
letter-spacing:1px;
}
input[type="submit"]:hover, button.submit:hover{
background:#111725;
color:#D5E3E3;
}
input:not([type="submit"]){
display:block;
width:80%;
height:25px;
padding-left:8px;
margin:auto;
margin-bottom:15px;
border:none;
background:#F2F2F2;
letter-spacing: 2px;
border-bottom:1px solid rgba(17,23,37,0.3);
border-right:1px solid rgba(17,23,37,0.3);
}
input.inputError{
border-bottom:2px solid #CD0100;
}
input:not([type="submit"]):focus{
border-bottom:1px solid #000;
border-right:1px solid #000;
}
label{
letter-spacing:2px;
font-size:12px;
}
.strike{
text-align: center;
margin:25px 0 25px 0;
}
.strike span{
position: relative;
display: inline-block;
padding:15px;
width:55px;
border: 1px solid #52ACE7;
border-radius: 100px;
cursor:pointer;
}
.strike > span:before,
.strike > span:after {
content: "";
position: absolute;
top: 50%;
width: 9999px;
height: 1px;
background: #52ACE7;
}
.strike > span:before {
right: 100%;
}
.strike > span:after {
left: 100%;
} |
src/Viteloge/CoreBundle/Resources/descriptions/33227.html | donaldinou/frontend | <div class="commune_descr limited">
<p>
Langon est
une ville localisée dans le département de Gironde en Aquitaine. On dénombrait 7 135 habitants en 2008.</p>
<p>La commune offre de nombreux aménagements, elle dispose, entre autres, de deux bassins de natation, un terrain de tennis, deux centres d'équitation et une boucle de randonnée.</p>
<p>À proximité de Langon sont positionnées géographiquement les villes de
<a href="{{VLROOT}}/immobilier/verdelais_33543/">Verdelais</a> située à 3 km, 826 habitants,
<a href="{{VLROOT}}/immobilier/saint-macaire_33435/">Saint-Macaire</a> localisée à 1 km, 1 670 habitants,
<a href="{{VLROOT}}/immobilier/saint-maixant_33438/">Saint-Maixant</a> localisée à 2 km, 1 375 habitants,
<a href="{{VLROOT}}/immobilier/toulenne_33533/">Toulenne</a> à 1 km, 2 405 habitants,
<a href="{{VLROOT}}/immobilier/fargues_33164/">Fargues</a> située à 4 km, 1 526 habitants,
<a href="{{VLROOT}}/immobilier/sainte-croix-du-mont_33392/">Sainte-Croix-du-Mont</a> située à 4 km, 824 habitants,
entre autres.</p>
<p>
La commune est équipée s'agissant de l'éducation des jeunes de trois collèges et un lycée.
Pour les plus petits d'entre nous, la commune est pourvue de une maternelle et deux écoles primaires.
Langon dispose des installations permettant une vie àgréable.
Lors d'un projet de faire l'acquisition d'un bien immobilier à Langon, vous devrez impérativement regarder la notoriété des équipements éducatifs</p>
<p>
Langon apparait comme une ville où de nombreux marchants sont installés.
Il y a à Langon un hypermarché, cinq supermarchés et huit supérettes.
Langon apparait comme une commune plutôt attractive pour un investissement immobilier.
A l'occasion d'un achat immobilier la distance à laquelle se trouvent les boutiques joue sur le prix du bien</p>
<p>Le nombre de logements, à Langon, était réparti en 2011 en 2 048 appartements et 2 328 maisons soit
un marché plutôt équilibré.</p>
<p>À Langon le salaire moyen mensuel par individu se situe à approximativement 1 876 € net. Ceci est inférieur à la moyenne du pays.</p>
<p>À Langon, la valorisation moyenne à l'achat d'un appartement se situe à 1 197 € du m² en vente. Le prix moyen d'une maison à l'achat se situe à 1 612 € du m². À la location la valeur moyenne se situe à 8,58 € du m² par mois.</p>
</div>
|
packages/rocketchat-ui-login/login/form.html | org100h1/Rocket.Panda | <template name="loginForm">
{{#if showSandstorm}}
<div class="alert alert-danger">
You must login to Sandstorm (on the top right) in order to access this chat.
</div>
{{else}}
<form id="login-card" method='/' novalidate>
{{#if waitActivation}}
<header>
<h2>{{{_ "Registration_Succeeded"}}}</h2>
<p>{{{_ "Wait_activation_warning"}}}</p>
<p>{{{_ "Please_wait_activation"}}}</p>
</header>
{{else}}
{{ > loginServices }}
{{#if needsValidateEmail}}
<div class="alert alert-danger">
{{_ "You_need_confirm_email"}}
</div>
{{/if}}
{{#if showFormLogin}}
<div class="fields">
<div class='input-text active {{showName}}'>
<input type="text" name='name' placeholder='{{namePlaceholder}}' dir="auto" />
</div>
<div class='input-text active {{showEmailOrUsername}}'>
<input type="text" name='emailOrUsername' placeholder='{{emailOrUsernamePlaceholder}}' autocapitalize="off" autocorrect="off" />
{{#if hasOnePassword}}
<div class="one-passsword"></div>
{{/if}}
</div>
<div class='input-text active {{showEmail}}'>
<input type="email" name='email' placeholder='{{_ "Email"}}' />
</div>
<div class='input-text active {{showPassword}}'>
<input type="password" name='pass' placeholder='{{passwordPlaceholder}}' />
</div>
<div class='input-text active {{showConfirmPassword}}'>
<input type="password" name='confirm-pass' placeholder='{{_ "Confirm_password"}}' />
</div>
</div>
<div class="submit">
<button data-loading-text="{{_ "Please_wait"}}..." class='button primary login'><span>{{btnLoginSave}}</span></button>
</div>
{{#if registrationAllowed}}
<div class="register {{showRegisterLink}}">
<a>{{_ 'Register'}}</a>
</div>
{{else}}
{{#if linkReplacementText}}
{{{linkReplacementText}}}
{{/if}}
{{/if}}
{{#if passwordresetAllowed}}
<div class="forgot-password {{showForgotPasswordLink}}">
<a>{{_ 'Forgot_password'}}</a>
</div>
{{/if}}
{{/if}}
{{/if}}
<div class="back-to-login {{showBackToLoginLink}}">
<a>{{_ 'Back_to_login'}}</a>
</div>
</form>
<div class='login-terms'>
{{{loginTerms}}}
</div>
{{/if}}
</template>
|
v2.0.0/api/Sawmill.Newtonsoft.Json.html | benjamin-hodgson/Sawmill | <!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Namespace Sawmill.Newtonsoft.Json
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Namespace Sawmill.Newtonsoft.Json
">
<meta name="generator" content="docfx 2.32.2.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
</head>
<body data-spy="scroll" data-target="#affix">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#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="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="Sawmill.Newtonsoft.Json">
<h1 id="Sawmill_Newtonsoft_Json" data-uid="Sawmill.Newtonsoft.Json" class="text-break">Namespace Sawmill.Newtonsoft.Json
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<div class="markdown level0 remarks"></div>
<h3 id="classes">Classes
</h3>
<h4><a class="xref" href="Sawmill.Newtonsoft.Json.JTokenExtensions.html">JTokenExtensions</a></h4>
<section><p>Extension methods for <span class="xref">Newtonsoft.Json.Linq.JToken</span>s.</p>
</section>
<h4><a class="xref" href="Sawmill.Newtonsoft.Json.JTokenRewriter.html">JTokenRewriter</a></h4>
<section><p>An implementation of <a class="xref" href="Sawmill.IRewriter-1.html">IRewriter<T></a> for <span class="xref">Newtonsoft.Json.Linq.JToken</span>s.</p>
</section>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Copyright © 2015-2017 Microsoft<br>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
|
mexin/shop.html | elauervose/tech-journal | <!DOCTYPE html>
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Shop - Mexin</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/style.css" type="text/css" media="all">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,900|Roboto|Roboto+Slab:300,400' rel='stylesheet' type='text/css'>
<!-- JS
================================================== -->
<script type="text/javascript" src="js/jquery.min.js" ></script>
<!--[if lt IE 9]>
<script src="js/modernizr.custom.11889.js" type="text/javascript"></script>
<![endif]-->
<!-- HTML5 Shiv events (end)-->
<script type="text/javascript" src="js/nav-resp.js"></script>
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="images/favicon.ico">
</head>
<body>
<!-- Primary Page Layout
================================================== -->
<div id="wrap" class="colorskin-0">
<div class="top-bar">
<div class="container">
<div class="top-links"> <a href="#">Form</a> | <a href="#">Terms</a> | <a href="#">Contact</a></div>
<div class="socailfollow"><a href="#" class="facebook"><i class="icomoon-facebook"></i></a> <a href="#" class="dribble"><i class="icomoon-dribbble"></i></a> <a href="#" class="vimeo"><i class="icomoon-vimeo"></i></a><a href="#" class="google"><i class="icomoon-google"></i></a> <a href="#" class="twitter"><i class="icomoon-twitter"></i></a></div>
</div>
</div>
<header id="header">
<div class="container">
<div class="four columns logo"><a href="index.html"><img src="images/logo-retina1.png" width="120" id="img-logo" alt="logo"></a></div>
<nav id="nav-wrap" class="nav-wrap1 twelve columns">
<div id="search-form">
<form action="#" method="get">
<input type="text" class="search-text-box" id="search-box">
</form>
</div>
<ul id="nav">
<li><a href="index.html">Home</a>
<ul>
<li><a href="index.html">Home 1 - Main Page</a></li>
<li><a href="home2.html">Home 2 - Full Sections</a></li>
<li><a href="home3.html">Home 3 - Parallax Sections</a></li>
<li><a href="home4.html">Home 4 - Dark Half</a></li>
<li class="submenu"><a href="#">Headers</a>
<ul>
<li><a href="header-fixed.html">Header Fixed</a></li>
<li><a href="header2.html">Header 2</a></li>
<li><a href="header3.html">Header 3</a></li>
<li><a href="header4.html">Header 4</a></li>
<li><a href="header5.html">Header 5</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Pages</a>
<ul>
<li><a href="services.html">Services</a></li>
<li><a href="about.html">About us</a></li>
<li><a href="about-extended.html">About us - Extended</a></li>
<li><a href="about-me.html">About me</a></li>
<li><a href="ourteam.html">Our team</a></li>
<li><a href="sidebar-right.html">Right Side-Bar</a></li>
<li><a href="sidebar-left.html">Left Side-Bar</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="404.html">404 Not Found</a></li>
</ul>
</li>
<li class="current"><a href="#">Features</a>
<ul>
<li class="submenu"><a href="#">Shop</a>
<ul>
<li class="current"><a href="shop.html">Shop 1</a></li>
<li><a href="shop2.html">Shop 2</a></li>
<li><a href="product-item.html">Product</a></li>
</ul>
</li>
<li><a href="elements.html">Elements</a></li>
<li><a href="icons.html">Icons</a></li>
<li><a href="pricing.html">Pricing Tables</a></li>
<li><a href="columns.html">Columns</a></li>
<li><a href="timeline1.html">Timeline</a></li>
<li><a href="left-nav-page.html">Left Navigation</a></li>
<li class="submenu"><a href="#">Sub Menu</a>
<ul>
<li><a href="#">Menu Item 01</a></li>
<li><a href="#">Menu Item 02</a></li>
<li><a href="#">Menu Item 03</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="blog.html">Blog</a>
<ul>
<li><a href="blog.html">Blog 1</a></li>
<li><a href="blog-leftsidebar.html">Blog 1 - Left Sidebar</a></li>
<li><a href="blog2.html">Blog 2</a></li>
<li><a href="blog2-leftsidebar.html">Blog 2 - Left Sidebar</a></li>
<li><a href="blog-bothsidebar.html">Blog - Both Sidebar</a></li>
<li><a href="timeline1.html">Blog - Timeline</a></li>
<li><a href="blog-single.html">Blog - Single Post</a></li>
</ul>
</li>
<li><a href="portfolio2col.html">work</a>
<ul>
<li><a href="portfolio2col.html">Portfolio 2 Columns</a></li>
<li><a href="portfolio3col.html">Portfolio 3 Columns</a></li>
<li><a href="portfolio4col.html">Portfolio 4 Columns</a></li>
<li><a href="portfolio-pin.html">Portfolio Pinterest</a></li>
<li><a href="timeline2.html">Portfolio Timeline</a></li>
<li><a href="portfolio-item.html">Portfolio Item (Single)</a></li>
</ul>
</li>
</ul>
</nav>
<!-- /nav-wrap -->
</div>
<div id="search-form2">
<form action="#" method="get">
<input type="text" class="search-text-box2">
</form>
</div>
</header>
<!-- end-header -->
<section id="headline">
<div class="container">
<h3>Shop</h3>
</div>
</section>
<section class="container page-content" >
<hr class="vertical-space1">
<section class="eleven columns">
<div class="shop-wrap">
<p class="result-count">
Showing 1–9 of 23 results</p>
<form class="ordering" method="get">
<select name="orderby" class="orderby">
<option value="menu_order" selected='selected'>Default sorting</option><option value="popularity" >Sort by popularity</option><option value="rating" >Sort by average rating</option><option value="date" >Sort by newness</option><option value="price" >Sort by price: low to high</option><option value="price-desc" >Sort by price: high to low</option> </select>
</form>
<br class="clr">
<figure class="shop-item one_third">
<span class="onsale">Sale!</span>
<a href="#"><img src="images/shopimg/mex-prod01.jpg" alt=""></a>
<figcaption><h4><a href="product-item.html">Product Name</a> </h4>
<p class="price"><small>$ 47</small><span class="amount">$ 39</span></p></figcaption>
<div class="product-shop "><a href="#" class="select-options">Select Options</a><a href="#" class="addtocart">Add to cart</a></div>
</figure>
<!-- end-product-item-->
<figure class="shop-item one_third">
<a href="#"><img src="images/shopimg/mex-prod02.jpg" alt=""></a>
<figcaption><h4><a href="product-item.html">Product Name</a> </h4>
<p class="price"><span class="amount">$ 59</span></p></figcaption>
<div class="product-shop "><a href="#" class="select-options">Select Options</a><a href="#" class="addtocart">Add to cart</a></div>
</figure>
<!-- end-product-item-->
<figure class="shop-item one_third column-last">
<a href="#"><img src="images/shopimg/mex-prod06.jpg" alt=""></a>
<figcaption><h4><a href="product-item.html">Product Name</a> </h4>
<p class="price"><span class="amount">$ 73</span></p></figcaption>
<div class="product-shop "><a href="#" class="select-options">Select Options</a><a href="#" class="addtocart">Add to cart</a></div>
</figure>
<!-- end-product-item-->
<figure class="shop-item one_third">
<a href="#"><img src="images/shopimg/mex-prod04.jpg" alt=""></a>
<figcaption><h4><a href="product-item.html">Product Name</a> </h4>
<p class="price"><span class="amount">$ 37</span></p></figcaption>
<div class="product-shop "><a href="#" class="select-options">Select Options</a><a href="#" class="addtocart">Add to cart</a></div>
</figure>
<!-- end-product-item-->
<figure class="shop-item one_third">
<span class="onsale">Sale!</span>
<a href="#"><img src="images/shopimg/mex-prod05.jpg" alt=""></a>
<figcaption><h4><a href="product-item.html">Product Name</a> </h4>
<p class="price"><small>$ 57</small><span class="amount">$ 51</span></p></figcaption>
<div class="product-shop "><a href="#" class="select-options">Select Options</a><a href="#" class="addtocart">Add to cart</a></div>
</figure>
<!-- end-product-item-->
<figure class="shop-item one_third column-last">
<a href="#"><img src="images/shopimg/mex-prod03.jpg" alt=""></a>
<figcaption><h4><a href="product-item.html">Product Name</a> </h4>
<p class="price"><span class="amount">$ 44</span></p></figcaption>
<div class="product-shop "><a href="#" class="select-options">Select Options</a><a href="#" class="addtocart">Add to cart</a></div>
</figure>
<!-- end-product-item-->
<figure class="shop-item one_third">
<span class="onsale">Sale!</span>
<a href="#"><img src="images/shopimg/mex-prod07.jpg" alt=""></a>
<figcaption><h4><a href="product-item.html">Product Name</a> </h4>
<p class="price"><small>$ 72</small><span class="amount">$ 65</span></p></figcaption>
<div class="product-shop "><a href="#" class="select-options">Select Options</a><a href="#" class="addtocart">Add to cart</a></div>
</figure>
<!-- end-product-item-->
<figure class="shop-item one_third">
<a href="#"><img src="images/shopimg/mex-prod08.jpg" alt=""></a>
<figcaption><h4><a href="product-item.html">Product Name</a> </h4>
<p class="price"><span class="amount">$ 58</span></p></figcaption>
<div class="product-shop "><a href="#" class="select-options">Select Options</a><a href="#" class="addtocart">Add to cart</a></div>
</figure>
<!-- end-product-item-->
<figure class="shop-item one_third column-last">
<a href="#"><img src="images/shopimg/mex-prod09.jpg" alt=""></a>
<figcaption><h4><a href="product-item.html">Product Name</a> </h4>
<p class="price"><span class="amount">$ 73</span></p></figcaption>
<div class="product-shop "><a href="#" class="select-options">Select Options</a><a href="#" class="addtocart">Add to cart</a></div>
</figure>
<!-- end-product-item-->
</div>
<hr class="vertical-space1">
<div class="pagination2">
<ul>
<li class="disabled"><a href="#">«</a></li>
<li class="active"><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">»</a></li>
</ul>
</div>
<hr class="vertical-space2">
</section>
<!-- end-main-content -->
<aside class="four columns offset-by-one sidebar">
<div class="side-cart">
<h4 class="subtitle"><i class="icomoon-bag-3"></i>Cart</h4>
<ul class="side-list">
<li><button type="button" class="close" data-dismiss="alert">×</button>
<a href="#"><img src="images/shopimg/mex-prod03.jpg" alt=""></a>
<h5><a href="#">Product Name</a></h5>
<p class="price"><span class="amount">$ 58</span></p>
</li>
<li><button type="button" class="close" data-dismiss="alert">×</button>
<a href="#"><img src="images/shopimg/mex-prod05.jpg" alt=""></a>
<h5><a href="#">Product Name</a></h5>
<p class="price"><span class="amount">$ 58</span></p>
</li>
<li><button type="button" class="close" data-dismiss="alert">×</button>
<a href="#"><img src="images/shopimg/mex-prod09.jpg" alt=""></a>
<h5><a href="#">Product Name</a></h5>
<p class="price"><span class="amount">$ 58</span></p>
</li>
<li><button type="button" class="close" data-dismiss="alert">×</button>
<a href="#"><img src="images/shopimg/mex-prod07.jpg" alt=""></a>
<h5><a href="#">Product Name</a></h5>
<p class="price"><span class="amount">$ 58</span></p>
</li>
</ul>
<p class="total">Subtotal: <strong>$123</strong></p>
<button class="button small">view cart</button> <button class="button small">checkout</button>
</div>
<br class="clear">
<h4 class="subtitle">Top Products</h4>
<div class="side-list">
<ul>
<li>
<a href="#"><img src="images/shopimg/mex-prod03.jpg" alt=""></a>
<h5><a href="#">Product Name</a></h5>
<p class="price"><span class="amount">$ 58</span></p>
</li>
<li>
<a href="#"><img src="images/shopimg/mex-prod05.jpg" alt=""></a>
<h5><a href="#">Product Name</a></h5>
<p class="price"><span class="amount">$ 58</span></p>
</li>
<li><a href="#"><img src="images/shopimg/mex-prod09.jpg" alt=""></a>
<h5><a href="#">Product Name</a></h5>
<p class="price"><span class="amount">$ 58</span></p>
</li>
<li><a href="#"><img src="images/shopimg/mex-prod07.jpg" alt=""></a>
<h5><a href="#">Product Name</a></h5>
<p class="price"><span class="amount">$ 58</span></p>
</li>
</ul>
</div>
<!-- end-product-list -->
<br class="clear">
<h4 class="subtitle">Text Widget</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor<a href="#"> exercitation</a> ut labore et dolore magna aliqua. Ut enim ad</p>
<br class="clear">
<h4 class="subtitle">New Products</h4>
<div class="side-list">
<ul>
<li>
<a href="#"><img src="images/shopimg/mex-prod03.jpg" alt=""></a>
<h5><a href="#">Product Name</a></h5>
<p class="price"><span class="amount">$ 58</span></p>
</li>
<li>
<a href="#"><img src="images/shopimg/mex-prod05.jpg" alt=""></a>
<h5><a href="#">Product Name</a></h5>
<p class="price"><span class="amount">$ 58</span></p>
</li>
<li><a href="#"><img src="images/shopimg/mex-prod09.jpg" alt=""></a>
<h5><a href="#">Product Name</a></h5>
<p class="price"><span class="amount">$ 58</span></p>
</li>
<li><a href="#"><img src="images/shopimg/mex-prod07.jpg" alt=""></a>
<h5><a href="#">Product Name</a></h5>
<p class="price"><span class="amount">$ 58</span></p>
</li>
</ul>
</div>
<!-- end-product-list -->
<br class="clear">
</aside>
<!-- end-sidebar-->
<br class="clear">
</section>
<!-- container -->
<footer id="footer">
<section class="container footer-in">
<div class="one-third column contact-inf">
<h4 class="subtitle">Contact Information</h4>
<br />
<p><strong>Address: </strong> No.28 - 63739 street lorem ipsum City, Country</p>
<p><strong>Phone: </strong> + 1 (234) 567 8901 </p>
<p><strong>Fax: </strong> + 1 (234) 567 8901 </p>
<p><strong>Email: </strong> [email protected] </p>
<h4 class="subtitle">Stay Connected</h4>
<div class="socailfollow"><a href="#" class="facebook"><i class="icomoon-facebook"></i></a> <a href="#" class="dribble"><i class="icomoon-dribbble"></i></a> <a href="#" class="pinterest"><i class="icomoon-pinterest-2" aria-hidden="true"></i></a> <a href="#" class="vimeo"><i class="icomoon-vimeo"></i></a><a href="#" class="google"><i class="icomoon-google"></i></a> <a href="#" class="twitter"><i class="icomoon-twitter"></i></a> <a href="#" class="youtube"><i class="icomoon-youtube"></i></a> </div>
</div>
<!-- end-contact-info /end -->
<div class="one-third column">
<h4 class="subtitle">latest tweet</h4>
<br />
<div class="lts-tweets"> <i class="icomoon-twitter"></i>
<h3><a href="https://twitter.com/webnus">@webnus</a></h3>
<h5 id="twitter"></h5>
</div>
</div>
<!-- tweets /end -->
<div class="one-third column">
<h4 class="subtitle">flickr photostream</h4>
<br />
<div class="flickr-feed">
<script type="text/javascript" src="http://www.flickr.com/badge_code.gne?count=12&display=random&size=square&nsid=36587311@N08&raw=1"></script>
<div class="clear"></div>
</div>
</div>
<!-- flickr /end -->
</section>
<!-- end-footer-in -->
<section class="footbot">
<div class="container">
<div class="footer-navi">© 2012. All Rights Reserved. Powered by <a href="http://wordpress.org/">WordPress</a> </div>
<!-- footer-navigation /end -->
<img src="images/logo-footer-retina.png" width="65" alt=""> </div>
</section>
<!-- end-footbot -->
</footer>
<!-- end-footer -->
<span id="scroll-top"><a class="scrollup"><i class="icomoon-arrow-up"></i></a></span> </div>
<!-- end-wrap -->
<!-- End Document
================================================== -->
<script src="js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" src="js/mexin-custom.js" ></script>
<script type="text/javascript" src="js/doubletaptogo.js" ></script>
<script src="js/bootstrap-alert.js"></script>
<script src="js/bootstrap-dropdown.js"></script>
<script src="js/bootstrap-tab.js"></script>
<script src="js/bootstrap-tooltip.js"></script>
</body>
</html>
|
docs/classSideCar_1_1GUI_1_1ColorButtonWidget.html | bradhowes/sidecar | <!-- HTML header for doxygen 1.8.10-->
<!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>SideCar: SideCar::GUI::ColorButtonWidget Class Reference</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="DoxygenStyleSheet.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">SideCar
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<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="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Data Fields</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceSideCar.html">SideCar</a></li><li class="navelem"><a class="el" href="namespaceSideCar_1_1GUI.html">GUI</a></li><li class="navelem"><a class="el" href="classSideCar_1_1GUI_1_1ColorButtonWidget.html">ColorButtonWidget</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-slots">Public Slots</a> |
<a href="#signals">Signals</a> |
<a href="#pub-methods">Public Member Functions</a> </div>
<div class="headertitle">
<div class="title">SideCar::GUI::ColorButtonWidget Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p>Derivation of QPushButton that shows a color setting, and provides a way to edit the color value when pressed.
<a href="classSideCar_1_1GUI_1_1ColorButtonWidget.html#details">More...</a></p>
<p><code>#include <<a class="el" href="ColorButtonWidget_8h_source.html">/Users/howes/src/sidecar/GUI/ColorButtonWidget.h</a>></code></p>
<div class="dynheader">
Inheritance diagram for SideCar::GUI::ColorButtonWidget:</div>
<div class="dyncontent">
<div class="center"><img src="classSideCar_1_1GUI_1_1ColorButtonWidget__inherit__graph.png" border="0" usemap="#SideCar_1_1GUI_1_1ColorButtonWidget_inherit__map" alt="Inheritance graph"/></div>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-slots"></a>
Public Slots</h2></td></tr>
<tr class="memitem:af4462803f2e67b5490a4294f94005d3a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af4462803f2e67b5490a4294f94005d3a"></a>
void </td><td class="memItemRight" valign="bottom"><b>setColor</b> (const QColor &color)</td></tr>
<tr class="separator:af4462803f2e67b5490a4294f94005d3a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2003effbb269278b4cb4352361e4283d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2003effbb269278b4cb4352361e4283d"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSideCar_1_1GUI_1_1ColorButtonWidget.html#a2003effbb269278b4cb4352361e4283d">editColor</a> ()</td></tr>
<tr class="memdesc:a2003effbb269278b4cb4352361e4283d"><td class="mdescLeft"> </td><td class="mdescRight">Event handler called when the button given in the constructor is pushed. <br /></td></tr>
<tr class="separator:a2003effbb269278b4cb4352361e4283d"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="signals"></a>
Signals</h2></td></tr>
<tr class="memitem:a359d82fb362623d312bfe3a2265d71b3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a359d82fb362623d312bfe3a2265d71b3"></a>
void </td><td class="memItemRight" valign="bottom"><b>colorChanged</b> (const QColor &color)</td></tr>
<tr class="separator:a359d82fb362623d312bfe3a2265d71b3"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a473e014d2830143e548d9157902f2789"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSideCar_1_1GUI_1_1ColorButtonWidget.html#a473e014d2830143e548d9157902f2789">ColorButtonWidget</a> (QWidget *parent=0)</td></tr>
<tr class="memdesc:a473e014d2830143e548d9157902f2789"><td class="mdescLeft"> </td><td class="mdescRight">Constructor with widget to manage. <a href="#a473e014d2830143e548d9157902f2789">More...</a><br /></td></tr>
<tr class="separator:a473e014d2830143e548d9157902f2789"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a24a606f23b51770aaa5c89f316fc0c88"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a24a606f23b51770aaa5c89f316fc0c88"></a>
QColor </td><td class="memItemRight" valign="bottom"><b>getColor</b> () const </td></tr>
<tr class="separator:a24a606f23b51770aaa5c89f316fc0c88"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Derivation of QPushButton that shows a color setting, and provides a way to edit the color value when pressed. </p>
<p>Definition at line <a class="el" href="ColorButtonWidget_8h_source.html#l00012">12</a> of file <a class="el" href="ColorButtonWidget_8h_source.html">ColorButtonWidget.h</a>.</p>
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="a473e014d2830143e548d9157902f2789"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">ColorButtonWidget::ColorButtonWidget </td>
<td>(</td>
<td class="paramtype">QWidget * </td>
<td class="paramname"><em>parent</em> = <code>0</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Constructor with widget to manage. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">mgr</td><td><a class="el" href="classSideCar_1_1GUI_1_1PresetManager.html" title="Manager for Preset objects and associated Setting objects. ">PresetManager</a> object that records this setting</td></tr>
<tr><td class="paramname">widget</td><td>the QPushButton widget to use</td></tr>
<tr><td class="paramname">global</td><td>if true, this is a global setting, not associated with a specific <a class="el" href="classSideCar_1_1GUI_1_1Preset.html" title="Collection of Setting values that represent a defined preset for an application. ">Preset</a>. </td></tr>
</table>
</dd>
</dl>
<p>Definition at line <a class="el" href="ColorButtonWidget_8cc_source.html#l00007">7</a> of file <a class="el" href="ColorButtonWidget_8cc_source.html">ColorButtonWidget.cc</a>.</p>
<p>References <a class="el" href="ColorButtonWidget_8cc_source.html#l00038">editColor()</a>.</p>
</div>
</div>
<hr/>The documentation for this class was generated from the following files:<ul>
<li>/Users/howes/src/sidecar/GUI/<a class="el" href="ColorButtonWidget_8h_source.html">ColorButtonWidget.h</a></li>
<li>/Users/howes/src/sidecar/GUI/<a class="el" href="ColorButtonWidget_8cc_source.html">ColorButtonWidget.cc</a></li>
</ul>
</div><!-- contents -->
<!-- HTML footer for doxygen 1.8.10-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
|
css/portfolio-item.css | evc-/metamorphics | /*!
* Start Bootstrap - Portfolio Item (http://startbootstrap.com/)
* Copyright 2013-2016 Start Bootstrap
* Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
*/
.portfolio-item {
margin-bottom: 25px;
}
footer {
margin: 50px 0;
}
|
life/05.html | ianli-sc/ianli-sc.github.io | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<meta content="yes" name="apple-mobile-web-app-capable" />
<meta content="black" name="apple-mobile-web-app-status-bar-style" />
<meta content="telephone=no" name="format-detection" />
<meta name="msapplication-tap-highlight" content="no" />
<title>Ian li - f2e life - 君子可欺以其方,难罔以非其道</title>
<link rel="shortcut icon" type="image/x-icon" href="../img/icon.ico" />
<link href="../img/icon.png" rel="apple-touch-icon-precomposed" />
<link rel="stylesheet" href="../aio/aio.css" />
<script src="../aio/aio-lib.js"></script>
<base target=_blank>
</head>
<body class="life life-content">
<nav class="nav">
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/blog.html">Blog</a></li>
<li class="active"><a href="/life.html">Life</a></li>
<li><a href="/resume.html">Resume</a></li>
</ul>
</nav>
<div class="content">
<div class="blog">
<h1>念去去</h1>
<p>十八岁的海涛是墨绿的十年后的夜,默默无言又几番无月。</p>
<p>在雾中走入曲折长街就为迎接那场雪?芬芳的枯萎在影子里堆积,勾着皮肉,那些暗示、祈求、泪滴和谅解是刻在墓碑上的不顾一切。</p>
<p>想一下就会脸红的的事,饮一杯酒与蜜无人不尝的苦水,一口绝决。</p>
<p>怀中余香温暖,是亲手慢慢写好的无眠,叠成同心方胜儿,就勾了魂。以爱的命运互相桶着刀子,在水中侵泡过的泪痕划破心的薄膜,结痂总是隆起,痛了就不愿再剥开。</p>
<p>想一些无法说服自己的道理啊,孔老头在歪脖子的树下系着破烂的弃船。从没有放弃愚蠢,总忘记不快,在唾弃和歌声里流传。</p>
<p>如果如果如果,就是罪恶的源泉。就像海来自于海。</p>
<p>不过一路走得各有自以为是的苦闷精彩。</p>
</div><div class="list" id="Tree">
<h3>Blog Archive</h3>
<ul class="timeline"></ul>
</div>
</div>
<footer class="right">© 2014 Ian Li. All Rights Reserved</footer>
<script>
(function() {
'use strict';
requirejs.config({
"baseUrl" : "../js",
"paths" : {
"jquery" : "../aio/aio-lib",
"fp" : "./fp",
"life" : "./life",
"aio" : "../aio",
"chart" : "../lib/chart",
"tree" : "../lib/tree"
}
});
if (!/\b(localhost)\b/g.test(location.href)) {
requirejs(["aio/aio"], function () {
requirejs(["life/app"]);
});
} else {
requirejs(["life/app"]);
}
})();
</script>
</body>
</html> |
docs/CVDocumentation/OwlDoc/classes/NMR1400057___-1092572994.html | nmrML/nmrML | <html><head>
<title>Class: 'echo anti-echo coherence selection'</title>
<meta http-equiv='content-type' content='text/html;charset=utf8'>
<link rel='stylesheet' href='../default.css' type='text/css' />
</head>
<body>
<h1>Class: 'echo anti-echo coherence selection'</h1>
<h2 class='summaryURI'>http://nmrML.org/nmrCV#NMR:1400057</h2>
<h2>Annotations (2)</h2>
<div class='codebox' id='annotations_(2)'>
<ul>
<li>
<a href="../annotationproperties/comment___1501100887.html" title="http://www.w3.org/2000/01/rdf-schema#comment">comment</a> <span class='literal'>"defneed"</span> (<a href="../datatypes/string___799955032.html" title="http://www.w3.org/2001/XMLSchema#string">string</a>)</li>
<li>
<a href="../annotationproperties/label___653429740.html" title="http://www.w3.org/2000/01/rdf-schema#label">label</a> <span class='literal'>"echo anti-echo coherence selection"</span> (<a href="../datatypes/string___799955032.html" title="http://www.w3.org/2001/XMLSchema#string">string</a>)</li>
</ul>
</div><!-- annotations (2) -->
<h2>Superclasses (1)</h2>
<div class='codebox' id='superclasses_(1)'>
<ul>
<li>
<a href="NMR1000008___-1207089752.html" title="http://nmrML.org/nmrCV#NMR:1000008">'quadrature detection'</a></li>
</ul>
</div><!-- superclasses (1) -->
<h2>Usage (1)</h2>
<div class='codebox' id='usage_(1)'>
<ul>
<li>
<span class='keyword'>Class</span>: <span class='active-entity'>'echo anti-echo coherence selection'</span></li>
</ul>
</div><!-- usage (1) -->
<p class='footer'>
</body></html>
|
src/api/docs/demos/cropper-dialog.html.html | A-l-y-l-e/Alyle-UI | <pre class="ttb"><code prsm class="ttm"><span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>div</span> <span class="tt18 ttbx">ly-dialog-content</span> <span class="tt18 ttbx">[lyPx]</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>0<span class="tt18 ttae">"</span></span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>div</span> <span class="tt18 ttbx">*ngIf</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>ready<span class="tt18 ttae">"</span></span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>button</span> <span class="tt18 ttbx">(click)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>cropper.zoomIn()<span class="tt18 ttae">"</span></span> <span class="tt18 ttbx">ly-button</span> <span class="tt18 ttbx">appearance</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>icon<span class="tt18 ttae">"</span></span><span class="tt18 ttae">></span></span><span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>ly-icon</span><span class="tt18 ttae">></span></span>zoom_in<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>ly-icon</span><span class="tt18 ttae">></span></span><span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>button</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>button</span> <span class="tt18 ttbx">(click)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>cropper.zoomOut()<span class="tt18 ttae">"</span></span> <span class="tt18 ttbx">ly-button</span> <span class="tt18 ttbx">appearance</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>icon<span class="tt18 ttae">"</span></span><span class="tt18 ttae">></span></span><span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>ly-icon</span><span class="tt18 ttae">></span></span>zoom_out<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>ly-icon</span><span class="tt18 ttae">></span></span><span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>button</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>button</span> <span class="tt18 ttbx">(click)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>cropper.center()<span class="tt18 ttae">"</span></span> <span class="tt18 ttbx">ly-button</span> <span class="tt18 ttbx">appearance</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>icon<span class="tt18 ttae">"</span></span><span class="tt18 ttae">></span></span><span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>ly-icon</span><span class="tt18 ttae">></span></span>filter_center_focus<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>ly-icon</span><span class="tt18 ttae">></span></span><span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>button</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>button</span> <span class="tt18 ttbx">(click)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>cropper.rotate(-90)<span class="tt18 ttae">"</span></span> <span class="tt18 ttbx">ly-button</span> <span class="tt18 ttbx">appearance</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>icon<span class="tt18 ttae">"</span></span><span class="tt18 ttae">></span></span><span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>ly-icon</span><span class="tt18 ttae">></span></span>rotate_90_degrees_ccw<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>ly-icon</span><span class="tt18 ttae">></span></span><span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>button</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>button</span> <span class="tt18 ttbx">(click)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>cropper.fit()<span class="tt18 ttae">"</span></span> <span class="tt18 ttbx">ly-button</span><span class="tt18 ttae">></span></span>Fit<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>button</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>button</span> <span class="tt18 ttbx">(click)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>cropper.fitToScreen()<span class="tt18 ttae">"</span></span> <span class="tt18 ttbx">ly-button</span><span class="tt18 ttae">></span></span>Fit to screen<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>button</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>button</span> <span class="tt18 ttbx">(click)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>cropper.setScale(1)<span class="tt18 ttae">"</span></span> <span class="tt18 ttbx">ly-button</span><span class="tt18 ttae">></span></span>1:1<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>button</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>div</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>ly-img-cropper</span>
<span class="tt18 ttbx">[config]</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>myConfig<span class="tt18 ttae">"</span></span>
<span class="tt18 ttbx">[(scale)]</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>scale<span class="tt18 ttae">"</span></span>
<span class="tt18 ttbx">(ready)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>ready = true<span class="tt18 ttae">"</span></span>
<span class="tt18 ttbx">(cleaned)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>ready = false<span class="tt18 ttae">"</span></span>
<span class="tt18 ttbx">(minScale)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>minScale = $event<span class="tt18 ttae">"</span></span>
<span class="tt18 ttbx">(cropped)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>onCropped($event)<span class="tt18 ttae">"</span></span>
<span class="tt18 ttbx">(loaded)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>onLoaded($event)<span class="tt18 ttae">"</span></span>
<span class="tt18 ttbx">(error)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>onError($event)<span class="tt18 ttae">"</span></span>
<span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>span</span><span class="tt18 ttae">></span></span>Drag and drop image<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>span</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>ly-img-cropper</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>div</span> <span class="tt18 ttbx">*ngIf</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>ready<span class="tt18 ttae">"</span></span> <span class="tt18 ttbx">[className]</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>classes.sliderContainer<span class="tt18 ttae">"</span></span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>div</span> <span class="tt18 ttbx">[class]</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>classes.slider<span class="tt18 ttae">"</span></span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>ly-slider</span>
<span class="tt18 ttbx">[thumbVisible]</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>false<span class="tt18 ttae">"</span></span>
<span class="tt18 ttbx">[min]</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>minScale<span class="tt18 ttae">"</span></span>
<span class="tt18 ttbx">[max]</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>1<span class="tt18 ttae">"</span></span>
<span class="tt18 ttbx">[(ngModel)]</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>scale<span class="tt18 ttae">"</span></span>
<span class="tt18 ttbx">(input)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>scale = $event.value<span class="tt18 ttae">"</span></span>
<span class="tt18 ttbx">step</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>0.000001<span class="tt18 ttae">"</span></span><span class="tt18 ttae">></span></span><span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>ly-slider</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>div</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>div</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>div</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>div</span> <span class="tt18 ttbx">container</span> <span class="tt18 ttbx">*ngIf</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>ready<span class="tt18 ttae">"</span></span> <span class="tt18 ttbx">[lyJustifyContent]</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span><span class="tt18 ttae">'</span>flex-end<span class="tt18 ttae">'</span><span class="tt18 ttae">"</span></span> <span class="tt18 ttbx">ly-dialog-actions</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>button</span> <span class="tt18 ttbx">ly-button</span> <span class="tt18 ttbx">color</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>primary<span class="tt18 ttae">"</span></span> <span class="tt18 ttbx">(click)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>dialogRef.close()<span class="tt18 ttae">"</span></span><span class="tt18 ttae">></span></span>CANCEL<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>button</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"><</span>button</span> <span class="tt18 ttbx">ly-button</span> <span class="tt18 ttbx">color</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>primary<span class="tt18 ttae">"</span></span> <span class="tt18 ttbx">(click)</span><span class="tt18 ttbm"><span class="tt18 ttae attr-equals">=</span><span class="tt18 ttae">"</span>dialogRef.close(cropper.crop())<span class="tt18 ttae">"</span></span><span class="tt18 ttae">></span></span>DONE<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>button</span><span class="tt18 ttae">></span></span>
<span class="tt18 tt5i"><span class="tt18 tt5i"><span class="tt18 ttae"></</span>div</span><span class="tt18 ttae">></span></span></code></pre> |
clean/Linux-x86_64-4.07.1-2.0.6/released/8.7.1/generic-environments/8.5.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>generic-environments: 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.1 / generic-environments - 8.5.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
generic-environments
<small>
8.5.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-11 23:07:18 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-11 23:07:18 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.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "[email protected]"
homepage: "https://github.com/coq-contribs/generic-environments"
license: "LGPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/GenericEnvironments"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
]
tags: [ "keyword:generic environments" "keyword:typing" "keyword:type theory" "category:Mathematics/Logic/Type theory" ]
authors: [ "Emmanuel Polonowski <[email protected]>" ]
bug-reports: "https://github.com/coq-contribs/generic-environments/issues"
dev-repo: "git+https://github.com/coq-contribs/generic-environments.git"
synopsis: "Generic_Environments"
description:
"Generic_Environments is a library which provides an abstract data type of environments, as a functor parameterized by a module defining variables, and a function which builds environments for such variables with any Type of type. Usual operations over environments are defined, along with an extensive set of basic and more advanced properties. Moreover, an implementation using lists satisfying and all the required properties is provided."
flags: light-uninstall
url {
src:
"https://github.com/coq-contribs/generic-environments/archive/v8.5.0.tar.gz"
checksum: "md5=15f3c00405641fa97a285f0793057dc1"
}
</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-generic-environments.8.5.0 coq.8.7.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.7.1).
The following dependencies couldn't be met:
- coq-generic-environments -> coq < 8.6~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
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-generic-environments.8.5.0</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.07.1-2.0.6/released/8.7.1+2/presburger/8.7.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>presburger: 1 m 5 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.7.1+2 / presburger - 8.7.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
presburger
<small>
8.7.0
<span class="label label-success">1 m 5 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-06 02:33:16 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-06 02:33:16 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.1+2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "[email protected]"
homepage: "https://github.com/coq-contribs/presburger"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Presburger"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [
"keyword: integers"
"keyword: arithmetic"
"keyword: decision procedure"
"keyword: Presburger"
"category: Mathematics/Logic/Foundations"
"category: Mathematics/Arithmetic and Number Theory/Miscellaneous"
"category: Computer Science/Decision Procedures and Certified Algorithms/Decision procedures"
"date: March 2002"
]
authors: [ "Laurent Théry" ]
bug-reports: "https://github.com/coq-contribs/presburger/issues"
dev-repo: "git+https://github.com/coq-contribs/presburger.git"
synopsis: "Presburger's algorithm"
description: """
A formalization of Presburger's algorithm as stated in
the initial paper by Presburger."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/presburger/archive/v8.7.0.tar.gz"
checksum: "md5=1f8a67362940720f3f48c1a1eb6df80a"
}
</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-presburger.8.7.0 coq.8.7.1+2</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-presburger.8.7.0 coq.8.7.1+2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>11 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-presburger.8.7.0 coq.8.7.1+2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>1 m 5 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 3 M</p>
<ul>
<li>184 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Lift.vo</code></li>
<li>165 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Normal.vo</code></li>
<li>155 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Zdivides.vo</code></li>
<li>152 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Lift.glob</code></li>
<li>131 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Sort.vo</code></li>
<li>123 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/GroundN.vo</code></li>
<li>122 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/ReduceCong.vo</code></li>
<li>121 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/ReduceEq.glob</code></li>
<li>114 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Elim.vo</code></li>
<li>112 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/ReduceEq.vo</code></li>
<li>112 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Process.vo</code></li>
<li>110 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Zdivides.glob</code></li>
<li>108 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Factor.vo</code></li>
<li>93 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Form.vo</code></li>
<li>81 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Nat.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/ReduceCong.glob</code></li>
<li>66 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Cong.vo</code></li>
<li>65 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/prestac.cmxs</code></li>
<li>58 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Normal.glob</code></li>
<li>55 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Nat.glob</code></li>
<li>45 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Process.glob</code></li>
<li>40 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/PresTac_ex.vo</code></li>
<li>40 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/PresTac.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Form.glob</code></li>
<li>34 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/GroundN.glob</code></li>
<li>34 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Sort.glob</code></li>
<li>31 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Zdivides.v</code></li>
<li>31 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Elim.glob</code></li>
<li>28 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Lift.v</code></li>
<li>25 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Factor.glob</code></li>
<li>22 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Cong.glob</code></li>
<li>22 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Normal.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/ReduceEq.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Nat.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/ReduceCong.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Elim.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Form.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/GroundN.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Process.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/prestac.cmi</code></li>
<li>9 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Sort.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Factor.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/prestac.cmx</code></li>
<li>7 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Cong.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/sTactic.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Option.vo</code></li>
<li>2 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/sTactic.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/PresTac_ex.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/PresTac_ex.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/PresTac.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Option.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/sTactic.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/Option.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/Presburger/PresTac.glob</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-presburger.8.7.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>
|
_pages/2019-10-15_London.html | mapcampcommittee/mapcampcommittee.github.io | ---
title: "London 2019"
description: "Learn Wardley maps at the third Map Camp in London, 15th October 2019"
header:
teaser: "assets/images/map-camp-london-2019-card.png"
layout: splash
classes:
- landing
- dark-theme
---
<p style="margin: 6px 0 42px 0;">
🎥️ Watch presentations and video recordings on <a href="https://www.infoq.com/Map-Camp-Conference-London-2019/presentations/">InfoQ</a>
</p>
<div style="margin: 0 auto 48px auto; max-width: 302px; text-align: center;">
<img src="/assets/images/mapcamplondon2019.svg" style="max-width: 300px" />
{% comment %}
<p style="margin: 24px 0 12px 0;"><a class="btn btn--info"
href="https://www.eventbrite.com/e/map-camp-2019-tickets-59270903869">Tickets</a></p>
{% endcomment %}
</div>
<h1>Map Camp London 2019, 15th October</h1>
<p>
This is our third Map Camp in London and it is kindly sponsored by the <a href="#Sponsors">Leading
Leading Edge Forum, AWS, Rainmaker, InfoQ, Endava, Methods and Superstars</a>. Map Camp is a community run event, it
consists of a series of lectures from renowned speakers with a
coffee and networking area to meet other mappers from across the globe. The original event in <a
href="/_pages/2017-10-05_London/">2017</a> was planned to be
30 people, we ended up with 180 and over 150 on a waiting list. In <a href="/_pages/2018-10-03_London/">2018</a>, we
planned for 350 people, we ended up with
450 and over 260 on a waiting list. This year, we have an even bigger venue in the hope that we might be able to
accommodate everyone.
</p>
<p>
Map Camp is a safe environment for all and we will do everything we can to make sure that it is. If you're planning on
attending please read the <a href="/_pages/code_of_conduct/">code of conduct</a>.
</p>
<h2>Schedule</h2>
<table class="schedule">
<tr class="schedule-break">
<td>08:00</td>
<td>Doors open</td>
<td></td>
</tr>
<tr>
<td>08:45</td>
<td>Welcome introduction </td>
<td><a target="_blank" href="https://twitter.com/coderinheels">Gen Ashley</a> & <a target="_blank"
href="https://twitter.com/swardley">Simon Wardley</a></td>
</tr>
<tr>
<td>09:00</td>
<td>Pivot! (Let’s talk about tech, climate and mapping)</td>
<td><a target="_blank" href="https://twitter.com/SalFreudenberg">Sal Freudenberg</a> & <a target="_blank"
href="https://twitter.com/mrchrisadams">Chris Adams</a> | <a
href="https://docs.google.com/presentation/d/1R4RYaqLU4zJkv-Eekg7BhZQGKBQxlYEyoCTJBy7MsHo">Slides</a></td>
</tr>
<tr>
<td>09:30</td>
<td>What's the best move?</td>
<td><a target="_blank" href="https://twitter.com/littleidea">Andrew Clay Shafer</a></td>
</tr>
<tr>
<td>10:00</td>
<td>Open source and Maps</td>
<td><a target="_blank" href="https://twitter.com/adrianco">Adrian Cockcroft</a></td>
</tr>
<tr>
<td>10:30</td>
<td>Building a company with maps</td>
<td><a target="_blank" href="https://twitter.com/Rachel0404">Rachel Murphy</a> | <a
href="/assets/slides/london-2019/rachel-murphy.pdf">Slides</a></td>
</tr>
<tr class="schedule-section">
<td colspan="3"> </td>
</tr>
<tr class="schedule-break">
<td>11:00</td>
<td>Break</td>
<td></td>
</tr>
<tr>
<td>11:30</td>
<td>Mapping skills and capability</td>
<td><a target="_blank" href="https://twitter.com/ewebber">Emily Webber</a> | <a
href="https://www.slideshare.net/EmilyWebber/capability-profile-mapping-at-map-camp-2019">Slides</a></td>
</tr>
<tr>
<td>12:00</td>
<td>Mapping as a sensemaking practice within digital ecosystems</td>
<td><a target="_blank" href="https://twitter.com/RoserPujadas1">Roser Pujadas</a> | <a
href="/assets/slides/london-2019/roser-pujadas.pdf">Slides</a></td>
</tr>
<tr>
<td>12:30</td>
<td>Managing for Serendipity</td>
<td><a target="_blank" href="https://twitter.com/lunivore">Liz Keogh</a> | <a
href="https://speakerdeck.com/lunivore/managing-for-serendipity">Slides</a></td>
</tr>
<tr class="schedule-section">
<td colspan="3"> </td>
</tr>
<tr class="schedule-break">
<td>13:00</td>
<td>Lunch</td>
<td></td>
</tr>
<tr>
<td>14:00</td>
<td>Maps and the Environment</td>
<td><a target="_blank" href="https://twitter.com/anne_e_currie">Anne Currie</a> & <a
href="https://twitter.com/PaulDJohnston">Paul Johnston</a> | <a
href="/assets/slides/london-2019/anne-currie-paul-johnston.pdf">Slides</a></td>
</tr>
<tr class="schedule-section">
<td colspan="3"> </td>
</tr>
<tr class="schedule-track">
<td colspan="3"><b>The Government Track</b></td>
</tr>
<tr>
<td>14:30</td>
<td>How UK Policing is using maps and serverless</td>
<td><a target="_blank" href="https://twitter.com/simonaclifford">Simon Clifford</a></td>
</tr>
<tr>
<td>14:45</td>
<td>Using maps in Government</td>
<td><a target="_blank" href="https://twitter.com/jamesaduncan">James Duncan</a> | <a
href="https://docs.google.com/document/d/1bBPgbUfTJxlzb5EgdG5SCWgOydVM5aPBncPkuNA95-Q">Slides</a></td></td>
</tr>
<tr>
<td>15:00</td>
<td>Maps and Smart Cities</td>
<td><a target="_blank" href="https://twitter.com/jacquitaylorfb">Dr Jacqui Taylor</a></td>
</tr>
<tr>
<td>15:15</td>
<td>Maps and the UN</td>
<td><a target="_blank" href="https://twitter.com/mcraddock">Mark Craddock</a> | <a
href="/assets/slides/london-2019/mark-craddock.pdf">Slides</a></td>
</tr>
<tr>
<td>15:30</td>
<td colspan="2"><b>Panel discussion</b> - The role of maps in Government</td>
</tr>
<tr class="schedule-section">
<td colspan="3"> </td>
</tr>
<tr class="schedule-break">
<td>16:00</td>
<td>Break</td>
<td></td>
</tr>
<tr class="schedule-section">
<td colspan="3"> </td>
</tr>
<tr class="schedule-track">
<td colspan="3"><b>The Private Sector Track</b></td>
</tr>
<tr>
<td>16:30</td>
<td>Maps and Venture Capital</td>
<td><a target="_blank" href="https://twitter.com/prasanna_says">Prasanna Krishnamoorthy</a> | <a
href="/assets/slides/london-2019/prasanna-krishnamoorthy.pdf">Slides</a></td>
</tr>
<tr>
<td>16:45</td>
<td>Maps and Financial Services</td>
<td><a target="_blank" href="https://twitter.com/andrasonea">Andra Sonea</a></td>
</tr>
<tr>
<td>17:00</td>
<td>Maps and IoT</td>
<td><a target="_blank" href="https://twitter.com/yoditstanton">Yodit Stanton</a></td>
</tr>
<tr>
<td>17:15</td>
<td>Maps and Organisation</td>
<td><a target="_blank" href="https://twitter.com/ramonvanalteren">Ramon van Alteren</a> | <a
href="/assets/slides/london-2019/ramon-van-alteren.pdf">Slides</a></td>
</tr>
<tr>
<td>17:30</td>
<td colspan="2"><b>Panel discussion</b> - The role of maps in the Private Sector</td>
</tr>
<tr class="schedule-section">
<td colspan="3"> </td>
</tr>
<tr>
<td>18:00</td>
<td>Maps and Stories</td>
<td><a target="_blank" href="https://twitter.com/VirtualTal">Tal Klein</a> | <a
href="/assets/slides/london-2019/tal-klein.pdf">Slides</a></td>
</tr>
<tr>
<td>18:30</td>
<td colspan="2"><b>After hours discussion</b> - an armchair chat with <a target="_blank"
href="https://twitter.com/snowded">Dave Snowden</a> & <a target="_blank"
href="https://twitter.com/swardley">Simon Wardley</a></td>
</tr>
<tr class="schedule-section">
<td colspan="3"> </td>
</tr>
<tr class="schedule-break">
<td>19:30</td>
<td>Conference closes</td>
<td></td>
</tr>
</table>
<h2 id="Breakout-Sessions">Area 64</h2>
<p>
This year at Map Camp we have an additional teaching area with space for 64 people. This area will be mainly ad-hoc,
some presentations, demonstrations and discussions on the practice of mapping. More details will follow.
</p>
<table class="schedule">
<tr>
<td>10:00</td>
<td><b>Maps and Security</b> - open session</td>
<td></td>
</tr>
<tr class="schedule-break">
<td>11:00</td>
<td>Break</td>
<td></td>
</tr>
<tr>
<td>12:00</td>
<td><a href="https://rainmaker.solutions/wemvula/">Wemvula</a> - presentation of a mapping tool | <a
href="/assets/slides/london-2019/rainmaker-wemvula.pdf">Slides</a></td>
<td></td>
</tr>
<tr>
<td>12:30</td>
<td><b>Other types of maps</b> - discussion</td>
<td></td>
</tr>
<tr class="schedule-break">
<td>13:00</td>
<td>Lunch</td>
<td></td>
</tr>
<tr>
<td>14:00</td>
<td><b>Maps and Security</b> - open session</td>
<td></td>
</tr>
<tr>
<td>15:00</td>
<td><b>Maps and the environment</b> - open session</td>
<td></td>
</tr>
<tr class="schedule-break">
<td>16:00</td>
<td>Break</td>
<td></td>
</tr>
<tr>
<td>16:30</td>
<td><b>Beginning your mapping journey</b></td>
<td><a href="https://twitter.com/wardleymaps">Chris Daniel</a></td>
</tr>
<tr class="schedule-break">
<td>18:15</td>
<td>Space closes</td>
<td></td>
</tr>
</table>
<h2>The Quiet Room</h2>
<p>
A dedicated space has been provided as a quiet room, to escape the noise and bustle of the conference.
</p>
<h2 id="Pre-Event-Activities">Pre-Event Activities</h2>
<p>
In another first for Map Camp (sponsorship, larger event, environmental efforts, quiet space, etc.) - do remember
this is a community run event and we're learning each year - we also have some pre-event activities happening.
</p>
<p>
The LEF has a <b>mapping workshop</b> on the 14th October which promises to provide an unmissable opportunity to apply
Wardley mapping to a real business challenge. It's a ticketed event, so <a
href="https://leadingedgeforum.com/events/map-camp-pre-event-workshop-practical-mapping/" target="_blank">register
on the LEF
website</a> if you're interested.
</p>
<p>
We've also booked a floor at the <a href="http://www.thepearlandfeather.com/" target="_blank">Pearl and Feather</a>
for an <b>evening
before meetup</b> on the 14th October from 6:30pm.
<a href="https://twitter.com/swardley/status/1177159699961122817" target="_blank">Do respond to
@swardley's tweet</a> on this, so we just have an idea of the numbers, if you're planning to attend. We have no
sponsors which means it's a buy your own food and drink evening. Everything we've raised is being spent on the main
event.
</p>
<h2>Location</h2>
<p><a target="_blank" href="https://www.sadlerswells.com/">Sadler's Wells Theatre</a></p>
<div style="text-align: center;">
<iframe width="600" height="450" frameborder="0" style="border:0"
src="https://www.google.com/maps/embed/v1/place?key=AIzaSyDrO1OypkhUwjdSIW_ipaUf88bZJaI4geU&q=Sadler's+Wells+Theatre,London+EC1R+4TN,UK"
allowfullscreen>
</iframe>
</div>
<h2 id="Sponsors">Sponsors</h2>
<div style="text-align: center;">
<div class="feature__wrapper">
<div class="feature__item">
<div class="archive__item" style="margin-bottom: 24px;">
<a href="https://leadingedgeforum.com/" target="_blank">
<div class="archive__item-teaser" style="line-height: 120px;">
<img src="/assets/images/sponsors/london-2019/LEF.svg" alt="Leading Edge Forum"
style="max-width: 60%; box-shadow: none; vertical-align: middle;">
</div>
</a>
<div class="archive__item-body">
<h3 style="margin: 0 12px 24px 12px;">Main Sponsor</h3>
</div>
</div>
</div>
<div class="feature__item">
<div class="archive__item" style="margin-bottom: 24px;">
<a href="https://aws.amazon.com/" target="_blank">
<div class="archive__item-teaser" style="line-height: 120px;">
<img src="/assets/images/sponsors/london-2019/aws.jpg" alt="Amazon Web Services (AWS)"
style="max-width: 45%; box-shadow: none; vertical-align: middle;">
</div>
</a>
<div class="archive__item-body">
<h3 style="margin: 0 12px 24px 12px;">The Climate Sponsor</h3>
</div>
</div>
</div>
<div class="feature__item">
<div class="archive__item" style="margin-bottom: 24px;">
<a href="https://rainmaker.solutions/" target="_blank">
<div class="archive__item-teaser" style="line-height: 120px;">
<img src="/assets/images/sponsors/london-2019/rainmaker.png" alt="Rainmaker Solutions"
style="max-width: 50%; box-shadow: none; vertical-align: middle;">
</div>
</a>
<div class="archive__item-body">
<h3 style="margin: 0 12px 24px 12px;">The Sponsor for Inclusion</h3>
</div>
</div>
</div>
<div class="feature__item">
<div class="archive__item" style="margin-bottom: 24px;">
<a href="https://www.infoq.com/" target="_blank">
<div class="archive__item-teaser" style="line-height: 120px;">
<img src="/assets/images/sponsors/london-2019/infoq.svg" alt="InfoQ"
style="max-width: 50%; box-shadow: none; vertical-align: middle;">
</div>
</a>
<div class="archive__item-body">
<h3 style="margin: 0 12px 24px 12px;">The Sponsor for Filming</h3>
</div>
</div>
</div>
<div class="feature__item">
<div class="archive__item" style="margin-bottom: 24px;">
<a href="https://www.endava.com/" target="_blank">
<div class="archive__item-teaser" style="line-height: 120px;">
<img src="/assets/images/sponsors/london-2019/endava.svg" alt="Endava"
style="max-width: 70%; box-shadow: none; vertical-align: middle;">
</div>
</a>
<div class="archive__item-body">
<h3 style="margin: 0 12px 24px 12px;">Silver Sponsor</h3>
</div>
</div>
</div>
<div class="feature__item">
<div class="archive__item" style="margin-bottom: 24px;">
<a href="https://methods.co.uk/" target="_blank">
<div class="archive__item-teaser" style="line-height: 120px;">
<img src="/assets/images/sponsors/london-2019/methods.png" alt="Methods Business and Digital Technology Ltd"
style="max-width: 70%; box-shadow: none; vertical-align: middle;">
</div>
</a>
<div class="archive__item-body">
<h3 style="margin: 0 12px 24px 12px;">Silver Sponsor</h3>
</div>
</div>
</div>
<div class="feature__item">
<div class="archive__item" style="margin-bottom: 24px;">
<a href="http://gosuperstars.com/" target="_blank">
<div class="archive__item-teaser" style="line-height: 120px;">
<img src="/assets/images/sponsors/london-2019/superstars.png" alt="Superstars"
style="max-width: 70%; box-shadow: none; vertical-align: middle;">
</div>
</a>
<div class="archive__item-body">
<h3 style="margin: 0 12px 24px 12px;">Silver Sponsor</h3>
</div>
</div>
</div>
</div>
</div>
<p>
We are delighted to have additional sponsors for Map Camp this year. Our film sponsor (who is looking after the
recording of sessions and publication online) is <a href="https://www.infoq.com/" target="_blank">InfoQ</a>. We're
also pleased to announce that <a href="https://www.endava.com/" target="_blank">Endava</a>,
<a href="https://methods.co.uk/" target="_blank">Methods</a> and
<a href="http://gosuperstars.com/" target="_blank">Superstars</a> have become silver sponsors.
<a href="https://rainmaker.solutions/" target="_blank">Rainmaker</a> is sponsoring our diversity efforts.
<a href="https://aws.amazon.com/" target="_blank">Amazon Web Services (AWS)</a> are sponsoring our climate efforts and
lastly and certainly not least,
the <a href="https://leadingedgeforum.com/" target="_blank">Leading Edge Forum</a> is underwriting and sponsoring the
entire event.
</p>
<p>We can't emphasise enough how important sponsors are for enabling us to hold the event. Thank you.</p>
<h2>About</h2>
<p>Map Camp is a community driven event organised by a collection of individuals. All funds raised through ticket sales
will be spent on providing Map Camp with any deficit covered by the Leading Edge Forum.</p>
<p>To contact the organisers please send an email to [email protected] or
[email protected]
</p>
<div style="margin: 60px auto 0 auto; max-width: 302px; text-align: center;">
<img src="/assets/images/mapcamplondon2019.svg" style="max-width: 300px" />
<p style="padding-top: 24px;">
Join the Conversation <a href="https://twitter.com/hashtag/MapCamp">#MapCamp</a> & <a
href="https://twitter.com/hashtag/WardleyMaps">#WardleyMaps</a>
</p>
</div> |
all-data/2000-2999/2082-31.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="layoutclass_pic"><div class="layoutclass_first_pic"><table class="ztable"><tr><th class="ztd1"><b>成語 </b></th><td class="ztd2">三言兩句</td></tr>
<tr><th class="ztd1"><b>典源 </b></th><td class="ztd2"> 此處所列為「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000783%22.%26v%3D-1" class="clink" target=_blank>三言兩語</a>」之典源,提供參考。</font> ※宋.吳潛〈望江南.家山好〉詞(據<font class="dianuan_mark">《全宋詞.吳潛》</font>引)<br><font size=4 color="#808080">家山好,不是撰虛名。世上盛衰常倚伏,天家日月也虧盈。退步是前程。</font> 且恁地<font size=-2 color="#999900"><font class="dianyuanfont"><b><i>1></i></b></font></font>,捲索了收繩<font size=-2 color="#999900"><font class="dianyuanfont"><b><i>2></i></b></font></font>。六宇五胡<font size=-2 color="#999900"><font class="dianyuanfont"><b><i>3></i></b></font></font>生口面<font size=-2 color="#999900"><font class="dianyuanfont"><b><i>4></i></b></font></font>,三言兩語費顏情<font size=-2 color="#999900"><font class="dianyuanfont"><b><i>5></i></b></font></font>。<font size=4 color="#808080">贏得鬢星星。</font></font> <br><font class="dianuan_mark2">〔注解〕</font><br></font>
<div class="Rulediv"><font class="english_word">(1)</font> 且恁地:姑且就如此。恁,如此。</font></div>
<div class="Rulediv"><font class="english_word">(2)</font> 捲索了收繩:收捲了繩索,比喻回轉田園,不問世事。</font></div>
<div class="Rulediv"><font class="english_word">(3)</font> 六宇五胡:全天下的異族人。六宇,指上下四方。五胡,指匈奴、羯、鮮卑、氐、羌五種自北方移居中原的胡人。</font></div>
<div class="Rulediv"><font class="english_word">(4)</font> 生口面:陌生人的是非口舌。</font></div>
<div class="Rulediv"><font class="english_word">(5)</font> 費顏情:難以揣測真情意。</font></div>
</td></tr>
</td></tr></table></div> <!-- layoutclass_first_pic --><div class="layoutclass_second_pic"></div> <!-- layoutclass_second_pic --></div> <!-- layoutclass_pic --></td></tr></table>
|
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/fa041ba9c6b55fc372260feb47b4f2e17eb5156f9b329d51ebb84c2e8fa1cd97.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="./0689959cb92f8a355f300ef31dd63e294b7265677bc4d81b456df9240635ad6a.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> |
src/ifd.sitetheme/ifd/sitetheme/resources/_includes/box-blog-categories.html | potzenheimer/buildout.ifd | <div class="panel panel-default blog-panel-categories" id="infobox-blog-categories" >
<div class="panel-heading">
<span class="badge pull-right">66</span>
<a href="/">Themen</a>
</div>
<div class="list-group panel-collapse collapse in"
aria-labelledby="blogCategories" role="menu">
<a class="list-group-item" role="menuitem" href="http://localhost:8499/ifd/blog-view?category=Abschluss">
<span class="badge">1</span>
<span>Abschluss</span>
</a>
<a class="list-group-item" role="menuitem" href="http://localhost:8499/ifd/blog-view?category=Arbeiten%20mit%20Behinderung">
<span class="badge">15</span>
<span>Arbeiten mit Behinderung</span>
</a>
<a class="list-group-item" role="menuitem" href="http://localhost:8499/ifd/blog-view?category=Aus%20der%20Region">
<span class="badge">10</span>
<span>Aus der Region</span>
</a>
<a class="list-group-item" role="menuitem" href="http://localhost:8499/ifd/blog-view?category=Ausland">
<span class="badge">1</span>
<span>Ausland</span>
</a>
<a class="list-group-item" role="menuitem" href="http://localhost:8499/ifd/blog-view?category=Barrierefreiheit">
<span class="badge">2</span>
<span>Barrierefreiheit</span>
</a>
</div>
</div> |
media/doc/html/functions_func_c.html | EricChenC/quark_engine | <!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.14"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Quark Engine: Class Members - Functions</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">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(initResizable);
/* @license-end */</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>
<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="projectlogo"><img alt="Logo" src="quark.ico"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Quark Engine
 <span id="projectnumber">1.0</span>
</div>
<div id="projectbrief">The best power IR engine in the universe!</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.14 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></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">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('functions_func_c.html','');});
/* @license-end */
</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="contents">
 
<h3><a id="index_c"></a>- c -</h3><ul>
<li>Camera()
: <a class="el" href="classqe_1_1core_1_1_camera.html#a861195e8930f0fffc35b15a1faa77c20">qe::core::Camera</a>
</li>
<li>CameraToWorldMatrix()
: <a class="el" href="classqe_1_1core_1_1_camera.html#a9f9847b1e8c089e877964f284e993724">qe::core::Camera</a>
</li>
<li>Component()
: <a class="el" href="classqe_1_1core_1_1_component.html#a3ec40ead88558d693df6885805742eb2">qe::core::Component</a>
</li>
<li>CopyBuffer()
: <a class="el" href="classqe_1_1render_1_1vulkan_1_1_vulkan_device.html#a231cdfd2d7a6072c8c147bea37995f89">qe::render::vulkan::VulkanDevice</a>
</li>
<li>copyTo()
: <a class="el" href="classqe_1_1render_1_1vulkan_1_1_vulkan_buffer.html#ade19fc53ae24265c354a5d95dcede71c">qe::render::vulkan::VulkanBuffer</a>
</li>
<li>CreateBuffer()
: <a class="el" href="classqe_1_1render_1_1vulkan_1_1_vulkan_device.html#a40f921780207394a5f0cfd0260ece167">qe::render::vulkan::VulkanDevice</a>
</li>
<li>CreateCommandBuffer()
: <a class="el" href="classqe_1_1render_1_1vulkan_1_1_vulkan_device.html#ae441666f89df5531ecc796a227b0dc10">qe::render::vulkan::VulkanDevice</a>
</li>
<li>CreateCommandPool()
: <a class="el" href="classqe_1_1render_1_1vulkan_1_1_vulkan_device.html#a4ae115d4b125f5355f3abab9545a1bcd">qe::render::vulkan::VulkanDevice</a>
</li>
<li>CreateH2DBuffer()
: <a class="el" href="classqe_1_1render_1_1vulkan_1_1_vulkan_device.html#a6243b1367ed049644abf4592461c2db7">qe::render::vulkan::VulkanDevice</a>
</li>
<li>CreateImage()
: <a class="el" href="classqe_1_1render_1_1vulkan_1_1_vulkan_device.html#a0a63be023ccb61723a70aa655ceec46e">qe::render::vulkan::VulkanDevice</a>
</li>
<li>CreateLogicalDevice()
: <a class="el" href="classqe_1_1render_1_1vulkan_1_1_vulkan_device.html#a38c17018c62e155fd5a2d0edd6513ef0">qe::render::vulkan::VulkanDevice</a>
</li>
<li>Current()
: <a class="el" href="classqe_1_1core_1_1_camera.html#a23db07bf27e8778d5589dba5f72c4d7e">qe::core::Camera</a>
</li>
</ul>
</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.14 </li>
</ul>
</div>
</body>
</html>
|
test_result/screen1.html | KnowRe/swint-builder-html | <!DOCTYPE html><html><head><title>Swint-Builder-HTML</title></head><body><section class=screen1><div class=aaa></div></section></body></html> |
_site/2011/02/26/t41546251514150912.html | craigwmcclellan/craigwmcclellan.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="Craig McClellan" name="author">
<title>Craig McClellan - T41546251514150912 </title>
<link href="/assets/css/style.css" rel="stylesheet">
<link href="/assets/css/highlight.css" rel="stylesheet">
<link rel="stylesheet" href="/custom.css">
<link rel="shortcut icon" href="https://micro.blog/craigmcclellan/favicon.png" type="image/x-icon" />
<link rel="alternate" type="application/rss+xml" title="Craig McClellan" href="http://craigmcclellan.com/feed.xml" />
<link rel="alternate" type="application/json" title="Craig McClellan" href="http://craigmcclellan.com/feed.json" />
<link rel="EditURI" type="application/rsd+xml" href="/rsd.xml" />
<link rel="me" href="https://micro.blog/craigmcclellan" />
<link rel="me" href="https://twitter.com/craigmcclellan" />
<link rel="me" href="https://github.com/craigwmcclellan" />
<link rel="authorization_endpoint" href="https://micro.blog/indieauth/auth" />
<link rel="token_endpoint" href="https://micro.blog/indieauth/token" />
<link rel="micropub" href="https://micro.blog/micropub" />
<link rel="webmention" href="https://micro.blog/webmention" />
<link rel="subscribe" href="https://micro.blog/users/follow" />
</head>
<body>
<nav class="main-nav">
<a class="normal" href="/"> <span class="arrow">←</span> Home</a>
<a href="/archive/">Archive</a>
<a href="/about/">About</a>
<a href="/tools-of-choice/">Tools of Choice</a>
<a class="cta" href="https://micro.blog/craigmcclellan" rel="me">Also on Micro.blog</a>
</nav>
<section id="wrapper">
<article class="h-entry post">
<header>
<h2 class="headline">
<time class="dt-published" datetime="2011-02-26 11:12:52 -0600">
<a class="u-url dates" href="/2011/02/26/t41546251514150912.html">February 26, 2011</a>
</time>
</h2>
</header>
<section class="e-content post-body">
<p>What if @fillindablank just destroyed me in 2 games of racquetball. Then he would truly be #jsexy.</p>
</section>
</article>
<section id="post-meta" class="clearfix">
<a href="/">
<img class="u-photo avatar" src="https://micro.blog/craigmcclellan/avatar.jpg">
<div>
<span class="p-author h-card dark">Craig McClellan</span>
<span><a href="https://micro.blog/craigmcclellan">@craigmcclellan</a></span>
</div>
</a>
</section>
</section>
<footer id="footer">
<section id="wrapper">
<ul>
<li><a href="/feed.xml">RSS</a></li>
<li><a href="/feed.json">JSON Feed</a></li>
<li><a href="https://micro.blog/craigmcclellan" rel="me">Micro.blog</a></li>
<!-- <li><a class="u-email" href="mailto:" rel="me">Email</a></li> -->
</ul>
<form method="get" id="search" action="https://duckduckgo.com/">
<input type="hidden" name="sites" value="http://craigmcclellan.com"/>
<input type="hidden" name="k8" value="#444444"/>
<input type="hidden" name="k9" value="#ee4792"/>
<input type="hidden" name="kt" value="h"/>
<input class="field" type="text" name="q" maxlength="255" placeholder="To search, type and hit Enter…"/>
<input type="submit" value="Search" style="display: none;" />
</form>
</section>
</footer>
</body>
</html>
|
_site/2010/02/21/t9460649017.html | craigwmcclellan/craigwmcclellan.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="Craig McClellan" name="author">
<title>Craig McClellan - T9460649017 </title>
<link href="/assets/css/style.css" rel="stylesheet">
<link href="/assets/css/highlight.css" rel="stylesheet">
<link rel="stylesheet" href="/custom.css">
<link rel="shortcut icon" href="https://micro.blog/craigmcclellan/favicon.png" type="image/x-icon" />
<link rel="alternate" type="application/rss+xml" title="Craig McClellan" href="http://craigmcclellan.com/feed.xml" />
<link rel="alternate" type="application/json" title="Craig McClellan" href="http://craigmcclellan.com/feed.json" />
<link rel="EditURI" type="application/rsd+xml" href="/rsd.xml" />
<link rel="me" href="https://micro.blog/craigmcclellan" />
<link rel="me" href="https://twitter.com/craigmcclellan" />
<link rel="me" href="https://github.com/craigwmcclellan" />
<link rel="authorization_endpoint" href="https://micro.blog/indieauth/auth" />
<link rel="token_endpoint" href="https://micro.blog/indieauth/token" />
<link rel="micropub" href="https://micro.blog/micropub" />
<link rel="webmention" href="https://micro.blog/webmention" />
<link rel="subscribe" href="https://micro.blog/users/follow" />
</head>
<body>
<nav class="main-nav">
<a class="normal" href="/"> <span class="arrow">←</span> Home</a>
<a href="/archive/">Archive</a>
<a href="/about/">About</a>
<a href="/tools-of-choice/">Tools of Choice</a>
<a class="cta" href="https://micro.blog/craigmcclellan" rel="me">Also on Micro.blog</a>
</nav>
<section id="wrapper">
<article class="h-entry post">
<header>
<h2 class="headline">
<time class="dt-published" datetime="2010-02-21 18:00:00 -0600">
<a class="u-url dates" href="/2010/02/21/t9460649017.html">February 21, 2010</a>
</time>
</h2>
</header>
<section class="e-content post-body">
<p>Just got my first Bingo (that I can recall) in Scrabble. Narwhals. The h was already on the board.</p>
</section>
</article>
<section id="post-meta" class="clearfix">
<a href="/">
<img class="u-photo avatar" src="https://micro.blog/craigmcclellan/avatar.jpg">
<div>
<span class="p-author h-card dark">Craig McClellan</span>
<span><a href="https://micro.blog/craigmcclellan">@craigmcclellan</a></span>
</div>
</a>
</section>
</section>
<footer id="footer">
<section id="wrapper">
<ul>
<li><a href="/feed.xml">RSS</a></li>
<li><a href="/feed.json">JSON Feed</a></li>
<li><a href="https://micro.blog/craigmcclellan" rel="me">Micro.blog</a></li>
<!-- <li><a class="u-email" href="mailto:" rel="me">Email</a></li> -->
</ul>
<form method="get" id="search" action="https://duckduckgo.com/">
<input type="hidden" name="sites" value="http://craigmcclellan.com"/>
<input type="hidden" name="k8" value="#444444"/>
<input type="hidden" name="k9" value="#ee4792"/>
<input type="hidden" name="kt" value="h"/>
<input class="field" type="text" name="q" maxlength="255" placeholder="To search, type and hit Enter…"/>
<input type="submit" value="Search" style="display: none;" />
</form>
</section>
</footer>
</body>
</html>
|
lib/assets/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/bootstrap.min.js.html | user-tony/photon-rails | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Login Page - Photon Admin Panel Theme</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<link rel="shortcut icon" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/favicon.ico" />
<link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/iosicon.png" />
<!-- DEVELOPMENT LESS -->
<!-- <link rel="stylesheet/less" href="css/photon.less" media="all" />
<link rel="stylesheet/less" href="css/photon-responsive.less" media="all" />
--> <!-- PRODUCTION CSS -->
<link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/css/css_compiled/photon-min.css?v1.1" media="all" />
<link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/css/css_compiled/photon-min-part2.css?v1.1" media="all" />
<link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/css/css_compiled/photon-responsive-min.css?v1.1" media="all" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="css/css_compiled/ie-only-min.css?v1.1" />
<![endif]-->
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="css/css_compiled/ie8-only-min.css?v1.1" />
<script type="text/javascript" src="js/plugins/excanvas.js"></script>
<script type="text/javascript" src="js/plugins/html5shiv.js"></script>
<script type="text/javascript" src="js/plugins/respond.min.js"></script>
<script type="text/javascript" src="js/plugins/fixFontIcons.js"></script>
<![endif]-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/modernizr.custom.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.pnotify.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/less-1.3.1.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/xbreadcrumbs.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.maskedinput-1.3.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.autotab-1.1b.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/charCount.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.textareaCounter.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/elrte.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/elrte.en.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/select2.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery-picklist.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.validate.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/additional-methods.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.form.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.metadata.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.mockjax.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.uniform.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.tagsinput.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.rating.pack.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/farbtastic.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.timeentry.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.jstree.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/dataTables.bootstrap.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.mousewheel.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.mCustomScrollbar.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.flot.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.flot.stack.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.flot.pie.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.flot.resize.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/raphael.2.1.0.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/justgage.1.0.1.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.qrcode.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.clock.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.countdown.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.jqtweet.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/jquery.cookie.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/bootstrap-fileupload.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/prettify/prettify.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/bootstrapSwitch.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/plugins/mfupload.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/js/common.js"></script>
</head>
<body class="body-login">
<div class="nav-fixed-topright" style="visibility: hidden">
<ul class="nav nav-user-menu">
<li class="user-sub-menu-container">
<a href="javascript:;">
<i class="user-icon"></i><span class="nav-user-selection">Theme Options</span><i class="icon-menu-arrow"></i>
</a>
<ul class="nav user-sub-menu">
<li class="light">
<a href="javascript:;">
<i class='icon-photon stop'></i>Light Version
</a>
</li>
<li class="dark">
<a href="javascript:;">
<i class='icon-photon stop'></i>Dark Version
</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-photon mail"></i>
</a>
</li>
<li>
<a href="javascript:;">
<i class="icon-photon comment_alt2_stroke"></i>
<div class="notification-count">12</div>
</a>
</li>
</ul>
</div>
<script>
$(function(){
setTimeout(function(){
$('.nav-fixed-topright').removeAttr('style');
}, 300);
$(window).scroll(function(){
if($('.breadcrumb-container').length){
var scrollState = $(window).scrollTop();
if (scrollState > 0) $('.nav-fixed-topright').addClass('nav-released');
else $('.nav-fixed-topright').removeClass('nav-released')
}
});
$('.user-sub-menu-container').on('click', function(){
$(this).toggleClass('active-user-menu');
});
$('.user-sub-menu .light').on('click', function(){
if ($('body').is('.light-version')) return;
$('body').addClass('light-version');
setTimeout(function() {
$.cookie('themeColor', 'light', {
expires: 7,
path: '/'
});
}, 500);
});
$('.user-sub-menu .dark').on('click', function(){
if ($('body').is('.light-version')) {
$('body').removeClass('light-version');
$.cookie('themeColor', 'dark', {
expires: 7,
path: '/'
});
}
});
});
</script>
<div class="container-login">
<div class="form-centering-wrapper">
<div class="form-window-login">
<div class="form-window-login-logo">
<div class="login-logo">
<img src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/css/css_compiled/js/bootstrap/images/photon/js/bootstrap/images/photon/[email protected]" alt="Photon UI"/>
</div>
<h2 class="login-title">Welcome to Photon UI!</h2>
<div class="login-member">Not a Member? <a href="bootstrap.min.js.html#">Sign Up »</a>
<a href="bootstrap.min.js.html#" class="btn btn-facebook"><i class="icon-fb"></i>Login with Facebook<i class="icon-fb-arrow"></i></a>
</div>
<div class="login-or">Or</div>
<div class="login-input-area">
<form method="POST" action="dashboard.php">
<span class="help-block">Login With Your Photon Account</span>
<input type="text" name="email" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<button type="submit" class="btn btn-large btn-success btn-login">Login</button>
</form>
<a href="bootstrap.min.js.html#" class="forgot-pass">Forgot Your Password?</a>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1936460-27']);
_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>
</body>
</html>
|
SageFrame/Templates/AspxCommerce/css/PopUp/style.css | AspxCommerce/AspxCommerce2.7 | /* CSS Document */
.popupbox {
background-color:#FFF;
display:none;
z-index: 9999;
}
#fade {
display: none;
background:#000;
opacity:0.5; filter: alpha(opacity=50);
left: 0; position:fixed;top: 0;
z-index:9000;
width:100%; height:100%;}
.popupbox2 {
background: #6D84B4 !important;
border-color: #3B5998 #3B5998 -moz-use-text-color;
border-style: solid solid none;
border-width: 1px 1px medium;
color: #FFFFFF;
font-size: 14px;
font-weight: bold;
padding: 3px;
margin: 0;
}
.popupbox3 {
width:502px;
height:302px;
background-image:url(../../images/3_03.png);
background-repeat:no-repeat;
display: none;
float: left;
position: absolute;
top: 50%;
left: 50%;
z-index: 9999;
-webkit-box-shadow: 0px 0px 10px #fff;
-moz-box-shadow: 0px 0px 10px #fff;
box-shadow: 0px 0px 10px #fff;
}
#intabdiv {
padding:10px;
}
#close img {
text-decoration:none;
}
#close {
width:50px;
height:50px;
position: absolute;
float:right;
}
#intabdiv2 {
padding:70px;
}
.popupbox a{ margin:0 10px 0 10px}
#intabdiv2 p {
font-size:12px;
color:#696868;
line-height:20px;
}
#intabdiv3 {
padding:70px;
}
.popupbox{
position: fixed;
z-index: 99999;
margin: auto;
top: 0; left: 0; bottom: 0; right: 0;
width: 60%;
height:60%; -webkit-box-shadow: 0 0 0 10px rgba(0,0,0,.09); -moz-box-shadow: 0 0 0 10px rgba(0,0,0,.09); box-shadow: 0 0 0 10px rgba(0,0,0,.09);font-size:14px;
padding:15px 0 15px 15px;
}
.popupbox .sfFormwrapper .cssClassTextarea {
height:100px;
}
.popupbox .sfFormwrapper select { margin:3px 5px;}
.error {
font-size:11px;
color:#F00;
padding:0 0 0 5px;
}
.popupbox .sfFormwrapper td{ border-bottom:none;}
input.error, .textarea.error{ border: 1px dashed #F00!important;
padding: 8px;}
.cssClassReviewInfos {
padding:5px;
background-color:#bcebff;
margin:5px 0 0 0;
}
.cssClassReviewInfos a {
text-decoration:underline;
}
.cssClassPopUpHeading {
margin:7px 0;
}
span.star-rating-control {
float:left;
height:21px;
padding-top:5px;
}
.cssClassToolTipInfo span.star-rating-control {float:right;}
span.cssClassRatingText {float:left;padding:0 0 0 5px;}
td.cssClassReviewCriteria {width:152px;}
.cssClassItemCostVariant { width:auto;}
.cssClassItemCostVariant .ui-corner-all {max-height:390px; margin: 12px 10px 0; overflow: auto;width: 640px;}
.cssClassItemCostVariant .ui-tabs .ui-tabs-panel {padding: 20px 0 0;}
.popupbox .sfFormwrapper input{ margin:5px; padding:4px 5px; }
#trigger {text-align:center;}
/*.popupbox .sfButtonwrapper button{margin:2px 6px 6px 5px;
font-size:13px;
border:1px solid #039;
background-color:#5B74A8;
background-position:0 -28px;
border-color:#29447E #29447E #1A356E;
color:#FFFFFF;
padding:2px 6px
text-align:center;
text-decoration:none;
vertical-align:middle;
white-space:nowrap;}*/
.cssClassQuickView .cssClassProductImage{ width:40%}
.cssClassQuickView .cssClassProductPictureDetails{ width:57%}] |
c8be718/html/classv8_1_1Date-members.html | v8-dox/v8-dox.github.io | <!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>V8 API Reference Guide for node.js v8.0.0 - v8.1.0: Member List</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" />
</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">V8 API Reference Guide for node.js v8.0.0 - v8.1.0
</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="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</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="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- 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 id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1Date.html">Date</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">v8::Date Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classv8_1_1Date.html">v8::Date</a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>BooleanValue</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>CallAsConstructor</b>(Local< Context > context, int argc, Local< Value > argv[]) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>CallAsFunction</b>(Local< Context > context, Local< Value > recv, int argc, Local< Value > argv[]) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Cast</b>(Value *obj) (defined in <a class="el" href="classv8_1_1Date.html">v8::Date</a>)</td><td class="entry"><a class="el" href="classv8_1_1Date.html">v8::Date</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Cast</b>(T *value) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a5018c9d085aa71f65530cf1e073a04ad">Clone</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>CreateDataProperty</b>(Local< Context > context, Local< Name > key, Local< Value > value) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>CreateDataProperty</b>(Local< Context > context, uint32_t index, Local< Value > value) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#af6966283a7d7e20779961eed434db04d">CreationContext</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#ae958203f358c7af3727ef7179790d01f">CreationContext</a>(const PersistentBase< Object > &object)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Date.html#adb084ec0683d3d195ad0f78af5f6f72b">DateTimeConfigurationChangeNotification</a>(Isolate *isolate)</td><td class="entry"><a class="el" href="classv8_1_1Date.html">v8::Date</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>DefineOwnProperty</b>(Local< Context > context, Local< Name > key, Local< Value > value, PropertyAttribute attributes=None) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>DefineProperty</b>(Local< Context > context, Local< Name > key, PropertyDescriptor &descriptor) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Delete</b>(Local< Context > context, Local< Value > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Delete</b>(Local< Context > context, uint32_t index) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>DeletePrivate</b>(Local< Context > context, Local< Private > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Equals</b>(Local< Context > context, Local< Value > that) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#ae2ad9fee9db6e0e5da56973ebb8ea2bc">FindInstanceInPrototypeChain</a>(Local< FunctionTemplate > tmpl)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Get</b>(Local< Context > context, Local< Value > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Get</b>(Local< Context > context, uint32_t index) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a435f68bb7ef0f64dd522c5c910682448">GetAlignedPointerFromInternalField</a>(int index)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a65b5a3dc93c0774594f8b0f2ab5481c8">GetAlignedPointerFromInternalField</a>(const PersistentBase< Object > &object, int index)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a7bbe987794658f20a3ec1b68326305e6">GetConstructorName</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#ac1ece41e81a499920ec3a2a3471653bc">GetIdentityHash</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#aa3324fdf652d8ac3b2f27faa0559231d">GetInternalField</a>(int index)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>GetOwnPropertyDescriptor</b>(Local< Context > context, Local< Name > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>GetOwnPropertyNames</b>(Local< Context > context) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a1e6301a45e98e6d6d80e98a148a9f181">GetOwnPropertyNames</a>(Local< Context > context, PropertyFilter filter)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>GetPrivate</b>(Local< Context > context, Local< Private > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>GetPropertyAttributes</b>(Local< Context > context, Local< Value > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>GetPropertyNames</b>(Local< Context > context) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>GetPropertyNames</b>(Local< Context > context, KeyCollectionMode mode, PropertyFilter property_filter, IndexFilter index_filter) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#ae8d3fed7d6dbd667c29cabb3039fe7af">GetPrototype</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>GetRealNamedProperty</b>(Local< Context > context, Local< Name > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>GetRealNamedPropertyAttributes</b>(Local< Context > context, Local< Name > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>GetRealNamedPropertyAttributesInPrototypeChain</b>(Local< Context > context, Local< Name > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>GetRealNamedPropertyInPrototypeChain</b>(Local< Context > context, Local< Name > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a57d4819c2cc13715ed22dd23cdc84d7c">Has</a>(Local< Context > context, Local< Value > key)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Has</b>(Local< Context > context, uint32_t index) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a278913bcd203434870ce5184a538a9af">HasIndexedLookupInterceptor</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a1e96fcb9ee17101c0299ec68f2cf8610">HasNamedLookupInterceptor</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#acdd3921e95d5bb1a27cea489792607ff">HasOwnProperty</a>(Local< Context > context, Local< Name > key)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>HasOwnProperty</b>(Local< Context > context, uint32_t index) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#aad699867935fd2142ec97afa6e39a7f0">HasPrivate</a>(Local< Context > context, Local< Private > key)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>HasRealIndexedProperty</b>(Local< Context > context, uint32_t index) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>HasRealNamedCallbackProperty</b>(Local< Context > context, Local< Name > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#ad830b937c7586fe2086b288ea79935c4">HasRealNamedProperty</a>(Local< Context > context, Local< Name > key)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Int32Value</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>IntegerValue</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#aaec28576353eebe6fee113bce2718ecc">InternalFieldCount</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a324a71142f621a32bfe5738648718370">InternalFieldCount</a>(const PersistentBase< Object > &object)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#ad06a4b1f7215d852c367df390491ac84">IsArgumentsObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#aaee0b144087d20eae02314c9393ff80f">IsArray</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a65f9dad740f2468b44dc16349611c351">IsArrayBuffer</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#ad54475d15b7e6b6e17fc80fb4570cdf2">IsArrayBufferView</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a12bb07eaebd83674c5bdfc9125c6d0dd">IsAsyncFunction</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a0aceb7645e71b096df5cd73d1252b1b0">IsBoolean</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#abe7bc06283e5e66013f2f056a943168b">IsBooleanObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a23c2c1f23b50fab4a02e2f819641b865">IsCallable</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a257233cb6b11dc7bb5a0e8df8695e889">IsConstructor</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#afd20ab51e79658acc405c12dad2260ab">IsDataView</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a8bc11fab0aded4a805722ab6df173cae">IsDate</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a7ac61a325c18af8dcb6d7d5bf47d2503">IsExternal</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a68c0296071d01ca899825d7643cf495a">IsFalse</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a4effc7ca1a221dd8c1e23c0f28145ef0">IsFloat32Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a293f140b81b0219d1497e937ed948b1e">IsFloat64Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a05532a34cdd215f273163830ed8b77e7">IsFunction</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a1cbbebde8c256d051c4606a7300870c6">IsGeneratorFunction</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a72982768acdadd82d1df02a452251d14">IsGeneratorObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a928c586639dd75ae4efdaa66b1fc4d50">IsInt16Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a01e1db51c65b2feace248b7acbf71a2c">IsInt32</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a48eac78a49c8b42d9f8cf05c514b3750">IsInt32Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a10a88a2794271dfcd9c3abd565e8f28a">IsInt8Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a71ef50f22d6bb4a093cc931b3d981c08">IsMap</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#af9c52a0668fa3260a0d12a2cdf895b4e">IsMapIterator</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a8829b16b442a6231499c89fd5a6f8049">IsName</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a579fb52e893cdc24f8b77e5acc77d06d">IsNativeError</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#aa2c6ed8ef832223a7e2cd81e6ac61c78">IsNull</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a315accb0ffbf47eaba314a3d81f180d2">IsNullOrUndefined</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a1bd51e3e55f67c65b9a8f587fbffb7c7">IsNumber</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a5f4aa9504a6d8fc3af9489330179fe14">IsNumberObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a355b7991c5c978c0341f6f961b63c5a2">IsObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a93d6a0817b15a1d28050ba16e131e6b4">IsPromise</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a8a056f765e6e07a1d957fdc1be9b00d5">IsProxy</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#aae41e43486937d6122c297a0d43ac0b8">IsRegExp</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a220bd4056471ee1dda8ab9565517edd7">IsSet</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#addbae0104e07b990ee1af0bd7927824b">IsSetIterator</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#aa4ce26f174a4c1823dec56eb946d3134">IsSharedArrayBuffer</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#ab23a34b7df62806808e01b0908bf5f00">IsString</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a3e0f2727455fd01a39a60b92f77e28e0">IsStringObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#af3e6081c22d09a7bbc0a2aff59ed60a5">IsSymbol</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a867baa94cb8f1069452359e6cef6751e">IsSymbolObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a8f27462322186b295195eecb3e81d6d7">IsTrue</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#ac2f2f6c39f14a39fbb5b43577125dfe4">IsTypedArray</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a4a45fabf58b241f5de3086a3dd0a09ae">IsUint16Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a783c89631bac4ef3c4b909f40cc2b8d8">IsUint32</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a5e39229dc74d534835cf4ceba10676f4">IsUint32Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#acbe2cd9c9cce96ee498677ba37c8466d">IsUint8Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#ad3cb464ab5ef0215bd2cbdd4eb2b7e3d">IsUint8ClampedArray</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#aea287b745656baa8a12a2ae1d69744b6">IsUndefined</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#aab0297b39ed8e2a71b5dca7950228a36">IsWeakMap</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a6f5a238206cbd95f98e2da92cab72e80">IsWeakSet</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>IsWebAssemblyCompiledModule</b>() const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>New</b>(Local< Context > context, double time) (defined in <a class="el" href="classv8_1_1Date.html">v8::Date</a>)</td><td class="entry"><a class="el" href="classv8_1_1Date.html">v8::Date</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>New</b>(Isolate *isolate) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>NumberValue</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ObjectProtoToString</b>(Local< Context > context) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SameValue</b>(Local< Value > that) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Set</b>(Local< Context > context, Local< Value > key, Local< Value > value) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Set</b>(Local< Context > context, uint32_t index, Local< Value > value) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>SetAccessor</b>(Local< Context > context, Local< Name > name, AccessorNameGetterCallback getter, AccessorNameSetterCallback setter=0, MaybeLocal< Value > data=MaybeLocal< Value >(), AccessControl settings=DEFAULT, PropertyAttribute attribute=None) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SetAccessorProperty</b>(Local< Name > name, Local< Function > getter, Local< Function > setter=Local< Function >(), PropertyAttribute attribute=None, AccessControl settings=DEFAULT) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a0ccba69581f0b5e4e672bab90f26879b">SetAlignedPointerInInternalField</a>(int index, void *value)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SetAlignedPointerInInternalFields</b>(int argc, int indices[], void *values[]) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#ac45163422a18bb7481cc78fcacecb301">SetIntegrityLevel</a>(Local< Context > context, IntegrityLevel level)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#aebf949a0592cebc144bb2f96bfb7ec72">SetInternalField</a>(int index, Local< Value > value)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>SetPrivate</b>(Local< Context > context, Local< Private > key, Local< Value > value) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SetPrototype</b>(Local< Context > context, Local< Value > prototype) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>StrictEquals</b>(Local< Value > that) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ToArrayIndex</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ToBoolean</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ToDetailString</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ToInt32</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ToInteger</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ToNumber</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ToObject</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ToString</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ToUint32</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>TypeOf</b>(Isolate *) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Uint32Value</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version.", Local< Value > New(Isolate *isolate, double time)) (defined in <a class="el" href="classv8_1_1Date.html">v8::Date</a>)</td><td class="entry"><a class="el" href="classv8_1_1Date.html">v8::Date</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", bool Set(Local< Value > key, Local< Value > value)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", bool Set(uint32_t index, Local< Value > value)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use CreateDataProperty / DefineOwnProperty", Maybe< bool > ForceSet(Local< Context > context, Local< Value > key, Local< Value > value, PropertyAttribute attribs=None)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Value > Get(Local< Value > key)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Value > Get(uint32_t index)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", bool Has(Local< Value > key)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a3f735ad2eab826ddc5eba467ce624acb">v8::Object::V8_DEPRECATE_SOON</a>("Use maybe version", Local< Array > GetPropertyNames())</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", bool HasRealNamedProperty(Local< String > key)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", bool HasRealIndexedProperty(uint32_t index)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a5e7199a517d980396bb86f876b5bae0a">v8::Object::V8_DEPRECATE_SOON</a>("Keep track of isolate correctly", Isolate *GetIsolate())</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Boolean > ToBoolean(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Number > ToNumber(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< String > ToString(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Object > ToObject(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Integer > ToInteger(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Int32 > ToInt32(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Boolean > ToBoolean() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< String > ToString() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Object > ToObject() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Integer > ToInteger() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", bool BooleanValue() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", double NumberValue() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", int64_t IntegerValue() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", uint32_t Uint32Value() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", int32_t Int32Value() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#ae3528a485935d1b19a0e007cd5a06799">v8::Value::V8_DEPRECATE_SOON</a>("Use maybe version", bool Equals(Local< Value > that) const)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATED</b>("Use CreateDataProperty / DefineOwnProperty", bool ForceSet(Local< Value > key, Local< Value > value, PropertyAttribute attribs=None)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#aa45eb69321fa3eb1037b058b69ecfec1">V8_DEPRECATED</a>("Use maybe version", PropertyAttribute GetPropertyAttributes(Local< Value > key))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#aa173fa7289f4ba6f9ac3ed8d7d9dda92">V8_DEPRECATED</a>("Use maybe version", Local< Value > GetOwnPropertyDescriptor(Local< Name > key))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATED</b>("Use maybe version", bool Has(uint32_t index)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATED</b>("Use maybe version", bool Delete(uint32_t index)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATED</b>("Use maybe version", bool SetAccessor(Local< String > name, AccessorGetterCallback getter, AccessorSetterCallback setter=0, Local< Value > data=Local< Value >(), AccessControl settings=DEFAULT, PropertyAttribute attribute=None)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATED</b>("Use maybe version", bool SetAccessor(Local< Name > name, AccessorNameGetterCallback getter, AccessorNameSetterCallback setter=0, Local< Value > data=Local< Value >(), AccessControl settings=DEFAULT, PropertyAttribute attribute=None)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a4ce54e137e22eddbe2857a15a20219b2">V8_DEPRECATED</a>("Use maybe version", bool SetPrototype(Local< Value > prototype))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a06bb9aab716e466b8fa0e0c3fbb8f5d7">V8_DEPRECATED</a>("Use maybe version", Local< String > ObjectProtoToString())</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATED</b>("Use maybe version", bool HasOwnProperty(Local< String > key)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a00982b58e0c86fcb37f5d74c8a33d1b8">V8_DEPRECATED</a>("Use maybe version", Local< Value > GetRealNamedPropertyInPrototypeChain(Local< String > key))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#ac11ecb441033271172a4c34770be6488">V8_DEPRECATED</a>("Use maybe version", Maybe< PropertyAttribute > GetRealNamedPropertyAttributesInPrototypeChain(Local< String > key))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a870785c34482a0d284e56db93cd1eb5a">V8_DEPRECATED</a>("Use maybe version", Local< Value > GetRealNamedProperty(Local< String > key))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a1fdd165c23a55dba4ba48f484a94c3c3">V8_DEPRECATED</a>("Use maybe version", Maybe< PropertyAttribute > GetRealNamedPropertyAttributes(Local< String > key))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a8b4e2b65f72712420eb76842f2123fe3">V8_DEPRECATED</a>("Use maybe version", Local< Value > CallAsFunction(Local< Value > recv, int argc, Local< Value > argv[]))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a0ce5417b42d5bfb5a8dc3482dcb733eb">V8_DEPRECATED</a>("Use maybe version", Local< Value > CallAsConstructor(int argc, Local< Value > argv[]))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATED</b>("Use maybe version", Local< String > ToDetailString(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATED</b>("Use maybe version", Local< Uint32 > ToUint32(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATED</b>("Use maybe version", Local< Number > ToNumber() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATED</b>("Use maybe version", Local< String > ToDetailString() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATED</b>("Use maybe version", Local< Uint32 > ToUint32() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATED</b>("Use maybe version", Local< Int32 > ToInt32() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#adedc431c9a5f9fc875027c773cc26585">v8::Value::V8_DEPRECATED</a>("Use maybe version", Local< Uint32 > ToArrayIndex() const)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Date.html#a06800409271fe5fa74202e0fd1ec8e87">ValueOf</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Date.html">v8::Date</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
|
htmlarea/examples/2-areas.html | psywhale/conclave | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Example with 2 HTMLAreas in the same form</title>
<script type="text/javascript">
// the _editor_url is REQUIRED! don't forget to set it.
_editor_url = "../";
// implicit language will be "en", but let's set it for brevity
_editor_lang = "en";
</script>
<script type="text/javascript" src="../htmlarea.js"></script>
<script type="text/javascript">
// load the plugins that we will use
// loading is necessary ONLY ONCE, regardless on how many editors you create
// basically calling the following functions will load the plugin files as if
// we would have wrote script src="..." but with easier and cleaner code
HTMLArea.loadPlugin("TableOperations");
HTMLArea.loadPlugin("SpellChecker");
HTMLArea.loadPlugin("CSS");
// this function will get called at body.onload
function initDocument() {
// cache these values as we need to pass it for both editors
var css_plugin_args = {
combos : [
{ label: "Syntax",
// menu text // CSS class
options: { "None" : "",
"Code" : "code",
"String" : "string",
"Comment" : "comment",
"Variable name" : "variable-name",
"Type" : "type",
"Reference" : "reference",
"Preprocessor" : "preprocessor",
"Keyword" : "keyword",
"Function name" : "function-name",
"Html tag" : "html-tag",
"Html italic" : "html-helper-italic",
"Warning" : "warning",
"Html bold" : "html-helper-bold"
},
context: "pre"
},
{ label: "Info",
options: { "None" : "",
"Quote" : "quote",
"Highlight" : "highlight",
"Deprecated" : "deprecated"
}
}
]
};
//---------------------------------------------------------------------
// GENERAL PATTERN
//
// 1. Instantitate an editor object.
// 2. Register plugins (note, it's required to have them loaded).
// 3. Configure any other items in editor.config.
// 4. generate() the editor
//
// The above are steps that you use to create one editor. Nothing new
// so far. In order to create more than one editor, you just have to
// repeat those steps for each of one. Of course, you can register any
// plugins you want (no need to register the same plugins for all
// editors, and to demonstrate that we'll skip the TableOperations
// plugin for the second editor). Just be careful to pass different
// ID-s in the constructor (you don't want to _even try_ to create more
// editors for the same TEXTAREA element ;-)).
//
// So much for the noise, see the action below.
//---------------------------------------------------------------------
//---------------------------------------------------------------------
// CREATE FIRST EDITOR
//
var editor1 = new HTMLArea("text-area-1");
// plugins must be registered _per editor_. Therefore, we register
// plugins for the first editor here, and we will also do this for the
// second editor.
editor1.registerPlugin(TableOperations);
editor1.registerPlugin(SpellChecker);
editor1.registerPlugin(CSS, css_plugin_args);
// custom config must be done per editor. Here we're importing the
// stylesheet used by the CSS plugin.
editor1.config.pageStyle = "@import url(custom.css);";
// generate first editor
editor1.generate();
//---------------------------------------------------------------------
//---------------------------------------------------------------------
// CREATE SECOND EDITOR
//
var editor2 = new HTMLArea("text-area-2");
// we are using the same plugins
editor2.registerPlugin(TableOperations);
editor2.registerPlugin(SpellChecker);
editor2.registerPlugin(CSS, css_plugin_args);
// import the CSS plugin styles
editor2.config.pageStyle = "@import url(custom.css);";
// generate the second editor
// IMPORTANT: if we don't give it a timeout, the first editor will
// not function in Mozilla. Soon I'll think about starting to
// implement some kind of event that will fire when the editor
// finished creating, then we'll be able to chain the generate()
// calls in an elegant way. But right now there's no other solution
// than the following.
setTimeout(function() {
editor2.generate();
}, 500);
//---------------------------------------------------------------------
};
HTMLArea.onload = initDocument;
</script>
</head>
<body onload="HTMLArea.init()">
<h1>Example with 2 HTMLAreas in the same form</h1>
<form action="2-areas.cgi" method="post" target="_blank">
<input type="submit" value=" Submit " />
<br />
<textarea id="text-area-1" name="text1" style="width: 100%; height: 12em">
<h3>HTMLArea #1</h3>
<p>This will submit a field named <em>text1</em>.</p>
</textarea>
<br />
<textarea id="text-area-2" name="text2" style="width: 100%; height: 12em">
<h3>Second HTMLArea</h3> <p><em>text2</em> submission. Both are
located in the same FORM element and the script action is
2-areas.cgi (see it in the examples directory)</p>
</textarea>
<br />
<input type="submit" value=" Submit " />
</form>
<hr>
<address><a href="http://dynarch.com/mishoo/">Mihai Bazon</a></address>
<!-- Created: Fri Oct 31 09:37:10 EET 2003 -->
<!-- hhmts start --> Last modified: Wed Jan 28 11:10:40 EET 2004 <!-- hhmts end -->
<!-- doc-lang: English -->
</body>
</html>
|
my-coding-snippets/index.html | coyawa/coyawa.github.io | <!DOCTYPE html>
<html class="theme-next pisces" 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, maximum-scale=1"/>
<meta name="theme-color" content="#222">
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="//fonts.googleapis.com/css?family=Open Sans:300,300italic,400,400italic,700,700italic|Roboto Mono:300,300italic,400,400italic,700,700italic|Roboto Mono:300,300italic,400,400italic,700,700italic|Roboto Mono:300,300italic,400,400italic,700,700italic|Roboto Mono:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.2" rel="stylesheet" type="text/css" />
<meta name="keywords" content="Hexo, Congyang, Blog" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.png?v=5.1.2" />
<meta name="description" content="Update History: 2018-03-17 /First draft/ As a data scientist, coding is an essential skill for me. Here is the coding snippets I learned from these two years. Python Pandas MySQL Git Too">
<meta name="keywords" content="Hexo, Congyang, Blog">
<meta property="og:type" content="article">
<meta property="og:title" content="My Coding Snippets">
<meta property="og:url" content="http://yoursite.com/my-coding-snippets/index.html">
<meta property="og:site_name" content="Wang's Odyssey">
<meta property="og:description" content="Update History: 2018-03-17 /First draft/ As a data scientist, coding is an essential skill for me. Here is the coding snippets I learned from these two years. Python Pandas MySQL Git Too">
<meta property="og:locale" content="en">
<meta property="og:updated_time" content="2018-03-26T15:39:31.872Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="My Coding Snippets">
<meta name="twitter:description" content="Update History: 2018-03-17 /First draft/ As a data scientist, coding is an essential skill for me. Here is the coding snippets I learned from these two years. Python Pandas MySQL Git Too">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Pisces',
version: '5.1.2',
sidebar: {"position":"left","display":"always","offset":12,"offset_float":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: {"enable":false,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn"}},
duoshuo: {
userId: '0',
author: 'Author'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://yoursite.com/my-coding-snippets/"/>
<title>My Coding Snippets | Wang's Odyssey</title>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-50593515-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="en">
<div class="container sidebar-position-left page-post-detail">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">Wang's Odyssey</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<h1 class="site-subtitle" itemprop="description"></h1>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
Home
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
Archives
</a>
</li>
<li class="menu-item menu-item-now">
<a href="/now/" rel="section">
<i class="menu-item-icon fa fa-fw fa-coffee"></i> <br />
now
</a>
</li>
<li class="menu-item menu-item-project">
<a href="/project/" rel="section">
<i class="menu-item-icon fa fa-fw fa-codepen"></i> <br />
project
</a>
</li>
<li class="menu-item menu-item-resume">
<a href="/Congyang_Wang_Resume_v201707.pdf" rel="section">
<i class="menu-item-icon fa fa-fw fa-file-text"></i> <br />
resume
</a>
</li>
<li class="menu-item menu-item-list">
<a href="/my-list/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
list
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about/" rel="section">
<i class="menu-item-icon fa fa-fw fa-user"></i> <br />
About
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div id="posts" class="posts-expand">
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/my-coding-snippets/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Congyang Wang">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar1.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Wang's Odyssey">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">My Coding Snippets</h2>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2018-03-17T18:40:25-04:00">
2018-03-17
</time>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-calendar-check-o"></i>
</span>
<span class="post-meta-item-text">Post modified:</span>
<time title="Post modified" itemprop="dateModified" datetime="2018-03-26T11:39:31-04:00">
2018-03-26
</time>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/my-coding-snippets/#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count"
data-disqus-identifier="my-coding-snippets/" itemprop="commentCount"></span>
</a>
</span>
<div class="post-wordcount">
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">Reading time ≈</span>
<span title="Reading time">
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>Update History:</p>
<ol>
<li>2018-03-17 /First draft/</li>
</ol>
<p>As a data scientist, coding is an essential skill for me. Here is the coding snippets I learned from these two years.</p>
<ul>
<li><a href="http://wangcongyang.com/coding-snippet/Python.html" target="_blank" rel="external">Python</a> <ul>
<li><a href="http://wangcongyang.com/coding-snippet/Pandas.html" target="_blank" rel="external">Pandas</a> </li>
</ul>
</li>
<li><p><a href="http://wangcongyang.com/coding-snippet/MySql.html" target="_blank" rel="external">MySQL</a> </p>
</li>
<li><p><a href="http://wangcongyang.com/coding-snippet/Git.html" target="_blank" rel="external">Git</a> </p>
<h2 id="Tools"><a href="#Tools" class="headerlink" title="Tools"></a>Tools</h2></li>
<li><a href="http://wangcongyang.com/coding-snippet/jupyter-notebook.html" target="_blank" rel="external">Jupyter Notebook</a> </li>
<li><a href="http://wangcongyang.com/coding-snippet/PyCharm.html" target="_blank" rel="external">PyCharm</a> </li>
<li><a href="http://wangcongyang.com/coding-snippet/Sublime-Text-3.html" target="_blank" rel="external">Sublime Text 3</a> </li>
</ul>
</div>
<div>
<div style="padding: 10px 0; margin: 20px auto; width: 90%; text-align: center;">
<div>谢谢您的喜欢和认可,我会继续努力!</div>
<button id="rewardButton" disable="enable" onclick="var qr = document.getElementById('QR'); if (qr.style.display === 'none') {qr.style.display='block';} else {qr.style.display='none'}">
<span>Donate</span>
</button>
<div id="QR" style="display: none;">
<div id="wechat" style="display: inline-block">
<img id="wechat_qr" src="/images/wechatpayme.jpg" alt="Congyang Wang WeChat Pay"/>
<p>WeChat Pay</p>
</div>
<div id="alipay" style="display: inline-block">
<img id="alipay_qr" src="/images/alipaypayme.jpg" alt="Congyang Wang Alipay"/>
<p>Alipay</p>
</div>
</div>
</div>
</div>
<footer class="post-footer">
<div class="post-nav">
<div class="post-nav-next post-nav-item">
<a href="/Growing-Vocabulary-Book/" rel="next" title="Growing Vocabulary Book">
<i class="fa fa-chevron-left"></i> Growing Vocabulary Book
</a>
</div>
<span class="post-nav-divider"></span>
<div class="post-nav-prev post-nav-item">
<a href="/Congyang-Release-Note-V3-0-4/" rel="prev" title="Congyang Release Note V3.0.4">
Congyang Release Note V3.0.4 <i class="fa fa-chevron-right"></i>
</a>
</div>
</div>
</footer>
</div>
</article>
<div class="post-spread">
</div>
</div>
</div>
<div class="comments" id="comments">
<div id="disqus_thread">
<noscript>
Please enable JavaScript to view the
<a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a>
</noscript>
</div>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<ul class="sidebar-nav motion-element">
<li class="sidebar-nav-toc sidebar-nav-active" data-target="post-toc-wrap" >
Table of Contents
</li>
<li class="sidebar-nav-overview" data-target="site-overview">
Overview
</li>
</ul>
<section class="site-overview sidebar-panel">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image"
src="/images/avatar1.jpg"
alt="Congyang Wang" />
<p class="site-author-name" itemprop="name">Congyang Wang</p>
<p class="site-description motion-element" itemprop="description"></p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">18</span>
<span class="site-state-item-name">posts</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<span class="site-state-item-count">3</span>
<span class="site-state-item-name">categories</span>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/index.html">
<span class="site-state-item-count">20</span>
<span class="site-state-item-name">tags</span>
</a>
</div>
</nav>
<div class="links-of-author motion-element">
<span class="links-of-author-item">
<a href="https://instagram.com/coyawa" target="_blank" title="Instagram">
<i class="fa fa-fw fa-instagram"></i>Instagram</a>
</span>
<span class="links-of-author-item">
<a href="https://500px.com/coyawa" target="_blank" title="500px">
<i class="fa fa-fw fa-500px"></i>500px</a>
</span>
<span class="links-of-author-item">
<a href="https://github.com/coyawa" target="_blank" title="GitHub">
<i class="fa fa-fw fa-github"></i>GitHub</a>
</span>
<span class="links-of-author-item">
<a href="https://twitter.com/wangcongyang" target="_blank" title="Twitter">
<i class="fa fa-fw fa-twitter"></i>Twitter</a>
</span>
<span class="links-of-author-item">
<a href="https://www.linkedin.com/in/wangcongyang" target="_blank" title="Linkedin">
<i class="fa fa-fw fa-linkedin"></i>Linkedin</a>
</span>
<span class="links-of-author-item">
<a href="mailto:[email protected]" target="_blank" title="E-Mail">
<i class="fa fa-fw fa-envelope"></i>E-Mail</a>
</span>
</div>
</section>
<!--noindex-->
<section class="post-toc-wrap motion-element sidebar-panel sidebar-panel-active">
<div class="post-toc">
<div class="post-toc-content"><ol class="nav"><li class="nav-item nav-level-2"><a class="nav-link" href="#Tools"><span class="nav-number">1.</span> <span class="nav-text">Tools</span></a></li></ol></div>
</div>
</section>
<!--/noindex-->
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright">© 2016 — <span itemprop="copyrightYear">2018</span>
<span class="with-love">
<i class="fa fa-heart"></i>
</span>
<span class="author" itemprop="copyrightHolder">true</span>
</div>
<div class="powered-by">Powered by <a class="theme-link" target="_blank" href="https://hexo.io">Hexo</a></div>
<span class="post-meta-divider">|</span>
<div class="theme-info">Theme — <a class="theme-link" target="_blank" href="https://github.com/iissnan/hexo-theme-next">NexT.Pisces</a> v5.1.2</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
<script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
<script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.1.2"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.1.2"></script>
<script type="text/javascript" src="/js/src/affix.js?v=5.1.2"></script>
<script type="text/javascript" src="/js/src/schemes/pisces.js?v=5.1.2"></script>
<script type="text/javascript" src="/js/src/scrollspy.js?v=5.1.2"></script>
<script type="text/javascript" src="/js/src/post-details.js?v=5.1.2"></script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.2"></script>
<script id="dsq-count-scr" src="https://wangcongyang.disqus.com/count.js" async></script>
<script type="text/javascript">
var disqus_config = function () {
this.page.url = 'http://yoursite.com/my-coding-snippets/';
this.page.identifier = 'my-coding-snippets/';
this.page.title = 'My Coding Snippets';
};
var d = document, s = d.createElement('script');
s.src = 'https://wangcongyang.disqus.com/embed.js';
s.setAttribute('data-timestamp', '' + +new Date());
(d.head || d.body).appendChild(s);
</script>
</body>
</html>
|
DOCS/codeslinger website backup/codeslinger.co.uk/pages/blog/wordpress/index0588.html | pbarilla/gameboy-core | <?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
>
<channel>
<title>Comments on: Gameboy Sound Emulation Update</title>
<atom:link href="http://codeslinger.co.uk/pages/blog/wordpress/?feed=rss2&p=28" rel="self" type="application/rss+xml" />
<link>http://codeslinger.co.uk/pages/blog/wordpress/?p=28</link>
<description>The art of emulator programming</description>
<pubDate>Thu, 21 Jul 2011 18:51:45 +0000</pubDate>
<generator>http://wordpress.org/?v=2.5.1</generator>
<item>
<title>By: Bindesh Kumar Singh</title>
<link>http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-128</link>
<dc:creator>Bindesh Kumar Singh</dc:creator>
<pubDate>Thu, 23 Dec 2010 11:53:02 +0000</pubDate>
<guid isPermaLink="false">http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-128</guid>
<description>Thanks a lot for your work and tutorials you have made. I was just thinking to write an emulator since 2008, but now i have made CHIP8 emulator after reading your CHIP8 emulator. I clearly understood the logic behind emulation which i was afraid of before.
I make games but wanted to run NSF music into my S60 5th edition Nokia phone. So i started to learn NES seriously. Now am working on 6502 and 230A emulation.
At present i can put a link on my site for your tutorials and site as credit.
Thanks a lot again. ;-) Thumbs up for your sincere efforts.</description>
<content:encoded><![CDATA[<p>Thanks a lot for your work and tutorials you have made. I was just thinking to write an emulator since 2008, but now i have made CHIP8 emulator after reading your CHIP8 emulator. I clearly understood the logic behind emulation which i was afraid of before.</p>
<p>I make games but wanted to run NSF music into my S60 5th edition Nokia phone. So i started to learn NES seriously. Now am working on 6502 and 230A emulation. </p>
<p>At present i can put a link on my site for your tutorials and site as credit.</p>
<p>Thanks a lot again. <img src='http://codeslinger.co.uk/pages/blog/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> Thumbs up for your sincere efforts.</p>
]]></content:encoded>
</item>
<item>
<title>By: Hellfish</title>
<link>http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-97</link>
<dc:creator>Hellfish</dc:creator>
<pubDate>Wed, 14 Apr 2010 07:18:15 +0000</pubDate>
<guid isPermaLink="false">http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-97</guid>
<description>Hey!
I was just wondering, has this site been backburnered? It's been a while, and I am just worried this great resource will be lost. I was looking forward to Zuko too...</description>
<content:encoded><![CDATA[<p>Hey!</p>
<p>I was just wondering, has this site been backburnered? It’s been a while, and I am just worried this great resource will be lost. I was looking forward to Zuko too…</p>
]]></content:encoded>
</item>
<item>
<title>By: David</title>
<link>http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-96</link>
<dc:creator>David</dc:creator>
<pubDate>Fri, 09 Apr 2010 01:42:46 +0000</pubDate>
<guid isPermaLink="false">http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-96</guid>
<description>Hi. I'm using your work with the master system as a reference to my final project. Do you have some way that I can contact you? Email or something? I need your name to give credits (if you would like to allow me to use it).
Thank you.</description>
<content:encoded><![CDATA[<p>Hi. I’m using your work with the master system as a reference to my final project. Do you have some way that I can contact you? Email or something? I need your name to give credits (if you would like to allow me to use it).<br />
Thank you.</p>
]]></content:encoded>
</item>
<item>
<title>By: Ryan</title>
<link>http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-95</link>
<dc:creator>Ryan</dc:creator>
<pubDate>Tue, 30 Mar 2010 11:16:31 +0000</pubDate>
<guid isPermaLink="false">http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-95</guid>
<description>Hey Codeslinger.
Do you think you will be releasing a tutorial on Gameboy sound emulation soon? Sorry to bug you, it's just an area in emulation that I'm not familier with.
thanks :)</description>
<content:encoded><![CDATA[<p>Hey Codeslinger.<br />
Do you think you will be releasing a tutorial on Gameboy sound emulation soon? Sorry to bug you, it’s just an area in emulation that I’m not familier with. </p>
<p>thanks <img src='http://codeslinger.co.uk/pages/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
</item>
<item>
<title>By: Albert</title>
<link>http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-94</link>
<dc:creator>Albert</dc:creator>
<pubDate>Wed, 24 Mar 2010 08:45:19 +0000</pubDate>
<guid isPermaLink="false">http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-94</guid>
<description>Awesome place, thank you very much for all your tutorials, source code and great info. I hope we are working on the Mega Drive / Genesis emulator and don't leave the updates of the site.</description>
<content:encoded><![CDATA[<p>Awesome place, thank you very much for all your tutorials, source code and great info. I hope we are working on the Mega Drive / Genesis emulator and don’t leave the updates of the site.</p>
]]></content:encoded>
</item>
<item>
<title>By: Lee</title>
<link>http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-93</link>
<dc:creator>Lee</dc:creator>
<pubDate>Mon, 22 Feb 2010 23:06:08 +0000</pubDate>
<guid isPermaLink="false">http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-93</guid>
<description>Just to note; I realise now why the 'SetLCDStatus' needs to be called every ‘UpdateGraphics’ call.</description>
<content:encoded><![CDATA[<p>Just to note; I realise now why the ‘SetLCDStatus’ needs to be called every ‘UpdateGraphics’ call.</p>
]]></content:encoded>
</item>
<item>
<title>By: Lee</title>
<link>http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-92</link>
<dc:creator>Lee</dc:creator>
<pubDate>Mon, 22 Feb 2010 21:55:12 +0000</pubDate>
<guid isPermaLink="false">http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-92</guid>
<description>Hi,
I think your GameBoy LCD tutorial and 'finished product' both have a bug which causes the first scaline to never be rendered. The screenshots of your emulator on the GameBoy page seem to confirm this.
The bug:
m_Rom[0xFF44]++; <--is always called _before_ rendering a scanline, thus scanline 0 can never be rendered.
Also, I'm wondering if 'SetLCDStatus' is being called at the right time, and if it really needs to be called every time 'UpdateGraphics' is executed or just when m_ScalineCounter <= 0.
Thanks,
Lee.</description>
<content:encoded><![CDATA[<p>Hi,</p>
<p>I think your GameBoy LCD tutorial and ‘finished product’ both have a bug which causes the first scaline to never be rendered. The screenshots of your emulator on the GameBoy page seem to confirm this.</p>
<p>The bug:<br />
m_Rom[0xFF44]++; <–is always called _before_ rendering a scanline, thus scanline 0 can never be rendered.</p>
<p>Also, I’m wondering if ‘SetLCDStatus’ is being called at the right time, and if it really needs to be called every time ‘UpdateGraphics’ is executed or just when m_ScalineCounter <= 0.</p>
<p>Thanks,<br />
Lee.</p>
]]></content:encoded>
</item>
<item>
<title>By: rafael</title>
<link>http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-91</link>
<dc:creator>rafael</dc:creator>
<pubDate>Mon, 15 Feb 2010 23:37:01 +0000</pubDate>
<guid isPermaLink="false">http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-91</guid>
<description>hey codeslinger
I was following your chip8 emulator tutorial and looking your implementation and I found 2 "bugs" that makes some games not work properly
btw, thank you for the tutorial</description>
<content:encoded><![CDATA[<p>hey codeslinger</p>
<p>I was following your chip8 emulator tutorial and looking your implementation and I found 2 “bugs” that makes some games not work properly</p>
<p>btw, thank you for the tutorial</p>
]]></content:encoded>
</item>
<item>
<title>By: codeslinger</title>
<link>http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-89</link>
<dc:creator>codeslinger</dc:creator>
<pubDate>Tue, 08 Dec 2009 07:38:03 +0000</pubDate>
<guid isPermaLink="false">http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-89</guid>
<description>You're Welcome :)
CS</description>
<content:encoded><![CDATA[<p>You’re Welcome <img src='http://codeslinger.co.uk/pages/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>CS</p>
]]></content:encoded>
</item>
<item>
<title>By: Ryan</title>
<link>http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-88</link>
<dc:creator>Ryan</dc:creator>
<pubDate>Tue, 01 Dec 2009 02:55:54 +0000</pubDate>
<guid isPermaLink="false">http://codeslinger.co.uk/pages/blog/wordpress/?p=28#comment-88</guid>
<description>Thanks loads codeslinger for all the walkthroughs on your site, it is invaluable. Hopefully, I will actually get the graphics fully working on my chip8 emulator soon, its all down to you, thanks again.</description>
<content:encoded><![CDATA[<p>Thanks loads codeslinger for all the walkthroughs on your site, it is invaluable. Hopefully, I will actually get the graphics fully working on my chip8 emulator soon, its all down to you, thanks again.</p>
]]></content:encoded>
</item>
</channel>
</rss>
|
app/partials/lists.html | mckennatim/s2g-ng |
<div class="bkg-lists col1" ng-click="update()" ng-controller="ListsCtrl">
</br></br></br>
<div class="btn-group btn-group-xs" dropdown is-open="status.isopen">
<span class="glyphicon glyphicon-signal" ng-show="online"></span>
<span class="glyphicon glyphicon-ban-circle" ng-show="!online"></span>
<button type="button" class="btn btn-primary dropdown-toggle" ng-disabled="disabled">
Users <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li ng-repeat="user in users.al.userList track by $index" ng-click="makeActive(user)"><a href="#">{{user}}</a></li>
</ul>
Hey {{users.al.activeUser}} {{message}}
<span>{{users.al[users.al.activeUser].defaultLid}}</span>
</div>
<div>
<ul class="list-group">
<li ng-repeat="list in users.al[users.al.activeUser].lists track by $index" class="list-group-item lists" ng-class="{editing: list==editedList}" >
<i ng-click="edit(list)" class="delx glyphicon glyphicon-pencil " ng-show="online"></i>
<span class="view">
<span ng-click="makeDefListInfo(list)" class="list-name">{{list.shops}}</span><br>
</span>
<span class="edit">
<form ng-submit="doneEditing(list)" accept-charset="utf-8">
<input ng-trim="false" ng-model="list.shops" item-escape="revertEdit(list)" size="18" ></span>
</form>
</span>
<i ng-click="remove(list)" class="delx glyphicon glyphicon-remove " ng-show="online"></i>
<span class="list-lid" >repository:{{list.lid}} </span>
</li>
</ul>
<form name='regForm' ng-show="online">
<div class='form-group'>
<label><input type="text" name="newList" placeholder="add-list/join-repo" ng-model="listsInput"></label>
<a class="label bkg-register" ng-click="add()">Add</a>
<a class="label bkg-user" ng-click="join()">Join</a>
</div>
</form>
</div>
</div>
<div ng-include="templUser"></div> |
clients/dynamic-html/generated/docs/models/GithubRespositoryContainerlinks.html | cliffano/swaggy-jenkins |
<h2>GithubRespositoryContainerlinks</h2>
<ul class="parameter">
<li class="param-required-false">self : Link
<br/>
</li>
</ul>
<ul class="parameter">
<li class="param-required-false">Underscoreclass : String
<br/>
</li>
</ul>
|
vendor/poi-3.6/doc/slideshow/index.html | tobyclemson/msci-project | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!--*** This is a generated file. Do not edit. ***-->
<link rel="stylesheet" href="../skin/tigris.css" type="text/css">
<link rel="stylesheet" href="../skin/mysite.css" type="text/css">
<link rel="stylesheet" href="../skin/site.css" type="text/css">
<link media="print" rel="stylesheet" href="../skin/print.css" type="text/css">
<title>POI-HSLF - Java API To Access Microsoft Powerpoint Format Files</title>
</head>
<body bgcolor="white" class="composite">
<!--================= start Banner ==================-->
<div id="banner">
<table width="100%" cellpadding="8" cellspacing="0" summary="banner" border="0">
<tbody>
<tr>
<!--================= start Group Logo ==================-->
<td width="50%" align="left">
<div class="groupLogo">
<a href="http://poi.apache.org"><img border="0" class="logoImage" alt="Apache POI" src="../resources/images/group-logo.jpg"></a>
</div>
</td>
<!--================= end Group Logo ==================-->
<!--================= start Project Logo ==================--><td width="50%" align="right">
<div align="right" class="projectLogo">
<a href="http://poi.apache.org/"><img border="0" class="logoImage" alt="POI" src="../resources/images/project-logo.jpg"></a>
</div>
</td>
<!--================= end Project Logo ==================-->
</tr>
</tbody>
</table>
</div>
<!--================= end Banner ==================-->
<!--================= start Main ==================-->
<table width="100%" cellpadding="0" cellspacing="0" border="0" summary="nav" id="breadcrumbs">
<tbody>
<!--================= start Status ==================-->
<tr class="status">
<td>
<!--================= start BreadCrumb ==================--><a href="http://www.apache.org/">Apache</a> | <a href="http://poi.apache.org/">POI</a><a href=""></a>
<!--================= end BreadCrumb ==================--></td><td id="tabs">
<!--================= start Tabs ==================-->
<div class="tab">
<span class="selectedTab"><a class="base-selected" href="../index.html">Home</a></span> | <script language="Javascript" type="text/javascript">
function printit() {
if (window.print) {
window.print() ;
} else {
var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH="0" HEIGHT="0" CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
WebBrowser1.ExecWB(6, 2);//Use a 1 vs. a 2 for a prompting dialog box WebBrowser1.outerHTML = "";
}
}
</script><script language="Javascript" type="text/javascript">
var NS = (navigator.appName == "Netscape");
var VERSION = parseInt(navigator.appVersion);
if (VERSION > 3) {
document.write(' <a title="PRINT this page OUT" href="javascript:printit()">PRINT</a>');
}
</script> | <a title="PDF file of this page" href="index.pdf">PDF</a>
</div>
<!--================= end Tabs ==================-->
</td>
</tr>
</tbody>
</table>
<!--================= end Status ==================-->
<table id="main" width="100%" cellpadding="8" cellspacing="0" summary="" border="0">
<tbody>
<tr valign="top">
<!--================= start Menu ==================-->
<td id="leftcol">
<div id="navcolumn">
<div class="menuBar">
<div class="menu">
<span class="menuLabel">Apache POI</span>
<div class="menuItem">
<a href="../index.html">Top</a>
</div>
</div>
<div class="menu">
<span class="menuLabel">HSLF</span>
<div class="menuItem">
<span class="menuSelected">Overview</span>
</div>
<div class="menuItem">
<a href="quick-guide.html">Quick Guide</a>
</div>
<div class="menuItem">
<a href="how-to-shapes.html">Shapes HowTo</a>
</div>
<div class="menuItem">
<a href="ppt-file-format.html">PPT File Format</a>
</div>
</div>
</div>
</div>
<form target="_blank" action="http://www.google.com/search" method="get">
<table summary="search" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img height="1" width="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap">
Search Apache POI<br>
<input value="poi.apache.org" name="sitesearch" type="hidden"><input size="10" name="q" id="query" type="text"><img height="1" width="5" alt="" src="../skin/images/spacer.gif" class="spacer"><input name="Search" value="GO" type="submit"></td><td><img height="1" width="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td>
</tr>
<tr>
<td colspan="3"><img height="7" width="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td>
</tr>
<tr>
<td class="bottom-left-thick"></td><td bgcolor="#a5b6c6"><img height="1" width="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td><td class="bottom-right-thick"></td>
</tr>
</table>
</form>
</td>
<!--================= end Menu ==================-->
<!--================= start Content ==================--><td>
<div id="bodycol">
<div class="app">
<div align="center">
<h1>POI-HSLF - Java API To Access Microsoft Powerpoint Format Files</h1>
</div>
<div class="h3">
<a name="Overview"></a>
<div class="h3">
<h3>Overview</h3>
</div>
<p>HSLF is the POI Project's pure Java implementation of the
Powerpoint '97(-2007) file format. It <em>does not</em> support
the new PowerPoint 2007 .pptx file format, which is not OLE2
based.</p>
<p>HSLF provides a way to read, create or modify PowerPoint presentations. In particular, it provides:
</p>
<ul>
<li>api for data extraction (text, pictures, embedded objects, sounds)</li>
<li>usermodel api for creating, reading and modifying ppt files</li>
</ul>
<div class="frame note">
<div class="label">Note</div>
<div class="content">
This code currently lives the
<a href="http://svn.apache.org/viewcvs.cgi/poi/trunk/src/scratchpad/">scratchpad area</a>
of the POI SVN repository.
Ensure that you have the scratchpad jar or the scratchpad
build area in your classpath before experimenting with
this code - the main POI jar is not enough.
</div>
</div>
<p>The <a href="./quick-guide.html">quick guide</a> documentation provides
information on using this API. Comments and fixes gratefully accepted on the POI
dev mailing lists.</p>
<div id="authors" align="right">by Avik Sengupta, Nick Burch, Yegor Kozlov</div>
</div>
</div>
</div>
</td>
<!--================= end Content ==================-->
</tr>
</tbody>
</table>
<!--================= end Main ==================-->
<!--================= start Footer ==================-->
<div id="footer">
<table summary="footer" cellspacing="0" cellpadding="4" width="100%" border="0">
<tbody>
<tr>
<!--================= start Copyright ==================-->
<td colspan="2">
<div align="center">
<div class="copyright">
Copyright © 2002-2009 The Apache Software Foundation. All rights reserved.
</div>
</div>
</td>
<!--================= end Copyright ==================-->
</tr>
<tr>
<td align="left">
<!--================= start Host ==================-->
<!--================= end Host ==================--></td><td align="right">
<!--================= start Credits ==================-->
<div align="right">
<div class="credit">
<a href="http://validator.w3.org/check/referer"><img width="88" height="31" alt="Valid HTML 4.01!" src="../skin/images/valid-html401.png" class="logoImage"></a><a href="http://jigsaw.w3.org/css-validator/"><img width="88" height="31" alt="Valid CSS!" src="../skin/images/vcss.png" class="logoImage"></a><a href="http://forrest.apache.org/"><img border="0" class="logoImage" alt="Built with Apache Forrest" src="../skin/images/built-with-forrest-button.png" width="88" height="31"></a>
</div>
</div>
<!--================= end Credits ==================-->
</td>
</tr>
</tbody>
</table>
</div>
<!--================= end Footer ==================-->
</body>
</html>
|
template/Dashio - Dashboard/Theme/form_component.html | say-and-do/say-and-do | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Dashboard">
<meta name="keyword" content="Dashboard, Bootstrap, Admin, Template, Theme, Responsive, Fluid, Retina">
<link rel="shortcut icon" href="http://alvarez.is/demo/dashio/favicon.png">
<title>DASHIO - Bootstrap Admin + Front-End template</title>
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<!--external css-->
<link href="assets/font-awesome/css/font-awesome.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="assets/js/bootstrap-datepicker/css/datepicker.css" />
<link rel="stylesheet" type="text/css" href="assets/js/bootstrap-daterangepicker/daterangepicker.css" />
<!-- Custom styles for this template -->
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/style-responsive.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[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>
<section id="container" >
<!-- **********************************************************************************************************************************************************
TOP BAR CONTENT & NOTIFICATIONS
*********************************************************************************************************************************************************** -->
<!--header start-->
<header class="header black-bg">
<div class="sidebar-toggle-box">
<div class="fa fa-bars tooltips" data-placement="right" data-original-title="Toggle Navigation"></div>
</div>
<!--logo start-->
<a href="index.html" class="logo"><b>DASH<span>IO</span></b></a>
<!--logo end-->
<div class="nav notify-row" id="top_menu">
<!-- notification start -->
<ul class="nav top-menu">
<!-- settings start -->
<li class="dropdown">
<a data-toggle="dropdown" class="dropdown-toggle" href="index.html#">
<i class="fa fa-tasks"></i>
<span class="badge bg-theme">4</span>
</a>
<ul class="dropdown-menu extended tasks-bar">
<div class="notify-arrow notify-arrow-green"></div>
<li>
<p class="green">You have 4 pending tasks</p>
</li>
<li>
<a href="index.html#">
<div class="task-info">
<div class="desc">Dashio Admin Panel</div>
<div class="percent">40%</div>
</div>
<div class="progress progress-striped">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
<span class="sr-only">40% Complete (success)</span>
</div>
</div>
</a>
</li>
<li>
<a href="index.html#">
<div class="task-info">
<div class="desc">Database Update</div>
<div class="percent">60%</div>
</div>
<div class="progress progress-striped">
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%">
<span class="sr-only">60% Complete (warning)</span>
</div>
</div>
</a>
</li>
<li>
<a href="index.html#">
<div class="task-info">
<div class="desc">Product Development</div>
<div class="percent">80%</div>
</div>
<div class="progress progress-striped">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
<span class="sr-only">80% Complete</span>
</div>
</div>
</a>
</li>
<li>
<a href="index.html#">
<div class="task-info">
<div class="desc">Payments Sent</div>
<div class="percent">70%</div>
</div>
<div class="progress progress-striped">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%">
<span class="sr-only">70% Complete (Important)</span>
</div>
</div>
</a>
</li>
<li class="external">
<a href="#">See All Tasks</a>
</li>
</ul>
</li>
<!-- settings end -->
<!-- inbox dropdown start-->
<li id="header_inbox_bar" class="dropdown">
<a data-toggle="dropdown" class="dropdown-toggle" href="index.html#">
<i class="fa fa-envelope-o"></i>
<span class="badge bg-theme">5</span>
</a>
<ul class="dropdown-menu extended inbox">
<div class="notify-arrow notify-arrow-green"></div>
<li>
<p class="green">You have 5 new messages</p>
</li>
<li>
<a href="index.html#">
<span class="photo"><img alt="avatar" src="assets/img/ui-zac.jpg"></span>
<span class="subject">
<span class="from">Zac Snider</span>
<span class="time">Just now</span>
</span>
<span class="message">
Hi mate, how is everything?
</span>
</a>
</li>
<li>
<a href="index.html#">
<span class="photo"><img alt="avatar" src="assets/img/ui-divya.jpg"></span>
<span class="subject">
<span class="from">Divya Manian</span>
<span class="time">40 mins.</span>
</span>
<span class="message">
Hi, I need your help with this.
</span>
</a>
</li>
<li>
<a href="index.html#">
<span class="photo"><img alt="avatar" src="assets/img/ui-danro.jpg"></span>
<span class="subject">
<span class="from">Dan Rogers</span>
<span class="time">2 hrs.</span>
</span>
<span class="message">
Love your new Dashboard.
</span>
</a>
</li>
<li>
<a href="index.html#">
<span class="photo"><img alt="avatar" src="assets/img/ui-sherman.jpg"></span>
<span class="subject">
<span class="from">Dj Sherman</span>
<span class="time">4 hrs.</span>
</span>
<span class="message">
Please, answer asap.
</span>
</a>
</li>
<li>
<a href="index.html#">See all messages</a>
</li>
</ul>
</li>
<!-- inbox dropdown end -->
<!-- notification dropdown start-->
<li id="header_notification_bar" class="dropdown">
<a data-toggle="dropdown" class="dropdown-toggle" href="index.html#">
<i class="fa fa-bell-o"></i>
<span class="badge bg-warning">7</span>
</a>
<ul class="dropdown-menu extended notification">
<div class="notify-arrow notify-arrow-yellow"></div>
<li>
<p class="yellow">You have 7 new notifications</p>
</li>
<li>
<a href="index.html#">
<span class="label label-danger"><i class="fa fa-bolt"></i></span>
Server Overloaded.
<span class="small italic">4 mins.</span>
</a>
</li>
<li>
<a href="index.html#">
<span class="label label-warning"><i class="fa fa-bell"></i></span>
Memory #2 Not Responding.
<span class="small italic">30 mins.</span>
</a>
</li>
<li>
<a href="index.html#">
<span class="label label-danger"><i class="fa fa-bolt"></i></span>
Disk Space Reached 85%.
<span class="small italic">2 hrs.</span>
</a>
</li>
<li>
<a href="index.html#">
<span class="label label-success"><i class="fa fa-plus"></i></span>
New User Registered.
<span class="small italic">3 hrs.</span>
</a>
</li>
<li>
<a href="index.html#">See all notifications</a>
</li>
</ul>
</li>
<!-- notification dropdown end -->
</ul>
<!-- notification end -->
</div>
<div class="top-menu">
<ul class="nav pull-right top-menu">
<li><a class="logout" href="login.html">Logout</a></li>
</ul>
</div>
</header>
<!--header end-->
<!-- **********************************************************************************************************************************************************
MAIN SIDEBAR MENU
*********************************************************************************************************************************************************** -->
<!--sidebar start-->
<aside>
<div id="sidebar" class="nav-collapse ">
<!-- sidebar menu start-->
<ul class="sidebar-menu" id="nav-accordion">
<p class="centered"><a href="profile.html"><img src="assets/img/ui-sam.jpg" class="img-circle" width="80"></a></p>
<h5 class="centered">Sam Soffes</h5>
<li class="mt">
<a href="index.html">
<i class="fa fa-dashboard"></i>
<span>Dashboard</span>
</a>
</li>
<li class="sub-menu">
<a href="javascript:;" >
<i class="fa fa-desktop"></i>
<span>UI Elements</span>
</a>
<ul class="sub">
<li><a href="general.html">General</a></li>
<li><a href="buttons.html">Buttons</a></li>
<li><a href="panels.html">Panels</a></li>
<li><a href="font_awesome.html">Font Awesome</a></li>
</ul>
</li>
<li class="sub-menu">
<a href="javascript:;" >
<i class="fa fa-cogs"></i>
<span>Components</span>
</a>
<ul class="sub">
<li><a href="grids.html">Grids</a></li>
<li><a href="calendar.html">Calendar</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="todo_list.html">Todo List</a></li>
<li><a href="dropzone.html">Dropzone File Upload</a></li>
<li><a href="inline_editor.html">Inline Editor</a></li>
<li><a href="file_upload.html">Multiple File Upload</a></li>
</ul>
</li>
<li class="sub-menu">
<a href="javascript:;" >
<i class="fa fa-book"></i>
<span>Extra Pages</span>
</a>
<ul class="sub">
<li><a href="blank.html">Blank Page</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="lock_screen.html">Lock Screen</a></li>
<li><a href="profile.html">Profile</a></li>
<li><a href="invoice.html">Invoice</a></li>
<li><a href="pricing_table.html">Pricing Table</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="404.html">404 Error</a></li>
<li><a href="500.html">500 Error</a></li>
</ul>
</li>
<li class="sub-menu">
<a class="active" href="javascript:;" >
<i class="fa fa-tasks"></i>
<span>Forms</span>
</a>
<ul class="sub">
<li class="active"><a href="form_component.html">Form Components</a></li>
<li><a href="advanced_form_components.html">Advanced Components</a></li>
<li><a href="form_validation.html">Form Validation</a></li>
</ul>
</li>
<li class="sub-menu">
<a href="javascript:;" >
<i class="fa fa-th"></i>
<span>Data Tables</span>
</a>
<ul class="sub">
<li><a href="basic_table.html">Basic Table</a></li>
<li><a href="responsive_table.html">Responsive Table</a></li>
<li><a href="advanced_table.html">Advanced Table</a></li>
</ul>
</li>
<li>
<a href="inbox.html">
<i class="fa fa-envelope"></i>
<span>Mail </span>
<span class="label label-theme pull-right mail-info">2</span>
</a>
</li>
<li class="sub-menu">
<a href="javascript:;" >
<i class=" fa fa-bar-chart-o"></i>
<span>Charts</span>
</a>
<ul class="sub">
<li><a href="morris.html">Morris</a></li>
<li><a href="chartjs.html">Chartjs</a></li>
<li><a href="flot_chart.html">Flot Charts</a></li>
<li><a href="xchart.html">xChart</a></li>
</ul>
</li>
<li class="sub-menu">
<a href="javascript:;">
<i class="fa fa-comments-o"></i>
<span>Chat Room</span>
</a>
<ul class="sub">
<li><a href="lobby.html">Lobby</a></li>
<li><a href="chat_room.html"> Chat Room</a></li>
</ul>
</li>
<li>
<a href="google_maps.html" >
<i class="fa fa-map-marker"></i>
<span>Google Maps </span>
</a>
</li>
</ul>
<!-- sidebar menu end-->
</div>
</aside>
<!--sidebar end-->
<!-- **********************************************************************************************************************************************************
MAIN CONTENT
*********************************************************************************************************************************************************** -->
<!--main content start-->
<section id="main-content">
<section class="wrapper">
<h3><i class="fa fa-angle-right"></i> Form Components</h3>
<!-- BASIC FORM ELELEMNTS -->
<div class="row mt">
<div class="col-lg-12">
<div class="form-panel">
<h4 class="mb"><i class="fa fa-angle-right"></i> Form Elements</h4>
<form class="form-horizontal style-form" method="get">
<div class="form-group">
<label class="col-sm-2 col-sm-2 control-label">Default</label>
<div class="col-sm-10">
<input type="text" class="form-control">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 col-sm-2 control-label">Help text</label>
<div class="col-sm-10">
<input type="text" class="form-control">
<span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 col-sm-2 control-label">Rounder</label>
<div class="col-sm-10">
<input type="text" class="form-control round-form">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 col-sm-2 control-label">Input focus</label>
<div class="col-sm-10">
<input class="form-control" id="focusedInput" type="text" value="This is focused...">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 col-sm-2 control-label">Disabled</label>
<div class="col-sm-10">
<input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here..." disabled>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 col-sm-2 control-label">Placeholder</label>
<div class="col-sm-10">
<input type="text" class="form-control" placeholder="placeholder">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 col-sm-2 control-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" placeholder="">
</div>
</div>
<div class="form-group">
<label class="col-lg-2 col-sm-2 control-label">Static control</label>
<div class="col-lg-10">
<p class="form-control-static">[email protected]</p>
</div>
</div>
</form>
</div>
</div><!-- col-lg-12-->
</div><!-- /row -->
<!-- INLINE FORM ELELEMNTS -->
<div class="row mt">
<div class="col-lg-12">
<div class="form-panel">
<h4 class="mb"><i class="fa fa-angle-right"></i> Inline Form</h4>
<form class="form-inline" role="form">
<div class="form-group">
<label class="sr-only" for="exampleInputEmail2">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail2" placeholder="Enter email">
</div>
<div class="form-group">
<label class="sr-only" for="exampleInputPassword2">Password</label>
<input type="password" class="form-control" id="exampleInputPassword2" placeholder="Password">
</div>
<button type="submit" class="btn btn-theme">Sign in</button>
</form>
</div><!-- /form-panel -->
</div><!-- /col-lg-12 -->
</div><!-- /row -->
<!-- INPUT MESSAGES -->
<div class="row mt">
<div class="col-lg-12">
<div class="form-panel">
<h4 class="mb"><i class="fa fa-angle-right"></i> Input Messages</h4>
<form class="form-horizontal tasi-form" method="get">
<div class="form-group has-success">
<label class="col-sm-2 control-label col-lg-2" for="inputSuccess">Input with success</label>
<div class="col-lg-10">
<input type="text" class="form-control" id="inputSuccess">
</div>
</div>
<div class="form-group has-warning">
<label class="col-sm-2 control-label col-lg-2" for="inputWarning">Input with warning</label>
<div class="col-lg-10">
<input type="text" class="form-control" id="inputWarning">
</div>
</div>
<div class="form-group has-error">
<label class="col-sm-2 control-label col-lg-2" for="inputError">Input with error</label>
<div class="col-lg-10">
<input type="text" class="form-control" id="inputError">
</div>
</div>
</form>
</div><!-- /form-panel -->
</div><!-- /col-lg-12 -->
</div><!-- /row -->
<!-- INPUT MESSAGES -->
<div class="row mt">
<div class="col-lg-12">
<div class="form-panel">
<h4 class="mb"><i class="fa fa-angle-right"></i> Checkboxes, Radios & Selects</h4>
<div class="checkbox">
<label>
<input type="checkbox" value="">
Option one is this and that—be sure to include why it's great
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
Option one is this and that—be sure to include why it's great
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
Option two can be something else and selecting it will deselect option one
</label>
</div>
<hr>
<label class="checkbox-inline">
<input type="checkbox" id="inlineCheckbox1" value="option1"> 1
</label>
<label class="checkbox-inline">
<input type="checkbox" id="inlineCheckbox2" value="option2"> 2
</label>
<label class="checkbox-inline">
<input type="checkbox" id="inlineCheckbox3" value="option3"> 3
</label>
<hr>
<select class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
<br>
<select multiple class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div><!-- /form-panel -->
</div><!-- /col-lg-12 -->
<!-- CUSTOM TOGGLES -->
<div class="col-lg-12">
<div class="form-panel">
<h4 class="mb"><i class="fa fa-angle-right"></i> Custom Toggles</h4>
<div class="row mt">
<div class="col-sm-6 text-center">
<input type="checkbox" checked="" data-toggle="switch" />
</div>
<div class="col-sm-6 text-center">
<input type="checkbox" data-toggle="switch" />
</div>
</div>
<div class="row mt">
<div class="col-sm-6 text-center">
<div class="switch switch-square"
data-on-label="<i class=' fa fa-check'></i>"
data-off-label="<i class='fa fa-times'></i>">
<input type="checkbox" />
</div>
</div>
<div class="col-sm-6 text-center">
<div class="switch switch-square"
data-on-label="<i class=' fa fa-check'></i>"
data-off-label="<i class='fa fa-times'></i>">
<input type="checkbox" checked="" />
</div>
</div>
</div>
<div class="row mt">
<div class="col-sm-6 text-center">
<input type="checkbox" disabled data-toggle="switch" />
</div>
<div class="col-sm-6 text-center">
<input type="checkbox" checked disabled data-toggle="switch" />
</div>
</div>
</div>
</div>
</div><!-- /row -->
</section><! --/wrapper -->
</section><!-- /MAIN CONTENT -->
<!--main content end-->
<!--footer start-->
<footer class="site-footer">
<div class="text-center">
2014 - Alvarez.is
<a href="form_component.html#" class="go-top">
<i class="fa fa-angle-up"></i>
</a>
</div>
</footer>
<!--footer end-->
</section>
<!-- js placed at the end of the document so the pages load faster -->
<script src="assets/js/jquery.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script class="include" type="text/javascript" src="assets/js/jquery.dcjqaccordion.2.7.js"></script>
<script src="assets/js/jquery.scrollTo.min.js"></script>
<script src="assets/js/jquery.nicescroll.js" type="text/javascript"></script>
<!--common script for all pages-->
<script src="assets/js/common-scripts.js"></script>
<!--script for this page-->
<script src="assets/js/jquery-ui-1.9.2.custom.min.js"></script>
<!--custom switch-->
<script src="assets/js/bootstrap-switch.js"></script>
<!--custom tagsinput-->
<script src="assets/js/jquery.tagsinput.js"></script>
<!--custom checkbox & radio-->
<script type="text/javascript" src="assets/js/bootstrap-datepicker/js/bootstrap-datepicker.js"></script>
<script type="text/javascript" src="assets/js/bootstrap-daterangepicker/date.js"></script>
<script type="text/javascript" src="assets/js/bootstrap-daterangepicker/daterangepicker.js"></script>
<script type="text/javascript" src="assets/js/bootstrap-inputmask/bootstrap-inputmask.min.js"></script>
<script src="assets/js/form-component.js"></script>
<script>
//custom select box
$(function(){
$('select.styled').customSelect();
});
</script>
</body>
</html>
|
Battleroyale_base/client_package/ui/deathui.html | maltoc76/BattleRoyale | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BATTLEROYALE - DEATH UI </title>
<link href="https://fonts.googleapis.com/css?family=Passion+One" rel="stylesheet">
<style type="text/css">
body {
margin: 0;
user-select: none;
}
#deathcontent {
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
text-align: center;
font-family: 'Passion One', cursive;
color: white;
-webkit-text-fill-color: white;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: black;
position: absolute;
text-align: center;
width: 100%;
visibility: hidden;
opacity: 0;
}
#killerName {
-webkit-text-fill-color: red;
}
#respawnTime {
-webkit-text-fill-color: red;
}
</style>
</head>
<body>
<div id="deathcontent" style="transition: opacity 500ms; opacity: 0;" >
<img src="./img/deathimg.png" width="30%" height="45%"/>
<h1>You are dead</h1>
<h2>Killed by <span id="killerName">ExampleName</span></h2>
<h3>Don't worry you will respawn in the lobby on <span id="respawnTime">5</span> seconds ..</h4>
</div>
<script>
function fadeIn(el) {
console.log(el);
el.style.visibility = 'visible';
el.style.opacity = 1;
}
function fadeOut(el) {
el.style.opacity = 0;
setTimeout(function() {
el.style.visibility = 'hidden';
}, 1000);
}
jcmp.AddEvent('battleroyale_deathui_show', function(killerName) {
// TODO: Reproduce sound as myami requested
document.getElementById("respawnTime").innerText = "5";
document.getElementById("killerName").innerText = killerName;
fadeIn(document.getElementById("deathcontent"));
var deathUItimer = setInterval(function() {
document.getElementById("respawnTime").innerText = parseInt(document.getElementById("respawnTime").innerText) - 1;
if(parseInt(document.getElementById("respawnTime").innerText) === 0) {
fadeOut(document.getElementById("deathcontent"));
clearInterval(deathUItimer);
}
}, 1000);
});
</script>
</body>
</html> |
files/src-query-showcreatetable.html | codemasher/php-database | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Documentation</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<base href="../">
<link rel="icon" href="images/favicon.ico"/>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/base.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/template.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/css/all.min.css" integrity="sha256-ybRkN9dBjhcS2qrW1z+hfCxq+1aBdwyQM5wlQoQVt/0=" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/themes/prism-okaidia.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/plugins/line-numbers/prism-line-numbers.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/plugins/line-highlight/prism-line-highlight.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/css-vars-ponyfill@2"></script>
<script src="js/search.js"></script>
<script defer src="js/searchIndex.js"></script>
</head>
<body id="top">
<header class="phpdocumentor-header phpdocumentor-section">
<h1 class="phpdocumentor-title"><a href="" class="phpdocumentor-title__link">Documentation</a></h1>
<input class="phpdocumentor-header__menu-button" type="checkbox" id="menu-button" name="menu-button" />
<label class="phpdocumentor-header__menu-icon" for="menu-button">
<i class="fas fa-bars"></i>
</label>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<nav class="phpdocumentor-topnav">
<ul class="phpdocumentor-topnav__menu">
</ul>
</nav>
</header>
<main class="phpdocumentor">
<div class="phpdocumentor-section">
<input class="phpdocumentor-sidebar__menu-button" type="checkbox" id="sidebar-button" name="sidebar-button" />
<label class="phpdocumentor-sidebar__menu-icon" for="sidebar-button">
Menu
</label>
<aside class="phpdocumentor-column -four phpdocumentor-sidebar">
<section class="phpdocumentor-sidebar__category">
<h2 class="phpdocumentor-sidebar__category-header">Namespaces</h2>
<h4 class="phpdocumentor-sidebar__root-namespace"><a href="namespaces/chillerlan.html">chillerlan</a></h4>
<ul class="phpdocumentor-list">
<li>
<a href="namespaces/chillerlan-database.html">Database</a>
</li>
<li>
<a href="namespaces/chillerlan-databasetest.html">DatabaseTest</a>
</li>
</ul>
</section>
<section class="phpdocumentor-sidebar__category">
<h2 class="phpdocumentor-sidebar__category-header">Packages</h2>
<h4 class="phpdocumentor-sidebar__root-namespace"><a href="packages/Application.html">Application</a></h4>
<h4 class="phpdocumentor-sidebar__root-namespace"><a href="packages/chillerlan.html">chillerlan</a></h4>
<ul class="phpdocumentor-list">
<li>
<a href="packages/chillerlan-Database.html">Database</a>
</li>
</ul>
</section>
<section class="phpdocumentor-sidebar__category">
<h2 class="phpdocumentor-sidebar__category-header">Reports</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/deprecated.html">Deprecated</a></h3>
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/errors.html">Errors</a></h3>
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section>
<section class="phpdocumentor-sidebar__category">
<h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section>
</aside>
<div class="phpdocumentor-column -eight phpdocumentor-content">
<ul class="phpdocumentor-breadcrumbs">
</ul>
<article class="phpdocumentor-element -file">
<h2 class="phpdocumentor-content__title">ShowCreateTable.php</h2>
<p class="phpdocumentor-summary">Class ShowCreateTable</p>
<h5 class="phpdocumentor-tag-list__heading" id="tags">
Tags
<a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
</h5>
<dl class="phpdocumentor-tag-list">
<dt class="phpdocumentor-tag-list__entry">
<span class="phpdocumentor-tag__name">created</span>
</dt>
<dd class="phpdocumentor-tag-list__definition">
<section class="phpdocumentor-description"><p>01.11.2021</p>
</section>
</dd>
<dt class="phpdocumentor-tag-list__entry">
<span class="phpdocumentor-tag__name">author</span>
</dt>
<dd class="phpdocumentor-tag-list__definition">
<section class="phpdocumentor-description"><p>smiley <a href="mailto:[email protected]">[email protected]</a></p>
</section>
</dd>
<dt class="phpdocumentor-tag-list__entry">
<span class="phpdocumentor-tag__name">copyright</span>
</dt>
<dd class="phpdocumentor-tag-list__definition">
<section class="phpdocumentor-description"><p>2021 smiley</p>
</section>
</dd>
<dt class="phpdocumentor-tag-list__entry">
<span class="phpdocumentor-tag__name">license</span>
</dt>
<dd class="phpdocumentor-tag-list__definition">
<section class="phpdocumentor-description"><p>MIT</p>
</section>
</dd>
</dl>
<h3 id="interfaces_class_traits">
Interfaces, Classes and Traits
<a href="#interfaces_class_traits" class="headerlink"><i class="fas fa-link"></i></a>
</h3>
<dl class="phpdocumentor-table-of-contents">
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/chillerlan-Database-Query-ShowCreateTable.html"><abbr title="\chillerlan\Database\Query\ShowCreateTable">ShowCreateTable</abbr></a></dt>
<dd>https://xkcd.com/1409/</dd>
</dl>
</article>
<section data-search-results class="phpdocumentor-search-results phpdocumentor-search-results--hidden">
<section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header>
<section class="phpdocumentor-search-results__body">
<ul class="phpdocumentor-search-results__entries"></ul>
</section>
</section>
</section>
</div>
</div>
<a href="files/src-query-showcreatetable.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
</main>
<script>
cssVars({});
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/prism.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/plugins/autoloader/prism-autoloader.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/plugins/line-numbers/prism-line-numbers.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/plugins/line-highlight/prism-line-highlight.min.js"></script>
</body>
</html>
|
solr-4.8.0/docs/solr-cell/constant-values.html | dtelaroli/angular-solr-example | <!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 (version 1.7.0_55) on Thu Apr 24 20:58:59 UTC 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Constant Field Values (Solr 4.8.0 API)</title>
<meta name="date" content="2014-04-24">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Constant Field Values (Solr 4.8.0 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li><a href="org/apache/solr/handler/extraction/package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li><a href="org/apache/solr/handler/extraction/package-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
<li><a href="constant-values.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>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Constant Field Values" class="title">Constant Field Values</h1>
<h2 title="Contents">Contents</h2>
<ul>
<li><a href="#org.apache">org.apache.*</a></li>
</ul>
</div>
<div class="constantValuesContainer"><a name="org.apache">
<!-- -->
</a>
<h2 title="org.apache">org.apache.*</h2>
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
<caption><span>org.apache.solr.handler.extraction.<a href="org/apache/solr/handler/extraction/ExtractingDocumentLoader.html" title="class in org.apache.solr.handler.extraction">ExtractingDocumentLoader</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th scope="col">Constant Field</th>
<th class="colLast" scope="col">Value</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingDocumentLoader.TEXT_FORMAT">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingDocumentLoader.html#TEXT_FORMAT">TEXT_FORMAT</a></code></td>
<td class="colLast"><code>"text"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingDocumentLoader.XML_FORMAT">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingDocumentLoader.html#XML_FORMAT">XML_FORMAT</a></code></td>
<td class="colLast"><code>"xml"</code></td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
<caption><span>org.apache.solr.handler.extraction.<a href="org/apache/solr/handler/extraction/ExtractingMetadataConstants.html" title="interface in org.apache.solr.handler.extraction">ExtractingMetadataConstants</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th scope="col">Constant Field</th>
<th class="colLast" scope="col">Value</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingMetadataConstants.STREAM_CONTENT_TYPE">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingMetadataConstants.html#STREAM_CONTENT_TYPE">STREAM_CONTENT_TYPE</a></code></td>
<td class="colLast"><code>"stream_content_type"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingMetadataConstants.STREAM_NAME">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingMetadataConstants.html#STREAM_NAME">STREAM_NAME</a></code></td>
<td class="colLast"><code>"stream_name"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingMetadataConstants.STREAM_SIZE">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingMetadataConstants.html#STREAM_SIZE">STREAM_SIZE</a></code></td>
<td class="colLast"><code>"stream_size"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingMetadataConstants.STREAM_SOURCE_INFO">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingMetadataConstants.html#STREAM_SOURCE_INFO">STREAM_SOURCE_INFO</a></code></td>
<td class="colLast"><code>"stream_source_info"</code></td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
<caption><span>org.apache.solr.handler.extraction.<a href="org/apache/solr/handler/extraction/ExtractingParams.html" title="interface in org.apache.solr.handler.extraction">ExtractingParams</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th scope="col">Constant Field</th>
<th class="colLast" scope="col">Value</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.BOOST_PREFIX">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#BOOST_PREFIX">BOOST_PREFIX</a></code></td>
<td class="colLast"><code>"boost."</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.CAPTURE_ATTRIBUTES">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#CAPTURE_ATTRIBUTES">CAPTURE_ATTRIBUTES</a></code></td>
<td class="colLast"><code>"captureAttr"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.CAPTURE_ELEMENTS">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#CAPTURE_ELEMENTS">CAPTURE_ELEMENTS</a></code></td>
<td class="colLast"><code>"capture"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.DEFAULT_FIELD">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#DEFAULT_FIELD">DEFAULT_FIELD</a></code></td>
<td class="colLast"><code>"defaultField"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.EXTRACT_FORMAT">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#EXTRACT_FORMAT">EXTRACT_FORMAT</a></code></td>
<td class="colLast"><code>"extractFormat"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.EXTRACT_ONLY">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#EXTRACT_ONLY">EXTRACT_ONLY</a></code></td>
<td class="colLast"><code>"extractOnly"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.IGNORE_TIKA_EXCEPTION">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#IGNORE_TIKA_EXCEPTION">IGNORE_TIKA_EXCEPTION</a></code></td>
<td class="colLast"><code>"ignoreTikaException"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.LITERALS_OVERRIDE">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#LITERALS_OVERRIDE">LITERALS_OVERRIDE</a></code></td>
<td class="colLast"><code>"literalsOverride"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.LITERALS_PREFIX">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#LITERALS_PREFIX">LITERALS_PREFIX</a></code></td>
<td class="colLast"><code>"literal."</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.LOWERNAMES">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#LOWERNAMES">LOWERNAMES</a></code></td>
<td class="colLast"><code>"lowernames"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.MAP_PREFIX">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#MAP_PREFIX">MAP_PREFIX</a></code></td>
<td class="colLast"><code>"fmap."</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.PASSWORD_MAP_FILE">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#PASSWORD_MAP_FILE">PASSWORD_MAP_FILE</a></code></td>
<td class="colLast"><code>"passwordsFile"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.RESOURCE_NAME">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#RESOURCE_NAME">RESOURCE_NAME</a></code></td>
<td class="colLast"><code>"resource.name"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.RESOURCE_PASSWORD">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#RESOURCE_PASSWORD">RESOURCE_PASSWORD</a></code></td>
<td class="colLast"><code>"resource.password"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.STREAM_TYPE">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#STREAM_TYPE">STREAM_TYPE</a></code></td>
<td class="colLast"><code>"stream.type"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.UNKNOWN_FIELD_PREFIX">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#UNKNOWN_FIELD_PREFIX">UNKNOWN_FIELD_PREFIX</a></code></td>
<td class="colLast"><code>"uprefix"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingParams.XPATH_EXPRESSION">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingParams.html#XPATH_EXPRESSION">XPATH_EXPRESSION</a></code></td>
<td class="colLast"><code>"xpath"</code></td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
<caption><span>org.apache.solr.handler.extraction.<a href="org/apache/solr/handler/extraction/ExtractingRequestHandler.html" title="class in org.apache.solr.handler.extraction">ExtractingRequestHandler</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th scope="col">Constant Field</th>
<th class="colLast" scope="col">Value</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingRequestHandler.CONFIG_LOCATION">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingRequestHandler.html#CONFIG_LOCATION">CONFIG_LOCATION</a></code></td>
<td class="colLast"><code>"tika.config"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.solr.handler.extraction.ExtractingRequestHandler.DATE_FORMATS">
<!-- -->
</a><code>public static final <a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/solr/handler/extraction/ExtractingRequestHandler.html#DATE_FORMATS">DATE_FORMATS</a></code></td>
<td class="colLast"><code>"date.formats"</code></td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li><a href="org/apache/solr/handler/extraction/package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li><a href="org/apache/solr/handler/extraction/package-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
<li><a href="constant-values.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>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.</i>
<script src='/prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</small></p>
</body>
</html>
|
public/css/styles.css | ajam/pulp | /* BB-specific */
.header-item[data-which="page-number"] {
margin-right: 10px;
}
.header-group {
position: relative;
z-index: 2147483647;
}
.header-group .header-item-container {
padding: 0 !important;
}
.header-btn {
min-width: 0 !important;
width: 50px !important;
}
/* G L O B A L S */
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html,
body {
width: 100%;
height: 100%;
}
html {
font-size: 16px;
}
#header > div {
margin: 0;
}
#header > ul,
#btns,
#pages-wrapper {
font: 62.5% BWHaasText, sans-serif;
}
body {
margin: 0;
background-color: #fff;
}
.bb-nav-root {
font-size: auto !important;
}
a {
color: #2800d7;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* needed to center contents in IE */
html:-ms-fullscreen {
width: 100%;
}
.bb-nav-logo__rubix::before {
top: -2px !important;
}
#main-content-wrapper {
width: 100%;
height: 100%;
background-color: #fff;
-webkit-transition: -webkit-transform 500ms cubic-bezier(0, 0, 0.2, 1);
-moz-transition: -moz-transform 500ms cubic-bezier(0, 0, 0.2, 1);
-o-transition: -o-transform 500ms cubic-bezier(0, 0, 0.2, 1);
-ms-transition: -ms-transform 500ms cubic-bezier(0, 0, 0.2, 1);
transition: transform 500ms cubic-bezier(0, 0, 0.2, 1);
position: absolute;
-webkit-transform: translateX(0px);
-moz-transform: translateX(0px);
-o-transform: translateX(0px);
-ms-transform: translateX(0px);
transform: translateX(0px);
overflow-x: hidden;
overflow-y: hidden;
}
#main-content-wrapper,
#pages-wrapper,
#pages,
.page-container,
.page,
.hotspot {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
}
/* end globals */
/* H E A D E R */
body[data-state="hotspot"] #header {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
body[data-state="hotspot"] #footer {
display: none;
}
#header {
width: 100%;
background-color: #fff;
padding: 0 0;
margin-bottom: 2px;
margin-left: auto;
margin-right: auto;
opacity: 1;
-ms-filter: none;
filter: none;
-webkit-transition: opacity 100ms linear;
-moz-transition: opacity 100ms linear;
-o-transition: opacity 100ms linear;
-ms-transition: opacity 100ms linear;
transition: opacity 100ms linear;
height: 95px;
z-index: 999999999999;
}
html:-moz-full-screen #header {
display: none;
}
html:-moz-full-screen #desktop-drawer-container,
html:-moz-full-screen #footer {
display: none !important;
}
html:-moz-full-screen #pages-wrapper {
top: 5px;
height: calc(100% - 10px);
}
html:-webkit-full-screen #header {
display: none;
}
html:-webkit-full-screen #desktop-drawer-container,
html:-webkit-full-screen #footer {
display: none !important;
}
html:-webkit-full-screen #pages-wrapper {
top: 5px;
height: calc(100% - 10px);
}
html:-fullscreen #header {
display: none;
}
html:-fullscreen #desktop-drawer-container,
html:-fullscreen #footer {
display: none !important;
}
html:-fullscreen #pages-wrapper {
top: 5px;
height: calc(100% - 10px);
}
html:-ms-fullscreen {
width: 100%;
}
html:-ms-fullscreen #header {
display: none;
}
html:-ms-fullscreen #desktop-drawer-container,
html:-ms-fullscreen #footer {
display: none !important;
}
html:-ms-fullscreen #pages-wrapper {
top: 5px;
height: calc(100% - 10px);
}
.header-item-container {
display: inline-block;
height: 100%;
position: relative;
}
.header-item-container:hover,
.header-item-container.active {
cursor: pointer;
}
.header-item-container:hover .header-btn {
color: #2800d7;
}
.header-item-container:hover .header-btn,
.header-item-container.active .header-btn {
border-color: #848484;
}
.header-item-container:hover .header-text,
.header-item-container.active .header-text {
cursor: default;
}
.header-item-container.active .header-btn {
color: #33ae05 !important;
}
.header-item-container:active .header-btn {
color: #1c0097;
border-color: #4f4f4f;
}
.header-item-container.active:hover .header-btn {
color: #2400c2;
}
.header-item {
height: 100%;
color: #000;
display: inline-table;
vertical-align: top;
}
.header-btn {
min-width: 95px;
-webkit-border-radius: 2px;
border-radius: 2px;
text-align: center;
}
.header-item-container[data-btn="export"] .header-btn {
padding: 0 6px;
}
.header-item-container[data-btn="export"] .header-btn .label {
position: relative;
font-size: 13px;
top: 6px;
}
.header-text,
.header-btn-icon {
display: table-cell;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
position: relative;
}
.header-btn-icon {
font-size: 2.2em;
}
a .header-btn-icon {
color: #000;
}
a .header-btn-icon:hover {
color: #2800d7;
}
.header-group {
float: right;
height: 28px;
}
.header-group .header-item-container {
padding: 0 8px;
text-align: center;
}
.header-item .header-text {
font-size: 1.3em;
font-weight: 200;
}
.header-item[data-which="page-number"] .header-text input {
width: 22px;
text-align: right;
}
.internal-link {
color: #2800d7;
}
.internal-link:hover {
text-decoration: underline;
cursor: pointer;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin: 0;
}
input[type="number"] {
-moz-appearance: textfield;
}
.header-group.mobile {
display: none;
}
.btn-dropdown {
display: none;
position: absolute;
right: 50%;
-webkit-transform: translate(50%, 5px);
-moz-transform: translate(50%, 5px);
-o-transform: translate(50%, 5px);
-ms-transform: translate(50%, 5px);
transform: translate(50%, 5px);
z-index: 10000000;
background-color: #000;
color: #fff;
padding: 5px 0;
text-align: left;
-webkit-border-radius: 2px;
border-radius: 2px;
top: 100%;
}
.btn-dropdown li {
padding: 8px;
font-size: 1.2em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.btn-dropdown a {
color: #fff;
text-decoration: none;
}
.btn-dropdown li:hover {
cursor: pointer;
background-color: #2800d7;
}
.drawer-section-container[data-section="downloads"] {
line-height: 1.7em;
}
.dropdowned[data-btn="export"] .btn-dropdown,
.dropdowned[data-btn="export"]:hover:after {
width: 200% !important;
}
.dropdowned[data-btn="share"] li {
font-size: 1.8em;
text-align: center;
}
.dropdowned:hover .btn-dropdown {
display: inline-block;
}
.dropdowned:hover:after {
right: 50%;
-webkit-transform: translate(50%, 5px);
-moz-transform: translate(50%, 5px);
-o-transform: translate(50%, 5px);
-ms-transform: translate(50%, 5px);
transform: translate(50%, 5px);
border: 0;
width: 100%;
height: 10px;
margin-right: 0;
}
.dropdowned:hover:before,
.dropdowned:hover:after,
.tooltipped:hover:before,
.tooltipped:hover:after {
display: inline-block;
}
.tooltipped-i[data-focus="true"]:before,
.tooltipped-i[data-focus="true"]:after {
display: inline-block;
-webkit-animation: decay 700ms linear forwards;
-moz-animation: decay 700ms linear forwards;
-o-animation: decay 700ms linear forwards;
-ms-animation: decay 700ms linear forwards;
animation: decay 700ms linear forwards;
-webkit-animation-delay: 3.5s;
-moz-animation-delay: 3.5s;
-o-animation-delay: 3.5s;
-ms-animation-delay: 3.5s;
animation-delay: 3.5s;
}
.dropdowned:before,
.dropdowned:after,
.tooltipped-i:before,
.tooltipped-i:after,
.tooltipped:before,
.tooltipped:after {
position: absolute;
display: none;
right: 50%;
}
.tooltipped:before,
.tooltipped:after {
pointer-events: none;
}
.dropdowned:before,
.dropdowned:after,
.tooltipped-i:before,
.tooltipped:before {
z-index: 9998;
width: 0;
height: 0;
color: rgba(0,0,0,0.8);
content: "";
border: 5px solid transparent;
top: auto;
bottom: -5px;
margin-right: -5px;
border-bottom-color: rgba(0,0,0,0.8);
}
.tooltipped-i:after,
.tooltipped:after {
z-index: 9997;
-webkit-transform: translateX(15%);
-moz-transform: translateX(15%);
-o-transform: translateX(15%);
-ms-transform: translateX(15%);
transform: translateX(15%);
margin-top: 5px;
top: 100%;
padding: 5px 8px;
font-size: 1.2em;
line-height: 1.5;
color: #fff;
text-align: center;
text-decoration: none;
word-wrap: break-word;
white-space: pre;
content: attr(aria-label);
background: rgba(0,0,0,0.8);
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-font-smoothing: subpixel-antialiased;
}
.header-item-container:hover .header-btn {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
/* end header */
/* P R O G R E S S */
/* end progress */
/* N A V B U T T O N S */
#btns {
position: absolute;
top: 97px;
right: 0;
left: 0;
z-index: 9999;
}
.main-nav-btn-container {
display: inline-block;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
display: none;
height: 99%;
width: 50%;
}
.main-nav-btn-container.full {
width: 100%;
}
.main-nav-btn-container[data-dir="prev"] {
text-align: left;
}
.main-nav-btn-container[data-dir="prev"] .btn-text {
-webkit-transform: translateX(-35%);
-moz-transform: translateX(-35%);
-o-transform: translateX(-35%);
-ms-transform: translateX(-35%);
transform: translateX(-35%);
}
.main-nav-btn-container[data-dir="next"] {
text-align: right;
}
.main-nav-btn-container[data-dir="next"] .btn-text {
-webkit-transform: translateX(35%);
-moz-transform: translateX(35%);
-o-transform: translateX(35%);
-ms-transform: translateX(35%);
transform: translateX(35%);
}
.main-nav-btn-container:hover {
cursor: pointer;
}
.main-nav-btn {
display: inline-block;
position: relative;
color: #ccc;
height: 100%;
}
.main-nav-btn {
-webkit-transition: color 250ms ease-out;
-moz-transition: color 250ms ease-out;
-o-transition: color 250ms ease-out;
-ms-transition: color 250ms ease-out;
transition: color 250ms ease-out;
}
.main-nav-btn-container:hover .main-nav-btn {
color: #000;
}
.btn-text {
position: relative;
top: 45%;
font-size: 6em;
}
body[data-panel-zoom-mode="all-devices"] #btns,
body[data-panel-zoom-mode="desktop-hover"] #btns {
pointer-events: none;
}
body[data-panel-zoom-mode="all-devices"] .main-nav-btn-container,
body[data-panel-zoom-mode="desktop-hover"] .main-nav-btn-container {
width: auto;
pointer-events: all;
}
body[data-panel-zoom-mode="all-devices"] .main-nav-btn-container[data-dir="next"],
body[data-panel-zoom-mode="desktop-hover"] .main-nav-btn-container[data-dir="next"] {
float: right;
}
.page img,
.page .paragraph-text {
-webkit-transition: -webkit-transform 600ms cubic-bezier(0, 0, 0.2, 1);
-moz-transition: -moz-transform 600ms cubic-bezier(0, 0, 0.2, 1);
-o-transition: -o-transform 600ms cubic-bezier(0, 0, 0.2, 1);
-ms-transition: -ms-transform 600ms cubic-bezier(0, 0, 0.2, 1);
transition: transform 600ms cubic-bezier(0, 0, 0.2, 1);
}
.nav-helpers {
position: absolute;
top: 43.5%;
right: 120px;
width: 80px;
text-align: center;
font-size: 1.4em;
font-weight: 200;
font-family: HaasText, sans-serif;
line-height: 15px;
color: #000;
-webkit-animation: bounce-left-right 2.75s infinite;
-moz-animation: bounce-left-right 2.75s infinite;
-o-animation: bounce-left-right 2.75s infinite;
-ms-animation: bounce-left-right 2.75s infinite;
animation: bounce-left-right 2.75s infinite;
}
.nav-helpers-child > span {
border: 1px solid #000;
display: inline-block;
vertical-align: top;
margin-bottom: 1px;
background-color: #fff;
padding: 1px 5px 0px 5px;
color: #000;
}
.nav-helper-arrows {
font-size: 1.4em;
white-space: nowrap;
margin: 9px 0 10px 0;
font-family: HaasText, sans-serif;
color: #000;
}
.nav-helper-arrows span {
padding: 1px 4px;
border: 1px solid #000;
background: -webkit-linear-gradient(270deg, #fff 0%, #e3e3e3 100%) repeat scroll 0% 0% #fff;
background: -moz-linear-gradient(270deg, #fff 0%, #e3e3e3 100%) repeat scroll 0% 0% #fff;
background: -o-linear-gradient(270deg, #fff 0%, #e3e3e3 100%) repeat scroll 0% 0% #fff;
background: -ms-linear-gradient(270deg, #fff 0%, #e3e3e3 100%) repeat scroll 0% 0% #fff;
background: linear-gradient(180deg, #fff 0%, #e3e3e3 100%) repeat scroll 0% 0% #fff;
}
.nav-helper-arrows span:first-child {
margin-right: 2px;
}
/* end nav buttons */
body.mobile .mobile-hide {
display: none;
}
/* S N A P P E R D R A W E R */
body[data-format="mobile"] {
background-color: #5b5b5b;
}
body[data-format="mobile"] .header-item-container.active .header-btn {
color: #000;
}
#side-drawer-container {
position: absolute;
height: 100%;
right: 0;
top: 0;
color: #fff;
background-color: #34393a;
width: 66%;
padding: 15px;
overflow: auto;
-webkit-overflow-scrolling: touch;
-webkit-box-shadow: 10px 0px 12px -5px #000 inset;
box-shadow: 10px 0px 12px -5px #000 inset;
}
#side-drawer-container a {
color: #71bfff;
}
#side-drawer-container .section-title {
margin-top: 5px;
}
#side-drawer-container .section-subtitle {
letter-spacing: 1px;
font-size: 1.2em;
color: #fff;
}
#side-drawer-container .section-subtitle span {
color: #aaa;
text-transform: none;
}
#easter-egg-img {
position: absolute;
top: 9%;
right: 64.5%;
z-index: -1;
width: 20%;
display: none;
}
.drawer-section-container {
margin-bottom: 20px;
}
.drawer-section-container li {
font-size: 1.3em;
margin-bottom: 3px;
font-weight: 200;
}
.drawer-section-container li.endnote {
font-size: 1.1em;
margin-bottom: 8px;
line-height: 1.2em;
}
.drawer-section-container .endnote-number {
color: #969696;
}
.drawer-section-container[data-which="share"] li {
display: inline-block;
width: 24.5%;
font-size: 2em;
text-align: center;
padding: 10px 0;
}
.drawer-section-container[data-which="share"] li:hover {
cursor: pointer;
}
.drawer-section-container[data-which="share"] li[data-which="twitter"] {
background-color: #00aced;
}
.drawer-section-container[data-which="share"] li[data-which="facebook"] {
background-color: #3c599f;
}
.drawer-section-container[data-which="share"] li[data-which="reddit"] {
background-color: #369;
}
.drawer-section-container[data-which="share"] li[data-which="gplus"] {
background-color: #dd4b39;
}
.drawer-section-container[data-which="share"] li[data-which="twitter"]:hover {
background-color: #17bfff;
}
.drawer-section-container[data-which="share"] li[data-which="facebook"]:hover {
background-color: #4b6cbb;
}
.drawer-section-container[data-which="share"] li[data-which="reddit"]:hover {
background-color: #3e7dbb;
}
.drawer-section-container[data-which="share"] li[data-which="gplus"]:hover {
background-color: #e26657;
}
#side-drawer-handle {
position: absolute;
right: 0;
top: 95px;
bottom: 0;
left: 0;
display: none;
z-index: 999;
}
/* Common styles between desktop and mobile on drawer open */
body[data-side-drawer-open="true"] #pages-wrapper,
body[data-side-drawer-open="true"] #btns {
pointer-events: none;
}
body[data-side-drawer-open="false"][data-side-drawer-state="changing"] #side-drawer-handle,
body[data-side-drawer-open="true"] #side-drawer-handle {
display: block;
}
/* Mobile */
body[data-side-drawer-open="false"][data-side-drawer-state="stable"] #side-drawer-container {
display: none;
}
body[data-format="mobile"][data-side-drawer-open="true"] #main-content-wrapper {
-webkit-transform: translateX(-66%);
-moz-transform: translateX(-66%);
-o-transform: translateX(-66%);
-ms-transform: translateX(-66%);
transform: translateX(-66%);
}
/* end mobile */
/* Desktop */
body[data-format="single"][data-side-drawer-open="true"] #desktop-drawer-container,
body[data-format="double"][data-side-drawer-open="true"] #desktop-drawer-container {
-webkit-transform: translateX(0%);
-moz-transform: translateX(0%);
-o-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
right: 0px;
}
/* end desktop */
/* end snapper drawer */
/* M O D A L */
.endnote-number {
vertical-align: super;
font-size: smaller;
padding-right: 5px;
}
#desktop-drawer-container {
position: absolute;
width: 33%;
right: -15px;
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-o-transform: translateX(100%);
-ms-transform: translateX(100%);
transform: translateX(100%);
bottom: 0px;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 5px;
padding-top: 16px;
top: 84px;
background-color: #fff;
z-index: 9999;
-webkit-transition: -webkit-transform 500ms cubic-bezier(0, 0, 0.2, 1), right 100ms cubic-bezier(0, 0, 0.2, 1);
-moz-transition: -moz-transform 500ms cubic-bezier(0, 0, 0.2, 1), right 100ms cubic-bezier(0, 0, 0.2, 1);
-o-transition: -o-transform 500ms cubic-bezier(0, 0, 0.2, 1), right 100ms cubic-bezier(0, 0, 0.2, 1);
-ms-transition: -ms-transform 500ms cubic-bezier(0, 0, 0.2, 1), right 100ms cubic-bezier(0, 0, 0.2, 1);
transition: transform 500ms cubic-bezier(0, 0, 0.2, 1), right 100ms cubic-bezier(0, 0, 0.2, 1);
-webkit-box-shadow: -3px 15px 19px -7px #000;
box-shadow: -3px 15px 19px -7px #000;
}
#desktop-drawer-container .section-title {
margin-bottom: 8px;
}
#desktop-drawer-container .section-title span {
font-weight: normal;
font-size: 12px;
}
#desktop-drawer-container .section-title .section-title-close {
float: right;
color: #999;
}
#desktop-drawer-container .section-title .section-title-close:hover {
cursor: pointer;
color: #666;
}
#desktop-drawer-container .endnote {
font-size: 1.2em;
margin-bottom: 8px;
line-height: 1.3em;
}
.section-title {
font-size: 1.4em;
font-weight: bold;
border-bottom: 1px solid #646464;
margin-bottom: 5px;
padding-bottom: 3px;
}
/* end modal */
/* P A G E S */
#pages-wrapper,
#pages {
position: relative;
max-width: 1024px;
margin: 0 auto;
width: 100%;
text-align: center;
}
#pages-wrapper {
height: calc(100% - 95px);
z-index: -1;
}
#pages {
height: 100%;
}
body[data-state="page-change"] #pages-wrapper {
overflow: hidden;
}
.page-container {
left: 0;
visibility: hidden;
}
.page-container,
.page,
.page-mask,
.hover-mask {
position: absolute;
height: 100%;
width: 100%;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.page-mask,
.hover-mask {
overflow: hidden;
}
.page {
position: relative;
}
body[data-format="double"][data-bookend="true"] .hover-mask {
-webkit-transform: translateX(50%) translate3d(0, 0, 0);
-moz-transform: translateX(50%) translate3d(0, 0, 0);
-o-transform: translateX(50%) translate3d(0, 0, 0);
-ms-transform: translateX(50%) translate3d(0, 0, 0);
transform: translateX(50%) translate3d(0, 0, 0);
}
.page-container.viewing {
visibility: visible;
z-index: 99;
}
.page img {
max-width: 100%;
max-height: 100%;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.paragraph-text {
position: absolute;
text-align: left;
font-size: 1.5em;
z-index: 9999;
padding: 20px;
line-height: 1.5em;
}
.paragraph-text p {
margin-bottom: 10px;
}
.page[data-iszoom="false"]:hover {
cursor: default !important;
}
.page[data-iszoom="true"]:hover {
cursor: move;
}
/* end pages */
/* P A G E F O R M A T T I N G */
body[data-format="double"][data-bookend="false"] #pages {
max-width: 2048px;
position: relative;
left: -1px;
}
body[data-format="double"][data-bookend="false"] .page-container.viewing {
width: 50%;
}
body[data-format="double"] .page-container.viewing.right-page {
left: 50%;
padding-left: 2px;
}
body[data-format="double"] .page-container.viewing.right-page:after {
content: "";
opacity: 0.2;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
filter: alpha(opacity=20);
top: 0;
left: 0;
bottom: 3px;
right: 0;
position: absolute;
z-index: -1;
background: url("../imgs/assets/border.png") repeat-y 1px top #fff;
}
body[data-format="mobile"] #btns {
visibility: hidden;
}
/* MOZ Specific hacks */
@-moz-document url-prefix() {
body[data-format="double"][data-bookend="false"] .page-container.viewing.right-page {
left: calc(50% - 1px);
}
}
/* end page formatting */
/* T R A N S I T I O N S */
/* Single */
body[data-state="page-change"][data-format="double"] .hover-mask {
-webkit-transform: translate3d(0, 0, 0) !important;
-moz-transform: translate3d(0, 0, 0) !important;
-o-transform: translate3d(0, 0, 0) !important;
-ms-transform: translate3d(0, 0, 0) !important;
transform: translate3d(0, 0, 0) !important;
}
body[data-state="page-change"][data-bookend="true"] .page-container.enter-from-left .hover-mask {
-webkit-transform: translateX(50%) translate3d(0, 0, 0) !important;
-moz-transform: translateX(50%) translate3d(0, 0, 0) !important;
-o-transform: translateX(50%) translate3d(0, 0, 0) !important;
-ms-transform: translateX(50%) translate3d(0, 0, 0) !important;
transform: translateX(50%) translate3d(0, 0, 0) !important;
}
.page-container.exit-to-left {
-webkit-animation: exit-to-left 450ms linear;
-moz-animation: exit-to-left 450ms linear;
-o-animation: exit-to-left 450ms linear;
-ms-animation: exit-to-left 450ms linear;
animation: exit-to-left 450ms linear;
}
.page-container.enter-from-left {
-webkit-animation: enter-from-left 450ms linear;
-moz-animation: enter-from-left 450ms linear;
-o-animation: enter-from-left 450ms linear;
-ms-animation: enter-from-left 450ms linear;
animation: enter-from-left 450ms linear;
}
.page-container.exit-to-right {
-webkit-animation: exit-to-right 450ms linear;
-moz-animation: exit-to-right 450ms linear;
-o-animation: exit-to-right 450ms linear;
-ms-animation: exit-to-right 450ms linear;
animation: exit-to-right 450ms linear;
}
.page-container.enter-from-right {
-webkit-animation: enter-from-right 450ms linear;
-moz-animation: enter-from-right 450ms linear;
-o-animation: enter-from-right 450ms linear;
-ms-animation: enter-from-right 450ms linear;
animation: enter-from-right 450ms linear;
}
/* end single */
/* Double left */
body[data-format="double"][data-bookend="false"] .page-container.exit-to-left {
-webkit-animation: double-left-exit-to-left 450ms linear;
-moz-animation: double-left-exit-to-left 450ms linear;
-o-animation: double-left-exit-to-left 450ms linear;
-ms-animation: double-left-exit-to-left 450ms linear;
animation: double-left-exit-to-left 450ms linear;
}
body[data-format="double"][data-bookend="false"] .page-container.enter-from-left {
-webkit-animation: double-left-enter-from-left 450ms linear;
-moz-animation: double-left-enter-from-left 450ms linear;
-o-animation: double-left-enter-from-left 450ms linear;
-ms-animation: double-left-enter-from-left 450ms linear;
animation: double-left-enter-from-left 450ms linear;
}
body[data-format="double"][data-bookend="false"] .page-container.exit-to-right {
-webkit-animation: double-left-exit-to-right 450ms linear;
-moz-animation: double-left-exit-to-right 450ms linear;
-o-animation: double-left-exit-to-right 450ms linear;
-ms-animation: double-left-exit-to-right 450ms linear;
animation: double-left-exit-to-right 450ms linear;
}
body[data-format="double"][data-bookend="false"] .page-container.enter-from-right {
-webkit-animation: double-left-enter-from-right 450ms linear;
-moz-animation: double-left-enter-from-right 450ms linear;
-o-animation: double-left-enter-from-right 450ms linear;
-ms-animation: double-left-enter-from-right 450ms linear;
animation: double-left-enter-from-right 450ms linear;
width: 50%;
}
/* D O U B L E R I G H T */
body[data-format="double"][data-bookend="false"] .page-container.right-page.exit-to-left {
-webkit-animation: double-right-exit-to-left 450ms linear;
-moz-animation: double-right-exit-to-left 450ms linear;
-o-animation: double-right-exit-to-left 450ms linear;
-ms-animation: double-right-exit-to-left 450ms linear;
animation: double-right-exit-to-left 450ms linear;
}
body[data-format="double"][data-bookend="false"] .page-container.right-page.enter-from-left {
-webkit-animation: double-right-enter-from-left 450ms linear;
-moz-animation: double-right-enter-from-left 450ms linear;
-o-animation: double-right-enter-from-left 450ms linear;
-ms-animation: double-right-enter-from-left 450ms linear;
animation: double-right-enter-from-left 450ms linear;
}
body[data-format="double"][data-bookend="false"] .page-container.right-page.exit-to-right {
-webkit-animation: double-right-exit-to-right 450ms linear;
-moz-animation: double-right-exit-to-right 450ms linear;
-o-animation: double-right-exit-to-right 450ms linear;
-ms-animation: double-right-exit-to-right 450ms linear;
animation: double-right-exit-to-right 450ms linear;
}
body[data-format="double"][data-bookend="false"] .page-container.right-page.enter-from-right {
-webkit-animation: double-right-enter-from-right 450ms linear;
-moz-animation: double-right-enter-from-right 450ms linear;
-o-animation: double-right-enter-from-right 450ms linear;
-ms-animation: double-right-enter-from-right 450ms linear;
animation: double-right-enter-from-right 450ms linear;
}
/* end double left */
/* Double center */
body[data-format="double"][data-bookend="false"] .page-container.center-page.exit-to-left {
-webkit-animation: double-center-exit-to-left 450ms linear;
-moz-animation: double-center-exit-to-left 450ms linear;
-o-animation: double-center-exit-to-left 450ms linear;
-ms-animation: double-center-exit-to-left 450ms linear;
animation: double-center-exit-to-left 450ms linear;
}
body[data-format="double"][data-bookend="true"] .page-container.enter-from-left {
-webkit-animation: double-center-enter-from-left 450ms linear;
-moz-animation: double-center-enter-from-left 450ms linear;
-o-animation: double-center-enter-from-left 450ms linear;
-ms-animation: double-center-enter-from-left 450ms linear;
animation: double-center-enter-from-left 450ms linear;
}
body[data-format="double"][data-bookend="true"] .page-container.exit-to-right {
-webkit-animation: double-left-exit-to-right 450ms linear;
-moz-animation: double-left-exit-to-right 450ms linear;
-o-animation: double-left-exit-to-right 450ms linear;
-ms-animation: double-left-exit-to-right 450ms linear;
animation: double-left-exit-to-right 450ms linear;
width: 50%;
}
body[data-format="double"][data-bookend="true"] .page-container.exit-to-right.right-page {
-webkit-animation: double-right-exit-to-right 450ms linear;
-moz-animation: double-right-exit-to-right 450ms linear;
-o-animation: double-right-exit-to-right 450ms linear;
-ms-animation: double-right-exit-to-right 450ms linear;
animation: double-right-exit-to-right 450ms linear;
}
/* end double center */
/* end transitions */
/* H O T S P O T S */
.hotspot {
position: absolute;
z-index: 9;
}
/* end hotspots */
/* M A S K S */
.mask {
position: absolute;
background-color: #fff;
z-index: 9999;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
.mask[data-orientation="horizontal"] {
height: 0;
left: 0;
right: 0;
}
.mask[data-orientation="vertical"] {
width: 0;
top: 0;
bottom: 0;
}
#top-mask {
top: 0;
}
#bottom-mask {
-webkit-transform: rotateX(180deg) translate3d(0, 0, 1);
-moz-transform: rotateX(180deg) translate3d(0, 0, 1);
-o-transform: rotateX(180deg) translate3d(0, 0, 1);
-ms-transform: rotateX(180deg) translate3d(0, 0, 1);
transform: rotateX(180deg) translate3d(0, 0, 1);
bottom: -1px /* To cover up some small clipping that occurs */;
}
#left-mask {
left: 0;
}
#right-mask {
right: 0;
-webkit-transform: rotateX(180deg) translate3d(0, 0, 1);
-moz-transform: rotateX(180deg) translate3d(0, 0, 1);
-o-transform: rotateX(180deg) translate3d(0, 0, 1);
-ms-transform: rotateX(180deg) translate3d(0, 0, 1);
transform: rotateX(180deg) translate3d(0, 0, 1);
}
/* end masks */
/* M E D I A Q U E R I E S */
@media (max-width: 1024px) {
#pages-wrapper {
height: calc(100% - 95px);
}
}
body[data-format="mobile"] #easter-egg-img {
display: block;
}
body[data-format="mobile"] .header-group.desktop {
display: none;
}
body[data-format="mobile"] .header-group.mobile {
display: block;
}
body[data-format="mobile"] .header-group.mobile .header-btn {
border: none;
}
body[data-format="mobile"] #side-drawer-handle,
body[data-format="mobile"] #desktop-drawer-container {
top: 63.333333333333336px;
}
body[data-format="mobile"] #header {
margin-bottom: 8px;
height: 63.333333333333336px;
}
body[data-format="mobile"] #btns {
top: auto;
}
body[data-format="mobile"] #pages-wrapper {
height: 100%;
}
body[data-format="mobile"] #pages {
width: 100%;
}
body[data-format="mobile"] .header-group .header-item-container {
padding: 0 4px 0 0;
}
body[data-format="mobile"] .tooltipped-i[data-focus="true"]:before,
body[data-format="mobile"] .tooltipped-i[data-focus="true"]:after {
display: none;
}
body[data-format="mobile"] .header-item .header-text {
position: relative;
top: 3px;
}
body[data-format="mobile"] .header-item[data-which="pub-date"] .header-text {
-webkit-transform: translateX(-10px);
-moz-transform: translateX(-10px);
-o-transform: translateX(-10px);
-ms-transform: translateX(-10px);
transform: translateX(-10px);
}
body[data-format="mobile"] .header-item[data-which="page-number"] .header-text input {
width: 25px;
}
body[data-format="mobile"] .nav-helpers {
display: none;
}
/* end media queries */
@-moz-keyframes decay {
from {
opacity: 1;
-ms-filter: none;
filter: none;
}
to {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@-webkit-keyframes decay {
from {
opacity: 1;
-ms-filter: none;
filter: none;
}
to {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@-o-keyframes decay {
from {
opacity: 1;
-ms-filter: none;
filter: none;
}
to {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@keyframes decay {
from {
opacity: 1;
-ms-filter: none;
filter: none;
}
to {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@-moz-keyframes bounce-left-right {
0% {
-webkit-transform: translateX(80px);
-moz-transform: translateX(80px);
-o-transform: translateX(80px);
-ms-transform: translateX(80px);
transform: translateX(80px);
}
50% {
-webkit-transform: translateX(40px);
-moz-transform: translateX(40px);
-o-transform: translateX(40px);
-ms-transform: translateX(40px);
transform: translateX(40px);
}
100% {
-webkit-transform: translateX(80px);
-moz-transform: translateX(80px);
-o-transform: translateX(80px);
-ms-transform: translateX(80px);
transform: translateX(80px);
}
}
@-webkit-keyframes bounce-left-right {
0% {
-webkit-transform: translateX(80px);
-moz-transform: translateX(80px);
-o-transform: translateX(80px);
-ms-transform: translateX(80px);
transform: translateX(80px);
}
50% {
-webkit-transform: translateX(40px);
-moz-transform: translateX(40px);
-o-transform: translateX(40px);
-ms-transform: translateX(40px);
transform: translateX(40px);
}
100% {
-webkit-transform: translateX(80px);
-moz-transform: translateX(80px);
-o-transform: translateX(80px);
-ms-transform: translateX(80px);
transform: translateX(80px);
}
}
@-o-keyframes bounce-left-right {
0% {
-webkit-transform: translateX(80px);
-moz-transform: translateX(80px);
-o-transform: translateX(80px);
-ms-transform: translateX(80px);
transform: translateX(80px);
}
50% {
-webkit-transform: translateX(40px);
-moz-transform: translateX(40px);
-o-transform: translateX(40px);
-ms-transform: translateX(40px);
transform: translateX(40px);
}
100% {
-webkit-transform: translateX(80px);
-moz-transform: translateX(80px);
-o-transform: translateX(80px);
-ms-transform: translateX(80px);
transform: translateX(80px);
}
}
@keyframes bounce-left-right {
0% {
-webkit-transform: translateX(80px);
-moz-transform: translateX(80px);
-o-transform: translateX(80px);
-ms-transform: translateX(80px);
transform: translateX(80px);
}
50% {
-webkit-transform: translateX(40px);
-moz-transform: translateX(40px);
-o-transform: translateX(40px);
-ms-transform: translateX(40px);
transform: translateX(40px);
}
100% {
-webkit-transform: translateX(80px);
-moz-transform: translateX(80px);
-o-transform: translateX(80px);
-ms-transform: translateX(80px);
transform: translateX(80px);
}
}
@-moz-keyframes wrapper-slide-to-left {
from {
left: 0;
}
to {
left: -66%;
}
}
@-webkit-keyframes wrapper-slide-to-left {
from {
left: 0;
}
to {
left: -66%;
}
}
@-o-keyframes wrapper-slide-to-left {
from {
left: 0;
}
to {
left: -66%;
}
}
@keyframes wrapper-slide-to-left {
from {
left: 0;
}
to {
left: -66%;
}
}
@-moz-keyframes exit-to-left {
from {
left: 0;
}
to {
left: -100%;
}
}
@-webkit-keyframes exit-to-left {
from {
left: 0;
}
to {
left: -100%;
}
}
@-o-keyframes exit-to-left {
from {
left: 0;
}
to {
left: -100%;
}
}
@keyframes exit-to-left {
from {
left: 0;
}
to {
left: -100%;
}
}
@-moz-keyframes exit-to-right {
from {
left: 0;
}
to {
left: 100%;
}
}
@-webkit-keyframes exit-to-right {
from {
left: 0;
}
to {
left: 100%;
}
}
@-o-keyframes exit-to-right {
from {
left: 0;
}
to {
left: 100%;
}
}
@keyframes exit-to-right {
from {
left: 0;
}
to {
left: 100%;
}
}
@-moz-keyframes enter-from-left {
from {
left: -100%;
}
to {
left: 0;
}
}
@-webkit-keyframes enter-from-left {
from {
left: -100%;
}
to {
left: 0;
}
}
@-o-keyframes enter-from-left {
from {
left: -100%;
}
to {
left: 0;
}
}
@keyframes enter-from-left {
from {
left: -100%;
}
to {
left: 0;
}
}
@-moz-keyframes enter-from-right {
from {
left: 100%;
}
to {
left: 0;
}
}
@-webkit-keyframes enter-from-right {
from {
left: 100%;
}
to {
left: 0;
}
}
@-o-keyframes enter-from-right {
from {
left: 100%;
}
to {
left: 0;
}
}
@keyframes enter-from-right {
from {
left: 100%;
}
to {
left: 0;
}
}
@-moz-keyframes double-left-exit-to-left {
from {
left: 0;
}
to {
left: calc(-100% - 2px);
}
}
@-webkit-keyframes double-left-exit-to-left {
from {
left: 0;
}
to {
left: calc(-100% - 2px);
}
}
@-o-keyframes double-left-exit-to-left {
from {
left: 0;
}
to {
left: calc(-100% - 2px);
}
}
@keyframes double-left-exit-to-left {
from {
left: 0;
}
to {
left: calc(-100% - 2px);
}
}
@-moz-keyframes double-left-exit-to-right {
from {
left: 0;
}
to {
left: calc(100% + 2px);
}
}
@-webkit-keyframes double-left-exit-to-right {
from {
left: 0;
}
to {
left: calc(100% + 2px);
}
}
@-o-keyframes double-left-exit-to-right {
from {
left: 0;
}
to {
left: calc(100% + 2px);
}
}
@keyframes double-left-exit-to-right {
from {
left: 0;
}
to {
left: calc(100% + 2px);
}
}
@-moz-keyframes double-left-enter-from-left {
from {
left: -100%;
}
to {
left: 0;
}
}
@-webkit-keyframes double-left-enter-from-left {
from {
left: -100%;
}
to {
left: 0;
}
}
@-o-keyframes double-left-enter-from-left {
from {
left: -100%;
}
to {
left: 0;
}
}
@keyframes double-left-enter-from-left {
from {
left: -100%;
}
to {
left: 0;
}
}
@-moz-keyframes double-left-enter-from-right {
from {
left: calc(100% + 2px);
}
to {
left: 0;
}
}
@-webkit-keyframes double-left-enter-from-right {
from {
left: calc(100% + 2px);
}
to {
left: 0;
}
}
@-o-keyframes double-left-enter-from-right {
from {
left: calc(100% + 2px);
}
to {
left: 0;
}
}
@keyframes double-left-enter-from-right {
from {
left: calc(100% + 2px);
}
to {
left: 0;
}
}
@-moz-keyframes double-right-exit-to-left {
from {
left: 50%;
}
to {
left: calc(-50% - 2px);
}
}
@-webkit-keyframes double-right-exit-to-left {
from {
left: 50%;
}
to {
left: calc(-50% - 2px);
}
}
@-o-keyframes double-right-exit-to-left {
from {
left: 50%;
}
to {
left: calc(-50% - 2px);
}
}
@keyframes double-right-exit-to-left {
from {
left: 50%;
}
to {
left: calc(-50% - 2px);
}
}
@-moz-keyframes double-right-exit-to-right {
from {
left: 50%;
}
to {
left: calc(150% + 2px);
}
}
@-webkit-keyframes double-right-exit-to-right {
from {
left: 50%;
}
to {
left: calc(150% + 2px);
}
}
@-o-keyframes double-right-exit-to-right {
from {
left: 50%;
}
to {
left: calc(150% + 2px);
}
}
@keyframes double-right-exit-to-right {
from {
left: 50%;
}
to {
left: calc(150% + 2px);
}
}
@-moz-keyframes double-right-enter-from-left {
from {
left: calc(-50% - 2px);
}
to {
left: 50%;
}
}
@-webkit-keyframes double-right-enter-from-left {
from {
left: calc(-50% - 2px);
}
to {
left: 50%;
}
}
@-o-keyframes double-right-enter-from-left {
from {
left: calc(-50% - 2px);
}
to {
left: 50%;
}
}
@keyframes double-right-enter-from-left {
from {
left: calc(-50% - 2px);
}
to {
left: 50%;
}
}
@-moz-keyframes double-right-enter-from-right {
from {
left: 150%;
}
to {
left: 50%;
}
}
@-webkit-keyframes double-right-enter-from-right {
from {
left: 150%;
}
to {
left: 50%;
}
}
@-o-keyframes double-right-enter-from-right {
from {
left: 150%;
}
to {
left: 50%;
}
}
@keyframes double-right-enter-from-right {
from {
left: 150%;
}
to {
left: 50%;
}
}
@-moz-keyframes double-center-exit-to-left {
from {
left: 25%;
}
to {
left: -50%;
}
}
@-webkit-keyframes double-center-exit-to-left {
from {
left: 25%;
}
to {
left: -50%;
}
}
@-o-keyframes double-center-exit-to-left {
from {
left: 25%;
}
to {
left: -50%;
}
}
@keyframes double-center-exit-to-left {
from {
left: 25%;
}
to {
left: -50%;
}
}
@-moz-keyframes double-center-enter-from-left {
from {
left: -75%;
}
to {
left: 0%;
}
}
@-webkit-keyframes double-center-enter-from-left {
from {
left: -75%;
}
to {
left: 0%;
}
}
@-o-keyframes double-center-enter-from-left {
from {
left: -75%;
}
to {
left: 0%;
}
}
@keyframes double-center-enter-from-left {
from {
left: -75%;
}
to {
left: 0%;
}
}
|
client/reviews/reviews.css | oliverdrake/ratemybrew | div[class*='col-'] {
overflow: hidden;
}
.panel-default > .off-flavour {
background-color: #f2dede;
}
|
data science/machine_learning_for_the_web/chapter_4/movie/20777.html | xianjunzhengbackup/code | <HTML><HEAD>
<TITLE>Review for Blue Streak (1999)</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0181316">Blue Streak (1999)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Eugene+Novikov">Eugene Novikov</A></H3><HR WIDTH="40%" SIZE="4">
<PRE>Blue Streak (1999)
Reviewed by Eugene Novikov
<A HREF="http://www.ultimate-movie.com">http://www.ultimate-movie.com</A>
Member: Online Film Critics Society</PRE>
<PRE>*** out of four</PRE>
<PRE>"Believe that!"
Starring Martin Lawrence, Luke Wilson, Dave Chappelle, Peter Greene.
Rated PG-13.</PRE>
<P>Martin Lawrence is in the first stages of big-time Hollywood fame. The
amiable comic got his very first breakout hit earlier this year with
Life, in which he co-starred with Murphy. Almost right on its heels
comes Blue Streak, another sure-fire box-office winner which puts
Lawrence at the head of a genre-hopping plot and an unexpectedly clever
script. He delivers and the movie triumphs. A nice recovery, also, on
the part of director Les Mayfield whom I all but gave up on after the
travesty that was Flubber.</P>
<P>Wasting no time, Mayfield throws us into the action. Lawrence plays
Miles Logan (have you ever heard a phonier Hollywood name?), a high-
stakes jewel thief, and in his latest heist, he has a complicated plan
to steal a diamond the size of a golf ball. He blunders big time and the
police are on to him, but before he can be arrested, he hides the
diamond in what seems to be the ventilation shaft of an abandoned
warehouse. After two years in the slammer, he comes back to retrieve his
treasure, only to find that his hiding place is now a police station and
the ventilation shaft is smack in the middle of the robbery homicide
department.</P>
<P>He attempts to infiltrate the building by posing as a pizza delivery
man. No luck there. "There are two kinds of people who get through that
door," he is told. "People wearing handcuffs and people wearing a
badge." Now there's an idea! He goes to an old buddy of his, who finds
it in his heart to make Miles fake police ID. He enters robbery homicide
claiming to be a newly transferred detective with an astonishing 16
(count 'em) citations in his former place of employment. Miles, being
the seasoned veteran that he is, is partnered with a newbie in the
department and proceeds to show him how the "big boys" work, often to
riotous results. He searches for "his baby" while attempting to come off
as a convincing police officer. He has unexpected success in the latter,
of course. He does find the diamond almost right away, too, but nothing
is that easy -- otherwise we wouldn't have a movie.</P>
<P>Blue Streak's plot is trite and generic, an assortment of formulas from
all different sources, including but not limited to the buddy movie, the
wacky cop movie and the always reliable mistaken identity caper. How
does it work, exactly? A lot of things come together for Mayfield, who's
a pretty lucky bastard, considering what he had coming into this high-
risk project: a sharp, witty script from Michael Berry and John
Blumenthal, as well as the extremely talented Lawrence, whose
performance will surely help his Hollywood status (read: raise his
asking price).</P>
<P>It got off to a slow start, and I was getting into that weird mind-set
of mine where I am actually excited about hating a film, but 20-25
minutes in, Blue Streak was beginning to grow on me. I realized that the
jokes were hitting the target. The script found new ways to wring laughs
out of tired situations, and though it wasn't consistently the most
hilarious things I've ever seen, I found solace in the fact that this
movie would still have been made had the writing relied only on old,
formulaic gags, like so many of today's Hollywood screenplays tend to
do. I enjoyed the parts that worked, and a good many did, but I could
even appreciate those that didn't quite get there, because most of them
found fresh ways to fail.</P>
<P>Martin Lawrence rises above the material every chance he gets. A
skillful ad libber, he is more than a fast-talking Eddie Murphy wannabe
(Chris Tucker comes to mind). He is a good actor with a tough but
strangely outgoing style. He has a way of looking like he wants to hurt
you when necessary, but really just wants to be your friend. As a
result, his characters tend to be less one-dimensional even when the
script calls for a walking cliché. Lawrence brings that same spirit to
Blue Streak, making what could have been a mean-spirited comedy an
affectionate one.</P>
<P>Look, this isn't Dr. Strangelove. It isn't even Bowfinger. But for what
it was, I liked it. Blue Streak is probably the most original unoriginal
comedy I've ever seen: a film that finds new ways to handle situations
you thought have been beaten into the ground by screenwriters past.
©1999 Eugene Novikov‰</P>
<PRE>Sent via Deja.com <A HREF="http://www.deja.com/">http://www.deja.com/</A>
Before you buy.</PRE>
<HR><P CLASS=flush><SMALL>The review above was posted to the
<A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR>
The Internet Movie Database accepts no responsibility for the contents of the
review and has no editorial control. Unless stated otherwise, the copyright
belongs to the author.<BR>
Please direct comments/criticisms of the review to relevant newsgroups.<BR>
Broken URLs inthe reviews are the responsibility of the author.<BR>
The formatting of the review is likely to differ from the original due
to ASCII to HTML conversion.
</SMALL></P>
<P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P>
</P></BODY></HTML>
|
layouts/partials/card.html | pastjean/stjean.me | <a href="{{ .Permalink }}" class="pv3 ph2 mv2 mh2 bg-blue white link flex flex-column dim">
<div class="f4">{{ .Title }}</div>
<div class="f6 b">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
</a> |
web/css/backoffice.css | yassine-essadik/gestion-pub | body {
padding-top: 50px;
}
.sub-header {
border-bottom: 1px solid #eee;
padding-bottom: 10px;
}
.navbar-fixed-top {
border: 0 none;
}
.sidebar {
display: none;
}
@media (min-width: 768px) {
.sidebar {
background-color: #f5f5f5;
border-right: 1px solid #eee;
bottom: 0;
display: block;
left: 0;
overflow-x: hidden;
overflow-y: auto;
padding: 20px;
position: fixed;
top: 51px;
z-index: 1000;
}
}
.nav-sidebar {
margin-bottom: 20px;
margin-left: -20px;
margin-right: -21px;
}
.nav-sidebar > li > a {
padding-left: 20px;
padding-right: 20px;
}
.nav-sidebar > .active > a, .nav-sidebar > .active > a:hover, .nav-sidebar > .active > a:focus {
background-color: #428bca;
color: #fff;
}
.main {
padding: 20px;
}
@media (min-width: 768px) {
.main {
padding-left: 40px;
padding-right: 40px;
}
}
.main .page-header {
margin-top: 0;
}
.placeholders {
margin-bottom: 30px;
text-align: center;
}
.placeholders h4 {
margin-bottom: 0;
}
.placeholder {
margin-bottom: 20px;
}
.placeholder img {
border-radius: 50%;
display: inline-block;
}
.panel-body .btn:not(.btn-block) { width:345px; height:120px; margin-bottom:10px; }
.flash-messages p {
padding: 15px;
}
.panel-item a {
background-color: #fff;
background-position: -30px;
display: block;
float: left;
height: 110px;
width: 140px;
color: #565656;
vertical-align: middle;
text-decoration: none;
text-align: center;
margin-right: 15px;
margin-bottom: 15px;
border: 1px solid #CCC;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-transition-property: background-position,
-webkit-border-bottom-left-radius, -webkit-box-shadow;
-moz-transition-property: background-position,
-moz-border-radius-bottomleft, -moz-box-shadow;
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
transition-property: background-position, border-bottom-left-radius,
box-shadow;
transition-duration: 0.8s;
}
.panel-item a:hover,.panel-item a:focus,.panel-item a:active
{
background-position: 0;
-webkit-border-bottom-left-radius: 50% 20px;
-moz-border-radius-bottomleft: 50% 20px;
border-bottom-left-radius: 50% 20px;
-webkit-box-shadow: -5px 10px 15px rgba(0, 0, 0, 0.25);
-moz-box-shadow: -5px 10px 15px rgba(0, 0, 0, 0.25);
box-shadow: -5px 10px 15px rgba(0, 0, 0, 0.25);
position: relative;
z-index: 10;
}
.panel-item img {
margin: 0 auto;
}
.panel-item span {
font-size: 12px;
font-weight: bold;
display: block;
text-align: center;
}
|
_site/articles/2017-02/install-Sass.html | rockquai/rockquai.github.io | <!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">
<title>Sass(Syntactically Awesome StyleSheets) 설치</title>
<meta name="keywords" content=" Sass 설치 node-sass gulp-sass ">
<meta name="description" content=" Sass 설치 node-sass gulp-sass ">
<!-- CSS files -->
<link rel="stylesheet" href="http://localhost:4000/css/font-awesome.min.css">
<link rel="stylesheet" href="http://localhost:4000/css/main.css">
<link rel="canonical" href="http://localhost:4000/articles/2017-02/install-Sass">
<link rel="alternate" type="application/rss+xml" title="Front-End Developer Skill Blog" href="http://localhost:4000/feed.xml" />
<!-- Icons -->
<!-- 16x16 -->
<link rel="shortcut icon" href="http://localhost:4000/favicon.ico">
<!-- 32x32 -->
<link rel="shortcut icon" href="http://localhost:4000/favicon.png">
</head>
<body>
<div class="row">
<div class="col s12 m3">
<div class="table cover">
<div class="cover-card table-cell table-middle">
<a href="http://localhost:4000/">
<img src="http://localhost:4000/img/coding.jpg" alt="" class="avatar">
</a>
<a href="http://localhost:4000/" class="author_name">Claire</a>
<span class="author_job">Front-End Developer</span>
<span class="author_bio mbm">KEEP CALM AND LOVE CODING</span>
<nav class="nav">
<ul class="nav-list">
<li class="nav-item">
<a href="http://localhost:4000/">home</a>
</li>
<li class="nav-item">
<a href="http://localhost:4000/archive/">Archive</a>
</li>
<li class="nav-item">
<a href="http://localhost:4000/categories/">Categories</a>
</li>
<li class="nav-item">
<a href="http://localhost:4000/tags/">Tags</a>
</li>
</ul>
</nav>
<script type="text/javascript">
// based on http://stackoverflow.com/a/10300743/280842
function gen_mail_to_link(hs, subject) {
var lhs,rhs;
var p = hs.split('@');
lhs = p[0];
rhs = p[1];
document.write("<a class=\"social-link-item\" target=\"_blank\" href=\"mailto");
document.write(":" + lhs + "@");
document.write(rhs + "?subject=" + subject + "\"><i class=\"fa fa-fw fa-envelope\"></i><\/a>");
}
</script>
<div class="social-links">
<ul>
<li>
<script>gen_mail_to_link('[email protected]', 'Hello from website');</script>
</li>
<li><a href="http://facebook.com/rockquai" class="social-link-item" target="_blank"><i class="fa fa-fw fa-facebook"></i></a></li>
<li><a href="http://github.com/rockquai" class="social-link-item" target="_blank"><i class="fa fa-fw fa-github"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col s12 m9">
<div class="post-listing">
<a class="btn" href= "http://localhost:4000/" >
Home
</a>
<a class="btn" href= "http://localhost:4000/categories" >
Categories
</a>
<div id="post">
<header class="post-header">
<h1 title="Sass(Syntactically Awesome StyleSheets) 설치">Sass(Syntactically Awesome StyleSheets) 설치</h1>
<span class="post-meta">
<span class="post-date">
3 FEB 2017
</span>
•
<span class="read-time" title="Estimated read time">
1 min read
</span>
</span>
</header>
<article class="post-content">
<ul>
<li>Sass 설치
<ul>
<li>node-sass</li>
<li>gulp-sass</li>
</ul>
</li>
</ul>
<!--more-->
<hr />
<h3 id="node-sass">node-sass</h3>
<h4 id="컴파일-1회">컴파일 1회</h4>
<div class="language-sh highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">$ </span>npm install node-sass <span class="nt">--global</span>
</code></pre></div></div>
<h4 id="폴더-내-파일-변화">폴더 내 파일 변화</h4>
<div class="language-sh highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">$ </span>node-sass sass/style.scss css/style.css
</code></pre></div></div>
<h4 id="지속적-컴파일-관찰-명령어">지속적 컴파일 관찰 명령어</h4>
<div class="language-sh highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">$ </span>node-sass <span class="nt">-w</span> sass/ <span class="nt">-o</span> css/
</code></pre></div></div>
<h4 id="sourcemap-설정">Sourcemap 설정</h4>
<div class="language-sh highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">$ </span>node-sass <span class="nt">-w</span> sass <span class="nt">-o</span> css <span class="nt">--source-map</span> css
</code></pre></div></div>
<h4 id="css-output-style-nested--expanded--compact--compressed">CSS output style (nested | expanded | compact | compressed)</h4>
<div class="language-sh highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">$ </span>node-sass <span class="nt">-w</span> sass <span class="nt">-o</span> css <span class="nt">--output-style</span> expanded <span class="nt">--source-map</span> css
</code></pre></div></div>
<ul>
<li>nested (여러줄 출력)</li>
<li>expanded (여러줄 출력)</li>
<li>compact (한줄 출력)</li>
<li>compressed (압축 출력)</li>
</ul>
<hr />
<h3 id="gulp-sass"><a href="https://www.npmjs.com/package/gulp-sass">gulp-sass</a></h3>
<h4 id="install">Install</h4>
<div class="language-sh highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">$ </span>npm install gulp-sass <span class="nt">--save-dev</span>
</code></pre></div></div>
<h4 id="basic-usage-gulpfilejs">Basic Usage (gulpfile.js)</h4>
<div class="language-js highlighter-rouge"><div class="highlight"><pre class="highlight"><code> <span class="s1">'use strict'</span><span class="p">;</span>
<span class="kd">var</span> <span class="nx">gulp</span> <span class="o">=</span> <span class="nx">require</span><span class="p">(</span><span class="s1">'gulp'</span><span class="p">),</span>
<span class="nx">sourcemaps</span> <span class="o">=</span> <span class="nx">require</span><span class="p">(</span><span class="s1">'gulp-sourcemaps'</span><span class="p">),</span>
<span class="nx">sass</span> <span class="o">=</span> <span class="nx">require</span><span class="p">(</span><span class="s1">'gulp-sass'</span><span class="p">);</span>
<span class="nx">gulp</span><span class="p">.</span><span class="nx">task</span><span class="p">(</span><span class="s1">'sass'</span><span class="p">,</span> <span class="kd">function</span> <span class="p">()</span> <span class="p">{</span>
<span class="k">return</span> <span class="nx">gulp</span><span class="p">.</span><span class="nx">src</span><span class="p">(</span><span class="s1">'sass/**/*.{sass,scss}'</span><span class="p">)</span>
<span class="p">.</span><span class="nx">pipe</span><span class="p">(</span><span class="nx">sourcemaps</span><span class="p">.</span><span class="nx">init</span><span class="p">())</span>
<span class="p">.</span><span class="nx">pipe</span><span class="p">(</span><span class="nx">sass</span><span class="p">({</span><span class="na">outputStyle</span><span class="p">:</span> <span class="s1">'expanded'</span><span class="p">}).</span><span class="nx">on</span><span class="p">(</span><span class="s1">'error'</span><span class="p">,</span> <span class="nx">sass</span><span class="p">.</span><span class="nx">logError</span><span class="p">))</span>
<span class="p">.</span><span class="nx">pipe</span><span class="p">(</span><span class="nx">sourcemaps</span><span class="p">.</span><span class="nx">write</span><span class="p">())</span>
<span class="p">.</span><span class="nx">pipe</span><span class="p">(</span><span class="nx">gulp</span><span class="p">.</span><span class="nx">dest</span><span class="p">(</span><span class="s1">'css'</span><span class="p">));</span>
<span class="p">});</span>
<span class="nx">gulp</span><span class="p">.</span><span class="nx">task</span><span class="p">(</span><span class="s1">'sass:watch'</span><span class="p">,</span> <span class="kd">function</span> <span class="p">()</span> <span class="p">{</span>
<span class="nx">gulp</span><span class="p">.</span><span class="nx">watch</span><span class="p">(</span><span class="s1">'sass/**/*.{sass,scss}'</span><span class="p">,</span> <span class="p">[</span><span class="s1">'sass'</span><span class="p">]);</span>
<span class="p">});</span>
</code></pre></div></div>
</article>
</div>
<div class="share-buttons">
<h6>Share on: </h6>
<ul>
<li>
<a href="https://twitter.com/intent/tweet?text=http://localhost:4000/articles/2017-02/install-Sass" class="twitter btn" title="Share on Twitter"><i class="fa fa-twitter"></i><span> Twitter</span></a>
</li>
<li>
<a href="https://www.facebook.com/sharer/sharer.php=http://localhost:4000/articles/2017-02/install-Sass" class="facebook btn" title="Share on Facebook"><i class="fa fa-facebook"></i><span> Facebook</span></a>
</li>
<li>
<a href="https://plus.google.com/share?url=http://localhost:4000/articles/2017-02/install-Sass" class="google-plus btn" title="Share on Google Plus"><i class="fa fa-google-plus"></i><span> Google+</span></a>
</li>
<li>
<a href="https://news.ycombinator.com/submitlink?u=http://localhost:4000/articles/2017-02/install-Sass" class="hacker-news btn" title="Share on Hacker News"><i class="fa fa-hacker-news"></i><span> Hacker News</span></a>
</li>
<li>
<a href="https://www.reddit.com/submit?url=http://localhost:4000/articles/2017-02/install-Sass" class="reddit btn" title="Share on Reddit"><i class="fa fa-reddit"></i><span> Reddit</span></a>
</li>
</ul>
</div><!-- end share-buttons -->
<footer>
© 2018 Claire. Powered by <a href="http://jekyllrb.com/">Jekyll</a>, <a href="http://github.com/renyuanz/leonids/">leonids theme</a> made with <i class="fa fa-heart heart-icon"></i>
</footer>
</div>
</div>
</div>
<script type="text/javascript" src="http://localhost:4000/js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="http://localhost:4000/js/main.js"></script>
</body>
</html>
|
template-bak.html | xbynet/markdown2html-cli | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>{{ title }}</title>
<link rel="stylesheet" href="https://cdn.bootcss.com/highlight.js/9.12.0/styles/vs.min.css">
<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://cdn.bootcss.com/highlight.js/9.12.0/highlight.min.js"></script>
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
.code {
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
border-radius: 4px;
}
.post {
padding-top: 20px;
margin-left: 380px;
padding-bottom: 60px;
max-width: 960px;
}
ol.order {
counter-reset: item
}
li.order {
display: block
}
li.order:before {
content: counters(item, ".") " ";
counter-increment: item
}
.toc {
position: fixed;
width: 350px;
left: 20px;
top: 20px;
bottom: 20px;
height: 600px;
overflow-y: scroll;
}
</style>
</head>
<body>
<div class="toc">
<h3>目录:</h3>{{ toc }}</div>
<div class="post">
{{ Contents }}
</div>
<script>
hljs.initHighlightingOnLoad();
$("li>code,p > code").addClass("code");
</script>
</body>
</html>
<!-- fmtToc(tocmodel) --> |
app/index.html | dburdick/react-material-starterkit | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="webkid react starterkit">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>webkid react starterkit</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/main_ext.css">
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.0/material.indigo-pink.min.css">
<script src="https://storage.googleapis.com/code.getmdl.io/1.0.0/material.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<script src="js/main.js"></script>
</body>
</html> |
src/main/webapp/js/templates/compare.html | squix78/extraleague | <div class="">
<div class="row">
<div class="col-md-4 text-right">
</div>
<div class="col-md-4 text-center">
{{label}}
</div>
<div class="col-md-4 text-left">
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="progress">
<div class="progress-bar" ng-class="{'progress-bar-success': shareA > shareB, 'progress-bar-danger': shareA < shareB, 'progress-bar-info': shareA == shareB}"
style="width: {{barValue}}%">
{{displayValueA}}
</div>
<div class="progress-bar" ng-class="{'progress-bar-success': shareA < shareB, 'progress-bar-danger': shareA > shareB, 'progress-bar-warning': shareA == shareB}"
style="width: {{barValue}}%">
{{displayValueB}}
</div>
</div>
</div>
</div>
</div> |
ejercicios_tema_2/ejercicio23.html | TonyAlvarez/JavaScript | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!--
23. Demana una frase des de teclat (amb prompt), emmagatzema les paraules en un array (una paraula per posició de l’array) i mostrar les següents dades:
La primera paraula de la frase.
La última paraula de la frase.
El nombre de paraules de la frase.
Totes les paraules ordenades alfabèticament.
-->
<script>
function pedirFrase() {
var frase = prompt("Dime una frase");
var array = frase.split(" ");
var resultadoFrase = document.createElement("p");
resultadoFrase.innerHTML = "Frase introducida: " + frase;
var resultadoPrimera = document.createElement("p");
resultadoPrimera.innerHTML = "La primera palabra es " + array[0];
var resultadoUltima = document.createElement("p");
resultadoUltima.innerHTML = "La última palabra es " + array[array.length - 1];
var resultadoTotal = document.createElement("p");
resultadoTotal.innerHTML = "La frase tiene " + array.length + " palabras.";
array.sort();
var resultadoOrdenado = document.createElement("p");
resultadoOrdenado.innerHTML = "Las palabras de la frase ordenadas alfabéticamente: " + array;
document.body.appendChild(resultadoFrase);
document.body.appendChild(resultadoPrimera);
document.body.appendChild(resultadoUltima);
document.body.appendChild(resultadoTotal);
document.body.appendChild(resultadoOrdenado);
}
</script>
</head>
<body onload="pedirFrase()">
</body>
</html> |
compsocsite/multipolls/templates/multipolls/add_step1.html | PrefPy/opra | {% extends 'polls/base.html' %}
{% block extra_head %}
<script>
function validateForm() {
var x = document.forms["add_step1"]["mPollTitle"].value;
if (x == null || x == "") {
alert("M-Poll Title must be filled out");
return false;
}
}
</script>
{% endblock %}
{% block content %}
<style>
p.sameline{
display:inline-block;
}
</style>
<div class="col-md-10 col-md-offset-1">
<h2 align="center">Create a New Multi-Poll</h2>
<br/>
<div class="steps" align="center">
<p class="sameline" style="color:grey;">
1. General
<span class="glyphicon glyphicon-chevron-right"> </span>
</p>
<p class="sameline">
2. Polls
<span class="glyphicon glyphicon-chevron-right"> </span>
3. Invite
</p>
</div>
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 33%">
<span class="sr-only">33% Complete</span>
</div>
</div>
<br/>
<form id="add_poll" method="post" action="/multipolls/add_step1/" name="add_step1" onsubmit="return validateForm()">
{% csrf_token %}
<label for="mPollTitle">Title:</label> <small class="text-muted"> * </small><br />
<input type="text" class="form-control" id="mPollTitle" name="mPollTitle" placeholder="At most 20 characters" maxlength="20" size="100" autofocus/>
<br/>
<label for="desc">Multi-poll description:</label> <br />
<textarea type="text" class="form-control" id="desc" name="desc" placeholder="Optional" maxlength="500"></textarea> <br />
<label for="questiontype">Question Type:</label><small class="text-muted"> * </small> <br />
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-default active">
<input type="radio" name="questiontype" value="1" checked>Poll</option>
</label>
<label class="btn btn-default">
<input type="radio" name="questiontype" value="2">Allocation</option>
</label>
</div>
<br /><br />
<label for="n">Number of Polls:</label><small class="text-muted"> * </small> <br />
<input type="number" class="form-control" id="n" name="n" value="2" min="1" max="20"/>
<br /><br />
<div class="col-md-6 col-md-offset-3" align="center">
<input type="submit" value="Next" class="btn btn-primary" size="300"/>
</div>
</form>
</div>
{% endblock %} |
RECURSOS/DOC_YPS/class-CI_DB_mysqli_driver.html | QInfoDev/YPS | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="ApiGen 2.8.0" />
<title>Class CI_DB_mysqli_driver | Yerpa Pro Salud</title>
<script type="text/javascript" src="resources/combined.js?511837083"></script>
<script type="text/javascript" src="elementlist.js?3522704418"></script>
<link rel="stylesheet" type="text/css" media="all" href="resources/style.css?3505392360" />
</head>
<body>
<div id="left">
<div id="menu">
<a href="index.html" title="Overview"><span>Overview</span></a>
<div id="groups">
<h3>Packages</h3>
<ul>
<li><a href="package-CodeIgniter.html">CodeIgniter<span></span></a>
<ul>
<li><a href="package-CodeIgniter.Libraries.html">Libraries</a>
</li>
</ul></li>
<li class="active"><a href="package-None.html">None</a>
</li>
</ul>
</div>
<hr />
<div id="elements">
<h3>Classes</h3>
<ul>
<li><a href="class-Acl.html" class="invalid">Acl</a></li>
<li><a href="class-CI_Benchmark.html" class="invalid">CI_Benchmark</a></li>
<li><a href="class-CI_Cache.html" class="invalid">CI_Cache</a></li>
<li><a href="class-CI_Cache_apc.html" class="invalid">CI_Cache_apc</a></li>
<li><a href="class-CI_Cache_dummy.html" class="invalid">CI_Cache_dummy</a></li>
<li><a href="class-CI_Cache_file.html" class="invalid">CI_Cache_file</a></li>
<li><a href="class-CI_Cache_memcached.html" class="invalid">CI_Cache_memcached</a></li>
<li><a href="class-CI_Calendar.html" class="invalid">CI_Calendar</a></li>
<li><a href="class-CI_Cart.html" class="invalid">CI_Cart</a></li>
<li><a href="class-CI_Config.html" class="invalid">CI_Config</a></li>
<li><a href="class-CI_Controller.html" class="invalid">CI_Controller</a></li>
<li><a href="class-CI_DB_active_record.html" class="invalid">CI_DB_active_record</a></li>
<li><a href="class-CI_DB_Cache.html" class="invalid">CI_DB_Cache</a></li>
<li><a href="class-CI_DB_cubrid_driver.html" class="invalid">CI_DB_cubrid_driver</a></li>
<li><a href="class-CI_DB_cubrid_forge.html" class="invalid">CI_DB_cubrid_forge</a></li>
<li><a href="class-CI_DB_cubrid_result.html" class="invalid">CI_DB_cubrid_result</a></li>
<li><a href="class-CI_DB_cubrid_utility.html" class="invalid">CI_DB_cubrid_utility</a></li>
<li><a href="class-CI_DB_driver.html" class="invalid">CI_DB_driver</a></li>
<li><a href="class-CI_DB_forge.html" class="invalid">CI_DB_forge</a></li>
<li><a href="class-CI_DB_mssql_driver.html" class="invalid">CI_DB_mssql_driver</a></li>
<li><a href="class-CI_DB_mssql_forge.html" class="invalid">CI_DB_mssql_forge</a></li>
<li><a href="class-CI_DB_mssql_result.html" class="invalid">CI_DB_mssql_result</a></li>
<li><a href="class-CI_DB_mssql_utility.html" class="invalid">CI_DB_mssql_utility</a></li>
<li><a href="class-CI_DB_mysql_driver.html" class="invalid">CI_DB_mysql_driver</a></li>
<li><a href="class-CI_DB_mysql_forge.html" class="invalid">CI_DB_mysql_forge</a></li>
<li><a href="class-CI_DB_mysql_result.html" class="invalid">CI_DB_mysql_result</a></li>
<li><a href="class-CI_DB_mysql_utility.html" class="invalid">CI_DB_mysql_utility</a></li>
<li class="active"><a href="class-CI_DB_mysqli_driver.html" class="invalid">CI_DB_mysqli_driver</a></li>
<li><a href="class-CI_DB_mysqli_forge.html" class="invalid">CI_DB_mysqli_forge</a></li>
<li><a href="class-CI_DB_mysqli_result.html" class="invalid">CI_DB_mysqli_result</a></li>
<li><a href="class-CI_DB_mysqli_utility.html" class="invalid">CI_DB_mysqli_utility</a></li>
<li><a href="class-CI_DB_oci8_driver.html" class="invalid">CI_DB_oci8_driver</a></li>
<li><a href="class-CI_DB_oci8_forge.html" class="invalid">CI_DB_oci8_forge</a></li>
<li><a href="class-CI_DB_oci8_result.html" class="invalid">CI_DB_oci8_result</a></li>
<li><a href="class-CI_DB_oci8_utility.html" class="invalid">CI_DB_oci8_utility</a></li>
<li><a href="class-CI_DB_odbc_driver.html" class="invalid">CI_DB_odbc_driver</a></li>
<li><a href="class-CI_DB_odbc_forge.html" class="invalid">CI_DB_odbc_forge</a></li>
<li><a href="class-CI_DB_odbc_result.html" class="invalid">CI_DB_odbc_result</a></li>
<li><a href="class-CI_DB_odbc_utility.html" class="invalid">CI_DB_odbc_utility</a></li>
<li><a href="class-CI_DB_pdo_driver.html" class="invalid">CI_DB_pdo_driver</a></li>
<li><a href="class-CI_DB_pdo_forge.html" class="invalid">CI_DB_pdo_forge</a></li>
<li><a href="class-CI_DB_pdo_result.html" class="invalid">CI_DB_pdo_result</a></li>
<li><a href="class-CI_DB_pdo_utility.html" class="invalid">CI_DB_pdo_utility</a></li>
<li><a href="class-CI_DB_postgre_driver.html" class="invalid">CI_DB_postgre_driver</a></li>
<li><a href="class-CI_DB_postgre_forge.html" class="invalid">CI_DB_postgre_forge</a></li>
<li><a href="class-CI_DB_postgre_result.html" class="invalid">CI_DB_postgre_result</a></li>
<li><a href="class-CI_DB_postgre_utility.html" class="invalid">CI_DB_postgre_utility</a></li>
<li><a href="class-CI_DB_result.html" class="invalid">CI_DB_result</a></li>
<li><a href="class-CI_DB_sqlite_driver.html" class="invalid">CI_DB_sqlite_driver</a></li>
<li><a href="class-CI_DB_sqlite_forge.html" class="invalid">CI_DB_sqlite_forge</a></li>
<li><a href="class-CI_DB_sqlite_result.html" class="invalid">CI_DB_sqlite_result</a></li>
<li><a href="class-CI_DB_sqlite_utility.html" class="invalid">CI_DB_sqlite_utility</a></li>
<li><a href="class-CI_DB_sqlsrv_driver.html" class="invalid">CI_DB_sqlsrv_driver</a></li>
<li><a href="class-CI_DB_sqlsrv_forge.html" class="invalid">CI_DB_sqlsrv_forge</a></li>
<li><a href="class-CI_DB_sqlsrv_result.html" class="invalid">CI_DB_sqlsrv_result</a></li>
<li><a href="class-CI_DB_sqlsrv_utility.html" class="invalid">CI_DB_sqlsrv_utility</a></li>
<li><a href="class-CI_DB_utility.html" class="invalid">CI_DB_utility</a></li>
<li><a href="class-CI_Driver.html" class="invalid">CI_Driver</a></li>
<li><a href="class-CI_Driver_Library.html" class="invalid">CI_Driver_Library</a></li>
<li><a href="class-CI_Email.html" class="invalid">CI_Email</a></li>
<li><a href="class-CI_Encrypt.html" class="invalid">CI_Encrypt</a></li>
<li><a href="class-CI_Exceptions.html" class="invalid">CI_Exceptions</a></li>
<li><a href="class-CI_Form_validation.html" class="invalid">CI_Form_validation</a></li>
<li><a href="class-CI_FTP.html" class="invalid">CI_FTP</a></li>
<li><a href="class-CI_Hooks.html" class="invalid">CI_Hooks</a></li>
<li><a href="class-CI_Image_lib.html" class="invalid">CI_Image_lib</a></li>
<li><a href="class-CI_Input.html" class="invalid">CI_Input</a></li>
<li><a href="class-CI_Javascript.html" class="invalid">CI_Javascript</a></li>
<li><a href="class-CI_Jquery.html" class="invalid">CI_Jquery</a></li>
<li><a href="class-CI_Lang.html" class="invalid">CI_Lang</a></li>
<li><a href="class-CI_Loader.html" class="invalid">CI_Loader</a></li>
<li><a href="class-CI_Log.html" class="invalid">CI_Log</a></li>
<li><a href="class-CI_Migration.html" class="invalid">CI_Migration</a></li>
<li><a href="class-CI_Model.html" class="invalid">CI_Model</a></li>
<li><a href="class-CI_Output.html" class="invalid">CI_Output</a></li>
<li><a href="class-CI_Pagination.html" class="invalid">CI_Pagination</a></li>
<li><a href="class-CI_Parser.html" class="invalid">CI_Parser</a></li>
<li><a href="class-CI_Profiler.html" class="invalid">CI_Profiler</a></li>
<li><a href="class-CI_Router.html" class="invalid">CI_Router</a></li>
<li><a href="class-CI_Security.html" class="invalid">CI_Security</a></li>
<li><a href="class-CI_Session.html" class="invalid">CI_Session</a></li>
<li><a href="class-CI_SHA1.html" class="invalid">CI_SHA1</a></li>
<li><a href="class-CI_Table.html" class="invalid">CI_Table</a></li>
<li><a href="class-CI_Trackback.html" class="invalid">CI_Trackback</a></li>
<li><a href="class-CI_Typography.html" class="invalid">CI_Typography</a></li>
<li><a href="class-CI_Unit_test.html" class="invalid">CI_Unit_test</a></li>
<li><a href="class-CI_Upload.html" class="invalid">CI_Upload</a></li>
<li><a href="class-CI_URI.html" class="invalid">CI_URI</a></li>
<li><a href="class-CI_User_agent.html" class="invalid">CI_User_agent</a></li>
<li><a href="class-CI_Utf8.html" class="invalid">CI_Utf8</a></li>
<li><a href="class-CI_Xmlrpc.html" class="invalid">CI_Xmlrpc</a></li>
<li><a href="class-CI_Xmlrpcs.html" class="invalid">CI_Xmlrpcs</a></li>
<li><a href="class-CI_Zip.html" class="invalid">CI_Zip</a></li>
<li><a href="class-CMS_Controller.html">CMS_Controller</a></li>
<li><a href="class-Language.html" class="invalid">Language</a></li>
<li><a href="class-Login.html">Login</a></li>
<li><a href="class-Template.html" class="invalid">Template</a></li>
<li><a href="class-Test_model.html">Test_model</a></li>
<li><a href="class-User.html" class="invalid">User</a></li>
<li><a href="class-Welcome.html" class="invalid">Welcome</a></li>
<li><a href="class-XML_RPC_Client.html" class="invalid">XML_RPC_Client</a></li>
<li><a href="class-XML_RPC_Message.html" class="invalid">XML_RPC_Message</a></li>
<li><a href="class-XML_RPC_Response.html" class="invalid">XML_RPC_Response</a></li>
<li><a href="class-XML_RPC_Values.html" class="invalid">XML_RPC_Values</a></li>
<li><a href="class-YPS_Controller.html">YPS_Controller</a></li>
</ul>
<h3>Functions</h3>
<ul>
<li><a href="function-_attributes_to_string.html" class="invalid">_attributes_to_string</a></li>
<li><a href="function-_exception_handler.html" class="invalid">_exception_handler</a></li>
<li><a href="function-_get_smiley_array.html" class="invalid">_get_smiley_array</a></li>
<li><a href="function-_get_validation_object.html" class="invalid">_get_validation_object</a></li>
<li><a href="function-_list.html" class="invalid">_list</a></li>
<li><a href="function-_parse_attributes.html" class="invalid">_parse_attributes</a></li>
<li><a href="function-_parse_form_attributes.html" class="invalid">_parse_form_attributes</a></li>
<li><a href="function-alternator.html" class="invalid">alternator</a></li>
<li><a href="function-anchor.html" class="invalid">anchor</a></li>
<li><a href="function-anchor_popup.html" class="invalid">anchor_popup</a></li>
<li><a href="function-ascii_to_entities.html" class="invalid">ascii_to_entities</a></li>
<li><a href="function-auto_link.html" class="invalid">auto_link</a></li>
<li><a href="function-auto_typography.html" class="invalid">auto_typography</a></li>
<li><a href="function-base_url.html" class="invalid">base_url</a></li>
<li><a href="function-br.html" class="invalid">br</a></li>
<li><a href="function-byte_format.html" class="invalid">byte_format</a></li>
<li><a href="function-camelize.html" class="invalid">camelize</a></li>
<li><a href="function-character_limiter.html" class="invalid">character_limiter</a></li>
<li><a href="function-config_item.html" class="invalid">config_item</a></li>
<li><a href="function-convert_accented_characters.html" class="invalid">convert_accented_characters</a></li>
<li><a href="function-create_captcha.html" class="invalid">create_captcha</a></li>
<li><a href="function-current_url.html" class="invalid">current_url</a></li>
<li><a href="function-days_in_month.html" class="invalid">days_in_month</a></li>
<li><a href="function-DB.html" class="invalid">DB</a></li>
<li><a href="function-delete_cookie.html" class="invalid">delete_cookie</a></li>
<li><a href="function-delete_files.html" class="invalid">delete_files</a></li>
<li><a href="function-directory_map.html" class="invalid">directory_map</a></li>
<li><a href="function-do_hash.html" class="invalid">do_hash</a></li>
<li><a href="function-doctype.html" class="invalid">doctype</a></li>
<li><a href="function-element.html" class="invalid">element</a></li>
<li><a href="function-elements.html" class="invalid">elements</a></li>
<li><a href="function-ellipsize.html" class="invalid">ellipsize</a></li>
<li><a href="function-encode_php_tags.html" class="invalid">encode_php_tags</a></li>
<li><a href="function-entities_to_ascii.html" class="invalid">entities_to_ascii</a></li>
<li><a href="function-entity_decode.html" class="invalid">entity_decode</a></li>
<li><a href="function-force_download.html" class="invalid">force_download</a></li>
<li><a href="function-form_button.html" class="invalid">form_button</a></li>
<li><a href="function-form_checkbox.html" class="invalid">form_checkbox</a></li>
<li><a href="function-form_close.html" class="invalid">form_close</a></li>
<li><a href="function-form_dropdown.html" class="invalid">form_dropdown</a></li>
<li><a href="function-form_error.html" class="invalid">form_error</a></li>
<li><a href="function-form_fieldset.html" class="invalid">form_fieldset</a></li>
<li><a href="function-form_fieldset_close.html" class="invalid">form_fieldset_close</a></li>
<li><a href="function-form_hidden.html" class="invalid">form_hidden</a></li>
<li><a href="function-form_input.html" class="invalid">form_input</a></li>
<li><a href="function-form_label.html" class="invalid">form_label</a></li>
<li><a href="function-form_multiselect.html" class="invalid">form_multiselect</a></li>
<li><a href="function-form_open.html" class="invalid">form_open</a></li>
<li><a href="function-form_open_multipart.html" class="invalid">form_open_multipart</a></li>
<li><a href="function-form_password.html" class="invalid">form_password</a></li>
<li><a href="function-form_prep.html" class="invalid">form_prep</a></li>
<li><a href="function-form_radio.html" class="invalid">form_radio</a></li>
<li><a href="function-form_reset.html" class="invalid">form_reset</a></li>
<li><a href="function-form_submit.html" class="invalid">form_submit</a></li>
<li><a href="function-form_textarea.html" class="invalid">form_textarea</a></li>
<li><a href="function-form_upload.html" class="invalid">form_upload</a></li>
<li><a href="function-get_clickable_smileys.html" class="invalid">get_clickable_smileys</a></li>
<li><a href="function-get_config.html" class="invalid">get_config</a></li>
<li><a href="function-get_cookie.html" class="invalid">get_cookie</a></li>
<li><a href="function-get_dir_file_info.html" class="invalid">get_dir_file_info</a></li>
<li><a href="function-get_file_info.html" class="invalid">get_file_info</a></li>
<li><a href="function-get_filenames.html" class="invalid">get_filenames</a></li>
<li><a href="function-get_instance.html" class="invalid">get_instance</a></li>
<li><a href="function-get_mime_by_extension.html" class="invalid">get_mime_by_extension</a></li>
<li><a href="function-gmt_to_local.html" class="invalid">gmt_to_local</a></li>
<li><a href="function-heading.html" class="invalid">heading</a></li>
<li><a href="function-highlight_code.html" class="invalid">highlight_code</a></li>
<li><a href="function-highlight_phrase.html" class="invalid">highlight_phrase</a></li>
<li><a href="function-html_escape.html" class="invalid">html_escape</a></li>
<li><a href="function-human_to_unix.html" class="invalid">human_to_unix</a></li>
<li><a href="function-humanize.html" class="invalid">humanize</a></li>
<li><a href="function-img.html" class="invalid">img</a></li>
<li><a href="function-increment_string.html" class="invalid">increment_string</a></li>
<li><a href="function-index_page.html" class="invalid">index_page</a></li>
<li><a href="function-is_false.html" class="invalid">is_false</a></li>
<li><a href="function-is_loaded.html" class="invalid">is_loaded</a></li>
<li><a href="function-is_php.html" class="invalid">is_php</a></li>
<li><a href="function-is_really_writable.html" class="invalid">is_really_writable</a></li>
<li><a href="function-is_true.html" class="invalid">is_true</a></li>
<li><a href="function-js_insert_smiley.html" class="invalid">js_insert_smiley</a></li>
<li><a href="function-lang.html" class="invalid">lang</a></li>
<li><a href="function-link_tag.html" class="invalid">link_tag</a></li>
<li><a href="function-load_class.html" class="invalid">load_class</a></li>
<li><a href="function-local_to_gmt.html" class="invalid">local_to_gmt</a></li>
<li><a href="function-log_message.html" class="invalid">log_message</a></li>
<li><a href="function-mailto.html" class="invalid">mailto</a></li>
<li><a href="function-mdate.html" class="invalid">mdate</a></li>
<li><a href="function-meta.html" class="invalid">meta</a></li>
<li><a href="function-mysql_to_unix.html" class="invalid">mysql_to_unix</a></li>
<li><a href="function-nbs.html" class="invalid">nbs</a></li>
<li><a href="function-nl2br_except_pre.html" class="invalid">nl2br_except_pre</a></li>
<li><a href="function-now.html" class="invalid">now</a></li>
<li><a href="function-octal_permissions.html" class="invalid">octal_permissions</a></li>
<li><a href="function-ol.html" class="invalid">ol</a></li>
<li><a href="function-parse_smileys.html" class="invalid">parse_smileys</a></li>
<li><a href="function-plural.html" class="invalid">plural</a></li>
<li><a href="function-prep_url.html" class="invalid">prep_url</a></li>
<li><a href="function-quotes_to_entities.html" class="invalid">quotes_to_entities</a></li>
<li><a href="function-random_element.html" class="invalid">random_element</a></li>
<li><a href="function-random_string.html" class="invalid">random_string</a></li>
<li><a href="function-read_file.html" class="invalid">read_file</a></li>
<li><a href="function-redirect.html" class="invalid">redirect</a></li>
<li><a href="function-reduce_double_slashes.html" class="invalid">reduce_double_slashes</a></li>
<li><a href="function-reduce_multiples.html" class="invalid">reduce_multiples</a></li>
<li><a href="function-remove_invisible_characters.html" class="invalid">remove_invisible_characters</a></li>
<li><a href="function-repeater.html" class="invalid">repeater</a></li>
<li><a href="function-safe_mailto.html" class="invalid">safe_mailto</a></li>
<li><a href="function-sanitize_filename.html" class="invalid">sanitize_filename</a></li>
<li><a href="function-send_email.html" class="invalid">send_email</a></li>
<li><a href="function-set_checkbox.html" class="invalid">set_checkbox</a></li>
<li><a href="function-set_cookie.html" class="invalid">set_cookie</a></li>
<li><a href="function-set_radio.html" class="invalid">set_radio</a></li>
<li><a href="function-set_realpath.html" class="invalid">set_realpath</a></li>
<li><a href="function-set_select.html" class="invalid">set_select</a></li>
<li><a href="function-set_status_header.html" class="invalid">set_status_header</a></li>
<li><a href="function-set_value.html" class="invalid">set_value</a></li>
<li><a href="function-show_404.html" class="invalid">show_404</a></li>
<li><a href="function-show_error.html" class="invalid">show_error</a></li>
<li><a href="function-singular.html" class="invalid">singular</a></li>
<li><a href="function-site_url.html" class="invalid">site_url</a></li>
<li><a href="function-smiley_js.html" class="invalid">smiley_js</a></li>
<li><a href="function-standard_date.html" class="invalid">standard_date</a></li>
<li><a href="function-strip_image_tags.html" class="invalid">strip_image_tags</a></li>
<li><a href="function-strip_quotes.html" class="invalid">strip_quotes</a></li>
<li><a href="function-strip_slashes.html" class="invalid">strip_slashes</a></li>
<li><a href="function-symbolic_permissions.html" class="invalid">symbolic_permissions</a></li>
<li><a href="function-timespan.html" class="invalid">timespan</a></li>
<li><a href="function-timezone_menu.html" class="invalid">timezone_menu</a></li>
<li><a href="function-timezones.html" class="invalid">timezones</a></li>
<li><a href="function-trim_slashes.html" class="invalid">trim_slashes</a></li>
<li><a href="function-ul.html" class="invalid">ul</a></li>
<li><a href="function-underscore.html" class="invalid">underscore</a></li>
<li><a href="function-unix_to_human.html" class="invalid">unix_to_human</a></li>
<li><a href="function-uri_string.html" class="invalid">uri_string</a></li>
<li><a href="function-url_title.html" class="invalid">url_title</a></li>
<li><a href="function-valid_email.html" class="invalid">valid_email</a></li>
<li><a href="function-validation_errors.html" class="invalid">validation_errors</a></li>
<li><a href="function-word_censor.html" class="invalid">word_censor</a></li>
<li><a href="function-word_limiter.html" class="invalid">word_limiter</a></li>
<li><a href="function-word_wrap.html" class="invalid">word_wrap</a></li>
<li><a href="function-write_file.html" class="invalid">write_file</a></li>
<li><a href="function-xml_convert.html" class="invalid">xml_convert</a></li>
<li><a href="function-xss_clean.html" class="invalid">xss_clean</a></li>
</ul>
</div>
</div>
</div>
<div id="splitter"></div>
<div id="right">
<div id="rightInner">
<form id="search">
<input type="hidden" name="cx" value="" />
<input type="hidden" name="ie" value="UTF-8" />
<input type="text" name="q" class="text" />
<input type="submit" value="Search" />
</form>
<div id="navigation">
<ul>
<li>
<a href="index.html" title="Overview"><span>Overview</span></a>
</li>
<li>
<a href="package-None.html" title="Summary of None"><span>Package</span></a>
</li>
<li class="active">
<span>Class</span> </li>
</ul>
<ul>
<li>
<a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a>
</li>
</ul>
<ul>
</ul>
</div>
<div id="content" class="class">
<h1>Class CI_DB_mysqli_driver</h1>
<div class="invalid">
<p>
Documentation of this class could not be generated.
</p>
<p>
Class was originally declared in RECURSOS/ci_cms/system/database/drivers/mysqli/mysqli_driver.php and is invalid because of:
</p>
<ul>
<li>Class was redeclared in system/database/drivers/mysqli/mysqli_driver.php.</li>
</ul>
</div>
</div>
<div id="footer">
Yerpa Pro Salud API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a>
</div>
</div>
</div>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.