code stringlengths 2 1.05M | repo_name stringlengths 5 101 | path stringlengths 4 991 | language stringclasses 3 values | license stringclasses 5 values | size int64 2 1.05M |
|---|---|---|---|---|---|
<!DOCTYPE html>
<html>
<head>
<script src="resources/link-highlight-helper.js"></script>
<link rel="stylesheet" type="text/css" href="resources/link-highlight-style.css">
<script src="../../resources/js-test.js"></script>
</head>
<body onload="runTest();">
<div id="container" style="position: absolute; left: 40px; top: 80px;">
<div style="transform: scaleY(2.5);">
<a href="" id="link1">Link 1</a></br>
<a href="" class="activeLink" href="" id="targetLink">Target Link.</a><br>
<a href="" id="link2">Link 2</a>
</div>
</div>
</div>
<div style="position: relative; left: 10px; top: 200px; transform: translateZ(0);">
This test is successful if "Target Link" above is covered in a green rectangle with square corners.
</div>
<script>
function runTest() {
var link = document.getElementById('targetLink');
var highlight = createCompositedHighlight(link);
var clientRect = link.getBoundingClientRect();
highlight.style.height = clientRect.height + "px";
highlight.style.width = clientRect.width + "px";
highlight.style.top = clientRect.top + "px";
highlight.style.left = clientRect.left + "px";
if (window.testRunner)
testRunner.dumpAsTextWithPixelResults();
}
</script>
</script>
</body>
</html>
| axinging/chromium-crosswalk | third_party/WebKit/LayoutTests/compositing/gestures/gesture-tapHighlight-simple-scaledY-expected.html | HTML | bsd-3-clause | 1,259 |
<!DOCTYPE html>
<html>
<head>
<script src="/js-test-resources/js-test.js"></script>
<script src="/security/contentSecurityPolicy/resources/child-src-test.js"></script>
<meta http-equiv="Content-Security-Policy" content="child-src 'self';">
</head>
<body>
<script>
description("Workers should be governed by 'child-src'.");
injectWorker("/security/contentSecurityPolicy/resources/alert-pass.js", EXPECT_LOAD);
</script>
</body>
</html>
| wuhengzhi/chromium-crosswalk | third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/child-src/worker-allowed.html | HTML | bsd-3-clause | 471 |
<!DOCTYPE html>
<html>
<head>
<title>MathJax Dynamic Math Test Page</title>
<!-- Copyright (c) 2010-2015 The MathJax Consortium -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<style>
input {margin-top: .7em}
.output {
border: 1px solid black;
padding: 1em;
width: auto;
position: absolute; top: 0; left: 2em;
min-width: 20em;
}
.box {position: relative}
</style>
</head>
<body>
<script>
//
// Use a closure to hide the local variables from the
// global namespace
//
(function () {
var QUEUE = MathJax.Hub.queue; // shorthand for the queue
var math = null, box = null; // the element jax for the math output, and the box it's in
//
// Hide and show the box (so it doesn't flicker as much)
//
var HIDEBOX = function () {box.style.visibility = "hidden"}
var SHOWBOX = function () {box.style.visibility = "visible"}
//
// Get the element jax when MathJax has produced it.
//
QUEUE.Push(function () {
math = MathJax.Hub.getAllJax("MathOutput")[0];
box = document.getElementById("box");
SHOWBOX(); // box is initially hidden so the braces don't show
});
//
// The onchange event handler that typesets the math entered
// by the user. Hide the box, then typeset, then show it again
// so we don't see a flash as the math is cleared and replaced.
//
window.UpdateMath = function (TeX) {
QUEUE.Push(
HIDEBOX,
["resetEquationNumbers",MathJax.InputJax.TeX],
["Text",math,"\\displaystyle{"+TeX+"}"],
SHOWBOX
);
}
})();
</script>
<p>
Type some \(\rm\TeX\) code and press RETURN:<br />
<input id="MathInput" size="80" onchange="UpdateMath(this.value)" />
</p>
<p>You typed:</p>
<div class="box" id="box" style="visibility:hidden">
<div id="MathOutput" class="output">$${}$$</div>
</div>
<script>
//
// IE doesn't fire onchange events for RETURN, so
// use onkeypress to do a blur (and refocus) to
// force the onchange to occur
//
if (MathJax.Hub.Browser.isMSIE) {
MathInput.onkeypress = function () {
if (window.event && window.event.keyCode === 13) {this.blur(); this.focus()}
}
}
</script>
</body>
</html>
| pmq20/mathjax-rails | vendor/mathjax/test/sample-dynamic.html | HTML | mit | 2,462 |
<!DOCTYPE html>
<script>
function test()
{
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.dumpNavigationPolicy();
testRunner.evaluateScriptInIsolatedWorld(1,
"window.addEventListener('keydown', function(event) {" +
" var mouseEvent = new MouseEvent('click', { ctrlKey: true, metaKey: true });" +
// event.code is something like Digit1, so code[5] gives the number.
" var link = document.getElementById('link' + event.code[5]);" +
" link.dispatchEvent(mouseEvent);" +
"});");
eventSender.keyDown("1");
eventSender.keyDown("2");
}
}
</script>
<body onload="test()">
<p>Tests that adding a ctrl modifier to a click on a link from an isolated world triggers a background tab.</p>
<a href="blank" id="link1">link</a>
<a href="blank2" id="link2" target="_blank">link</a>
</body>
| scheib/chromium | third_party/blink/web_tests/fast/events/isolated-worlds-override-keystate.html | HTML | bsd-3-clause | 916 |
<!DOCTYPE html>
<html>
<head>
<script src="../../../resources/js-test.js"></script>
<script src="../resources/common.js"></script>
<script src="../resources/ec-cloneKey.js"></script>
</head>
<body>
<script>
description('Tests structured cloning of ECDSA keys');
jsTestIsAsync = true;
function testClonePublicKeys()
{
return testCloneEcPublicKeys('ECDSA', [[],['verify']]);
}
function testClonePrivateKeys()
{
return testCloneEcPrivateKeys('ECDSA', [['sign']])
}
testClonePublicKeys().then(testClonePrivateKeys).then(finishJSTest, failAndFinishJSTest);
</script>
</body>
</html>
| chromium/chromium | third_party/blink/web_tests/crypto/subtle/ecdsa/cloneKey.html | HTML | bsd-3-clause | 590 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>direction: div direction ltr</title>
<link rel="author" title="Richard Ishida" href='mailto:ishida@w3.org'/>
<style type="text/css">
.test { direction: ltr; }
/* the following styles are not part of the test */
.test, .ref { font-size: 150%; border: 1px solid orange; margin: 10px; width: 10em; padding: 5px; clear: both; }
input { margin: 5px; }
@font-face {
font-family: 'ezra_silregular';
src: url('support/sileot-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
.test, .ref { font-family: ezra_silregular, serif; }
</style>
</head>
<body>
<p class="instructions" dir="ltr">Test passes if the two boxes are identical.</p>
<!--Notes:
Key to entities used below:
א ... ו - The first six Hebrew letters (strongly RTL).
‭ - The LRO (left-to-right-override) formatting character.
‬ - The PDF (pop directional formatting) formatting character; closes LRO.
-->
<div dir="rtl">
<div class="ref" dir="ltr">‭> a > ב > c >‬</div>
<div class="ref" dir="ltr">‭> a > ב > c >‬</div>
</div>
</body></html> | danakj/chromium | third_party/WebKit/LayoutTests/imported/csswg-test/css-writing-modes-3/block-embed-002-expected.html | HTML | bsd-3-clause | 1,235 |
<!DOCTYPE html>
<style>
#container {
overflow: scroll;
width: 400px;
height: 300px;
}
#clipping {
height: 1000px;
}
#clipped {
height: 10px;
border: solid 1px black;
}
</style>
<div id="container">
<div id="clipping">
<div>Lorem ipsum</div>
<div id="clipped"></div>
</div>
</div>
<script>
document.getElementById('container').scrollTop = 1000;
</script>
| scheib/chromium | third_party/blink/web_tests/fast/scrolling/non-composited-scrolling-repaint-to-ancestor-backing-expected.html | HTML | bsd-3-clause | 408 |
<!doctype html>
<html lang="en">
<head>
<title>jCarousel Test</title>
<!--
jQuery
-->
<script type="text/javascript" src="../../libs/jquery-loader.js"></script>
<!--
jCarousel core
-->
<script type="text/javascript" src="../../src/core.js"></script>
<script type="text/javascript" src="../../src/core_plugin.js"></script>
<!--
jCarousel stylesheet
-->
<link rel="stylesheet" type="text/css" href="../horizontal.css">
<link rel="stylesheet" type="text/css" href="../vertical.css">
<style type="text/css">
#jcarousel2 ul {
left: -150px;
}
</style>
<script type="text/javascript">
$(function() {
$('#jcarousel1')
.on('jcarousel:createend', function() {
$(this).jcarousel('scroll', 2, false);
})
.jcarousel();
$('#jcarousel2')
.jcarousel();
$('#jcarousel3')
.on('jcarousel:createend', function() {
$(this).jcarousel('scroll', 8, false);
})
.jcarousel({
wrap: 'circular'
});
});
</script>
</head>
<body>
<h2>start: Event</h2>
<div class="jcarousel-skin-default">
<div class="jcarousel" id="jcarousel1">
<ul>
<li><img src="http://static.flickr.com/66/199481236_dc98b5abb3_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/75/199481072_b4a0d09597_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/57/199481087_33ae73a8de_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/77/199481108_4359e6b971_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/58/199481143_3c148d9dd3_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/72/199481203_ad4cdcf109_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/58/199481218_264ce20da0_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/69/199481255_fdfe885f87_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/60/199480111_87d4cb3e38_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/70/229228324_08223b70fa_s.jpg" width="75" height="75" alt=""></li>
</ul>
</div>
<a href="#" onclick="$('#jcarousel1').jcarousel('scroll', '-=1'); return false;">Prev (1)</a>
<a href="#" onclick="$('#jcarousel1').jcarousel('scroll', '+=1'); return false;">Next (1)</a>
|
<a href="#" onclick="$('#jcarousel1').jcarousel('scroll', '-=2'); return false;">Prev (2)</a>
<a href="#" onclick="$('#jcarousel1').jcarousel('scroll', '+=2'); return false;">Next (2)</a>
|
<a href="#" onclick="$('#jcarousel1').jcarousel('scroll', '-=5'); return false;">Prev (5)</a>
<a href="#" onclick="$('#jcarousel1').jcarousel('scroll', '+=5'); return false;">Next (5)</a>
|
<a href="#" onclick="$('#jcarousel1').jcarousel('scroll', '-=10'); return false;">Prev (10)</a>
<a href="#" onclick="$('#jcarousel1').jcarousel('scroll', '+=10'); return false;">Next (10)</a>
|
<a href="#" onclick="$('#jcarousel1').jcarousel('scroll', '-=20'); return false;">Prev (20)</a>
<a href="#" onclick="$('#jcarousel1').jcarousel('scroll', '+=20'); return false;">Next (20)</a>
</div>
<h2>start: CSS</h2>
<div class="jcarousel-skin-default">
<div class="jcarousel" id="jcarousel2">
<ul>
<li><img src="http://static.flickr.com/66/199481236_dc98b5abb3_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/75/199481072_b4a0d09597_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/57/199481087_33ae73a8de_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/77/199481108_4359e6b971_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/58/199481143_3c148d9dd3_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/72/199481203_ad4cdcf109_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/58/199481218_264ce20da0_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/69/199481255_fdfe885f87_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/60/199480111_87d4cb3e38_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/70/229228324_08223b70fa_s.jpg" width="75" height="75" alt=""></li>
</ul>
</div>
<a href="#" onclick="$('#jcarousel2').jcarousel('scroll', '-=1'); return false;">Prev (1)</a>
<a href="#" onclick="$('#jcarousel2').jcarousel('scroll', '+=1'); return false;">Next (1)</a>
|
<a href="#" onclick="$('#jcarousel2').jcarousel('scroll', '-=2'); return false;">Prev (2)</a>
<a href="#" onclick="$('#jcarousel2').jcarousel('scroll', '+=2'); return false;">Next (2)</a>
|
<a href="#" onclick="$('#jcarousel2').jcarousel('scroll', '-=5'); return false;">Prev (5)</a>
<a href="#" onclick="$('#jcarousel2').jcarousel('scroll', '+=5'); return false;">Next (5)</a>
|
<a href="#" onclick="$('#jcarousel2').jcarousel('scroll', '-=10'); return false;">Prev (10)</a>
<a href="#" onclick="$('#jcarousel2').jcarousel('scroll', '+=10'); return false;">Next (10)</a>
|
<a href="#" onclick="$('#jcarousel2').jcarousel('scroll', '-=20'); return false;">Prev (20)</a>
<a href="#" onclick="$('#jcarousel2').jcarousel('scroll', '+=20'); return false;">Next (20)</a>
</div>
<h2>start: Event/Circular</h2>
<div class="jcarousel-skin-default">
<div class="jcarousel" id="jcarousel3">
<ul>
<li><img src="http://static.flickr.com/66/199481236_dc98b5abb3_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/75/199481072_b4a0d09597_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/57/199481087_33ae73a8de_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/77/199481108_4359e6b971_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/58/199481143_3c148d9dd3_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/72/199481203_ad4cdcf109_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/58/199481218_264ce20da0_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/69/199481255_fdfe885f87_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/60/199480111_87d4cb3e38_s.jpg" width="75" height="75" alt=""></li>
<li><img src="http://static.flickr.com/70/229228324_08223b70fa_s.jpg" width="75" height="75" alt=""></li>
</ul>
</div>
<a href="#" onclick="$('#jcarousel3').jcarousel('scroll', '-=1'); return false;">Prev (1)</a>
<a href="#" onclick="$('#jcarousel3').jcarousel('scroll', '+=1'); return false;">Next (1)</a>
|
<a href="#" onclick="$('#jcarousel3').jcarousel('scroll', '-=2'); return false;">Prev (2)</a>
<a href="#" onclick="$('#jcarousel3').jcarousel('scroll', '+=2'); return false;">Next (2)</a>
|
<a href="#" onclick="$('#jcarousel3').jcarousel('scroll', '-=5'); return false;">Prev (5)</a>
<a href="#" onclick="$('#jcarousel3').jcarousel('scroll', '+=5'); return false;">Next (5)</a>
|
<a href="#" onclick="$('#jcarousel3').jcarousel('scroll', '-=10'); return false;">Prev (10)</a>
<a href="#" onclick="$('#jcarousel3').jcarousel('scroll', '+=10'); return false;">Next (10)</a>
|
<a href="#" onclick="$('#jcarousel3').jcarousel('scroll', '-=20'); return false;">Prev (20)</a>
<a href="#" onclick="$('#jcarousel3').jcarousel('scroll', '+=20'); return false;">Next (20)</a>
</div>
<p>
<a href="#" onclick="$('html').attr('dir', 'rtl'); $('.jcarousel').jcarousel('reload'); return false;">RTL</a>
<a href="#" onclick="$('html').attr('dir', 'ltr'); $('.jcarousel').jcarousel('reload'); return false;">LTR</a>
|
<a href="#" onclick="$('.jcarousel').addClass('jcarousel-vertical').jcarousel('reload'); return false;">Vertical</a>
<a href="#" onclick="$('.jcarousel').removeClass('jcarousel-vertical').jcarousel('reload'); return false;">Horizontal</a>
</p>
</body>
</html>
| margaritis/jcarousel | test/functional/start.html | HTML | mit | 8,989 |
<!DOCTYPE html>
<script>
var test_files = [ '../resources/tests10.dat' ]
</script>
<script src="../../resources/dump-as-markup.js"></script>
<script>window.forceDataURLs = true;</script>
<script src="../resources/runner.js"></script>
| scheib/chromium | third_party/blink/web_tests/html5lib/generated/run-tests10-data.html | HTML | bsd-3-clause | 234 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html lang="en">
<head>
<title>Margin Collapsing: floats (block-inside-inline version)</title>
<style type="text/css">
div.test { background: green; float: left; }
div.test div { background: red; margin: 5em 2.5em; }
div.control { height: 5em; width: 5em; margin: 0 0 -5em 0; background: red; }
</style>
</head>
<body>
<p>This page should have one square green block and no red.</p>
<div class="control"></div>
<div class="test">
<span><div></div></span>
</div>
</body>
</html>
| nwjs/chromium.src | third_party/blink/web_tests/fast/block/margin-collapse/block-inside-inline/004.html | HTML | bsd-3-clause | 558 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<body onload=
"document.getElementsByTagName('td')[1].setAttribute('COLSPAN','3');
document.getElementsByTagName('td')[1].setAttribute('ROWSPAN','2');">
<table BORDER CELLSPACING=2 CELLPADDING=2 >
<tbody>
<tr>
<td>1</td>
<td COLSPAN="2">colspan 3 rowspan 2</td>
<td >3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
</tr>
<tr>
<td>9</td>
<td>10</td>
<td>11</td>
<td>12</td>
<td>13</td>
</tr>
</tbody>
</table>
</body>
</html>
| nwjs/chromium.src | third_party/blink/web_tests/tables/mozilla/bugs/bug22246-3.html | HTML | bsd-3-clause | 576 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0">
<title>DataTables example - Ajax data source (objects)</title>
<link rel="stylesheet" type="text/css" href="../../media/css/jquery.dataTables.css">
<link rel="stylesheet" type="text/css" href="../resources/syntax/shCore.css">
<link rel="stylesheet" type="text/css" href="../resources/demo.css">
<style type="text/css" class="init">
</style>
<script type="text/javascript" language="javascript" src="../../media/js/jquery.js"></script>
<script type="text/javascript" language="javascript" src="../../media/js/jquery.dataTables.js"></script>
<script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js"></script>
<script type="text/javascript" language="javascript" src="../resources/demo.js"></script>
<script type="text/javascript" language="javascript" class="init">
$(document).ready(function() {
$('#example').dataTable( {
"ajax": "data/objects.txt",
"columns": [
{ "data": "name" },
{ "data": "position" },
{ "data": "office" },
{ "data": "extn" },
{ "data": "start_date" },
{ "data": "salary" }
]
} );
} );
</script>
</head>
<body class="dt-example">
<div class="container">
<section>
<h1>DataTables example <span>Ajax data source (objects)</span></h1>
<div class="info">
<p>To try and make life easy, by default, DataTables expects arrays to be used as the data source for
rows in the table. However, this isn't always useful, and you may wish to have DataTables use objects
as the data source for each row (i.e. each row has its data described by an object) as this can make
working with the data much more understandable, particularly if you are using the API and you don't
need to keep track of array indexes.</p>
<p>This can be done quite simply by using the <a href=
"//datatables.net/reference/option/columns.data"><code class="option" title=
"DataTables initialisation option">columns.data<span>DT</span></code></a> option which you use to tell
DataTables which property to use from the data source object for each column.</p>
<p>In this example the Ajax source returns an array of objects, which DataTables uses to display the
table. The structure of the row's data source in this example is:</p>
<pre>
<code class="multiline">{
"name": "Tiger Nixon",
"position": "System Architect",
"salary": "$3,120",
"start_date": "2011/04/25",
"office": "Edinburgh",
"extn": "5421"
}
</code>
</pre>
</div>
<table id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Extn.</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Extn.</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</tfoot>
</table>
<ul class="tabs">
<li class="active">Javascript</li>
<li>HTML</li>
<li>CSS</li>
<li>Ajax</li>
<li>Server-side script</li>
</ul>
<div class="tabs">
<div class="js">
<p>The Javascript shown below is used to initialise the table shown in this
example:</p><code class="multiline brush: js;">$(document).ready(function() {
$('#example').dataTable( {
"ajax": "data/objects.txt",
"columns": [
{ "data": "name" },
{ "data": "position" },
{ "data": "office" },
{ "data": "extn" },
{ "data": "start_date" },
{ "data": "salary" }
]
} );
} );</code>
<p>In addition to the above code, the following Javascript library files are loaded for use in this
example:</p>
<ul>
<li><a href="../../media/js/jquery.js">../../media/js/jquery.js</a></li>
<li><a href="../../media/js/jquery.dataTables.js">../../media/js/jquery.dataTables.js</a></li>
</ul>
</div>
<div class="table">
<p>The HTML shown below is the raw HTML table element, before it has been enhanced by
DataTables:</p>
</div>
<div class="css">
<div>
<p>This example uses a little bit of additional CSS beyond what is loaded from the library
files (below), in order to correctly display the table. The additional CSS used is shown
below:</p><code class="multiline brush: js;"></code>
</div>
<p>The following CSS library files are loaded for use in this example to provide the styling of the
table:</p>
<ul>
<li><a href=
"../../media/css/jquery.dataTables.css">../../media/css/jquery.dataTables.css</a></li>
</ul>
</div>
<div class="ajax">
<p>This table loads data by Ajax. The latest data that has been loaded is shown below. This data
will update automatically as any additional data is loaded.</p>
</div>
<div class="php">
<p>The script used to perform the server-side processing for this table is shown below. Please note
that this is just an example script using PHP. Server-side processing scripts can be written in any
language, using <a href="//datatables.net/manual/server-side">the protocol described in the
DataTables documentation</a>.</p>
</div>
</div>
</section>
</div>
<section>
<div class="footer">
<div class="gradient"></div>
<div class="liner">
<h2>Other examples</h2>
<div class="toc">
<div class="toc-group">
<h3><a href="../basic_init/index.html">Basic initialisation</a></h3>
<ul class="toc">
<li><a href="../basic_init/zero_configuration.html">Zero configuration</a></li>
<li><a href="../basic_init/filter_only.html">Feature enable / disable</a></li>
<li><a href="../basic_init/table_sorting.html">Default ordering (sorting)</a></li>
<li><a href="../basic_init/multi_col_sort.html">Multi-column ordering</a></li>
<li><a href="../basic_init/multiple_tables.html">Multiple tables</a></li>
<li><a href="../basic_init/hidden_columns.html">Hidden columns</a></li>
<li><a href="../basic_init/complex_header.html">Complex headers (rowspan and
colspan)</a></li>
<li><a href="../basic_init/dom.html">DOM positioning</a></li>
<li><a href="../basic_init/flexible_width.html">Flexible table width</a></li>
<li><a href="../basic_init/state_save.html">State saving</a></li>
<li><a href="../basic_init/alt_pagination.html">Alternative pagination</a></li>
<li><a href="../basic_init/scroll_y.html">Scroll - vertical</a></li>
<li><a href="../basic_init/scroll_x.html">Scroll - horizontal</a></li>
<li><a href="../basic_init/scroll_xy.html">Scroll - horizontal and vertical</a></li>
<li><a href="../basic_init/scroll_y_theme.html">Scroll - vertical with jQuery UI
ThemeRoller</a></li>
<li><a href="../basic_init/comma-decimal.html">Language - Comma decimal place</a></li>
<li><a href="../basic_init/language.html">Language options</a></li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../advanced_init/index.html">Advanced initialisation</a></h3>
<ul class="toc">
<li><a href="../advanced_init/events_live.html">DOM / jQuery events</a></li>
<li><a href="../advanced_init/dt_events.html">DataTables events</a></li>
<li><a href="../advanced_init/column_render.html">Column rendering</a></li>
<li><a href="../advanced_init/length_menu.html">Page length options</a></li>
<li><a href="../advanced_init/dom_multiple_elements.html">Multiple table control
elements</a></li>
<li><a href="../advanced_init/complex_header.html">Complex headers (rowspan /
colspan)</a></li>
<li><a href="../advanced_init/html5-data-attributes.html">HTML5 data-* attributes</a></li>
<li><a href="../advanced_init/language_file.html">Language file</a></li>
<li><a href="../advanced_init/defaults.html">Setting defaults</a></li>
<li><a href="../advanced_init/row_callback.html">Row created callback</a></li>
<li><a href="../advanced_init/row_grouping.html">Row grouping</a></li>
<li><a href="../advanced_init/footer_callback.html">Footer callback</a></li>
<li><a href="../advanced_init/dom_toolbar.html">Custom toolbar elements</a></li>
<li><a href="../advanced_init/sort_direction_control.html">Order direction sequence
control</a></li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../styling/index.html">Styling</a></h3>
<ul class="toc">
<li><a href="../styling/display.html">Base style</a></li>
<li><a href="../styling/no-classes.html">Base style - no styling classes</a></li>
<li><a href="../styling/row-border.html">Base style - row borders</a></li>
<li><a href="../styling/cell-border.html">Base style - cell borders</a></li>
<li><a href="../styling/hover.html">Base style - hover</a></li>
<li><a href="../styling/order-column.html">Base style - order-column</a></li>
<li><a href="../styling/stripe.html">Base style - stripe</a></li>
<li><a href="../styling/jqueryUI.html">jQuery UI ThemeRoller</a></li>
<li><a href="../styling/bootstrap.html">Bootstrap</a></li>
<li><a href="../styling/foundation.html">Foundation</a></li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../data_sources/index.html">Data sources</a></h3>
<ul class="toc">
<li><a href="../data_sources/dom.html">HTML (DOM) sourced data</a></li>
<li><a href="../data_sources/ajax.html">Ajax sourced data</a></li>
<li><a href="../data_sources/js_array.html">Javascript sourced data</a></li>
<li><a href="../data_sources/server_side.html">Server-side processing</a></li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../api/index.html">API</a></h3>
<ul class="toc">
<li><a href="../api/add_row.html">Add rows</a></li>
<li><a href="../api/multi_filter.html">Individual column filtering (text inputs)</a></li>
<li><a href="../api/multi_filter_select.html">Individual column filtering (select
inputs)</a></li>
<li><a href="../api/highlight.html">Highlighting rows and columns</a></li>
<li><a href="../api/row_details.html">Child rows (show extra / detailed
information)</a></li>
<li><a href="../api/select_row.html">Row selection (multiple rows)</a></li>
<li><a href="../api/select_single_row.html">Row selection and deletion (single
row)</a></li>
<li><a href="../api/form.html">Form inputs</a></li>
<li><a href="../api/counter_columns.html">Index column</a></li>
<li><a href="../api/show_hide.html">Show / hide columns dynamically</a></li>
<li><a href="../api/api_in_init.html">Using API in callbacks</a></li>
<li><a href="../api/tabs_and_scrolling.html">Scrolling and jQuery UI tabs</a></li>
<li><a href="../api/regex.html">Filtering API (regular expressions)</a></li>
</ul>
</div>
<div class="toc-group">
<h3><a href="./index.html">Ajax</a></h3>
<ul class="toc active">
<li><a href="./simple.html">Ajax data source (arrays)</a></li>
<li class="active"><a href="./objects.html">Ajax data source (objects)</a></li>
<li><a href="./deep.html">Nested object data (objects)</a></li>
<li><a href="./objects_subarrays.html">Nested object data (arrays)</a></li>
<li><a href="./orthogonal-data.html">Orthogonal data</a></li>
<li><a href="./null_data_source.html">Generated content for a column</a></li>
<li><a href="./custom_data_property.html">Custom data source property</a></li>
<li><a href="./custom_data_flat.html">Flat array data source</a></li>
<li><a href="./defer_render.html">Deferred rendering for speed</a></li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../server_side/index.html">Server-side</a></h3>
<ul class="toc">
<li><a href="../server_side/simple.html">Server-side processing</a></li>
<li><a href="../server_side/custom_vars.html">Custom HTTP variables</a></li>
<li><a href="../server_side/post.html">POST data</a></li>
<li><a href="../server_side/ids.html">Automatic addition of row ID attributes</a></li>
<li><a href="../server_side/object_data.html">Object data source</a></li>
<li><a href="../server_side/row_details.html">Row details</a></li>
<li><a href="../server_side/select_rows.html">Row selection</a></li>
<li><a href="../server_side/jsonp.html">JSONP data source for remote domains</a></li>
<li><a href="../server_side/defer_loading.html">Deferred loading of data</a></li>
<li><a href="../server_side/pipeline.html">Pipelining data to reduce Ajax calls for
paging</a></li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../plug-ins/index.html">Plug-ins</a></h3>
<ul class="toc">
<li><a href="../plug-ins/api.html">API plug-in methods</a></li>
<li><a href="../plug-ins/sorting_auto.html">Ordering plug-ins (with type
detection)</a></li>
<li><a href="../plug-ins/sorting_manual.html">Ordering plug-ins (no type
detection)</a></li>
<li><a href="../plug-ins/range_filtering.html">Custom filtering - range search</a></li>
<li><a href="../plug-ins/dom_sort.html">Live DOM ordering</a></li>
</ul>
</div>
</div>
<div class="epilogue">
<p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full
information about its API properties and methods.<br>
Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and
<a href="http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of
DataTables.</p>
<p class="copyright">DataTables designed and created by <a href=
"http://www.sprymedia.co.uk">SpryMedia Ltd</a> © 2007-2014<br>
DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
</div>
</div>
</div>
</section>
</body>
</html> | lherich/recapo.de | web/vendor/datatables-1.10.0/examples/ajax/objects.html | HTML | mit | 14,469 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Phaser Source: src/pixi/display/Stage.js</title>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/default.css">
<link type="text/css" rel="stylesheet" href="styles/sunlight.default.css">
<link type="text/css" rel="stylesheet" href="styles/site.cerulean.css">
</head>
<body>
<div class="container-fluid">
<div class="navbar navbar-fixed-top navbar-inverse">
<div style="position: absolute; width: 143px; height: 31px; right: 10px; top: 10px; z-index: 1050"><a href="http://phaser.io"><img src="img/phaser.png" border="0" /></a></div>
<div class="navbar-inner">
<a class="brand" href="index.html">Phaser API</a>
<ul class="nav">
<li class="dropdown">
<a href="namespaces.list.html" class="dropdown-toggle" data-toggle="dropdown">Namespaces<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-0">
<a href="Phaser.html">Phaser</a>
</li>
<li class="class-depth-0">
<a href="PIXI.html">PIXI</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="classes.list.html" class="dropdown-toggle" data-toggle="dropdown">Classes<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1">
<a href="Phaser.Animation.html">Animation</a>
</li>
<li class="class-depth-1">
<a href="Phaser.AnimationManager.html">AnimationManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.AnimationParser.html">AnimationParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ArraySet.html">ArraySet</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ArrayUtils.html">ArrayUtils</a>
</li>
<li class="class-depth-1">
<a href="Phaser.AudioSprite.html">AudioSprite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.BitmapData.html">BitmapData</a>
</li>
<li class="class-depth-1">
<a href="Phaser.BitmapText.html">BitmapText</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Button.html">Button</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Cache.html">Cache</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Camera.html">Camera</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Canvas.html">Canvas</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Circle.html">Circle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Color.html">Color</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Angle.html">Angle</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Animation.html">Animation</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.AutoCull.html">AutoCull</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Bounds.html">Bounds</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.BringToTop.html">BringToTop</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Core.html">Core</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Crop.html">Crop</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Delta.html">Delta</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Destroy.html">Destroy</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.FixedToCamera.html">FixedToCamera</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Health.html">Health</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.InCamera.html">InCamera</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.InputEnabled.html">InputEnabled</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.InWorld.html">InWorld</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.LifeSpan.html">LifeSpan</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.LoadTexture.html">LoadTexture</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Overlap.html">Overlap</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.PhysicsBody.html">PhysicsBody</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Reset.html">Reset</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.ScaleMinMax.html">ScaleMinMax</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Smoothed.html">Smoothed</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Create.html">Create</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Creature.html">Creature</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Device.html">Device</a>
</li>
<li class="class-depth-1">
<a href="Phaser.DeviceButton.html">DeviceButton</a>
</li>
<li class="class-depth-1">
<a href="Phaser.DOM.html">DOM</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Easing.html">Easing</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Back.html">Back</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Bounce.html">Bounce</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Circular.html">Circular</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Cubic.html">Cubic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Elastic.html">Elastic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Exponential.html">Exponential</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Linear.html">Linear</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quadratic.html">Quadratic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quartic.html">Quartic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quintic.html">Quintic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Sinusoidal.html">Sinusoidal</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Ellipse.html">Ellipse</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Events.html">Events</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Filter.html">Filter</a>
</li>
<li class="class-depth-1">
<a href="Phaser.FlexGrid.html">FlexGrid</a>
</li>
<li class="class-depth-1">
<a href="Phaser.FlexLayer.html">FlexLayer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Frame.html">Frame</a>
</li>
<li class="class-depth-1">
<a href="Phaser.FrameData.html">FrameData</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Game.html">Game</a>
</li>
<li class="class-depth-1">
<a href="Phaser.GameObjectCreator.html">GameObjectCreator</a>
</li>
<li class="class-depth-1">
<a href="Phaser.GameObjectFactory.html">GameObjectFactory</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Gamepad.html">Gamepad</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Graphics.html">Graphics</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Group.html">Group</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Image.html">Image</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ImageCollection.html">ImageCollection</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Input.html">Input</a>
</li>
<li class="class-depth-1">
<a href="Phaser.InputHandler.html">InputHandler</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Key.html">Key</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Keyboard.html">Keyboard</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Line.html">Line</a>
</li>
<li class="class-depth-1">
<a href="Phaser.LinkedList.html">LinkedList</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Loader.html">Loader</a>
</li>
<li class="class-depth-1">
<a href="Phaser.LoaderParser.html">LoaderParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Math.html">Math</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Matrix.html">Matrix</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Mouse.html">Mouse</a>
</li>
<li class="class-depth-1">
<a href="Phaser.MSPointer.html">MSPointer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Net.html">Net</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Particle.html">Particle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Particles.html">Particles</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Particles.Arcade.html">Arcade</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Particles.Arcade.Emitter.html">Emitter</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Physics.html">Physics</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.Arcade.html">Arcade</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Arcade.Body.html">Body</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Arcade.TilemapCollision.html">TilemapCollision</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.Ninja.html">Ninja</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.AABB.html">AABB</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Body.html">Body</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Circle.html">Circle</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Tile.html">Tile</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.P2.html">P2</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Body.html">Body</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.BodyDebug.html">BodyDebug</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.CollisionGroup.html">CollisionGroup</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.ContactMaterial.html">ContactMaterial</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.DistanceConstraint.html">DistanceConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.FixtureList.html">FixtureList</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.GearConstraint.html">GearConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.InversePointProxy.html">InversePointProxy</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.LockConstraint.html">LockConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Material.html">Material</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.PointProxy.html">PointProxy</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.PrismaticConstraint.html">PrismaticConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.RevoluteConstraint.html">RevoluteConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.RotationalSpring.html">RotationalSpring</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Spring.html">Spring</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Plugin.html">Plugin</a>
</li>
<li class="class-depth-1">
<a href="Phaser.PluginManager.html">PluginManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Point.html">Point</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Pointer.html">Pointer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Polygon.html">Polygon</a>
</li>
<li class="class-depth-1">
<a href="Phaser.QuadTree.html">QuadTree</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RandomDataGenerator.html">RandomDataGenerator</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Rectangle.html">Rectangle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RenderTexture.html">RenderTexture</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RequestAnimationFrame.html">RequestAnimationFrame</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RetroFont.html">RetroFont</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Rope.html">Rope</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RoundedRectangle.html">RoundedRectangle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ScaleManager.html">ScaleManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Signal.html">Signal</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SignalBinding.html">SignalBinding</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SinglePad.html">SinglePad</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Sound.html">Sound</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SoundManager.html">SoundManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Sprite.html">Sprite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SpriteBatch.html">SpriteBatch</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Stage.html">Stage</a>
</li>
<li class="class-depth-1">
<a href="Phaser.State.html">State</a>
</li>
<li class="class-depth-1">
<a href="Phaser.StateManager.html">StateManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Text.html">Text</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tile.html">Tile</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tilemap.html">Tilemap</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TilemapLayer.html">TilemapLayer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TilemapParser.html">TilemapParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tileset.html">Tileset</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TileSprite.html">TileSprite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Time.html">Time</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Timer.html">Timer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TimerEvent.html">TimerEvent</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Touch.html">Touch</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tween.html">Tween</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TweenData.html">TweenData</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TweenManager.html">TweenManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Utils.html">Utils</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Utils.Debug.html">Debug</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Video.html">Video</a>
</li>
<li class="class-depth-1">
<a href="Phaser.World.html">World</a>
</li>
<li class="class-depth-1">
<a href="PIXI.AbstractFilter.html">AbstractFilter</a>
</li>
<li class="class-depth-1">
<a href="PIXI.BaseTexture.html">BaseTexture</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasBuffer.html">CanvasBuffer</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasGraphics.html">CanvasGraphics</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasMaskManager.html">CanvasMaskManager</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasPool.html">CanvasPool</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasRenderer.html">CanvasRenderer</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasTinter.html">CanvasTinter</a>
</li>
<li class="class-depth-1">
<a href="PIXI.ComplexPrimitiveShader.html">ComplexPrimitiveShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.DisplayObject.html">DisplayObject</a>
</li>
<li class="class-depth-1">
<a href="PIXI.DisplayObjectContainer.html">DisplayObjectContainer</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Event.html">Event</a>
</li>
<li class="class-depth-1">
<a href="PIXI.EventTarget.html">EventTarget</a>
</li>
<li class="class-depth-1">
<a href="PIXI.FilterTexture.html">FilterTexture</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Graphics.html">Graphics</a>
</li>
<li class="class-depth-1">
<a href="PIXI.GraphicsData.html">GraphicsData</a>
</li>
<li class="class-depth-1">
<a href="PIXI.PIXI.html">PIXI</a>
</li>
<li class="class-depth-1">
<a href="PIXI.PixiFastShader.html">PixiFastShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.PixiShader.html">PixiShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.PolyK.html">PolyK</a>
</li>
<li class="class-depth-1">
<a href="PIXI.PrimitiveShader.html">PrimitiveShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.RenderTexture.html">RenderTexture</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Rope.html">Rope</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Sprite.html">Sprite</a>
</li>
<li class="class-depth-1">
<a href="PIXI.SpriteBatch.html">SpriteBatch</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Stage.html">Stage</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Strip.html">Strip</a>
</li>
<li class="class-depth-1">
<a href="PIXI.StripShader.html">StripShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Texture.html">Texture</a>
</li>
<li class="class-depth-1">
<a href="PIXI.TilingSprite.html">TilingSprite</a>
</li>
<li class="class-depth-1">
<a href="PIXI.WebGLBlendModeManager.html">WebGLBlendModeManager</a>
</li>
<li class="class-depth-1">
<a href="PIXI.WebGLFastSpriteBatch.html">WebGLFastSpriteBatch</a>
</li>
<li class="class-depth-1">
<a href="PIXI.WebGLFilterManager.html">WebGLFilterManager</a>
</li>
<li class="class-depth-1">
<a href="PIXI.WebGLRenderer.html">WebGLRenderer</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="global.html" class="dropdown-toggle" data-toggle="dropdown">Global<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-0">
<a href="global.html#AUTO">AUTO</a>
</li>
<li class="class-depth-0">
<a href="global.html#BITMAPDATA">BITMAPDATA</a>
</li>
<li class="class-depth-0">
<a href="global.html#BITMAPTEXT">BITMAPTEXT</a>
</li>
<li class="class-depth-0">
<a href="global.html#blendModes">blendModes</a>
</li>
<li class="class-depth-0">
<a href="global.html#BUTTON">BUTTON</a>
</li>
<li class="class-depth-0">
<a href="global.html#CANVAS">CANVAS</a>
</li>
<li class="class-depth-0">
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#CIRCLE">CIRCLE</a>
</li>
<li class="class-depth-0">
<a href="global.html#CREATURE">CREATURE</a>
</li>
<li class="class-depth-0">
<a href="global.html#DOWN">DOWN</a>
</li>
<li class="class-depth-0">
<a href="global.html#ELLIPSE">ELLIPSE</a>
</li>
<li class="class-depth-0">
<a href="global.html#EMITTER">EMITTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#GAMES">GAMES</a>
</li>
<li class="class-depth-0">
<a href="global.html#GRAPHICS">GRAPHICS</a>
</li>
<li class="class-depth-0">
<a href="global.html#GROUP">GROUP</a>
</li>
<li class="class-depth-0">
<a href="global.html#HEADLESS">HEADLESS</a>
</li>
<li class="class-depth-0">
<a href="global.html#IMAGE">IMAGE</a>
</li>
<li class="class-depth-0">
<a href="global.html#LEFT">LEFT</a>
</li>
<li class="class-depth-0">
<a href="global.html#LINE">LINE</a>
</li>
<li class="class-depth-0">
<a href="global.html#MATRIX">MATRIX</a>
</li>
<li class="class-depth-0">
<a href="global.html#NONE">NONE</a>
</li>
<li class="class-depth-0">
<a href="global.html#POINT">POINT</a>
</li>
<li class="class-depth-0">
<a href="global.html#POINTER">POINTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#POLYGON">POLYGON</a>
</li>
<li class="class-depth-0">
<a href="global.html#RECTANGLE">RECTANGLE</a>
</li>
<li class="class-depth-0">
<a href="global.html#RENDERTEXTURE">RENDERTEXTURE</a>
</li>
<li class="class-depth-0">
<a href="global.html#RETROFONT">RETROFONT</a>
</li>
<li class="class-depth-0">
<a href="global.html#RIGHT">RIGHT</a>
</li>
<li class="class-depth-0">
<a href="global.html#ROPE">ROPE</a>
</li>
<li class="class-depth-0">
<a href="global.html#ROUNDEDRECTANGLE">ROUNDEDRECTANGLE</a>
</li>
<li class="class-depth-0">
<a href="global.html#scaleModes">scaleModes</a>
</li>
<li class="class-depth-0">
<a href="global.html#SPRITE">SPRITE</a>
</li>
<li class="class-depth-0">
<a href="global.html#SPRITEBATCH">SPRITEBATCH</a>
</li>
<li class="class-depth-0">
<a href="global.html#TEXT">TEXT</a>
</li>
<li class="class-depth-0">
<a href="global.html#TILEMAP">TILEMAP</a>
</li>
<li class="class-depth-0">
<a href="global.html#TILEMAPLAYER">TILEMAPLAYER</a>
</li>
<li class="class-depth-0">
<a href="global.html#TILESPRITE">TILESPRITE</a>
</li>
<li class="class-depth-0">
<a href="global.html#UP">UP</a>
</li>
<li class="class-depth-0">
<a href="global.html#VERSION">VERSION</a>
</li>
<li class="class-depth-0">
<a href="global.html#VIDEO">VIDEO</a>
</li>
<li class="class-depth-0">
<a href="global.html#WEBGL">WEBGL</a>
</li>
<li class="class-depth-0">
<a href="global.html#WEBGL_FILTER">WEBGL_FILTER</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Core<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.Game.html">Game</a></li>
<li class="class-depth-1"><a href="Phaser.Group.html">Group</a></li>
<li class="class-depth-1"><a href="Phaser.World.html">World</a></li>
<li class="class-depth-1"><a href="Phaser.Loader.html">Loader</a></li>
<li class="class-depth-1"><a href="Phaser.Cache.html">Cache</a></li>
<li class="class-depth-1"><a href="Phaser.Time.html">Time</a></li>
<li class="class-depth-1"><a href="Phaser.Camera.html">Camera</a></li>
<li class="class-depth-1"><a href="Phaser.StateManager.html">State Manager</a></li>
<li class="class-depth-1"><a href="Phaser.TweenManager.html">Tween Manager</a></li>
<li class="class-depth-1"><a href="Phaser.SoundManager.html">Sound Manager</a></li>
<li class="class-depth-1"><a href="Phaser.Input.html">Input Manager</a></li>
<li class="class-depth-1"><a href="Phaser.ScaleManager.html">Scale Manager</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Game Objects<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.GameObjectFactory.html">Factory (game.add)</a></li>
<li class="class-depth-1"><a href="Phaser.GameObjectCreator.html">Creator (game.make)</a></li>
<li class="class-depth-1"><a href="Phaser.Sprite.html">Sprite</a></li>
<li class="class-depth-1"><a href="Phaser.Image.html">Image</a></li>
<li class="class-depth-1"><a href="Phaser.Sound.html">Sound</a></li>
<li class="class-depth-1"><a href="Phaser.Video.html">Video</a></li>
<li class="class-depth-1"><a href="Phaser.Particles.Arcade.Emitter.html">Particle Emitter</a></li>
<li class="class-depth-1"><a href="Phaser.Particle.html">Particle</a></li>
<li class="class-depth-1"><a href="Phaser.Text.html">Text</a></li>
<li class="class-depth-1"><a href="Phaser.Tween.html">Tween</a></li>
<li class="class-depth-1"><a href="Phaser.BitmapText.html">BitmapText</a></li>
<li class="class-depth-1"><a href="Phaser.Tilemap.html">Tilemap</a></li>
<li class="class-depth-1"><a href="Phaser.BitmapData.html">BitmapData</a></li>
<li class="class-depth-1"><a href="Phaser.RetroFont.html">RetroFont</a></li>
<li class="class-depth-1"><a href="Phaser.Button.html">Button</a></li>
<li class="class-depth-1"><a href="Phaser.Animation.html">Animation</a></li>
<li class="class-depth-1"><a href="Phaser.Graphics.html">Graphics</a></li>
<li class="class-depth-1"><a href="Phaser.RenderTexture.html">RenderTexture</a></li>
<li class="class-depth-1"><a href="Phaser.TileSprite.html">TileSprite</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Geometry<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.Circle.html">Circle</a></li>
<li class="class-depth-1"><a href="Phaser.Ellipse.html">Ellipse</a></li>
<li class="class-depth-1"><a href="Phaser.Line.html">Line</a></li>
<li class="class-depth-1"><a href="Phaser.Matrix.html">Matrix</a></li>
<li class="class-depth-1"><a href="Phaser.Point.html">Point</a></li>
<li class="class-depth-1"><a href="Phaser.Polygon.html">Polygon</a></li>
<li class="class-depth-1"><a href="Phaser.Rectangle.html">Rectangle</a></li>
<li class="class-depth-1"><a href="Phaser.RoundedRectangle.html">Rounded Rectangle</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Physics<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.P2.CollisionGroup.html">CollisionGroup</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.P2.ContactMaterial.html">ContactMaterial</a></li>
<li class="class-depth-1"><a href="Phaser.Physics.Ninja.html">Ninja Physics</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.Body.html">Body</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Input<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.InputHandler.html">Input Handler</a></li>
<li class="class-depth-1"><a href="Phaser.Pointer.html">Pointer</a></li>
<li class="class-depth-1"><a href="Phaser.DeviceButton.html">Device Button</a></li>
<li class="class-depth-1"><a href="Phaser.Mouse.html">Mouse</a></li>
<li class="class-depth-1"><a href="Phaser.Keyboard.html">Keyboard</a></li>
<li class="class-depth-1"><a href="Phaser.Key.html">Key</a></li>
<li class="class-depth-1"><a href="Phaser.Gamepad.html">Gamepad</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Community<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="http://phaser.io">Phaser Web Site</a></li>
<li class="class-depth-1"><a href="https://github.com/photonstorm/phaser">Phaser Github</a></li>
<li class="class-depth-1"><a href="http://phaser.io/examples">Phaser Examples</a></li>
<li class="class-depth-1"><a href="https://github.com/photonstorm/phaser-plugins">Phaser Plugins</a></li>
<li class="class-depth-1"><a href="http://www.html5gamedevs.com/forum/14-phaser/">Forum</a></li>
<li class="class-depth-1"><a href="http://stackoverflow.com/questions/tagged/phaser-framework">Stack Overflow</a></li>
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
<li class="class-depth-1"><a href="https://confirmsubscription.com/h/r/369DE48E3E86AF1E">Newsletter</a></li>
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
<li class="class-depth-1"><a href="http://phaser.io/community/irc">IRC</a></li>
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<div id="main">
<h1 class="page-title">Source: src/pixi/display/Stage.js</h1>
<section>
<article>
<pre class="sunlight-highlight-javascript linenums">/**
* @author Mat Groves http://matgroves.com/ @Doormat23
*/
/**
* A Stage represents the root of the display tree. Everything connected to the stage is rendered
*
* @class Stage
* @extends DisplayObjectContainer
* @constructor
* @param backgroundColor {Number} the background color of the stage, you have to pass this in is in hex format
* like: 0xFFFFFF for white
*
* Creating a stage is a mandatory process when you use Pixi, which is as simple as this :
* var stage = new PIXI.Stage(0xFFFFFF);
* where the parameter given is the background colour of the stage, in hex
* you will use this stage instance to add your sprites to it and therefore to the renderer
* Here is how to add a sprite to the stage :
* stage.addChild(sprite);
*/
PIXI.Stage = function(backgroundColor)
{
PIXI.DisplayObjectContainer.call( this );
/**
* [read-only] Current transform of the object based on world (parent) factors
*
* @property worldTransform
* @type Matrix
* @readOnly
* @private
*/
this.worldTransform = new PIXI.Matrix();
//the stage is its own stage
this.stage = this;
this.setBackgroundColor(backgroundColor);
};
// constructor
PIXI.Stage.prototype = Object.create( PIXI.DisplayObjectContainer.prototype );
PIXI.Stage.prototype.constructor = PIXI.Stage;
/*
* Updates the object transform for rendering
*
* @method updateTransform
* @private
*/
PIXI.Stage.prototype.updateTransform = function()
{
this.worldAlpha = 1;
for (var i = 0; i < this.children.length; i++)
{
this.children[i].updateTransform();
}
};
/**
* Sets the background color for the stage
*
* @method setBackgroundColor
* @param backgroundColor {Number} the color of the background, easiest way to pass this in is in hex format
* like: 0xFFFFFF for white
*/
PIXI.Stage.prototype.setBackgroundColor = function(backgroundColor)
{
this.backgroundColor = backgroundColor || 0x000000;
this.backgroundColorSplit = PIXI.hex2rgb(this.backgroundColor);
var hex = this.backgroundColor.toString(16);
hex = '000000'.substr(0, 6 - hex.length) + hex;
this.backgroundColorString = '#' + hex;
};
</pre>
</article>
</section>
</div>
<div class="clearfix"></div>
<footer>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Mon Aug 24 2015 15:36:45 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>
<br clear="both">
</div>
</div>
<script src="scripts/sunlight.js"></script>
<script src="scripts/sunlight.javascript.js"></script>
<script src="scripts/sunlight-plugin.doclinks.js"></script>
<script src="scripts/sunlight-plugin.linenumbers.js"></script>
<script src="scripts/sunlight-plugin.menu.js"></script>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/jquery.scrollTo.js"></script>
<script src="scripts/jquery.localScroll.js"></script>
<script src="scripts/bootstrap-dropdown.js"></script>
<script src="scripts/toc.js"></script>
<script> Sunlight.highlightAll({lineNumbers:true, showMenu: true, enableDoclinks :true}); </script>
<script>
$( function () {
$( "#toc" ).toc( {
anchorName : function(i, heading, prefix) {
return $(heading).attr("id") || ( prefix + i );
},
selectors : "h1,h2,h3,h4",
showAndHide : false,
scrollTo : 60
} );
$( "#toc>ul" ).addClass( "nav nav-pills nav-stacked" );
$( "#main span[id^='toc']" ).addClass( "toc-shim" );
} );
</script>
</body>
</html>
| andrelavru/Resource_phaser | docs/src_pixi_display_Stage.js.html | HTML | mit | 36,712 |
priority
| lecaoquochung/ddnb.django | tests/templates/priority/foo.html | HTML | bsd-3-clause | 9 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>src/pixi/utils/Detector.js - Pixi.JS</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/3.8.0/build/cssgrids/cssgrids-min.css">
<link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
<link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
<link rel="shortcut icon" type="image/png" href="../assets/favicon.png">
<script src="http://yui.yahooapis.com/combo?3.8.0/build/yui/yui-min.js"></script>
</head>
<body class="yui3-skin-sam">
<div id="doc">
<div id="hd" class="yui3-g header">
<div class="yui3-u-3-4">
<h1><img src="http://www.goodboydigital.com/pixijs/logo_small.png" title="Pixi.JS"></h1>
</div>
<div class="yui3-u-1-4 version">
<em>API Docs for: 1.3.0</em>
</div>
</div>
<div id="bd" class="yui3-g">
<div class="yui3-u-1-4">
<div id="docs-sidebar" class="sidebar apidocs">
<div id="api-list">
<h2 class="off-left">APIs</h2>
<div id="api-tabview" class="tabview">
<ul class="tabs">
<li><a href="#api-classes">Classes</a></li>
<li><a href="#api-modules">Modules</a></li>
</ul>
<div id="api-tabview-filter">
<input type="search" id="api-filter" placeholder="Type to filter APIs">
</div>
<div id="api-tabview-panel">
<ul id="api-classes" class="apis classes">
<li><a href="../classes/AssetLoader.html">AssetLoader</a></li>
<li><a href="../classes/BaseTexture.html">BaseTexture</a></li>
<li><a href="../classes/BitmapFontLoader.html">BitmapFontLoader</a></li>
<li><a href="../classes/BitmapText.html">BitmapText</a></li>
<li><a href="../classes/CanvasGraphics.html">CanvasGraphics</a></li>
<li><a href="../classes/CanvasRenderer.html">CanvasRenderer</a></li>
<li><a href="../classes/Circle.html">Circle</a></li>
<li><a href="../classes/CustomRenderable.html">CustomRenderable</a></li>
<li><a href="../classes/DisplayObject.html">DisplayObject</a></li>
<li><a href="../classes/DisplayObjectContainer.html">DisplayObjectContainer</a></li>
<li><a href="../classes/Ellipse.html">Ellipse</a></li>
<li><a href="../classes/Graphics.html">Graphics</a></li>
<li><a href="../classes/ImageLoader.html">ImageLoader</a></li>
<li><a href="../classes/InteractionData.html">InteractionData</a></li>
<li><a href="../classes/InteractionManager.html">InteractionManager</a></li>
<li><a href="../classes/JsonLoader.html">JsonLoader</a></li>
<li><a href="../classes/MovieClip.html">MovieClip</a></li>
<li><a href="../classes/Point.html">Point</a></li>
<li><a href="../classes/Polygon.html">Polygon</a></li>
<li><a href="../classes/Rectangle.html">Rectangle</a></li>
<li><a href="../classes/RenderTexture.html">RenderTexture</a></li>
<li><a href="../classes/Spine.html">Spine</a></li>
<li><a href="../classes/Sprite.html">Sprite</a></li>
<li><a href="../classes/SpriteSheetLoader.html">SpriteSheetLoader</a></li>
<li><a href="../classes/Stage.html">Stage</a></li>
<li><a href="../classes/Text.html">Text</a></li>
<li><a href="../classes/Texture.html">Texture</a></li>
<li><a href="../classes/TilingSprite.html">TilingSprite</a></li>
<li><a href="../classes/WebGLBatch.html">WebGLBatch</a></li>
<li><a href="../classes/WebGLRenderer.html">WebGLRenderer</a></li>
</ul>
<ul id="api-modules" class="apis modules">
<li><a href="../modules/PIXI.html">PIXI</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="yui3-u-3-4">
<div id="api-options">
Show:
<label for="api-show-inherited">
<input type="checkbox" id="api-show-inherited" checked>
Inherited
</label>
<label for="api-show-protected">
<input type="checkbox" id="api-show-protected">
Protected
</label>
<label for="api-show-private">
<input type="checkbox" id="api-show-private">
Private
</label>
<label for="api-show-deprecated">
<input type="checkbox" id="api-show-deprecated">
Deprecated
</label>
</div>
<div class="apidocs">
<div id="docs-main">
<div class="content">
<h1 class="file-heading">File: src/pixi/utils/Detector.js</h1>
<div class="file">
<pre class="code prettyprint linenums">
/**
* @author Mat Groves http://matgroves.com/ @Doormat23
*/
/**
* This helper function will automatically detect which renderer you should be using.
* WebGL is the preferred renderer as it is a lot fastest. If webGL is not supported by the browser then this function will return a canvas renderer
* @method autoDetectRenderer
* @static
* @param width {Number} the width of the renderers view
* @param height {Number} the height of the renderers view
* @param view {Canvas} the canvas to use as a view, optional
* @param transparent {Boolean} the transparency of the render view, default false
* @default false
*/
PIXI.autoDetectRenderer = function(width, height, view, transparent)
{
if(!width)width = 800;
if(!height)height = 600;
// BORROWED from Mr Doob (mrdoob.com)
var webgl = ( function () { try { return !! window.WebGLRenderingContext && !! document.createElement( 'canvas' ).getContext( 'experimental-webgl' ); } catch( e ) { return false; } } )();
//console.log(webgl);
if( webgl )
{
return new PIXI.WebGLRenderer(width, height, view, transparent);
}
return new PIXI.CanvasRenderer(width, height, view, transparent);
};
</pre>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="../assets/vendor/prettify/prettify-min.js"></script>
<script>prettyPrint();</script>
<script src="../assets/js/yui-prettify.js"></script>
<script src="../assets/../api.js"></script>
<script src="../assets/js/api-filter.js"></script>
<script src="../assets/js/api-list.js"></script>
<script src="../assets/js/api-search.js"></script>
<script src="../assets/js/apidocs.js"></script>
</body>
</html>
| JDvorak/pixi.js | docs/files/src_pixi_utils_Detector.js.html | HTML | mit | 7,574 |
{{#markdown}}
```javascript
$(document).on('replace', 'img', function (e, new_path, original_path) {
console.log(e.currentTarget, new_path, original_path);
});
```
{{/markdown}} | milardovich/agenda-moparman | vendor/zurb/foundation/doc/includes/interchange/examples_interchange_events.html | HTML | mit | 179 |
<a href='https://github.com/angular/angular.js/edit/v1.3.x/docs/content/error/$sce/insecurl.ngdoc?message=docs(error%2Finsecurl)%3A%20describe%20your%20change...' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a>
<h1>Error: error:insecurl
<div><span class='hint'>Processing of a Resource from Untrusted Source Blocked</span></div>
</h1>
<div>
<pre class="minerr-errmsg" error-display="Blocked loading resource from url not allowed by $sceDelegate policy. URL: {0}">Blocked loading resource from url not allowed by $sceDelegate policy. URL: {0}</pre>
</div>
<h2>Description</h2>
<div class="description">
<p>AngularJS' <a href="api/ng/service/$sce">Strict Contextual Escaping (SCE)</a> mode (enabled by default) has blocked loading a resource from an insecure URL.</p>
<p>Typically, this would occur if you're attempting to load an Angular template from an untrusted source.
It's also possible that a custom directive threw this error for a similar reason.</p>
<p>Angular only loads templates from trusted URLs (by calling <a href="api/ng/service/$sce#getTrustedResourceUrl">$sce.getTrustedResourceUrl</a> on the template URL).</p>
<p>By default, only URLs that belong to the same origin are trusted. These are urls with the same domain, protocol and port as the application document.</p>
<p>The <a href="api/ng/directive/ngInclude">ngInclude</a> directive and <a href="guide/directive">directives</a> that specify a <code>templateUrl</code> require a trusted resource URL.</p>
<p>To load templates from other domains and/or protocols, either adjust the <a href="api/ng/provider/$sceDelegateProvider#resourceUrlWhitelist">whitelist</a>/ <a href="api/ng/provider/$sceDelegateProvider#resourceUrlBlacklist">blacklist</a> or wrap the URL with a call to <a href="api/ng/service/$sce#trustAsResourceUrl">$sce.trustAsResourceUrl</a>.</p>
<p><strong>Note</strong>: The browser's <a href="https://code.google.com/p/browsersec/wiki/Part2#Same-origin_policy_for_XMLHttpRequest">Same Origin
Policy</a> and
<a href="http://www.w3.org/TR/cors/">Cross-Origin Resource Sharing (CORS)</a> policy apply
that may further restrict whether the template is successfully loaded. (e.g. neither cross-domain
requests won't work on all browsers nor <code>file://</code> requests on some browsers)</p>
</div>
| marcoR80/simple-app-mobile | www/vendor/angular-1.3.9/docs/partials/error/$sce/insecurl.html | HTML | mit | 2,375 |
<html>
<head>
<script src="OLLoader.js"></script>
<script type="text/javascript">
var isMozilla = (navigator.userAgent.indexOf("compatible") == -1);
var map;
var feature, layer;
function test_Feature_constructor (t) {
t.plan( 6 );
var layer = {};
var lonlat = new OpenLayers.LonLat(2,1);
var iconURL = 'http://boston.openguides.org/features/ORANGE.png';
var iconSize = new OpenLayers.Size(12, 17);
var data = { iconURL: iconURL,
iconSize: iconSize
};
feature = new OpenLayers.Feature(layer, lonlat, data);
t.ok( feature instanceof OpenLayers.Feature, "new OpenLayers.Feature returns Feature object" );
t.eq( feature.layer, layer, "feature.layer set correctly" );
t.ok(OpenLayers.String.startsWith(feature.id, "OpenLayers_Feature_"),
"feature.id set correctly");
t.ok( feature.lonlat.equals(lonlat), "feature.lonlat set correctly" );
t.eq( feature.data.iconURL, iconURL, "feature.data.iconURL set correctly" );
t.ok( feature.data.iconSize.equals(iconSize), "feature.data.iconSize set correctly" );
}
function test_Feature_createPopup (t) {
t.plan(3);
var layer = {};
var lonlat = new OpenLayers.LonLat(2,1);
var iconURL = 'http://boston.openguides.org/features/ORANGE.png';
var iconSize = new OpenLayers.Size(12, 17);
var data = { iconURL: iconURL,
iconSize: iconSize,
'overflow':'auto'
};
feature = new OpenLayers.Feature(layer, lonlat, data);
popup = feature.createPopup();
//Safari 3 separates style overflow into overflow-x and overflow-y
var prop = (OpenLayers.BROWSER_NAME == 'safari') ? 'overflowX' : 'overflow';
t.eq(popup.contentDiv.style[prop], "auto", 'overflow on popup is correct');
t.ok( popup instanceof OpenLayers.Popup.Anchored, "popup is a Popup.Anchored by default");
feature.destroyPopup();
feature.popupClass = OpenLayers.Popup.FramedCloud;
popup = feature.createPopup();
t.ok( popup instanceof OpenLayers.Popup.FramedCloud, "setting feature.popupClass works");
}
function test_Feature_createMarker (t) {
t.plan(1);
t.ok(true);
/*
t.plan( 11 );
feature = new OpenLayers.Feature("myfeature", new OpenLayers.LonLat(2,1),
{
iconURL:'http://boston.openguides.org/features/ORANGE.png',
iconW: 12,
iconH: 17
});
layer = new OpenLayers.Layer.Markers('Marker Layer');
t.ok( feature instanceof OpenLayers.Feature, "new OpenLayers.Feature returns Feature object" );
t.ok( layer instanceof OpenLayers.Layer.Markers, "Layer is a marker layer" );
feature.createMarker(layer);
t.ok( feature.marker instanceof OpenLayers.Marker,
"createMarker sets a marker property to a marker" );
t.ok( layer.markers[0] === feature.marker,
"First marker in layer is the feature marker" );
t.ok( feature.marker.lonlat instanceof OpenLayers.LonLat,
"createMarker sets a marker lontlat property to a lonlat" );
t.ok( layer.markers[0].lonlat === feature.lonlat,
"First marker in the layer matches feature lonlat" );
t.ok( feature.marker.icon instanceof OpenLayers.Icon,
"createMarker sets a marker icon property to an icon" );
t.eq( feature.marker.icon.url,
"http://boston.openguides.org/features/ORANGE.png",
"createMarker sets marker url correctly" );
var map = new OpenLayers.Map('map');
map.addLayer(layer);
map.setCenter(new OpenLayers.LonLat(0,0),0);
t.ok( map.layers[0] == layer,
"Marker layer added to map okay." );
if (!isMozilla)
t.ok( true, "skipping element test outside of Mozilla");
else
t.ok( map.layers[0].div.firstChild instanceof HTMLImageElement,
"layer div firstChild is an image" );
t.eq( map.layers[0].div.firstChild.src,
"http://boston.openguides.org/features/ORANGE.png",
"Layer div img contains correct url" );
*/
}
function test_Feature_onScreen(t) {
t.plan( 2 );
var map = new OpenLayers.Map("map");
var url = "http://octo.metacarta.com/cgi-bin/mapserv";
var wms = new OpenLayers.Layer.WMS(name, url);
map.addLayer(wms);
var layer = new OpenLayers.Layer("foo");
map.addLayer(layer);
map.zoomToExtent(new OpenLayers.Bounds(-50,-50,50,50));
//onscreen feature
var feature1 = new OpenLayers.Feature(layer,
new OpenLayers.LonLat(0,0));
t.ok( feature1.onScreen(), "feature knows it's onscreen" );
//onscreen feature
var feature2 = new OpenLayers.Feature(layer,
new OpenLayers.LonLat(100,100));
t.ok( !feature2.onScreen(), "feature knows it's offscreen" );
}
function test_Feature_createPopup_2(t) {
t.plan(11);
//no lonlat
var f = {
'popup': null
};
var ret = OpenLayers.Feature.prototype.createPopup.apply(f, []);
t.ok((ret == f.popup) && (f.popup == null), "if no 'lonlat' set on feature, still returns reference to this.popup (though it is null)");
f.popupClass = OpenLayers.Class({
initialize: function(id, lonlat, size, contentHTML, anchor, closeBox) {
t.eq(id, "Campion_popup", "correctly generates new popup id from feature's id");
t.eq(lonlat, f.lonlat, "correctly passes feature's lonlat to popup constructor");
t.eq(size, f.data.popupSize, "correctly passes feature's data.popupSize to popup constructor");
t.eq(contentHTML, f.data.popupContentHTML, "correctly passes feature's data.popupContentHTML to popup constructor");
t.eq(anchor, g_ExpectedAnchor, "passes correct anchor to popup constructor");
t.eq(closeBox, g_CloseBox, "correctly relays closeBox argument to popup constructor");
}
});
//valid lonlat but no anchor
f.popup = null;
f.id = "Campion";
f.lonlat = {};
f.data = {
'popupSize': {},
'popupContentHTML': {}
};
g_ExpectedAnchor = null;
g_CloseBox = {};
ret = OpenLayers.Feature.prototype.createPopup.apply(f, [g_CloseBox]);
t.ok((ret == f.popup) && (f.popup != null), "a valid popup has been set and returned")
t.ok( f.popup.feature == f, "popup's 'feature' property correctly set");
//valid lonlat with anchor
f.marker = {
'icon': {}
};
g_ExpectedAnchor = f.marker.icon;
ret = OpenLayers.Feature.prototype.createPopup.apply(f, [g_CloseBox]);
t.ok((ret == f.popup) && (f.popup != null), "a valid popup has been set and returned")
t.ok( f.popup.feature == f, "popup's 'feature' property correctly set");
}
function test_Feature_destroyPopup(t) {
t.plan(2);
var f = {
'popup': {
'feature': {},
'destroy': function() {
t.ok(true, "default destroyPopup() calls popup.destroy");
}
}
};
OpenLayers.Feature.prototype.destroyPopup.apply(f, []);
t.ok(f.popup == null, "popup property nullified on destroy");
}
</script>
</head>
<body>
<div id="map" style="width: 500px; height: 300px;"></div>
</body>
</html>
| bjohare/cloughjordan.ie | wp-content/themes/outreach-pro/api/OpenLayers-2.13.1/tests/Feature.html | HTML | cc0-1.0 | 7,985 |
<!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.5"/>
<title>GLM: color_space.hpp Source File</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="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 style="padding-left: 0.5em;">
<div id="projectname">GLM
 <span id="projectnumber">0.9.5</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.5 -->
<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="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_8ceffd4ee35c3518d4e8bdc7e638efe8.html">Users</a></li><li class="navelem"><a class="el" href="dir_968fb7988749a6351e7b3d0c1783dec4.html">Groove</a></li><li class="navelem"><a class="el" href="dir_6e418c18ca640a0404613de005739e2e.html">Documents</a></li><li class="navelem"><a class="el" href="dir_e3ecd7863bd215c92a17f47e2ae3be43.html">GitHub</a></li><li class="navelem"><a class="el" href="dir_edf753475b928be648c1cf1c6443cf63.html">glm</a></li><li class="navelem"><a class="el" href="dir_e50778361fd4ab4de52181ed9eb2b726.html">glm</a></li><li class="navelem"><a class="el" href="dir_a8d99eddac27b2368ab5252ce80ded11.html">gtx</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">color_space.hpp</div> </div>
</div><!--header-->
<div class="contents">
<a href="a00014.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> </div>
<div class="line"><a name="l00038"></a><span class="lineno"> 38</span> <span class="preprocessor">#ifndef GLM_GTX_color_space</span></div>
<div class="line"><a name="l00039"></a><span class="lineno"> 39</span> <span class="preprocessor"></span><span class="preprocessor">#define GLM_GTX_color_space</span></div>
<div class="line"><a name="l00040"></a><span class="lineno"> 40</span> <span class="preprocessor"></span></div>
<div class="line"><a name="l00041"></a><span class="lineno"> 41</span> <span class="comment">// Dependency:</span></div>
<div class="line"><a name="l00042"></a><span class="lineno"> 42</span> <span class="preprocessor">#include "../glm.hpp"</span></div>
<div class="line"><a name="l00043"></a><span class="lineno"> 43</span> </div>
<div class="line"><a name="l00044"></a><span class="lineno"> 44</span> <span class="preprocessor">#if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))</span></div>
<div class="line"><a name="l00045"></a><span class="lineno"> 45</span> <span class="preprocessor"></span><span class="preprocessor"># pragma message("GLM: GLM_GTX_color_space extension included")</span></div>
<div class="line"><a name="l00046"></a><span class="lineno"> 46</span> <span class="preprocessor"></span><span class="preprocessor">#endif</span></div>
<div class="line"><a name="l00047"></a><span class="lineno"> 47</span> <span class="preprocessor"></span></div>
<div class="line"><a name="l00048"></a><span class="lineno"> 48</span> <span class="keyword">namespace </span>glm</div>
<div class="line"><a name="l00049"></a><span class="lineno"> 49</span> {</div>
<div class="line"><a name="l00052"></a><span class="lineno"> 52</span> </div>
<div class="line"><a name="l00055"></a><span class="lineno"> 55</span>  <span class="keyword">template</span> <<span class="keyword">typename</span> T, precision P></div>
<div class="line"><a name="l00056"></a><span class="lineno"> 56</span>  detail::tvec3<T, P> <a class="code" href="a00188.html#ga8c25ad5eee2386d7f5180ccaa0523246">rgbColor</a>(</div>
<div class="line"><a name="l00057"></a><span class="lineno"> 57</span>  detail::tvec3<T, P> <span class="keyword">const</span> & hsvValue);</div>
<div class="line"><a name="l00058"></a><span class="lineno"> 58</span> </div>
<div class="line"><a name="l00061"></a><span class="lineno"> 61</span>  <span class="keyword">template</span> <<span class="keyword">typename</span> T, precision P></div>
<div class="line"><a name="l00062"></a><span class="lineno"> 62</span>  detail::tvec3<T, P> <a class="code" href="a00188.html#gaef4a1b7ed5bec43e245cd152951ec28a">hsvColor</a>(</div>
<div class="line"><a name="l00063"></a><span class="lineno"> 63</span>  detail::tvec3<T, P> <span class="keyword">const</span> & rgbValue);</div>
<div class="line"><a name="l00064"></a><span class="lineno"> 64</span>  </div>
<div class="line"><a name="l00067"></a><span class="lineno"> 67</span>  <span class="keyword">template</span> <<span class="keyword">typename</span> T, precision P></div>
<div class="line"><a name="l00068"></a><span class="lineno"> 68</span>  detail::tmat4x4<T, P> <a class="code" href="a00188.html#gad616175dd13cffd581c1bc30c8e3f904">saturation</a>(</div>
<div class="line"><a name="l00069"></a><span class="lineno"> 69</span>  T <span class="keyword">const</span> s);</div>
<div class="line"><a name="l00070"></a><span class="lineno"> 70</span> </div>
<div class="line"><a name="l00073"></a><span class="lineno"> 73</span>  <span class="keyword">template</span> <<span class="keyword">typename</span> T, precision P></div>
<div class="line"><a name="l00074"></a><span class="lineno"> 74</span>  detail::tvec3<T, P> <a class="code" href="a00188.html#gad616175dd13cffd581c1bc30c8e3f904">saturation</a>(</div>
<div class="line"><a name="l00075"></a><span class="lineno"> 75</span>  T <span class="keyword">const</span> s,</div>
<div class="line"><a name="l00076"></a><span class="lineno"> 76</span>  detail::tvec3<T, P> <span class="keyword">const</span> & color);</div>
<div class="line"><a name="l00077"></a><span class="lineno"> 77</span>  </div>
<div class="line"><a name="l00080"></a><span class="lineno"> 80</span>  <span class="keyword">template</span> <<span class="keyword">typename</span> T, precision P></div>
<div class="line"><a name="l00081"></a><span class="lineno"> 81</span>  detail::tvec4<T, P> <a class="code" href="a00188.html#gad616175dd13cffd581c1bc30c8e3f904">saturation</a>(</div>
<div class="line"><a name="l00082"></a><span class="lineno"> 82</span>  T <span class="keyword">const</span> s,</div>
<div class="line"><a name="l00083"></a><span class="lineno"> 83</span>  detail::tvec4<T, P> <span class="keyword">const</span> & color);</div>
<div class="line"><a name="l00084"></a><span class="lineno"> 84</span>  </div>
<div class="line"><a name="l00087"></a><span class="lineno"> 87</span>  <span class="keyword">template</span> <<span class="keyword">typename</span> T, precision P></div>
<div class="line"><a name="l00088"></a><span class="lineno"> 88</span>  T <a class="code" href="a00188.html#gac62caac6baddd276a9569b3630fd47bf">luminosity</a>(</div>
<div class="line"><a name="l00089"></a><span class="lineno"> 89</span>  detail::tvec3<T, P> <span class="keyword">const</span> & color);</div>
<div class="line"><a name="l00090"></a><span class="lineno"> 90</span> </div>
<div class="line"><a name="l00092"></a><span class="lineno"> 92</span> }<span class="comment">//namespace glm</span></div>
<div class="line"><a name="l00093"></a><span class="lineno"> 93</span> </div>
<div class="line"><a name="l00094"></a><span class="lineno"> 94</span> <span class="preprocessor">#include "color_space.inl"</span></div>
<div class="line"><a name="l00095"></a><span class="lineno"> 95</span> </div>
<div class="line"><a name="l00096"></a><span class="lineno"> 96</span> <span class="preprocessor">#endif//GLM_GTX_color_space</span></div>
<div class="ttc" id="a00188_html_gaef4a1b7ed5bec43e245cd152951ec28a"><div class="ttname"><a href="a00188.html#gaef4a1b7ed5bec43e245cd152951ec28a">glm::hsvColor</a></div><div class="ttdeci">detail::tvec3< T, P > hsvColor(detail::tvec3< T, P > const &rgbValue)</div><div class="ttdoc">Converts a color from RGB color space to its color in HSV color space. </div></div>
<div class="ttc" id="a00188_html_gad616175dd13cffd581c1bc30c8e3f904"><div class="ttname"><a href="a00188.html#gad616175dd13cffd581c1bc30c8e3f904">glm::saturation</a></div><div class="ttdeci">detail::tmat4x4< T, P > saturation(T const s)</div><div class="ttdoc">Build a saturation matrix. </div></div>
<div class="ttc" id="a00188_html_ga8c25ad5eee2386d7f5180ccaa0523246"><div class="ttname"><a href="a00188.html#ga8c25ad5eee2386d7f5180ccaa0523246">glm::rgbColor</a></div><div class="ttdeci">detail::tvec3< T, P > rgbColor(detail::tvec3< T, P > const &hsvValue)</div><div class="ttdoc">Converts a color from HSV color space to its color in RGB color space. </div></div>
<div class="ttc" id="a00188_html_gac62caac6baddd276a9569b3630fd47bf"><div class="ttname"><a href="a00188.html#gac62caac6baddd276a9569b3630fd47bf">glm::luminosity</a></div><div class="ttdeci">T luminosity(detail::tvec3< T, P > const &color)</div><div class="ttdoc">Compute color luminosity associating ratios (0.33, 0.59, 0.11) to RGB canals. </div></div>
</div><!-- fragment --></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.5
</small></address>
</body>
</html>
| googlearchive/tango-examples-c | third_party/glm/doc/api/a00014_source.html | HTML | apache-2.0 | 11,008 |
<html>
<head>
<script src="../htmlrunner.js"></script>
<script>
// The Great Computer Language Shootout
// http://shootout.alioth.debian.org
//
// Contributed by Ian Osgood
var last = 42, A = 3877, C = 29573, M = 139968;
function rand(max) {
last = (last * A + C) % M;
return max * last / M;
}
var ALU =
"GGCCGGGCGCGGTGGCTCACGCCTGTAATCCCAGCACTTTGG" +
"GAGGCCGAGGCGGGCGGATCACCTGAGGTCAGGAGTTCGAGA" +
"CCAGCCTGGCCAACATGGTGAAACCCCGTCTCTACTAAAAAT" +
"ACAAAAATTAGCCGGGCGTGGTGGCGCGCGCCTGTAATCCCA" +
"GCTACTCGGGAGGCTGAGGCAGGAGAATCGCTTGAACCCGGG" +
"AGGCGGAGGTTGCAGTGAGCCGAGATCGCGCCACTGCACTCC" +
"AGCCTGGGCGACAGAGCGAGACTCCGTCTCAAAAA";
var IUB = {
a:0.27, c:0.12, g:0.12, t:0.27,
B:0.02, D:0.02, H:0.02, K:0.02,
M:0.02, N:0.02, R:0.02, S:0.02,
V:0.02, W:0.02, Y:0.02
}
var HomoSap = {
a: 0.3029549426680,
c: 0.1979883004921,
g: 0.1975473066391,
t: 0.3015094502008
}
function makeCumulative(table) {
var last = null;
for (var c in table) {
if (last) table[c] += table[last];
last = c;
}
}
function fastaRepeat(n, seq) {
var seqi = 0, lenOut = 60;
while (n>0) {
if (n<lenOut) lenOut = n;
if (seqi + lenOut < seq.length) {
ret = seq.substring(seqi, seqi+lenOut);
seqi += lenOut;
} else {
var s = seq.substring(seqi);
seqi = lenOut - s.length;
ret = s + seq.substring(0, seqi);
}
n -= lenOut;
}
}
function fastaRandom(n, table) {
var line = new Array(60);
makeCumulative(table);
while (n>0) {
if (n<line.length) line = new Array(n);
for (var i=0; i<line.length; i++) {
var r = rand(1);
for (var c in table) {
if (r < table[c]) {
line[i] = c;
break;
}
}
}
ret = line.join('');
n -= line.length;
}
}
window.onload = function(){ startTest("sunspider-string-fasta", '8d52ecfc');
var ret;
var n = 16;
test( "Homo sapiens alu", function(){
ret = fastaRepeat(4*n*10000, ALU);
});
test( "IUB ambiguity codes", function(){
ret = fastaRandom(3*n*100, IUB);
});
test( "Homo sapiens frequency", function(){
ret = fastaRandom(5*n*100, HomoSap);
});
endTest(); };
</script>
</head>
<body></body>
</html>
| guorendong/iridium-browser-ubuntu | third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/sunspider-string-fasta.html | HTML | bsd-3-clause | 2,182 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE>
Image Location and Privacy Scanner - About
</TITLE>
</HEAD>
<BODY>
<H1>Image Location and Privacy Scanner - About</H1>
<H2>Source Code</H2>
<a href="https://github.com/zaproxy/zap-extensions/tree/main/addOns/imagelocationscanner">https://github.com/zaproxy/zap-extensions/tree/main/addOns/imagelocationscanner</a><br>
<a href="https://github.com/veggiespam/ImageLocationScanner">https://github.com/veggiespam/ImageLocationScanner</a>
<H2>Authors</H2>
Veggiespam and the ZAP Dev Team
<H2>History</H2>
<H3>Version 2 - TBD</H3>
<ul>
<li>Maintenance changes.</li>
</ul>
<H3>Version 1 - 2018-02-27</H3>
<ul>
<li>Image Location and Privacy Scanner separated from Passive Scan Rules Alpha and promoted to Beta.</li>
</ul>
</BODY>
</HTML>
| kingthorin/zap-extensions | addOns/imagelocationscanner/src/main/javahelp/org/zaproxy/zap/extension/imagelocationscanner/resources/help_zh_CN/contents/about.html | HTML | apache-2.0 | 817 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Resizable - Default functionality</title>
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
<script src="../../jquery-1.9.1.js"></script>
<script src="../../ui/jquery.ui.core.js"></script>
<script src="../../ui/jquery.ui.widget.js"></script>
<script src="../../ui/jquery.ui.mouse.js"></script>
<script src="../../ui/jquery.ui.resizable.js"></script>
<link rel="stylesheet" href="../demos.css">
<style>
#resizable { width: 150px; height: 150px; padding: 0.5em; }
#resizable h3 { text-align: center; margin: 0; }
</style>
<script>
$(function() {
$( "#resizable" ).resizable();
});
</script>
</head>
<body>
<div id="resizable" class="ui-widget-content">
<h3 class="ui-widget-header">Resizable</h3>
</div>
<div class="demo-description">
<p>Enable any DOM element to be resizable. With the cursor grab the right or bottom border and drag to the desired width or height.</p>
</div>
</body>
</html>
| yuyang545262477/Resume | 项目三jQueryMobile/bower_components/jquery-ui-tabs/demos/resizable/default.html | HTML | mit | 1,012 |
<!--
The ID "widget-grid" will start to initialize all widgets below
You do not need to use widgets if you dont want to. Simply remove
the <section></section> and you can use wells or panels instead
-->
<!-- widget grid -->
<section id="widget-grid" class="">
<!-- row -->
<div class="row">
<!-- NEW WIDGET START -->
<article class="col-xs-6 col-sm-6 col-md-6 col-lg-6">
<!-- Widget ID (each widget will need unique ID)-->
<div class="jarviswidget" id="wid-id-4">
<!-- widget options:
usage: <div class="jarviswidget" id="wid-id-0" data-widget-editbutton="false">
data-widget-colorbutton="false"
data-widget-editbutton="false"
data-widget-togglebutton="false"
data-widget-deletebutton="false"
data-widget-fullscreenbutton="false"
data-widget-custombutton="false"
data-widget-collapsed="true"
data-widget-sortable="false"
-->
<header>
<span class="widget-icon"> <i class="fa fa-table"></i> </span>
<h2>数据字典组列表</h2>
</header>
<!-- widget div-->
<div>
<!-- widget edit box -->
<div class="jarviswidget-editbox">
<!-- This area used as dropdown edit box -->
</div>
<!-- end widget edit box -->
<!-- widget content -->
<div class="widget-body no-padding">
<div class="dt-toolbar">
<div class="col-sm-6">
<div class="dataTables_filter">
<label>
<span class="input-group-addon"><i class="glyphicon glyphicon-search"></i></span>
<input type="search" placeholder="代码/名称" data-ng-keyup="getDictionaryGroupList()" ng-model="queryParam.keyword" class="form-control" aria-controls="dt_basic"></label>
</div>
</div>
<div class="col-sm-4">
<button class="btn btn-primary" type="button" data-ng-click="getDictionaryGroupList()">
<i class="fa fa-refresh"></i>
刷新
</button>
<button class="btn btn-primary" type="button" data-ng-click="open()">
<i class="fa fa-plus"></i>
新增组
</button>
</div>
</div>
<div class="table-responsive">
<table class="table table-striped table-condensed table-hover smart-form has-tickbox">
<thead>
<tr>
<th>
<label class="checkbox">
<input type="checkbox" name="checkbox-inline">
<i></i>
</label>
</th>
<th width="120">代码</th>
<th>名称</th>
<th>有效状态</th>
<th width="80">操作</th>
</tr>
</thead>
<tbody>
<tr ng-class="{warning:currentDictionaryGroup.id==dictionaryGroup.id}"
data-ng-click="choiceGroup($index)"
ng-repeat="dictionaryGroup in dictionaryGroupList"
ng-if="dictionaryGroupList.length > 0"
ng-mouseenter="show=true"
ng-mouseleave="show=false">
<td>
<label class="checkbox">
<input type="checkbox" name="checkbox-inline">
<i></i>
</label>
</td>
<td ng-bind="dictionaryGroup.dictionaryCode"></td>
<td ng-bind="dictionaryGroup.dictionaryDesc"></td>
<td ng-bind="dictionaryGroup.available"></td>
<td>
<div ng-show="show">
<a href="javascript:void(0);" data-ng-click="removeDictionaryGroup($index)" title="删除:{{dictionaryGroup.dictionaryDesc}}">
<span class="glyphicon glyphicon-remove-circle"></span>
</a>
<span> | </span>
<a href="javascript:void(0);" data-ng-click="updateDictionaryGroup($index)" title="编辑:{{dictionaryGroup.dictionaryDesc}}">
<span class="fa fa-pencil"></span>
</a>
</div>
</td>
</tr>
<tr ng-if="dictionaryGroupList == null || dictionaryGroupList.length == 0">
<td colspan="11">
<div>暂无数据</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="dt-toolbar-footer">
<div class="col-xs-12 col-sm-12">
<ug-pagination page-info="pageInfoSetting" ></ug-pagination>
</div>
</div>
</div>
<!-- end widget content -->
</div>
<!-- end widget div -->
</div>
<!-- end widget -->
</article>
<!-- WIDGET END -->
<!-- NEW WIDGET START -->
<article class="col-xs-6 col-sm-6 col-md-6 col-lg-6">
<!-- Widget ID (each widget will need unique ID)-->
<div class="jarviswidget">
<!-- widget options:
usage: <div class="jarviswidget" id="wid-id-0" data-widget-editbutton="false">
data-widget-colorbutton="false"
data-widget-editbutton="false"
data-widget-togglebutton="false"
data-widget-deletebutton="false"
data-widget-fullscreenbutton="false"
data-widget-custombutton="false"
data-widget-collapsed="true"
data-widget-sortable="false"
-->
<header>
<span class="widget-icon"> <i class="fa fa-table"></i> </span>
<h2>数据字典列表</h2>
</header>
<!-- widget div-->
<div>
<!-- widget edit box -->
<div class="jarviswidget-editbox">
<!-- This area used as dropdown edit box -->
</div>
<!-- end widget edit box -->
<!-- widget content -->
<div class="widget-body no-padding">
<div class="dt-toolbar">
<div class="col-xs-11 col-sm-8">
<div class="dataTables_filter">
<label>
<span class="input-group-addon"><i class="glyphicon glyphicon-search"></i></span>
<input type="search" placeholder="实际值/显示值/排序值" data-ng-keyup="getDictionaryList()" ng-model="dictionaryQueryParam.keyword" class="form-control" aria-controls="dt_basic"></label>
</div>
</div>
<div class="col-xs-1 col-sm-2">
<button class="btn btn-primary" type="button" data-ng-click="openChild(dictionary)">
<i class="fa fa-plus"></i>
新增数据字典
</button>
</div>
</div>
<div class="table-responsive">
<table class="table table-striped table-condensed table-hover smart-form has-tickbox">
<thead>
<tr>
<th>
<label class="checkbox">
<input type="checkbox" name="checkbox-inline">
<i></i>
</label>
</th>
<th width="120">显示值</th>
<th>实际值</th>
<th>排序</th>
<th>有效状态</th>
<th width="80">操作</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="dictionary in dictionaryList" ng-if="dictionaryList.length > 0" ng-mouseenter="show=true" ng-mouseleave="show=false">
<td>
<label class="checkbox">
<input type="checkbox" name="checkbox-inline">
<i></i>
</label>
</td>
<td ng-bind="dictionary.showValue"></td>
<td ng-bind="dictionary.realValue"></td>
<td ng-bind="dictionary.sortValue"></td>
<td ng-bind="dictionary.available"></td>
<td>
<div ng-show="show">
<a href="javascript:void(0);" data-ng-click="removeDictionary($index)" title="删除:{{dictionary.showValue}}">
<span class="glyphicon glyphicon-remove-circle"></span>
</a>
<span> | </span>
<a href="javascript:void(0);" data-ng-click="updateDictionary($index)" title="编辑:{{dictionary.showValue}}">
<span class="fa fa-pencil"></span>
</a>
</div>
</td>
</tr>
<tr ng-if="dictionaryList == null || dictionaryList.length == 0">
<td colspan="6">
<div>暂无数据</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="dt-toolbar-footer">
<div class="col-xs-12 col-sm-12">
<ug-pagination page-info="childPageInfoSetting" ></ug-pagination>
</div>
</div>
</div>
<!-- end widget content -->
</div>
<!-- end widget div -->
</div>
<!-- end widget -->
</article>
<!-- WIDGET END -->
</div>
<!-- end row -->
</section>
<!-- end widget grid -->
<script type="text/ng-template" id="addDictionaryGroup.html">
<div class="modal-header">
<h3 class="modal-title">数据字典组信息</h3>
</div>
<div class="modal-body">
<div class="widget-body">
<form class="form-horizontal" ug-validate="addDictionaryGroupForm" name="addDictionaryGroupForm" novalidate="">
<fieldset>
<div class="form-group">
<label class="col-md-2 control-label">代码</label>
<div class="col-md-10 input-group">
<input class="form-control" ng-model="dictionaryGroup.id" name="id" type="hidden">
<input class="form-control" ng-disabled="dictionaryGroup.id" required ng-model="dictionaryGroup.dictionaryCode" name="dictionaryCode" placeholder="代码" type="text">
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label">名称</label>
<div class="col-md-10 input-group">
<input class="form-control" required ng-model="dictionaryGroup.dictionaryDesc" name="dictionaryDesc" placeholder="描述" type="text">
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label">是否启用</label>
<div class="col-md-10 input-group">
<label class="radio radio-inline">
<input type="radio" required class="radiobox" ng-model="dictionaryGroup.available" value="0" ng-checked="dictionaryGroup.available==0" name="available">
<span>启用</span>
</label>
<label class="radio radio-inline">
<input type="radio" required class="radiobox" ng-model="dictionaryGroup.available" value="1" ng-checked="dictionaryGroup.available==1" name="available">
<span>禁用</span>
</label>
</div>
</div>
<div class="form-group" ng-if="errors">
<label class="col-md-2 control-label"></label>
<div class="col-md-10 error">
{{errors.message}}
</div>
</div>
</fieldset>
</form>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-primary" type="submit" data-ng-click="saveDictionaryGroup()">
<i class="fa fa-save"></i>
保存
</button>
<button class="btn btn-warning" ng-click="cancel()">关闭</button>
</div>
</script>
<script type="text/ng-template" id="addDictionary.html">
<div class="modal-header">
<h3 class="modal-title">数据字典信息</h3>
</div>
<div class="modal-body">
<div class="widget-body">
<form class="form-horizontal" ug-validate="addDictionaryForm" name="addDictionaryForm" novalidate="">
<fieldset>
<div class="form-group">
<label class="col-md-2 control-label">组别</label>
<div class="col-md-10 input-group">
<input class="form-control" disabled="true" ng-model="dictionary.groupDesc" name="groupDesc" placeholder="组别" type="text">
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label">显示值</label>
<div class="col-md-10 input-group">
<input class="form-control" ng-model="dictionary.id" name="id" type="hidden">
<input class="form-control" ng-model="dictionary.sysDictionaryId" name="sysDictionaryId" type="hidden">
<input class="form-control" required ng-model="dictionary.showValue" name="showValue" placeholder="显示值" type="text">
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label">实际值</label>
<div class="col-md-10 input-group">
<input class="form-control" ng-disabled="dictionary.id" required ng-model="dictionary.realValue" name="realValue" placeholder="实际值" type="text">
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label">排序值</label>
<div class="col-md-10 input-group">
<input class="form-control" required ng-model="dictionary.sortValue" name="sortValue" placeholder="排序值" type="text">
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label">是否启用</label>
<div class="col-md-10 input-group">
<label class="radio radio-inline">
<input type="radio" required class="radiobox" ng-model="dictionary.available" value="0" ng-checked="dictionary.available==0" name="available">
<span>禁用</span>
</label>
<label class="radio radio-inline">
<input type="radio" required class="radiobox" ng-model="dictionary.available" value="1" ng-checked="dictionary.available==1" name="available">
<span>启用</span>
</label>
</div>
</div>
<div class="form-group" ng-if="errors">
<label class="col-md-2 control-label"></label>
<div class="col-md-10 error">
{{errors.message}}
</div>
</div>
</fieldset>
</form>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-primary" type="submit" data-ng-click="saveDictionary()">
<i class="fa fa-save"></i>
保存
</button>
<button class="btn btn-warning" ng-click="cancel()">关闭</button>
</div>
</script> | xmomen/dms-webapp | src/main/webapp/WEB-INF/views/src/views/base/dictionary.html | HTML | mit | 13,417 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `XKB_KEY_mute_grave` constant in crate `wayland_kbd`.">
<meta name="keywords" content="rust, rustlang, rust-lang, XKB_KEY_mute_grave">
<title>wayland_kbd::keysyms::XKB_KEY_mute_grave - Rust</title>
<link rel="stylesheet" type="text/css" href="../../main.css">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<section class="sidebar">
<p class='location'><a href='../index.html'>wayland_kbd</a>::<wbr><a href='index.html'>keysyms</a></p><script>window.sidebarCurrent = {name: 'XKB_KEY_mute_grave', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</section>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press 'S' to search, '?' for more options..."
type="search">
</div>
</form>
</nav>
<section id='main' class="content constant">
<h1 class='fqn'><span class='in-band'><a href='../index.html'>wayland_kbd</a>::<wbr><a href='index.html'>keysyms</a>::<wbr><a class='constant' href=''>XKB_KEY_mute_grave</a></span><span class='out-of-band'><span id='render-detail'>
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
[<span class='inner'>−</span>]
</a>
</span><a id='src-7196' class='srclink' href='../../src/wayland_kbd/ffi/keysyms.rs.html#2984' title='goto source code'>[src]</a></span></h1>
<pre class='rust const'>pub const XKB_KEY_mute_grave: <a href='http://doc.rust-lang.org/nightly/std/primitive.u32.html'>u32</a><code> = </code><code>0x100000a9</code></pre></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<div id="help" class="hidden">
<div class="shortcuts">
<h1>Keyboard shortcuts</h1>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
</dl>
</div>
<div class="infos">
<h1>Search tricks</h1>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>typedef</code> (or
<code>tdef</code>).
</p>
<p>
Search functions by type signature (e.g.
<code>vec -> usize</code>)
</p>
</div>
</div>
<script>
window.rootPath = "../../";
window.currentCrate = "wayland_kbd";
window.playgroundUrl = "";
</script>
<script src="../../jquery.js"></script>
<script src="../../main.js"></script>
<script async src="../../search-index.js"></script>
</body>
</html> | mcanders/bevy | doc/wayland_kbd/keysyms/constant.XKB_KEY_mute_grave.html | HTML | mit | 3,845 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>
<title>528-44-9.smi.png.html</title>
</head>
<body>ID528-44-9<br/>
<img border="0" src="528-44-9.smi.png" alt="528-44-9.smi.png"></img><br/>
<br/>
<table border="1">
<tr>
<td></td><td>ID</td><td>Formula</td><td>FW</td><td>DSSTox_CID</td><td>DSSTox_RID</td><td>DSSTox_GSID</td><td>DSSTox_FileID_Sort</td><td>TS_ChemName</td><td>TS_ChemName_Synonyms</td><td>TS_CASRN</td><td>CASRN_ChemName_Relationship</td><td>TS_Description</td><td>ChemNote</td><td>STRUCTURE_Shown</td><td>STRUCTURE_Formula</td><td>STRUCTURE_MW</td><td>STRUCTURE_ChemType</td><td>STRUCTURE_DefinedOrganicForm</td><td>STRUCTURE_IUPAC</td><td>STRUCTURE_SMILES</td><td>STRUCTURE_SMILES_Desalt</td><td>Substance_modify_yyyymmdd</td></tr>
<tr>
<td>528-44-9</td><td>1428</td><td>C9H6O6</td><td>210.1403</td><td>1487</td><td>76181</td><td>21487</td><td>865</td><td>1,2,4-Benzenetricarboxylic acid</td><td>1,2,4-Benzenetricarboxylic acid (Trimellitic acid)</td><td>528-44-9</td><td>primary</td><td>single chemical compound</td><td></td><td>tested chemical</td><td>C9H6O6</td><td>210.1403</td><td>defined organic</td><td>parent</td><td>benzene-1,2,4-tricarboxylic acid</td><td>OC(=O)c1cc(ccc1C(=O)O)C(=O)O</td><td>OC(=O)c1cc(ccc1C(=O)O)C(=O)O</td><td>20080429</td></tr>
</table>
<br/><br/><font size="-2">(Page generated on Wed Sep 17 01:51:21 2014 by <a href="http://www.embl.de/~gpau/hwriter/index.html">hwriter</a> 1.3)</font><br/>
</body></html> | andrewdefries/ToxCast | Figure3/ToxCast_nnm/WorkHere/528-44-9.smi.png.html | HTML | mit | 1,682 |
<!DOCTYPE html>
<html data-ng-app="mydetail" lang="en" class="well">
<head>
<title>My Detail Service</title>
<style>
/* This helps the ng-show/ng-hide animations start at the right place. */
/* Since Angular has this but needs to load, this gives us the class early. */
.ng-hide {
display: none!important;
}
</style>
<link rel="stylesheet" href="css/mydetail.css" />
</head>
<body ng-app="mydetail">
<div ui-view="header"></div>
<div ui-view="content" class="container-fluid" ng-class="$state.current.data.contentClasses"></div>
<footer class="footer navbar-fixed-bottom">
</footer>
<!--Libraries-->
<!-- lib:js -->
<!-- endinject -->
<!--App-->
<!-- app:js -->
<!-- endinject -->
<script type="text/javascript" src="js/ngConstants.js"></script>
<script type="text/javascript" src="js/templates.js"></script>
</body>
</html>
| sophalMok/MyDetail | web-app/index.html | HTML | mit | 939 |
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8">
<!-- begin SEO -->
<title>Sample Page - Witty AI</title>
<meta name="description" content="A personal website.">
<meta property="og:locale" content="en_US">
<meta property="og:site_name" content="Witty AI">
<meta property="og:title" content="Sample Page">
<link rel="canonical" href="http://localhost:4000/sample-page/">
<meta property="og:url" content="http://localhost:4000/sample-page/">
<meta name="twitter:site" content="@mmistakes">
<meta name="twitter:title" content="Sample Page">
<meta name="twitter:description" content="A personal website.">
<meta name="twitter:url" content="http://localhost:4000/sample-page/">
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="http://localhost:4000/assets/images/site-logo.png">
<meta property="og:image" content="http://localhost:4000/assets/images/site-logo.png">
<meta property="og:type" content="article">
<meta property="article:published_time" content="2016-02-23T22:02:20-05:00">
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"url": "http://localhost:4000",
"logo": "http://localhost:4000/assets/images/site-logo.png"
}
</script>
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "Person",
"name" : "Ryan Skorupski",
"url" : "http://localhost:4000",
"sameAs" : ["https://twitter.com/mmistakes","https://facebook.com/michaelrose"]
}
</script>
<meta name="google-site-verification" content="UQj93ERU9zgECodaaXgVpkjrFn9UrDMEzVamacSoQ8Y" />
<!-- end SEO -->
<link href="http://localhost:4000/feed.xml" type="application/atom+xml" rel="alternate" title="Witty AI Feed">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>
document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + ' js ';
</script>
<!-- For all browsers -->
<link rel="stylesheet" href="http://localhost:4000/assets/css/main.css">
<meta http-equiv="cleartype" content="on">
<!-- start custom head snippets -->
<!-- insert favicons. use http://realfavicongenerator.net/ -->
<!-- end custom head snippets -->
</head>
<body class="layout--single">
<!--[if lt IE 9]>
<div class="notice--danger align-center" style="margin: 0;">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</div>
<![endif]-->
<div class="masthead">
<div class="masthead__inner-wrap">
<div class="masthead__menu">
<nav id="site-nav" class="greedy-nav">
<button><div class="navicon"></div></button>
<ul class="visible-links">
<li class="masthead__menu-item masthead__menu-item--lg"><a href="http://localhost:4000/">Witty AI</a></li>
<li class="masthead__menu-item"><a href="http://localhost:4000/docs/quick-start-guide/">Quick-Start Guide</a></li>
<li class="masthead__menu-item"><a href="http://localhost:4000/about/">About</a></li>
<li class="masthead__menu-item"><a href="http://localhost:4000/year-archive/">Sample Posts</a></li>
<li class="masthead__menu-item"><a href="http://localhost:4000/collection-archive/">Sample Collections</a></li>
<li class="masthead__menu-item"><a href="http://localhost:4000/terms/">Terms & Privacy Policy</a></li>
</ul>
<ul class="hidden-links hidden"></ul>
</nav>
</div>
</div>
</div>
<div id="main" role="main">
<div class="sidebar sticky">
<div itemscope itemtype="http://schema.org/Person">
<div class="author__avatar">
<img src="http://localhost:4000/assets/images/michael-rose.jpg" class="author__avatar" alt="Ryan Skorupski" itemprop="image">
</div>
<div class="author__content">
<h3 class="author__name" itemprop="name">Ryan Skorupski</h3>
<p class="author__bio" itemprop="description">
Just another boring, tattooed, time traveling, designer.
</p>
</div>
<div class="author__urls-wrapper">
<button class="btn btn--inverse">Follow</button>
<ul class="author__urls social-icons">
<li itemprop="homeLocation" itemscope itemtype="http://schema.org/Place">
<i class="fa fa-fw fa-map-marker" aria-hidden="true"></i>
<span itemprop="name"> Buffalo, NY </span>
</li>
<li>
<a href="https://mademistakes.com" itemprop="url">
<i class="fa fa-fw fa-chain" aria-hidden="true"></i>
Website
</a>
</li>
<li><a href="https://twitter.com/mmistakes" itemprop="sameAs">
<i class="fa fa-fw fa-twitter-square" aria-hidden="true"></i>
Twitter
</a></li>
<li><a href="https://www.facebook.com/michaelrose" itemprop="sameAs">
<i class="fa fa-fw fa-facebook-square" aria-hidden="true"></i>
Facebook
</a></li>
<li><a href="https://instagram.com/mmistakes" itemprop="sameAs">
<i class="fa fa-fw fa-instagram" aria-hidden="true"></i>
Instagram
</a></li>
<li><a href="https://github.com/mmistakes" itemprop="sameAs">
<i class="fa fa-fw fa-github" aria-hidden="true"></i>
Github
</a></li>
</ul>
</div>
</div>
</div>
<article class="page" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="headline" content="Sample Page">
<meta itemprop="datePublished" content="February 23, 2016">
<div class="page__inner-wrap">
<header>
<h1 class="page__title" itemprop="headline">Sample Page
</h1>
</header>
<section class="page__content" itemprop="text">
<p>This is an example page. It’s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>
<blockquote>
<p>Hi there! I’m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi’a coladas. (And gettin’ caught in the rain.)</p>
</blockquote>
<p>…or something like this:</p>
<blockquote>
<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p>
</blockquote>
<p>You should probably delete this page and create new pages for your content. Have fun!</p>
</section>
<footer class="page__meta">
<p class="page__date"><strong><i class="fa fa-fw fa-calendar" aria-hidden="true"></i> Updated:</strong> <time datetime="2016-02-23T22:02:20-05:00">February 23, 2016</time></p>
</footer>
</div>
</article>
</div>
<div class="page__footer">
<footer>
<!-- start custom footer snippets -->
<!-- end custom footer snippets -->
<div class="page__footer-follow">
<ul class="social-icons">
<li><strong>Follow:</strong></li>
<li><a href="https://twitter.com/mmistakes"><i class="fa fa-fw fa-twitter-square" aria-hidden="true"></i> Twitter</a></li>
<li><a href="https://facebook.com/michaelrose"><i class="fa fa-fw fa-facebook-square" aria-hidden="true"></i> Facebook</a></li>
<li><a href="http://github.com/mmistakes"><i class="fa fa-fw fa-github" aria-hidden="true"></i> GitHub</a></li>
<li><a href="http://localhost:4000/feed.xml"><i class="fa fa-fw fa-rss-square" aria-hidden="true"></i> Feed</a></li>
</ul>
</div>
<div class="page__footer-copyright">© 2016 Ryan Skorupski. Powered by <a href="http://jekyllrb.com" rel="nofollow">Jekyll</a> & <a href="https://mademistakes.com/work/minimal-mistakes-jekyll-theme/" rel="nofollow">Minimal Mistakes</a>.</div>
</footer>
</div>
<script src="http://localhost:4000/assets/js/main.min.js"></script>
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-2011187-3', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>
| WittyAgnomen/WittyAgnomen.github.io | _site/sample-page/index.html | HTML | mit | 9,375 |
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目 </b></th><td class="std2">先人有奪人之心</td></tr>
<tr><th class="std1"><b>參考成語 </b></th><td class="std2"><a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000445%22.%26v%3D-1" class="clink" target=_blank>先聲奪人</a></td></tr>
<tr><th class="std1"><b><font class="fltypefont">附錄</font> </b></th><td class="std2">正文相關語料參考資料表</td></tr>
</td></tr></table></div> <!-- flayoutclass_first --><div class="flayoutclass_second"></div> <!-- flayoutclass_second --></div> <!-- flayoutclass --></td></tr></table>
| BuzzAcademy/idioms-moe-unformatted-data | all-data/29000-29999/29937-22.html | HTML | mit | 941 |
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca -->
<head>
<!-- Title begins / Début du titre -->
<title>
Back Country Log Homes -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492268156744&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=4950&V_SEARCH.docsStart=1&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
</ul>
</div>
<details>
<summary>Third-Party Information Liability Disclaimer</summary>
<p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p>
</details>
<h2>
Back Country Log Homes
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>Back Country Log Homes</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.backcountryloghomes.ca"
target="_blank" title="Website URL">http://www.backcountryloghomes.ca</a></p>
<p><a href="mailto:jeff@backcountryloghomes.ca" title="jeff@backcountryloghomes.ca">jeff@backcountryloghomes.ca</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
P.O. Box 16 <br/>
R.R. 7 - Site 710 <br/>
SASKATOON,
Saskatchewan<br/>
S7K 1N2
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(306) 493-2448
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(306) 493-3133</p>
</div>
<div class="col-md-3 mrgn-tp-md">
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
<h2 class="wb-inv">Company Profile</h2>
<br> log home builder<br>
</div>
</div>
<!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> -->
<div class="wb-tabs ignore-session">
<div class="tabpanels">
<details id="details-panel1">
<summary>
Full profile
</summary>
<!-- Tab 1 -->
<h2 class="wb-invisible">
Full profile
</h2>
<!-- Contact Information -->
<h3 class="page-header">
Contact information
</h3>
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Jeffery
Esau
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
owner <br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(306) 493-2441
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(306) 493-2481
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
aeropac@characterlink.net
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
337123 - Other Wood Household Furniture Manufacturing
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
321992 - Prefabricated Wood Building Manufacturing<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Manufacturer / Processor / Producer
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
log homes and furniture <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
FSC Code:
</strong>
</div>
<div class="col-md-9">
5670-Building Components, Prefabricated
<br>
7105-Household Furniture
<br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Jeffery
Esau
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
owner <br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(306) 493-2441
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(306) 493-2481
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
aeropac@characterlink.net
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
337123 - Other Wood Household Furniture Manufacturing
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
321992 - Prefabricated Wood Building Manufacturing<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Manufacturer / Processor / Producer
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
log homes and furniture <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
FSC Code:
</strong>
</div>
<div class="col-md-9">
5670-Building Components, Prefabricated
<br>
7105-Household Furniture
<br>
</div>
</div>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2016-02-24
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
| GoC-Spending/data-corporations | html/234567060561.html | HTML | mit | 32,120 |
<!DOCTYPE html>
<html>
<head>
<script src="../Dable.js"></script>
<!--Include the Bootstrap CDN-->
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div id="PagingDable"></div>
<script type="text/javascript">
var dable = new Dable();
var data = [
[ 1, 2 ], [ 3, 4 ], [5, 6], [7, 8], [9, 10],
[11, 12], [13, 14], [15, 16], [17, 18], [19, 20],
[ 1, 2 ], [ 3, 4 ], [5, 6], [7, 8], [9, 10],
[11, 12], [13, 14], [15, 16], [17, 18], [19, 20]
];
var columns = [ 'Odd', 'Even' ];
dable.SetDataAsRows(data);
dable.SetColumnNames(columns);
dable.pageSizes = [1, 2, 5]; // replace the possible page sizes with our own
dable.pageSize = 1; // select a tiny page size for the example
dable.pagerSize = 5; // The pager is our previous/next buttons, we're adding a 5 page display to it
dable.pagerIncludeFirstAndLast = true; //we're going to include first and last buttons
dable.BuildAll("PagingDable");
setInterval(function() { //lets alternate the styles so we can see the pager works on all styles
if (dable.style == "jqueryui") {
dable.style = "bootstrap";
}
else if (!dable.style) {
dable.style = "jqueryui";
}
else {
dable.style = "";
}
dable.UpdateStyle(document.getElementById("AlternatingDable"));
}, 3000);
</script>
</body>
</html> | lucanos/Dable | Examples/Paging.html | HTML | mit | 1,288 |
<html>
<head>
<title>Nihal Arthanyake's panel show appearances</title>
<script type="text/javascript" src="../common.js"></script>
<link rel="stylesheet" media="all" href="../style.css" type="text/css"/>
<script type="text/javascript" src="../people.js"></script>
<!--#include virtual="head.txt" -->
</head>
<body>
<!--#include virtual="nav.txt" -->
<div class="page">
<h1>Nihal Arthanyake's panel show appearances</h1>
<p>Nihal Arthanyake has appeared in <span class="total">2</span> episodes between 2005-2005. Note that these appearances may be for more than one person if multiple people have the same name.</p>
<div class="performerholder">
<table class="performer">
<tr style="vertical-align:bottom;">
<td><div style="height:100px;" class="performances male" title="2"></div><span class="year">2005</span></td>
</tr>
</table>
</div>
<ol class="episodes">
<li><strong>2005-12-05</strong> / <a href="../shows/never-mind-the-buzzcocks.html">Never Mind The Buzzcocks</a></li>
<li><strong>2005-02-06</strong> / <a href="../shows/never-mind-the-buzzcocks.html">Never Mind The Buzzcocks</a></li>
</ol>
</div>
</body>
</html>
| slowe/panelshows | people/al3xusyn.html | HTML | mit | 1,150 |
---
layout: attachment
title: cakephp-default-page
categories: []
tags: []
status: inherit
type: attachment
published: false
meta:
_wp_attached_file: 2011/08/cakephp-default-page.jpg
_wp_attachment_metadata: a:6:{s:5:"width";s:3:"697";s:6:"height";s:3:"499";s:14:"hwstring_small";s:23:"height='91'
width='128'";s:4:"file";s:32:"2011/08/cakephp-default-page.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:32:"cakephp-default-page-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:32:"cakephp-default-page-300x214.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"214";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}
author:
login: yokoshima
email: k.yokoshima@gmail.com
display_name: yokoshima
first_name: ''
last_name: ''
---
| tmpla/tmpla.github.io | _attachments/2011-08-21-cakephp-default-page.html | HTML | mit | 1,004 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Mt. Pulag</title>
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Theme CSS -->
<link href="css/clean-blog.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<style type="text/css">
.dropbtn {
background-color: transparent;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,3);
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: transparent;}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
background-color: transparent;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand" href="index.html">Travel CAR</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="index.html">HOME</a>
</li>
<li>
<a href="about.html">ABOUT US</a>
</li>
<li>
<!-- <a href="post.html"><font color="black">BLOGS</font></a> -->
<div class="dropdown">
<button class="dropbtn"> <a href="post.html"> <font color="black">BLOGS </font></a></button>
<div class="dropdown-content">
<a href="ifugao.html"><font color="black">IFUGAO </font></a>
<a href="abra.html"> <font color="black">ABRA </font></a>
<a href="apayao.html"> <font color="black">APAYAO </font></a>
<a href="kalinga.html"> <font color="black">KALINGA </font></a>
<a href="mountainprovince.html"> <font color="black">MT PROVINCE </font></a>
<a href="benguet.html"> <font color="black">BENGUET </font></a>
</div>
</div>
<!-- <a href="post.html">BLOGS</a> -->
</li>
<li>
<a href="contact.html">CONTACT</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Page Header -->
<!-- Set your background image for this header on the line below. -->
<header class="intro-header" style="background-image: url('img/pulag-bg.jpg')">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="post-heading">
<h1>Mt. Pulag: Adventure above the Clouds</h1>
<h2 class="subheading">Kabayan, Benguet</h2>
<span class="meta">Posted by <a href="#">Zeny</a> on August 24, 2014</span>
</div>
</div>
</div>
</div>
</header>
<!-- Post Content -->
<article>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<p>
The prodigious and most splendid natural treasure of the Philippines is one of the archipelago’s classical icons, when it comes to those mesmerizing tourist attractions, which magnificently embedded the unparalled wisdom and power of our creator. They are truly amazing and yet incomprehensible to the naked eye. Mount Pulag is one of the most incredible tourist attractions which has engrossingly captivated millions because of its striking and awesome features that are genuinely incomparable from its external facade.</p>
<a href="#">
<img class="img-responsive" src="img/pulag-image1.jpg" alt="">
</a>
<p>To begin with, Mount Pulag is deservingly adjudged in the colorful pages of ancient cultural history of the Philippines as “its third largest peak.” The marvelous and colossal Mount Pulag which is otherwise known as Mount Pulog is Luzon’s highest summit with a gyrating height of 2,922 meters above sea level. Did you know that the gripping borders between these tranquil provinces which are located in the northernmost section of the Philippines are all beautifully converged at the mountain’s peak? These must-see provinces are as follows: Ifugao, Nueva Viscaya and Benguet.</p>
<a href="#">
<img class="img-responsive" src="img/pulag-image2.jpg" alt="">
</a>
<p>Due to its highest elevation, Mount Pulag has a temperate climate although this cool and invigorating place has been constantly visited by heavy rainfall for about a year. Did you know that its rainfall amount averages from 4,489mm? Likewise, its wettest season in a given year is every August. There has not been any single snow which had settled on its peak in the past 200 years. It has a total of 528 plant species which are all accurately documented for the sake of reference when it comes to its significant and comprehensive study in the near future. The extraordinary exuberance of Mount Pulog was blissfully christened as the one and only natural habitat of the endemic Dwarf Bamboo and the humble pride of Benguet which is overwhelmingly known as Pinus Insularis. The said specie had universally dominated the tropical areas of the Philippines’ biggest archipelago.</p>
<a href="#">
<img class="img-responsive" src="img/pulag-image3.jpg" alt="">
</a>
<p>Its inexplicable mountainside is mainly comprised of a native wildlife that very well includes those 33 birds that are continuously generating their rare breed without any inch of difficulty at all. Mount Pulag has become the sacred haven and sanctity of many endangered species such as the Pilandok or the Philippine Deer, Giant Bushy-Tailed Cloud Rat and a bat which is fondly referred to as the Long-Haired Fruit Bat. The rich and enormously expressive Mount Pulag is the only mountain in the Philippines which safely cradles with immeasurable love and care an unusual creature that is commonly called as the Four -Cloud Rat Specie. </p>
</div>
</div>
</div>
</article>
<hr>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<ul class="list-inline text-center">
<li>
<a href="https://twitter.com/?lang=en">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://www.facebook.com/">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://www.instagram.com/?hl=en">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-instagram fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://github.com/">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
<p class="copyright text-muted">All Right Reserved by Jael, Sofia, and Zeny|| CAR Travel Blog Copyright © 2017</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="vendor/jquery/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Theme JavaScript -->
<script src="js/clean-blog.min.js"></script>
</body>
</html>
| Sophia77777/Group9 | pulag.html | HTML | mit | 11,243 |
<html><body>
<h4>Windows 10 x64 (18362.239)</h4><br>
<h2>_PROC_PERF_HISTORY_ENTRY</h2>
<font face="arial"> +0x000 Utility : Uint2B<br>
+0x002 AffinitizedUtility : Uint2B<br>
+0x004 Frequency : UChar<br>
+0x005 TaggedPercent : [2] UChar<br>
</font></body></html> | epikcraw/ggool | public/Windows 10 x64 (18362.239)/_PROC_PERF_HISTORY_ENTRY.html | HTML | mit | 291 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>class RubyXL::CustomWorkbookViews - rubyXL 3.3.23</title>
<script type="text/javascript">
var rdoc_rel_prefix = "../";
var index_rel_prefix = "../";
</script>
<script src="../js/jquery.js"></script>
<script src="../js/darkfish.js"></script>
<link href="../css/fonts.css" rel="stylesheet">
<link href="../css/rdoc.css" rel="stylesheet">
<body id="top" role="document" class="class">
<nav role="navigation">
<div id="project-navigation">
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
<h2>
<a href="../index.html" rel="home">Home</a>
</h2>
<div id="table-of-contents-navigation">
<a href="../table_of_contents.html#pages">Pages</a>
<a href="../table_of_contents.html#classes">Classes</a>
<a href="../table_of_contents.html#methods">Methods</a>
</div>
</div>
<div id="search-section" role="search" class="project-section initially-hidden">
<form action="#" method="get" accept-charset="utf-8">
<div id="search-field-wrapper">
<input id="search-field" role="combobox" aria-label="Search"
aria-autocomplete="list" aria-controls="search-results"
type="text" name="search" placeholder="Search" spellcheck="false"
title="Type to search, Up and Down to navigate, Enter to load">
</div>
<ul id="search-results" aria-label="Search Results"
aria-busy="false" aria-expanded="false"
aria-atomic="false" class="initially-hidden"></ul>
</form>
</div>
</div>
<div id="class-metadata">
<div id="parent-class-section" class="nav-section">
<h3>Parent</h3>
<p class="link"><a href="OOXMLContainerObject.html">RubyXL::OOXMLContainerObject</a>
</div>
</div>
</nav>
<main role="main" aria-labelledby="class-RubyXL::CustomWorkbookViews">
<h1 id="class-RubyXL::CustomWorkbookViews" class="class">
class RubyXL::CustomWorkbookViews
</h1>
<section class="description">
<p><a
href="http://www.schemacentral.com/sc/ooxml/e-ssml_customWorkbookViews-1.html">www.schemacentral.com/sc/ooxml/e-ssml_customWorkbookViews-1.html</a></p>
</section>
<section id="5Buntitled-5D" class="documentation-section">
</section>
</main>
<footer id="validator-badges" role="contentinfo">
<p><a href="http://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="https://rdoc.github.io/rdoc">RDoc</a> 5.0.0.
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>
| lincoln131/rubyspanishxlsx | Portable/Ruby2.3.0/lib/ruby/gems/2.3.0/gems/rubyXL-3.3.23/rdoc/RubyXL/CustomWorkbookViews.html | HTML | mit | 2,657 |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JSX Exercise</title>
<script src="https://unpkg.com/react@16.0.0-rc.2/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16.0.0-rc.2/umd/react-dom.development.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.js"></script>
</head>
<body>
<div id="app">
</div>
<script type="text/babel">
class RandomBox extends React.Component{
render(){
const fontSize = Math.floor(Math.random() * 80) + 20;
const backgroundColor = ['red','green','blue','black'][Math.floor(Math.random()*4)];
return (
<div style={{
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
backgroundColor,
fontSize: `${fontSize}px`,
height: '200px',
width: '500px',
color: 'white'
}}>
Random Box
</div>
);
}
}
ReactDOM.render(<RandomBox />, document.getElementById("app"));
</script>
</body>
</html> | doitanyway/notes-everthing | docs/react/content/randombox/random-box.html | HTML | mit | 1,092 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<meta charset="utf-8"/>
<title> Crater PHP Framework » \Core\Cli\Build
</title>
<meta name="author" content=""/>
<meta name="description" content=""/>
<link href="../css/template.css" rel="stylesheet" media="all"/>
<!--[if lt IE 9]>
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
<![endif]-->
<script src="../js/jquery-1.7.1.min.js" type="text/javascript"></script>
<script src="../js/jquery-ui-1.8.2.custom.min.js" type="text/javascript"></script>
<script src="../js/jquery.mousewheel.min.js" type="text/javascript"></script>
<script src="../js/bootstrap.js" type="text/javascript"></script>
<script src="../js/template.js" type="text/javascript"></script>
<script src="../js/prettify/prettify.min.js" type="text/javascript"></script>
<link rel="shortcut icon" href="../img/favicon.ico"/>
<link rel="apple-touch-icon" href="../img/apple-touch-icon.png"/>
<link rel="apple-touch-icon" sizes="72x72" href="../img/apple-touch-icon-72x72.png"/>
<link rel="apple-touch-icon" sizes="114x114" href="../img/apple-touch-icon-114x114.png"/>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span> <span class="icon-bar"></span>
<span class="icon-bar"></span> </a>
<a class="brand" href="../index.html">Crater PHP Framework</a>
<div class="nav-collapse">
<ul class="nav">
<li class="dropdown">
<a href="#api" class="dropdown-toggle" data-toggle="dropdown">
API Documentation <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a>Namespaces</a></li>
<li><a href="../namespaces/Core.html">Core</a></li>
</ul>
</li>
<li class="dropdown" id="charts-menu">
<a href="#charts" class="dropdown-toggle" data-toggle="dropdown">
Charts <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li>
<a href="../graph_class.html">
<i class="icon-list-alt"></i> Class hierarchy diagram
</a>
</li>
</ul>
</li>
<li class="dropdown" id="reports-menu">
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li>
<a href="../errors.html">
<i class="icon-list-alt"></i> Errors
</a>
</li>
<li>
<a href="../markers.html">
<i class="icon-list-alt"></i> Markers
</a>
</li>
<li>
<a href="../deprecated.html">
<i class="icon-list-alt"></i> Deprecated
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div class="go_to_top">
<a href="#___" style="color: inherit">Back to top  <i class="icon-upload icon-white"></i></a>
</div>
</div>
<div id="___" class="container">
<noscript>
<div class="alert alert-warning">
Javascript is disabled; several features are only available if Javascript is enabled.
</div>
</noscript>
<style>
.deprecated h2 {
text-decoration: line-through;
}
</style>
<div class="row">
<div class="span4">
<div class="btn-group view pull-right" data-toggle="buttons-radio">
<button class="btn details" title="Show descriptions and method names"><i class="icon-list"></i></button>
<button class="btn simple" title="Show only method names"><i class="icon-align-justify"></i></button>
</div>
<div class="btn-group visibility" data-toggle="buttons-checkbox">
<button class="btn public active" title="Show public elements">Public</button>
<button class="btn protected" title="Show protected elements">Protected</button>
<button class="btn private" title="Show private elements">Private</button>
<button class="btn inherited active" title="Show inherited elements">Inherited</button>
</div>
<ul class="side-nav nav nav-list">
<li class="nav-header">
<i class="icon-custom icon-method"></i> Methods
<ul>
<li class="method public">
<a href="#method___construct" title="__construct :: ">
<span class="description"></span><pre>__construct</pre>
</a>
</li>
<li class="method public">
<a href="#method_controller" title="controller :: Generate new controller with actions">
<span class="description">Generate new controller with actions</span><pre>controller</pre>
</a>
</li>
<li class="method public">
<a href="#method_model" title="model :: Generate new model">
<span class="description">Generate new model</span><pre>model</pre>
</a>
</li>
<li class="method public">
<a href="#method_template" title="template :: Generate template file">
<span class="description">Generate template file</span><pre>template</pre>
</a>
</li>
<li class="method public">
<a href="#method_view" title="view :: Generate view file">
<span class="description">Generate view file</span><pre>view</pre>
</a>
</li>
</ul>
</li>
<li class="nav-header protected">» Protected
<ul>
</ul>
</li>
<li class="nav-header private">» Private
<ul>
</ul>
</li>
<li class="nav-header">
<i class="icon-custom icon-constant"></i> Constants
<ul>
</ul>
</li>
</ul>
</div>
<div class="span8">
<div class="element class">
<h1>Build</h1>
<small style="display: block; text-align: right">
</small>
<p class="short_description"></p>
<div class="details">
<div class="long_description">
</div>
<table class="table table-bordered">
<tr>
<th>
package
</th>
<td>
<p>Default</p>
</td>
</tr>
</table>
<h3><i class="icon-custom icon-method"></i> Methods</h3>
<a id="method___construct"></a>
<div class="element clickable method public method___construct" data-toggle="collapse" data-target=".method___construct .collapse">
<h2>__construct</h2>
<pre>__construct( $arguments) </pre>
<div class="labels">
</div>
<div class="row collapse">
<div class="detail-description">
<div class="long_description"></div>
<table class="table">
<tr>
<th>
</th>
<td>
</td>
</tr>
<tr>
<th>
</th>
<td>
</td>
</tr>
</table>
<h3>Arguments</h3>
<div class="subelement argument">
<h4>$arguments</h4>
<code></code><p></p>
</div>
</div>
</div>
</div>
<a id="method_controller"></a>
<div class="element clickable method public method_controller" data-toggle="collapse" data-target=".method_controller .collapse">
<h2>Generate new controller with actions</h2>
<pre>controller(string $name) : boolean</pre>
<div class="labels">
</div>
<div class="row collapse">
<div class="detail-description">
<div class="long_description"></div>
<table class="table">
<tr>
<th>
throws
</th>
<td>
</td>
</tr>
</table>
<h3>Arguments</h3>
<div class="subelement argument">
<h4>$name</h4>
<code>string</code><p><p>Name of the controller</p></p>
</div>
<h3>Response</h3>
<code>boolean</code><p></p>
</div>
</div>
</div>
<a id="method_model"></a>
<div class="element clickable method public method_model" data-toggle="collapse" data-target=".method_model .collapse">
<h2>Generate new model</h2>
<pre>model(string $name, string $primaryKey) : boolean</pre>
<div class="labels">
</div>
<div class="row collapse">
<div class="detail-description">
<div class="long_description"></div>
<table class="table">
<tr>
<th>
throws
</th>
<td>
</td>
</tr>
</table>
<h3>Arguments</h3>
<div class="subelement argument">
<h4>$name</h4>
<code>string</code><p><p>Name of the model</p></p>
</div>
<div class="subelement argument">
<h4>$primaryKey</h4>
<code>string</code><p><p>Name of the primary key column</p></p>
</div>
<h3>Response</h3>
<code>boolean</code><p></p>
</div>
</div>
</div>
<a id="method_template"></a>
<div class="element clickable method public method_template" data-toggle="collapse" data-target=".method_template .collapse">
<h2>Generate template file</h2>
<pre>template(string $name) : boolean</pre>
<div class="labels">
</div>
<div class="row collapse">
<div class="detail-description">
<div class="long_description"></div>
<table class="table">
<tr>
<th>
throws
</th>
<td>
</td>
</tr>
</table>
<h3>Arguments</h3>
<div class="subelement argument">
<h4>$name</h4>
<code>string</code><p><p>Path and name of the template file</p></p>
</div>
<h3>Response</h3>
<code>boolean</code><p></p>
</div>
</div>
</div>
<a id="method_view"></a>
<div class="element clickable method public method_view" data-toggle="collapse" data-target=".method_view .collapse">
<h2>Generate view file</h2>
<pre>view(string $name) : boolean</pre>
<div class="labels">
</div>
<div class="row collapse">
<div class="detail-description">
<div class="long_description"></div>
<table class="table">
<tr>
<th>
throws
</th>
<td>
</td>
</tr>
</table>
<h3>Arguments</h3>
<div class="subelement argument">
<h4>$name</h4>
<code>string</code><p><p>Path and name of the view file</p></p>
</div>
<h3>Response</h3>
<code>boolean</code><p></p>
</div>
</div>
</div>
<h3><i class="icon-custom icon-property"></i> Properties</h3>
<a id="property_arguments"> </a>
<div class="element clickable property protected property_arguments" data-toggle="collapse" data-target=".property_arguments .collapse">
<h2>Command line arguments</h2>
<pre>arguments : array</pre>
<div class="labels">
</div>
<div class="row collapse">
<div class="detail-description">
<div class="long_description"></div>
<table class="table">
<tr>
<th>
var
</th>
<td>
<p>Command line arguments</p>
</td>
</tr>
</table>
<h3>Type(s)</h3>
<code>array</code>
</div>
</div>
</div>
<a id="property_appPath"> </a>
<div class="element clickable property private property_appPath" data-toggle="collapse" data-target=".property_appPath .collapse">
<h2>Application full path</h2>
<pre>appPath : string</pre>
<div class="labels">
</div>
<div class="row collapse">
<div class="detail-description">
<div class="long_description"></div>
<table class="table">
<tr>
<th>
var
</th>
<td>
<p>Application full path</p>
</td>
</tr>
</table>
<h3>Type(s)</h3>
<code>string</code>
</div>
</div>
</div>
</div>
</div>
<a id="\Core\Cli\Build"></a>
<ul class="breadcrumb">
<li><a href="../index.html"><i class="icon-custom icon-class"></i></a></li>
<li><span class="divider">\</span><a href="../namespaces/Core.Cli.html">Cli</a></li>
<li class="active"><span class="divider">\</span><a href="../classes/Core.Cli.Build.html">Build</a></li>
</ul>
</div>
</div>
</div>
<footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by
<a href="http://glyphicons.com/">Glyphicons</a>.<br/>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor </a> and<br/>
generated on Wed, 29 Apr 2015 01:11:37 -0500.<br/>
</footer>
</body>
</html>
| crater-framework/crater-framework.github.io | api/classes/Core.Cli.Build.html | HTML | mit | 27,834 |
<!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>VO808X: testing::internal::GeMatcher< Rhs > Class Template 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="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">VO808X
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><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>
<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>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('classtesting_1_1internal_1_1_ge_matcher.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-methods">Static Public Member Functions</a> |
<a href="classtesting_1_1internal_1_1_ge_matcher-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">testing::internal::GeMatcher< Rhs > Class Template Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="gmock-matchers_8h_source.html">gmock-matchers.h</a>></code></p>
<div class="dynheader">
Inheritance diagram for testing::internal::GeMatcher< Rhs >:</div>
<div class="dyncontent">
<div class="center"><img src="classtesting_1_1internal_1_1_ge_matcher__inherit__graph.png" border="0" usemap="#testing_1_1internal_1_1_ge_matcher_3_01_rhs_01_4_inherit__map" alt="Inheritance graph"/></div>
<!-- MAP 0 -->
<center><span class="legend">[<a target="top" href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for testing::internal::GeMatcher< Rhs >:</div>
<div class="dyncontent">
<div class="center"><img src="classtesting_1_1internal_1_1_ge_matcher__coll__graph.png" border="0" usemap="#testing_1_1internal_1_1_ge_matcher_3_01_rhs_01_4_coll__map" alt="Collaboration graph"/></div>
<!-- MAP 1 -->
<center><span class="legend">[<a target="top" href="graph_legend.html">legend</a>]</span></center></div>
<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:aba23cbb4040d08be1a9db09b73906182"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classtesting_1_1internal_1_1_ge_matcher.html#aba23cbb4040d08be1a9db09b73906182">GeMatcher</a> (const Rhs &rhs)</td></tr>
<tr class="separator:aba23cbb4040d08be1a9db09b73906182"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classtesting_1_1internal_1_1_comparison_base"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classtesting_1_1internal_1_1_comparison_base')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classtesting_1_1internal_1_1_comparison_base.html">testing::internal::ComparisonBase< GeMatcher< Rhs >, Rhs, AnyGe ></a></td></tr>
<tr class="memitem:a365f20e35a604195c869ec0c0bc4c3a3 inherit pub_methods_classtesting_1_1internal_1_1_comparison_base"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classtesting_1_1internal_1_1_comparison_base.html#a365f20e35a604195c869ec0c0bc4c3a3">ComparisonBase</a> (const Rhs &rhs)</td></tr>
<tr class="separator:a365f20e35a604195c869ec0c0bc4c3a3 inherit pub_methods_classtesting_1_1internal_1_1_comparison_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7d329851ff6ecffebe8c1e332504bad3 inherit pub_methods_classtesting_1_1internal_1_1_comparison_base"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classtesting_1_1internal_1_1_comparison_base.html#a7d329851ff6ecffebe8c1e332504bad3">operator Matcher< Lhs ></a> () const</td></tr>
<tr class="separator:a7d329851ff6ecffebe8c1e332504bad3 inherit pub_methods_classtesting_1_1internal_1_1_comparison_base"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a5676836bfa354f4398dd083621a05877"><td class="memItemLeft" align="right" valign="top">static const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtesting_1_1internal_1_1_ge_matcher.html#a5676836bfa354f4398dd083621a05877">Desc</a> ()</td></tr>
<tr class="separator:a5676836bfa354f4398dd083621a05877"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a028847a76dbf02b8da3d56ce448ef053"><td class="memItemLeft" align="right" valign="top">static const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtesting_1_1internal_1_1_ge_matcher.html#a028847a76dbf02b8da3d56ce448ef053">NegatedDesc</a> ()</td></tr>
<tr class="separator:a028847a76dbf02b8da3d56ce448ef053"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><h3>template<typename Rhs><br />
class testing::internal::GeMatcher< Rhs ></h3>
<p>Definition at line <a class="el" href="gmock-matchers_8h_source.html#l00967">967</a> of file <a class="el" href="gmock-matchers_8h_source.html">gmock-matchers.h</a>.</p>
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="aba23cbb4040d08be1a9db09b73906182"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename Rhs > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classtesting_1_1internal_1_1_ge_matcher.html">testing::internal::GeMatcher</a>< Rhs >::<a class="el" href="classtesting_1_1internal_1_1_ge_matcher.html">GeMatcher</a> </td>
<td>(</td>
<td class="paramtype">const Rhs & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">explicit</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="gmock-matchers_8h_source.html#l00969">969</a> of file <a class="el" href="gmock-matchers_8h_source.html">gmock-matchers.h</a>.</p>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a5676836bfa354f4398dd083621a05877"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename Rhs > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static const char* <a class="el" href="classtesting_1_1internal_1_1_ge_matcher.html">testing::internal::GeMatcher</a>< Rhs >::Desc </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="gmock-matchers_8h_source.html#l00971">971</a> of file <a class="el" href="gmock-matchers_8h_source.html">gmock-matchers.h</a>.</p>
</div>
</div>
<a class="anchor" id="a028847a76dbf02b8da3d56ce448ef053"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename Rhs > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static const char* <a class="el" href="classtesting_1_1internal_1_1_ge_matcher.html">testing::internal::GeMatcher</a>< Rhs >::NegatedDesc </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="gmock-matchers_8h_source.html#l00972">972</a> of file <a class="el" href="gmock-matchers_8h_source.html">gmock-matchers.h</a>.</p>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>/home/bhargavi/Documents/SDR/Copy_Exam_808X/vendor/googletest/googlemock/include/gmock/<a class="el" href="gmock-matchers_8h_source.html">gmock-matchers.h</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="navelem"><a class="el" href="namespacetesting.html">testing</a></li><li class="navelem"><a class="el" href="namespacetesting_1_1internal.html">internal</a></li><li class="navelem"><a class="el" href="classtesting_1_1internal_1_1_ge_matcher.html">GeMatcher</a></li>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.11 </li>
</ul>
</div>
</body>
</html>
| bhargavipatel/808X_VO | docs/html/classtesting_1_1internal_1_1_ge_matcher.html | HTML | mit | 13,267 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: module/index.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: module/index.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>"use strict";
require("dotenv").config();
const REQUIRED_OPTIONS = {
common: []
}
const DEFAULT_SKILL_PATH = "../../../skill/";
const DEFAULT_TRANSLATION_LABEL_PATH = "../../../translation/label.js";
const DEFAULT_MESSAGE_PATH = "../../../message/";
const DEFAULT_INTENT = "input.unknown";
const DEFAULT_SKILL = "builtin_default";
const DEFAULT_LANGUAGE = "ja";
const DEFAULT_PARALLEL_EVENT = "ignore";
const express = require("express");
const router = express.Router();
const body_parser = require("body-parser");
const debug = require("debug")("bot-express:index");
const Webhook = require("./webhook");
// Context free libs
const Logger = require("./logger");
const Memory = require("./memory");
const Nlu = require("./nlu");
const Parser = require("./parser");
const Messenger = require("./messenger");
router.use(body_parser.json());
/**
bot-express module. This module should be mounted on webhook URI and requires configuration as options parameter.
@module bot-express
@param {Object} options - Configuration of bot-express.
@param {Object} [options.language="ja"] - ISO-639-1 based language code which is the mother language of this chatbot.
@param {Object} options.messenger - Messenger configuration. line, facebook and google are supported.
@param {Object | Array.<Object>} [options.messenger.line] - Messenger configuration for LINE. You can support multiple channel by providing array of this object.
@param {String} [options.messenger.line.channel_id] - Channel ID of Messaging API. Required when you use LINE as messenger.
@param {String} [options.messenger.line.channel_secret] - Channel Secret of Messaging API. Required when you use LINE as messenger.
@param {String} [options.messenger.line.switcher_secret] - Switcher Secret of Messaging API. Required when you use Switcher API.
@param {String} [options.messenger.line.endpoint="api.line.me"] - Test purpose onlyl. Change Messaging API endpoint hostname.
@param {Object} [options.messenger.facebook] - Messenger configuration of facebook.
@param {String} [options.messenger.facebook.app_secret] - Facebook App Secret. Required when you use Facebook Messenger.
@param {Array.<Object>} [options.messenger.facebook.page_access_token] - Array of a pair of Facebook Page Id and Page Access Token. Required when you use Facebook Messenger.
@param {String} [options.messenger.facebook.page_access_token.page_id] - Facebook Page Id.
@param {String} [options.messenger.facebook.page_access_token.page_access_token] - Facebook Page Access Token.
@param {String} [options.messenger.facebook.verify_token=options.facebook_app_secret] - Facebook token to verify webook url. This is only used in initial webhook registration.
@param {Object} [options.messenger.google] - Messenger configuration for Google Assistant.
@param {String} [options.messenger.google.project_id] - Project ID of Google Platform. Required when you use Google Assistant as messenger.
@param {String} options.nlu - Option object for NLU Service.
@param {String} [options.nlu.type="dialogflow"] - NLU service. Supported service is dialogflow.
@param {Object} options.nlu.options - NLU Configuration depending on the specific NLU service. As for Dialogflow, key_filename or (project_id, client_email and private key) is required.
@param {Array.<Object>} [options.parser] - Array of option object for Parser Service.
@param {String} [options.parser[].type] - Name of the builtin parser. Supported value is "dialogflow".
@param {Object} [options.parser[].options] - Option object for the builtin parser.
@param {Object} [options.memory] - Option object for memory to store context.
@param {String} [options.memory.type="memory-cache"] - Store type of context. Supported store type is memory-cache and redis.
@param {Number} [options.memory.retention="600"] - Lifetime of the context in seconds.
@param {Object} [options.memory.options] - Options depending on the specific store type.
@param {Object} [options.logger] - Option object for logger.
@param {String} [options.logger.type] - Logger type. Supported logger is located under logger directory.
@param {Array.<String>} [options.logger.exclude] - List to disable logging. Supported values are "skill-status" and "chat".
@param {String} [options.logger.options] - Options depending on the specific logger.
@param {Object} [options.skill] - Options to set skill corresponding to certain event.
@param {String} [options.skill.default] - Skill name to be used when we cannot identify the intent. Default is builtin echo-back skill which simply reply text response from NLP.
@param {Object} [options.skill.beacon] - Skill to be used when bot receives beacon event.
@param {String} [options.skill.beacon.enter] - Skill to be used when bot receives beacon enter event.
@param {String} [options.skill.beacon.leave] - Skill to be used when bot receives beacon leave event.
@param {String} [options.skill.follow] - Skill to be used when bot receives follow event.
@param {String} [options.skill.unfollow] - Skill to be used when bot receives unfollow event.
@param {String} [options.skill.join] - Skill to be used when bot receives join event.
@param {String} [options.skill.leave] - Skill to be used when bot receives leave event.
@param {String} [options.default_intent="input.unknown"] - Intent name to be returned by NLP when it cannot identify the intent.
@param {String} [options.modify_previous_parameter_intent] - Intent name to modify the previously collected parameter.
@param {String} [options.skill_path="./skill/"] - Path to the directory which contains skill scripts.
@param {String} [options.message_path="./message/"] - Path to the directory which contains message scripts.
@param {String} [options.parallel_event="ignore"] - Flag to decide the behavior in receiving parallel event. If set to "ignore", bot ignores the event during processing the event from same user. Supported value are "ignore" and "allow".
@param {Object} [options.translator] - Option object for translator.
@param {String} [options.translator.label_path="./translation/label.js"] - Path to prepared translation label file.
@param {String} [options.translator.type="google"] - Type of external translator.
@param {Boolean} [options.translator.enable_lang_detection=true] - Flag to enable language detection using external translator.
@param {Boolean} [options.translator.enable_translation=false] - Flag to enable translation using external translator. The translation is used to detect intent.
@param {Object} [options.translator.options] - Option for the specified translator.
*/
module.exports = (options) => {
debug("\nBot Express\n");
// Set optional options.
options.language = options.language || DEFAULT_LANGUAGE;
options.default_intent = options.default_intent || DEFAULT_INTENT;
options.skill = options.skill || {};
options.skill.default = options.skill.default || DEFAULT_SKILL;
options.parallel_event = options.parallel_event || DEFAULT_PARALLEL_EVENT;
// Skill will be required in flow. So path should be relative path from flow.
if (options.skill_path){
options.skill_path = "../../../" + options.skill_path;
} else if (process.env.BOT_EXPRESS_ENV == "development"){
// This is for Bot Express development environment only.
options.skill_path = "../sample_skill/";
} else {
options.skill_path = DEFAULT_SKILL_PATH;
}
// Message will be required in flow. So path should be relative path from flow.
if (options.message_path){
options.message_path = "../../../" + options.message_path;
} else if (process.env.BOT_EXPRESS_ENV == "development"){
// This is for Bot Express development environment only.
options.message_path = "../sample_message/";
} else {
options.message_path = DEFAULT_MESSAGE_PATH;
}
// Translator will be required in bot. So path should be relative path from bot.
options.translator = options.translator || {};
if (options.translator.label_path){
options.translator.label_path = "../../../" + options.translator.label_path;
} else if (process.env.BOT_EXPRESS_ENV == "development"){
// This is for Bot Express development environment only.
options.translator.label_path = "../sample_translation/label.js";
} else {
options.translator.label_path = DEFAULT_TRANSLATION_LABEL_PATH;
}
options.facebook_verify_token = options.facebook_verify_token || options.facebook_app_secret;
// Check if common required options are set.
for (let req_opt of REQUIRED_OPTIONS["common"]){
if (typeof options[req_opt] == "undefined"){
throw new Error(`Required option: "${req_opt}" not set`);
}
}
debug("Common required options all set.");
// Instantiate request and context free classes so that we don't have to do it in every single requests.
const logger = new Logger(options.logger || {});
const memory = new Memory(options.memory || {}, logger);
const nlu = new Nlu(options.nlu || {});
const parser = new Parser(options.parser || {});
// Webhook Process
router.post('/', async (req, res, next) => {
// If this is production environment and request is not from google, we return 200 OK.
if (!["development", "test"].includes(process.env.BOT_EXPRESS_ENV)){
if (!req.get("google-actions-api-version")){
res.sendStatus(200);
}
}
// Check header and identify which platform this request comes from.
let messenger_type;
if (req.get("X-Line-Signature") && req.body.events){
messenger_type = "line";
} else if (req.get("X-Hub-Signature") && req.body.object == "page"){
messenger_type = "facebook";
} else if (req.get("google-actions-api-version")){
messenger_type = "google";
} else {
debug(`This event comes from unsupported message platform. Skip processing.`);
if (["development", "test"].includes(process.env.BOT_EXPRESS_ENV)){
res.sendStatus(200);
}
return;
}
debug(`Messenger is ${messenger_type}`);
// Check if corresponding messenger configuration has been set for this request.
if (!options.messenger[messenger_type]){
debug(`bot-express has not been configured to handle message from ${messenger_type} so we skip this event.`);
if (["development", "test"].includes(process.env.BOT_EXPRESS_ENV)){
res.sendStatus(200);
}
return;
}
// Instantiate messenger instance.
const messenger = new Messenger(options.messenger, messenger_type);
debug("Messenger instantiated.");
options.req = req;
options.res = res;
const webhook = new Webhook(options, { logger, memory, nlu, parser, messenger });
let context;
try {
context = await webhook.run();
} catch(e){
debug("Abnormal End of Webhook. Error follows.");
debug(e);
if (["development", "test"].includes(process.env.BOT_EXPRESS_ENV)){
if (e && e.name && e.message){
return res.status(400).json({
name: e.name,
message: e.message,
});
} else {
return res.sendStatus(400);
}
}
}
debug("Successful End of Webhook.");
if (["development", "test"].includes(process.env.BOT_EXPRESS_ENV)){
return res.json(context);
}
});
// Verify Facebook Webhook
router.get("/", (req, res, next) => {
if (!options.facebook_verify_token){
debug("Failed validation. facebook_verify_token not set.");
return res.sendStatus(403);
}
if (req.query['hub.mode'] === 'subscribe' && req.query['hub.verify_token'] === options.facebook_verify_token) {
debug("Validating webhook");
return res.status(200).send(req.query['hub.challenge']);
} else {
debug("Failed validation. Make sure the validation tokens match.");
return res.sendStatus(403);
}
});
return router;
}
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-bot-express.html">bot-express</a></li></ul><h3>Classes</h3><ul><li><a href="Bot.html">Bot</a></li><li><a href="Skill.html">Skill</a></li></ul><h3><a href="global.html">Global</a></h3>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon May 20 2019 14:24:10 GMT+0900 (GMT+09:00)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html>
| nkjm/bot-express | docs/module_index.js.html | HTML | mit | 13,686 |
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>README — Computer Networks: A Systems Approach Version 6.1 documentation</title>
<link rel="shortcut icon" href="../static/bridge.ico"/>
<script type="text/javascript" src="../static/js/modernizr.min.js"></script>
<script type="text/javascript" id="documentation_options" data-url_root="../" src="../static/documentation_options.js"></script>
<script type="text/javascript" src="../static/jquery.js"></script>
<script type="text/javascript" src="../static/underscore.js"></script>
<script type="text/javascript" src="../static/doctools.js"></script>
<script type="text/javascript" src="../static/language_data.js"></script>
<script async="async" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="../static/js/theme.js"></script>
<link rel="stylesheet" href="../static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../static/css/rtd_theme_mods.css" type="text/css" />
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
</head>
<body class="wy-body-for-nav">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search" >
<a href="../index.html" class="icon icon-home"> Computer Networks: A Systems Approach
</a>
<div class="version">
Version 6.1
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="../search.html" method="get">
<input type="text" name="q" placeholder="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
<p class="caption"><span class="caption-text">Table of Contents</span></p>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../preface.html">Preface</a></li>
<li class="toctree-l1"><a class="reference internal" href="../foundation.html">Chapter 1: Foundation</a></li>
<li class="toctree-l1"><a class="reference internal" href="../direct.html">Chapter 2: Direct Links</a></li>
<li class="toctree-l1"><a class="reference internal" href="../internetworking.html">Chapter 3: Internetworking</a></li>
<li class="toctree-l1"><a class="reference internal" href="../scaling.html">Chapter 4: Advanced Internetworking</a></li>
<li class="toctree-l1"><a class="reference internal" href="../e2e.html">Chapter 5: End-to-End Protocols</a></li>
<li class="toctree-l1"><a class="reference internal" href="../congestion.html">Chapter 6: Congestion Control</a></li>
<li class="toctree-l1"><a class="reference internal" href="../data.html">Chapter 7: End-to-End Data</a></li>
<li class="toctree-l1"><a class="reference internal" href="../README.html">About This Book</a></li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
<nav class="wy-nav-top" aria-label="top navigation">
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="../index.html">Computer Networks: A Systems Approach</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="../index.html">Docs</a> »</li>
<li>README</li>
<li class="wy-breadcrumbs-aside">
<a href="../_sources/applications/README.rst.txt" rel="nofollow"> View page source</a>
</li>
</ul>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<div class="section" id="readme">
<h1>README<a class="headerlink" href="#readme" title="Permalink to this headline">¶</a></h1>
<p>This repo contains all the sections (one per <code class="docutils literal notranslate"><span class="pre">.rst</span></code> file) corresponding
to Chapter 9 of <em>Computer Networks: A Systems Approach</em>. Typically,
these sections are combined in a single book as defined by the
<code class="docutils literal notranslate"><span class="pre">index.rst</span></code> file in the
<a class="reference external" href="https://github.com/systemsapproach/book">book</a> repo.</p>
</div>
</div>
</div>
<footer>
<hr/>
<div role="contentinfo">
<p>
© Copyright 2019
</p>
</div>
Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/rtfd/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.
</footer>
</div>
</div>
</section>
</div>
<script type="text/javascript">
jQuery(function () {
SphinxRtdTheme.Navigation.enable(true);
});
</script>
</body>
</html>
| open-cloud/open-cloud.github.io | applications/README.html | HTML | mit | 6,008 |
<div>
<p>Can You See it?</p>
########
<!-- haha~ -->
</div>
| colorhook/node-html | example/fragment.html | HTML | mit | 60 |
<html>
<head>
<title>Deployer</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css">
</head>
<body>
<h2>Deployment output</h2>
{% for line in output %}
<section class="alert alert-{{ line.status }}">
<h3>{{ line.command }}:</h3>
<pre>{{ line.output|safe }}</pre>
</section>
{% endfor %}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
</body>
</html>
| nunataksoftware/django-deployer | deployer/templates/deployer/index.html | HTML | mit | 595 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-solvable: 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.14.0 / mathcomp-solvable - 1.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-solvable
<small>
1.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-23 04:43:17 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-23 04:43:17 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.14.0 Formal proof management system
dune 2.9.1 Fast, portable, and opinionated build system
ocaml 4.11.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.11.2 Official release 4.11.2
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Mathematical Components <mathcomp-dev@sympa.inria.fr>"
homepage: "https://math-comp.github.io/"
bug-reports: "https://github.com/math-comp/math-comp/issues"
dev-repo: "git+https://github.com/math-comp/math-comp.git"
license: "CeCILL-B"
build: [ make "-C" "mathcomp/solvable" "-j" "%{jobs}%" ]
install: [ make "-C" "mathcomp/solvable" "install" ]
depends: [ "coq-mathcomp-algebra" { = version } ]
tags: [ "keyword:finite groups" "keyword:Feit Thompson theorem" "keyword:small scale reflection" "keyword:mathematical components" "keyword:odd order theorem" "logpath:mathcomp.solvable" ]
authors: [ "Jeremy Avigad <>" "Andrea Asperti <>" "Stephane Le Roux <>" "Yves Bertot <>" "Laurence Rideau <>" "Enrico Tassi <>" "Ioana Pasca <>" "Georges Gonthier <>" "Sidi Ould Biha <>" "Cyril Cohen <>" "Francois Garillot <>" "Alexey Solovyev <>" "Russell O'Connor <>" "Laurent Théry <>" "Assia Mahboubi <>" ]
synopsis: "Mathematical Components Library on finite groups (II)"
description:"""
This library contains more definitions and theorems about finite groups.
"""
url {
src: "http://github.com/math-comp/math-comp/archive/mathcomp-1.10.0.tar.gz"
checksum: "sha256=3f8a88417f3456da05e2755ea0510c1bd3fd13b13c41e62fbaa3de06be040166"
}
</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-mathcomp-solvable.1.10.0 coq.8.14.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.14.0).
The following dependencies couldn't be met:
- coq-mathcomp-solvable -> coq-mathcomp-algebra = 1.10.0 -> coq-mathcomp-fingroup = 1.10.0 -> coq-mathcomp-ssreflect = 1.10.0 -> coq < 8.12~ -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
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-mathcomp-solvable.1.10.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>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.11.2-2.0.7/released/8.14.0/mathcomp-solvable/1.10.0.html | HTML | mit | 7,752 |
<h1>{{title}}</h1>
<h2>My Heroes</h2>
<ul class="heroes">
<li *ngFor="let hero of heroes"
[class.selected]="hero === selectedHero"
(click)="onSelect(hero)">
<span class="badge">{{hero.id}}</span> {{hero.name}}
</li>
</ul>
<div *ngIf="selectedHero">
<h2>
{{selectedHero.name | uppercase}} is my hero
</h2>
<button (click)="gotoDetail()">View Details</button>
</div> | keke78ui9/Angular2_Try | app/heroes.component.html | HTML | mit | 419 |
<h2>Update Web App Item</h2>
<p>Update a web app item. The update can be full (sending all properties), or partial (sending just the ones that need updating). Sending a property with a null value or not sending it at all has the same effect: it will not be changed.</p>
<h3>Request</h3>
<ul>
<li><strong>Method:</strong> PUT</li>
<li><strong>Server:</strong> https://[app key here]-[site_ID here]-apps.worldsecuresystems.com. Take a look at the <a href="/developer-documentation/oauth-in-bc.html">OAuth in Business Catalyst</a> document for more info on how this URL is formed.
<ul>
<li>Note: When building apps always use relative request URLs. Do not use the "full" URL above because you might have problems running your app on a different site as the site_ID parameter will be different.</li>
</ul></li>
<li><strong>Path:</strong> /api/v2/admin/sites/[siteId]/webapps/[webAppName]/items/[webAppItemId]
<ul>
<li>Alternatively, use "current" instead of [siteId]</li>
</ul></li>
<li><strong>Authorization header:</strong> This should contain the authorization token. Here is how to <a href="/developer-documentation/oauth-in-bc.html">obtain the token</a>.</li>
<li><strong>Required Permissions:</strong> Edit Web App Items</li>
</ul>
<h4>Parameters</h4>
<p>Body - A WebAppItem object containg the following properties:</p>
<ul>
<li><code>name</code> - the name of the web app item <em>(string)</em></li>
<li><code>weight</code> - the weight of the web app item (the order in which they will appear in frontend) <em>(integer)</em></li>
<li><code>releaseDate</code> - the release date of the web app item; uses the format mm/dd/yyyy <em>(string)</em></li>
<li><code>expiryDate</code> - the date when the web app item will expire; uses the format mm/dd/yyyy <em>(string)</em></li>
<li><code>enabled</code> - a boolean indicating whether this web app item is enabled or disabled <em>(boolean)</em></li>
<li><code>slug</code> - the suffix that will be used to build its frontend URL. This is appended to the URL of the webapp. <em>(string)</em></li>
<li><code>description</code> - the description or content of the webapp item <em>(string)</em></li>
<li><code>roleId</code> - the id of the role assigned to this web app item, if any <em>(integer)</em></li>
<li><code>address</code> - the address of this webapp item if any <em>(string)</em></li>
<li><code>city</code> - the city of this webapp item if any <em>(string)</em></li>
<li><code>state</code> - the state of this webapp item if any <em>(string)</em></li>
<li><code>zipCode</code> - the zip code of this webapp item if any <em>(string)</em></li>
<li><code>country</code> - the country of this webapp item if any. It should be the 2 letter country code returned by the Countries API (https://zerowing.corp.adobe.com/display/BusinessCatalyst/System+API+reference#SystemAPIreference-GetCountriesList) <em>(string)</em></li>
<li><code>fields</code> - an object storing the webapp item's custom fields. This field is represented in 2 ways:
<ul>
<li>in json, each custom field is a property of this object</li>
<li>in xml, it is an array of objects having the following properties:
<ul>
<li><code>name</code> - the name of the custom field</li>
<li><code>value</code> - the value of the custom field. It can be any of the supported types: number, string, boolean</li>
</ul></li>
</ul></li>
</ul>
<h3>Response</h3>
<p>Returns empty body with a header response code.</p>
<p>Accepts and returns JSON as Content-Type.</p>
<hr>
<p><strong>Request:</strong></p>
<pre class="language-javascript"><code>PUT /api/v2/admin/sites/current/webapps/TestWebapp1/items/123
Authorization: 3e8d891d91eb433e9c800cebe3b132a4e64ac661c5ed4dd8bdecae0487e4ad7c
Content-Type: application/json
Accept: application/json
{
"name": "Item7",
"weight": 7,
"releaseDate": "2013-01-30",
"expiryDate": "9999-01-01",
"enabled": true,
"slug": "item7",
"description": "<p>item7 description<\/p>",
"roleId": null,
"address": "item7_address",
"city": "item7_city",
"state": "item7_state",
"zipCode": "000007",
"country": "US",
"fields": {
"field_string_required": "item7_field1_value",
"field2_string_optional": "item7_field2_value",
"field3_number": 7,
"field4_dateTime": "2012-01-20",
"field5_list": "item1"
}
}
</code></pre>
<p><strong>Response:</strong></p>
<pre class="language-javascript"><code>HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
</code></pre>
<hr>
<h3>Sample code</h3>
<pre class="language-javascript"><code>var request = $.ajax({
url: "/api/v2/admin/sites/current/webapps/apicreated/items/7370535",
type: "PUT",
connection: "keep-alive",
contentType: "application/json",
headers: {
"Authorization": $.cookie('access_token')
},
data: JSON.stringify({
"name": "Item 8",
"weight": 7,
"releaseDate": "2013-01-30",
"expiryDate": "9999-01-01",
"enabled": true,
"slug": "item7",
"description": "<p>item7 description<\/p>",
"roleId": null,
"address": "item7_address",
"city": "item7_city",
"state": "item7_state",
"zipCode": "000007",
"country": "US",
"fields": {
"Customfield1": "some value here",
"Customfield2": "some other value here"
}
})
});
request.done(function (msg) {
console.log("Update successful");
})
request.fail(function (jqXHR) {
console.log("Request failed.");
console.log("Error code: " + jqXHR.status);
console.log("Error text: " + jqXHR.statusText);
console.log("Response text: " + jqXHR.responseText);
})
</code></pre>
<hr><h3>Error Codes</h3>
<p>This method will return the following error codes:</p>
<ul>
<li><code>200</code> - success</li>
<li><code>401</code> - unauthorized - when the authentication token is incorrect</li>
<li><code>403</code> - forbidden - when the user does not have the proper permissions</li>
<li><code>404</code> - not found
<ul>
<li><code>190001</code> - The web app could not be found (the webAppName param from the URL does not match)</li>
<li><code>200001</code> - The webapp item was not found (the webAppName and webAppItemId from the URL do not match)</li>
</ul></li>
<li><code>400</code> - bad request; sub-error codes:
<ul>
<li><code>200000</code> - An unspecified error has occured</li>
<li><code>200002</code> - The slug is invalid</li>
<li><code>200003</code> - Using this slug will make the entire frontend URL larger than the maximum allowed length</li>
<li><code>200004</code> - The slug is already used</li>
<li><code>200005</code> - The name provided is invalid (empty or null)</li>
<li><code>200006</code> - A custom field failed validation</li>
<li><code>200008</code> - There is a problem with the address. Either the webapp does not allow storing addresses, or one of the address fields is empty</li>
</ul></li>
</ul>
| Deanmv/web-apps-sdk | bc-reference/API-endpoints/web-app-items/update-web-app-item.html | HTML | mit | 6,882 |
---
layout: page
title: About
header-img: "img/about-bg.png"
---
<p>Work-in-progress developer</p>
| codequeen1110/codequeen1110.github.io | about.html | HTML | mit | 100 |
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目 </b></th><td class="std2">負心違願</td></tr>
<tr><th class="std1"><b>注音 </b></th><td class="std2">ㄈㄨ<sup class="subfont">ˋ</sup> ㄒ|ㄣ ㄨㄟ<sup class="subfont">ˊ</sup> ㄩㄢ<sup class="subfont">ˋ</sup></td></tr>
<tr><th class="std1"><b>漢語拼音 </b></th><td class="std2"><font class="english_word">fù xīn wéi yuàn</font></td></tr>
<tr><th class="std1"><b>釋義 </b></th><td class="std2">辜負違背自己的心願。警世通言˙卷二十九˙宿香亭張浩遇鶯鶯:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>復與孫氏結親,負心違願,痛徹心髓。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center></td></tr>
<tr><th class="std1"><b><font class="fltypefont">附錄</font> </b></th><td class="std2">修訂本參考資料</td></tr>
</td></tr></table></div> <!-- flayoutclass_first --><div class="flayoutclass_second"></div> <!-- flayoutclass_second --></div> <!-- flayoutclass --></td></tr></table>
| BuzzAcademy/idioms-moe-unformatted-data | all-data/21000-21999/21375-22.html | HTML | mit | 1,363 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bootswatch: Custom</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./bootstrap.css" media="screen">
<link rel="stylesheet" href="../assets/css/bootswatch.min.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../bower_components/html5shiv/dist/html5shiv.js"></script>
<script src="../bower_components/respond/dest/respond.min.js"></script>
<![endif]-->
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23019901-1']);
_gaq.push(['_setDomainName', "bootswatch.com"]);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="../" class="navbar-brand">Bootswatch</a>
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbar-main">
<ul class="nav navbar-nav">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#" id="themes">Themes <span class="caret"></span></a>
<ul class="dropdown-menu" aria-labelledby="themes">
<li><a href="../default/">Default</a></li>
<li class="divider"></li>
<li><a href="../cerulean/">Cerulean</a></li>
<li><a href="../cosmo/">Cosmo</a></li>
<li><a href="../cyborg/">Cyborg</a></li>
<li><a href="../darkly/">Darkly</a></li>
<li><a href="../flatly/">Flatly</a></li>
<li><a href="../journal/">Journal</a></li>
<li><a href="../lumen/">Lumen</a></li>
<li><a href="../paper/">Paper</a></li>
<li><a href="../readable/">Readable</a></li>
<li><a href="../sandstone/">Sandstone</a></li>
<li><a href="../simplex/">Simplex</a></li>
<li><a href="../slate/">Slate</a></li>
<li><a href="../spacelab/">Spacelab</a></li>
<li><a href="../superhero/">Superhero</a></li>
<li><a href="../united/">United</a></li>
<li><a href="../yeti/">Yeti</a></li>
</ul>
</li>
<li>
<a href="../help/">Help</a>
</li>
<li>
<a href="http://news.bootswatch.com">Blog</a>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#" id="download">Download <span class="caret"></span></a>
<ul class="dropdown-menu" aria-labelledby="download">
<li><a href="./bootstrap.min.css">bootstrap.min.css</a></li>
<li><a href="./bootstrap.css">bootstrap.css</a></li>
<li class="divider"></li>
<li><a href="./variables.less">variables.less</a></li>
<li><a href="./bootswatch.less">bootswatch.less</a></li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="http://builtwithbootstrap.com/" target="_blank">Built With Bootstrap</a></li>
<li><a href="https://wrapbootstrap.com/?ref=bsw" target="_blank">WrapBootstrap</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="page-header" id="banner">
<div class="row">
<div class="col-lg-8 col-md-7 col-sm-6">
<h1>Custom</h1>
<p class="lead">Your tagline here</p>
</div>
<div class="col-lg-4 col-md-5 col-sm-6">
<div class="sponsor">
<a href="http://www.shopify.com/?ref=bootswatch" target="_blank" onclick="_gaq.push(['_trackEvent', 'banner', 'click', 'shopify']);"><img src="../assets/img/shopify.png" alt="Shopify" onload="_gaq.push(['_trackEvent', 'banner', 'impression', 'shopify']);"></a>
</div>
</div>
</div>
</div>
<!-- Navbar
================================================== -->
<div class="bs-docs-section clearfix">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="navbar">Navbar</h1>
</div>
<div class="bs-component">
<div class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Brand</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Active</a></li>
<li><a href="#">Link</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li class="dropdown-header">Dropdown header</li>
<li><a href="#">Separated link</a></li>
<li><a href="#">One more separated link</a></li>
</ul>
</li>
</ul>
<form class="navbar-form navbar-left">
<input type="text" class="form-control col-lg-8" placeholder="Search">
</form>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Link</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div class="bs-component">
<div class="navbar navbar-inverse">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-inverse-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Brand</a>
</div>
<div class="navbar-collapse collapse navbar-inverse-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Active</a></li>
<li><a href="#">Link</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li class="dropdown-header">Dropdown header</li>
<li><a href="#">Separated link</a></li>
<li><a href="#">One more separated link</a></li>
</ul>
</li>
</ul>
<form class="navbar-form navbar-left">
<input type="text" class="form-control col-lg-8" placeholder="Search">
</form>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Link</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div><!-- /example -->
</div>
</div>
</div>
<!-- Buttons
================================================== -->
<div class="bs-docs-section">
<div class="page-header">
<div class="row">
<div class="col-lg-12">
<h1 id="buttons">Buttons</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<p class="bs-component">
<a href="#" class="btn btn-default">Default</a>
<a href="#" class="btn btn-primary">Primary</a>
<a href="#" class="btn btn-success">Success</a>
<a href="#" class="btn btn-info">Info</a>
<a href="#" class="btn btn-warning">Warning</a>
<a href="#" class="btn btn-danger">Danger</a>
<a href="#" class="btn btn-link">Link</a>
</p>
<p class="bs-component">
<a href="#" class="btn btn-default disabled">Default</a>
<a href="#" class="btn btn-primary disabled">Primary</a>
<a href="#" class="btn btn-success disabled">Success</a>
<a href="#" class="btn btn-info disabled">Info</a>
<a href="#" class="btn btn-warning disabled">Warning</a>
<a href="#" class="btn btn-danger disabled">Danger</a>
<a href="#" class="btn btn-link disabled">Link</a>
</p>
<div style="margin-bottom: 15px;">
<div class="btn-toolbar bs-component" style="margin: 0;">
<div class="btn-group">
<a href="#" class="btn btn-default">Default</a>
<a href="#" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<div class="btn-group">
<a href="#" class="btn btn-primary">Primary</a>
<a href="#" class="btn btn-primary dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<div class="btn-group">
<a href="#" class="btn btn-success">Success</a>
<a href="#" class="btn btn-success dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<div class="btn-group">
<a href="#" class="btn btn-info">Info</a>
<a href="#" class="btn btn-info dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<div class="btn-group">
<a href="#" class="btn btn-warning">Warning</a>
<a href="#" class="btn btn-warning dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
</div>
</div>
<p class="bs-component">
<a href="#" class="btn btn-primary btn-lg">Large button</a>
<a href="#" class="btn btn-primary">Default button</a>
<a href="#" class="btn btn-primary btn-sm">Small button</a>
<a href="#" class="btn btn-primary btn-xs">Mini button</a>
</p>
</div>
<div class="col-lg-6">
<p class="bs-component">
<a href="#" class="btn btn-default btn-lg btn-block">Block level button</a>
</p>
<div class="bs-component" style="margin-bottom: 15px;">
<div class="btn-group btn-group-justified">
<a href="#" class="btn btn-default">Left</a>
<a href="#" class="btn btn-default">Middle</a>
<a href="#" class="btn btn-default">Right</a>
</div>
</div>
<div class="bs-component" style="margin-bottom: 15px;">
<div class="btn-toolbar">
<div class="btn-group">
<a href="#" class="btn btn-default">1</a>
<a href="#" class="btn btn-default">2</a>
<a href="#" class="btn btn-default">3</a>
<a href="#" class="btn btn-default">4</a>
</div>
<div class="btn-group">
<a href="#" class="btn btn-default">5</a>
<a href="#" class="btn btn-default">6</a>
<a href="#" class="btn btn-default">7</a>
</div>
<div class="btn-group">
<a href="#" class="btn btn-default">8</a>
<div class="btn-group">
<a href="#" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
Dropdown
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="#">Dropdown link</a></li>
<li><a href="#">Dropdown link</a></li>
<li><a href="#">Dropdown link</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="bs-component">
<div class="btn-group-vertical">
<a href="#" class="btn btn-default">Button</a>
<a href="#" class="btn btn-default">Button</a>
<a href="#" class="btn btn-default">Button</a>
<a href="#" class="btn btn-default">Button</a>
</div>
</div>
</div>
</div>
</div>
<!-- Typography
================================================== -->
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="type">Typography</h1>
</div>
</div>
</div>
<!-- Headings -->
<div class="row">
<div class="col-lg-4">
<div class="bs-component">
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<p class="lead">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.</p>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<h2>Example body text</h2>
<p>Nullam quis risus eget <a href="#">urna mollis ornare</a> vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.</p>
<p><small>This line of text is meant to be treated as fine print.</small></p>
<p>The following snippet of text is <strong>rendered as bold text</strong>.</p>
<p>The following snippet of text is <em>rendered as italicized text</em>.</p>
<p>An abbreviation of the word attribute is <abbr title="attribute">attr</abbr>.</p>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<h2>Emphasis classes</h2>
<p class="text-muted">Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.</p>
<p class="text-primary">Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
<p class="text-warning">Etiam porta sem malesuada magna mollis euismod.</p>
<p class="text-danger">Donec ullamcorper nulla non metus auctor fringilla.</p>
<p class="text-success">Duis mollis, est non commodo luctus, nisi erat porttitor ligula.</p>
<p class="text-info">Maecenas sed diam eget risus varius blandit sit amet non magna.</p>
</div>
</div>
</div>
<!-- Blockquotes -->
<div class="row">
<div class="col-lg-12">
<h2 id="type-blockquotes">Blockquotes</h2>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="bs-component">
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<small>Someone famous in <cite title="Source Title">Source Title</cite></small>
</blockquote>
</div>
</div>
<div class="col-lg-6">
<div class="bs-component">
<blockquote class="pull-right">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<small>Someone famous in <cite title="Source Title">Source Title</cite></small>
</blockquote>
</div>
</div>
</div>
</div>
<!-- Tables
================================================== -->
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="tables">Tables</h1>
</div>
<div class="bs-component">
<table class="table table-striped table-hover ">
<thead>
<tr>
<th>#</th>
<th>Column heading</th>
<th>Column heading</th>
<th>Column heading</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr>
<td>2</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="info">
<td>3</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="success">
<td>4</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="danger">
<td>5</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="warning">
<td>6</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="active">
<td>7</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
</tbody>
</table>
</div><!-- /example -->
</div>
</div>
</div>
<!-- Forms
================================================== -->
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="forms">Forms</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="well bs-component">
<form class="form-horizontal">
<fieldset>
<legend>Legend</legend>
<div class="form-group">
<label for="inputEmail" class="col-lg-2 control-label">Email</label>
<div class="col-lg-10">
<input type="text" class="form-control" id="inputEmail" placeholder="Email">
</div>
</div>
<div class="form-group">
<label for="inputPassword" class="col-lg-2 control-label">Password</label>
<div class="col-lg-10">
<input type="password" class="form-control" id="inputPassword" placeholder="Password">
<div class="checkbox">
<label>
<input type="checkbox"> Checkbox
</label>
</div>
</div>
</div>
<div class="form-group">
<label for="textArea" class="col-lg-2 control-label">Textarea</label>
<div class="col-lg-10">
<textarea class="form-control" rows="3" id="textArea"></textarea>
<span class="help-block">A longer 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-lg-2 control-label">Radios</label>
<div class="col-lg-10">
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked="">
Option one is this
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
Option two can be something else
</label>
</div>
</div>
</div>
<div class="form-group">
<label for="select" class="col-lg-2 control-label">Selects</label>
<div class="col-lg-10">
<select class="form-control" id="select">
<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>
</div>
<div class="form-group">
<div class="col-lg-10 col-lg-offset-2">
<button class="btn btn-default">Cancel</button>
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</div>
</fieldset>
</form>
</div>
</div>
<div class="col-lg-4 col-lg-offset-1">
<form class="bs-component">
<div class="form-group">
<label class="control-label" for="focusedInput">Focused input</label>
<input class="form-control" id="focusedInput" type="text" value="This is focused...">
</div>
<div class="form-group">
<label class="control-label" for="disabledInput">Disabled input</label>
<input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here..." disabled="">
</div>
<div class="form-group has-warning">
<label class="control-label" for="inputWarning">Input warning</label>
<input type="text" class="form-control" id="inputWarning">
</div>
<div class="form-group has-error">
<label class="control-label" for="inputError">Input error</label>
<input type="text" class="form-control" id="inputError">
</div>
<div class="form-group has-success">
<label class="control-label" for="inputSuccess">Input success</label>
<input type="text" class="form-control" id="inputSuccess">
</div>
<div class="form-group">
<label class="control-label" for="inputLarge">Large input</label>
<input class="form-control input-lg" type="text" id="inputLarge">
</div>
<div class="form-group">
<label class="control-label" for="inputDefault">Default input</label>
<input type="text" class="form-control" id="inputDefault">
</div>
<div class="form-group">
<label class="control-label" for="inputSmall">Small input</label>
<input class="form-control input-sm" type="text" id="inputSmall">
</div>
<div class="form-group">
<label class="control-label">Input addons</label>
<div class="input-group">
<span class="input-group-addon">$</span>
<input type="text" class="form-control">
<span class="input-group-btn">
<button class="btn btn-default" type="button">Button</button>
</span>
</div>
</div>
</form>
</div>
</div>
</div>
<!-- Navs
================================================== -->
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="nav">Navs</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<h2 id="nav-tabs">Tabs</h2>
<div class="bs-component">
<ul class="nav nav-tabs">
<li class="active"><a href="#home" data-toggle="tab">Home</a></li>
<li><a href="#profile" data-toggle="tab">Profile</a></li>
<li class="disabled"><a>Disabled</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
Dropdown <span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="#dropdown1" data-toggle="tab">Action</a></li>
<li class="divider"></li>
<li><a href="#dropdown2" data-toggle="tab">Another action</a></li>
</ul>
</li>
</ul>
<div id="myTabContent" class="tab-content">
<div class="tab-pane fade active in" id="home">
<p>Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.</p>
</div>
<div class="tab-pane fade" id="profile">
<p>Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit.</p>
</div>
<div class="tab-pane fade" id="dropdown1">
<p>Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork.</p>
</div>
<div class="tab-pane fade" id="dropdown2">
<p>Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY, art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<h2 id="nav-pills">Pills</h2>
<div class="bs-component">
<ul class="nav nav-pills">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Profile</a></li>
<li class="disabled"><a href="#">Disabled</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
Dropdown <span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</li>
</ul>
</div>
<br>
<div class="bs-component">
<ul class="nav nav-pills nav-stacked">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Profile</a></li>
<li class="disabled"><a href="#">Disabled</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
Dropdown <span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="col-lg-4">
<h2 id="nav-breadcrumbs">Breadcrumbs</h2>
<div class="bs-component">
<ul class="breadcrumb">
<li class="active">Home</li>
</ul>
<ul class="breadcrumb">
<li><a href="#">Home</a></li>
<li class="active">Library</li>
</ul>
<ul class="breadcrumb">
<li><a href="#">Home</a></li>
<li><a href="#">Library</a></li>
<li class="active">Data</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<h2 id="pagination">Pagination</h2>
<div class="bs-component">
<ul class="pagination">
<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="#">5</a></li>
<li><a href="#">»</a></li>
</ul>
<ul class="pagination pagination-lg">
<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="#">»</a></li>
</ul>
<ul class="pagination pagination-sm">
<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="#">5</a></li>
<li><a href="#">»</a></li>
</ul>
</div>
</div>
<div class="col-lg-4">
<h2 id="pager">Pager</h2>
<div class="bs-component">
<ul class="pager">
<li><a href="#">Previous</a></li>
<li><a href="#">Next</a></li>
</ul>
<ul class="pager">
<li class="previous disabled"><a href="#">← Older</a></li>
<li class="next"><a href="#">Newer →</a></li>
</ul>
</div>
</div>
<div class="col-lg-4">
</div>
</div>
</div>
<!-- Indicators
================================================== -->
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="indicators">Indicators</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<h2>Alerts</h2>
<div class="bs-component">
<div class="alert alert-dismissable alert-warning">
<button type="button" class="close" data-dismiss="alert">×</button>
<h4>Warning!</h4>
<p>Best check yo self, you're not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, <a href="#" class="alert-link">vel scelerisque nisl consectetur et</a>.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="bs-component">
<div class="alert alert-dismissable alert-danger">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Oh snap!</strong> <a href="#" class="alert-link">Change a few things up</a> and try submitting again.
</div>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="alert alert-dismissable alert-success">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Well done!</strong> You successfully read <a href="#" class="alert-link">this important alert message</a>.
</div>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="alert alert-dismissable alert-info">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Heads up!</strong> This <a href="#" class="alert-link">alert needs your attention</a>, but it's not super important.
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<h2>Labels</h2>
<div class="bs-component" style="margin-bottom: 40px;">
<span class="label label-default">Default</span>
<span class="label label-primary">Primary</span>
<span class="label label-success">Success</span>
<span class="label label-warning">Warning</span>
<span class="label label-danger">Danger</span>
<span class="label label-info">Info</span>
</div>
</div>
<div class="col-lg-4">
<h2>Badges</h2>
<div class="bs-component">
<ul class="nav nav-pills">
<li class="active"><a href="#">Home <span class="badge">42</span></a></li>
<li><a href="#">Profile <span class="badge"></span></a></li>
<li><a href="#">Messages <span class="badge">3</span></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Progress bars
================================================== -->
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="progress">Progress bars</h1>
</div>
<h3 id="progress-basic">Basic</h3>
<div class="bs-component">
<div class="progress">
<div class="progress-bar" style="width: 60%;"></div>
</div>
</div>
<h3 id="progress-alternatives">Contextual alternatives</h3>
<div class="bs-component">
<div class="progress">
<div class="progress-bar progress-bar-info" style="width: 20%"></div>
</div>
<div class="progress">
<div class="progress-bar progress-bar-success" style="width: 40%"></div>
</div>
<div class="progress">
<div class="progress-bar progress-bar-warning" style="width: 60%"></div>
</div>
<div class="progress">
<div class="progress-bar progress-bar-danger" style="width: 80%"></div>
</div>
</div>
<h3 id="progress-striped">Striped</h3>
<div class="bs-component">
<div class="progress progress-striped">
<div class="progress-bar progress-bar-info" style="width: 20%"></div>
</div>
<div class="progress progress-striped">
<div class="progress-bar progress-bar-success" style="width: 40%"></div>
</div>
<div class="progress progress-striped">
<div class="progress-bar progress-bar-warning" style="width: 60%"></div>
</div>
<div class="progress progress-striped">
<div class="progress-bar progress-bar-danger" style="width: 80%"></div>
</div>
</div>
<h3 id="progress-animated">Animated</h3>
<div class="bs-component">
<div class="progress progress-striped active">
<div class="progress-bar" style="width: 45%"></div>
</div>
</div>
<h3 id="progress-stacked">Stacked</h3>
<div class="bs-component">
<div class="progress">
<div class="progress-bar progress-bar-success" style="width: 35%"></div>
<div class="progress-bar progress-bar-warning" style="width: 20%"></div>
<div class="progress-bar progress-bar-danger" style="width: 10%"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Containers
================================================== -->
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="container">Containers</h1>
</div>
<div class="bs-component">
<div class="jumbotron">
<h1>Jumbotron</h1>
<p>This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
<p><a class="btn btn-primary btn-lg">Learn more</a></p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<h2>List groups</h2>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="bs-component">
<ul class="list-group">
<li class="list-group-item">
<span class="badge">14</span>
Cras justo odio
</li>
<li class="list-group-item">
<span class="badge">2</span>
Dapibus ac facilisis in
</li>
<li class="list-group-item">
<span class="badge">1</span>
Morbi leo risus
</li>
</ul>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="list-group">
<a href="#" class="list-group-item active">
Cras justo odio
</a>
<a href="#" class="list-group-item">Dapibus ac facilisis in
</a>
<a href="#" class="list-group-item">Morbi leo risus
</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="list-group">
<a href="#" class="list-group-item">
<h4 class="list-group-item-heading">List group item heading</h4>
<p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p>
</a>
<a href="#" class="list-group-item">
<h4 class="list-group-item-heading">List group item heading</h4>
<p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<h2>Panels</h2>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="bs-component">
<div class="panel panel-default">
<div class="panel-body">
Basic panel
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">Panel heading</div>
<div class="panel-body">
Panel content
</div>
</div>
<div class="panel panel-default">
<div class="panel-body">
Panel content
</div>
<div class="panel-footer">Panel footer</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Panel primary</h3>
</div>
<div class="panel-body">
Panel content
</div>
</div>
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">Panel success</h3>
</div>
<div class="panel-body">
Panel content
</div>
</div>
<div class="panel panel-warning">
<div class="panel-heading">
<h3 class="panel-title">Panel warning</h3>
</div>
<div class="panel-body">
Panel content
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="panel panel-danger">
<div class="panel-heading">
<h3 class="panel-title">Panel danger</h3>
</div>
<div class="panel-body">
Panel content
</div>
</div>
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">Panel info</h3>
</div>
<div class="panel-body">
Panel content
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<h2>Wells</h2>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="bs-component">
<div class="well">
Look, I'm in a well!
</div>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="well well-sm">
Look, I'm in a small well!
</div>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="well well-lg">
Look, I'm in a large well!
</div>
</div>
</div>
</div>
</div>
<!-- Dialogs
================================================== -->
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="tables">Dialogs</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<h2>Modals</h2>
<div class="bs-component">
<div class="modal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<h2>Popovers</h2>
<div class="bs-component">
<button type="button" class="btn btn-default" data-container="body" data-toggle="popover" data-placement="left" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">Left</button>
<button type="button" class="btn btn-default" data-container="body" data-toggle="popover" data-placement="top" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">Top</button>
<button type="button" class="btn btn-default" data-container="body" data-toggle="popover" data-placement="bottom" data-content="Vivamus
sagittis lacus vel augue laoreet rutrum faucibus.">Bottom</button>
<button type="button" class="btn btn-default" data-container="body" data-toggle="popover" data-placement="right" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">Right</button>
</div>
<h2>Tooltips</h2>
<div class="bs-component">
<button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="left" title="" data-original-title="Tooltip on left">Left</button>
<button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="" data-original-title="Tooltip on top">Top</button>
<button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="Tooltip on bottom">Bottom</button>
<button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="right" title="" data-original-title="Tooltip on right">Right</button>
</div>
</div>
</div>
</div>
<div id="source-modal" class="modal fade">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Source Code</h4>
</div>
<div class="modal-body">
<pre></pre>
</div>
</div>
</div>
</div>
<footer>
<div class="row">
<div class="col-lg-12">
<ul class="list-unstyled">
<li class="pull-right"><a href="#top">Back to top</a></li>
<li><a href="http://news.bootswatch.com" onclick="pageTracker._link(this.href); return false;">Blog</a></li>
<li><a href="http://feeds.feedburner.com/bootswatch">RSS</a></li>
<li><a href="https://twitter.com/bootswatch">Twitter</a></li>
<li><a href="https://github.com/thomaspark/bootswatch/">GitHub</a></li>
<li><a href="../help/#api">API</a></li>
<li><a href="../help/#support">Support</a></li>
</ul>
<p>Made by <a href="http://thomaspark.me" rel="nofollow">Thomas Park</a>. Contact him at <a href="mailto:thomas@bootswatch.com">thomas@bootswatch.com</a>.</p>
<p>Code released under the <a href="https://github.com/thomaspark/bootswatch/blob/gh-pages/LICENSE">MIT License</a>.</p>
<p>Based on <a href="http://getbootstrap.com" rel="nofollow">Bootstrap</a>. Icons from <a href="http://fortawesome.github.io/Font-Awesome/" rel="nofollow">Font Awesome</a>. Web fonts from <a href="http://www.google.com/webfonts" rel="nofollow">Google</a>.</p>
</div>
</div>
</footer>
</div>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="../bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="../assets/js/bootswatch.js"></script>
</body>
</html>
| arroyolabs-blog/roll-dice | app/themes/bootstrap/node_modules/bootswatch-sass/bootswatch/custom/index.html | HTML | mit | 55,603 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_24) on Fri Jun 10 12:56:49 CEST 2011 -->
<TITLE>
Uses of Class com.getflourish.stt.Response
</TITLE>
<META NAME="date" CONTENT="2011-06-10">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.getflourish.stt.Response";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/getflourish/stt/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/getflourish/stt/Response.html" title="class in com.getflourish.stt"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?com/getflourish/stt//class-useResponse.html" target="_top"><B>FRAMES</B></A>
<A HREF="Response.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>com.getflourish.stt.Response</B></H2>
</CENTER>
No usage of com.getflourish.stt.Response
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/getflourish/stt/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/getflourish/stt/Response.html" title="class in com.getflourish.stt"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?com/getflourish/stt//class-useResponse.html" target="_top"><B>FRAMES</B></A>
<A HREF="Response.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
| manorius/Processing | libraries/stt/doc/com/getflourish/stt/class-use/Response.html | HTML | mit | 5,540 |
<!DOCTYPE html>
<html lang="chinese (simplified)">
<head>
<meta charset="utf-8" />
<title>NingAnMe</title>
<link rel="stylesheet" href="/theme/css/main.css" />
<!--[if IE]>
<script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body id="index" class="home">
<header id="banner" class="body">
<h1><a href="/">NingAnMe </a></h1>
<nav><ul>
<li><a href="/category/python.html">Python</a></li>
</ul></nav>
</header><!-- /#banner -->
<aside id="featured" class="body">
<article>
<h1 class="entry-title"><a href="/my-super-post.html">编程入门手册-前期准备</a></h1>
<footer class="post-info">
<abbr class="published" title="2018-03-08T18:02:00+08:00">
Published: 周四 08 三月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/ninganme.html">NingAnMe</a>
</address>
<p>In <a href="/category/python.html">Python</a>.</p>
<p>tags: <a href="/tag/python.html">Python</a> <a href="/tag/bian-cheng.html">编程</a> <a href="/tag/shou-ce.html">手册</a> </p>
</footer><!-- /.post-info --><h1>前期准备</h1>
<h3>账号</h3>
<ul>
<li>昵称</li>
<li>Stack Overflow</li>
<li>Github</li>
<li>Google Mail</li>
<li>QQ Mail(英文)</li>
<li>Microsoft Mail</li>
<li>知乎</li>
<li>百度云</li>
<li>实验楼</li>
</ul>
<h3>软件</h3>
<ul>
<li>Shadowsocks</li>
<li>Google Chrome</li>
<li>Pycharm</li>
<li>Git(Gitbash)</li>
<li>FileZilla</li>
<li>Xshell</li>
<li>百度云</li>
<li>福昕阅读器</li>
<li>有道词典</li>
<li>Microsoft office</li>
<li>Microsoft Visio</li>
<li>实验楼</li>
</ul>
<h3>Chrome 浏览器插件</h3>
<ul>
<li>AdBlock</li>
<li>沙拉查词</li>
</ul>
<h1>任务</h1>
<ol>
<li>想一个有意义的昵称,它很可能会跟你一辈子,是你在网络上面的身份标签。</li>
<li>使用你的昵称,在原来 QQ 邮箱的基础上,申请一个英文邮箱账号。</li>
<li>使用你的英文 QQ 邮箱,创建其他账号。</li>
<li>安装所有的软件。</li>
<li>安装所有的 Chrome 浏览器插件。</li>
</ol> </article>
</aside><!-- /#featured -->
<section id="extras" class="body">
<div class="blogroll">
<h2>links</h2>
<ul>
<li><a href="http://getpelican.com/">Pelican</a></li>
<li><a href="http://python.org/">Python.org</a></li>
<li><a href="http://jinja.pocoo.org/">Jinja2</a></li>
<li><a href="#">You can modify those links in your config file</a></li>
</ul>
</div><!-- /.blogroll -->
<div class="social">
<h2>social</h2>
<ul>
<li><a href="#">You can add links in your config file</a></li>
<li><a href="#">Another social link</a></li>
</ul>
</div><!-- /.social -->
</section><!-- /#extras -->
<footer id="contentinfo" class="body">
<address id="about" class="vcard body">
Proudly powered by <a href="http://getpelican.com/">Pelican</a>, which takes great advantage of <a href="http://python.org">Python</a>.
</address><!-- /#about -->
<p>The theme is by <a href="http://coding.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/">Smashing Magazine</a>, thanks!</p>
</footer><!-- /#contentinfo -->
</body>
</html> | NingAnMe/ninganme.github.io | index.html | HTML | mit | 3,851 |
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>doesNotThrowAnyException</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../";</script><script type="text/javascript" src="../../scripts/sourceset_dependencies.js" async></script><link href="../../styles/style.css" rel="Stylesheet"><link href="../../styles/logo-styles.css" rel="Stylesheet"><link href="../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../styles/main.css" rel="Stylesheet"><script type="text/javascript" src="../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../scripts/main.js" async></script>
<div id="container">
<div id="leftColumn"><a href="../../index.html">
<div id="logo"></div>
</a>
<div id="paneSearch"></div>
<div id="sideMenu"></div>
</div>
<div id="main">
<script type="text/javascript" src="../../scripts/main.js"></script><div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="main-content" id="content" pageids="assertk::assertk//doesNotThrowAnyException/assertk.Assert[kotlin.Result[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration//2143336096">
<div class="navigation-wrapper" id="navigation-wrapper">
<div class="breadcrumbs"><a href="../index.html">assertk</a>/<a href="index.html">assertk</a>/<a href="does-not-throw-any-exception.html">doesNotThrowAnyException</a></div>
<div class="pull-right d-flex">
<div class="filter-section" id="filter-section"><button class="platform-tag platform-selector common-like" data-active="" data-filter=":assertk:dokkaHtmlPartial/commonMain">common</button></div>
<div id="searchBar"></div>
</div>
</div>
<div class="cover ">
<h1 class="cover"><span>does</span><wbr><span>Not</span><wbr><span>Throw</span><wbr><span>Any</span><wbr><span>Exception</span></h1>
</div>
<div class="divergent-group" data-filterable-current=":assertk:dokkaHtmlPartial/commonMain" data-filterable-set=":assertk:dokkaHtmlPartial/commonMain"><div class="with-platform-tags"><span class="pull-right"></span></div>
<div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":assertk:dokkaHtmlPartial/commonMain"><div class="symbol monospace strikethrough">fun <<a href="does-not-throw-any-exception.html">T</a>> <a href="-assert/index.html">Assert</a><<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-result/index.html">Result</a><<a href="does-not-throw-any-exception.html">T</a>>>.<a href="does-not-throw-any-exception.html">doesNotThrowAnyException</a>()<span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content"></a></span><span>© 2021 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>
| willowtreeapps/assertk | docs/assertk/assertk/does-not-throw-any-exception.html | HTML | mit | 3,655 |
<html>
<head>
<title>OneAPI Exchange :: OperatorID Demo</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="operatorid.js"></script>
<script type="text/javascript">
function startDiscovery() {
jQuery('#status').val('Initiating discovery call');
jQuery.ajax({
async: true,
cache: false,
data: 'redirect_uri=http://localhost/discoverycomplete.html',
beforeSend: function(jqXHR) {
jqXHR.setRequestHeader("accept", "application/json");
jqXHR.setRequestHeader ("Authorization", "Basic "+btoa("2LKjpfVJAw3M6GF6bXsD2Rjtgd5drSxU:"));
},
error: function(jqXHR, status, error) {
jQuery('#status').val('Error occurred '+JSON.stringify(error));
},
success: function(data, status, jqXHR) {
if (data.response && data.response.application_id && data.response.apis && data.response.apis.operatorid) {
applicationid=data.response.application_id;
uri=data.response.apis.operatorid.uri;
jQuery('#status').val('Invoking OperatorID service at '+uri);
MakeOpenIDRequest(uri, 'status', 'http://localhost/identified.html', 'http://localhost');
} else if (data.links && data.links[0] && data.links[0].href) {
var newloc=data.links[0].href;
if (newloc) {
jQuery('#status').val('redirecting to '+newloc);
window.location=newloc;
}
}
},
type: 'GET',
xhrFields: { withCredentials: true },
url: 'http://dt.gsmaoneapiexchange.com/v1/discovery/apis'
});
}
jQuery(document).ready(function() {
jQuery('#status').val('Not started');
});
</script>
</head>
<body>
<h1>OneAPI Exchange :: OperatorID Demo</h1>
<p>This is a demonstration of OneAPI OperatorID. When you are ready to start please click the 'Start now' link below</p>
<p><a href='#' onClick='startDiscovery(); return false;'>Start now</a></p>
<p><strong>Status</strong></p>
<textarea name='status' id='status' style='width:300px; height:120px'></textarea>
</body>
</html>
| GSMADeveloper/NetworkAPIDemoHTML | WebContent/index.html | HTML | mit | 1,952 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li class="active"><a href="">8.4.dev / contrib:additions dev</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../../..">« Up</a>
<h1>contrib:additions <small>dev</small></h1>
<table class="table table-striped text-center">
<thead>
<tr>
<td>Date</td>
<td>Time</td>
<td>Relative</td>
<td>Status</td>
</tr>
</thead>
<tbody>
<tr>
<td>2015-01-30</td>
<td>03:04:02</td>
<td><script>document.write(moment("2015-01-30 03:04:02 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2015-01-30_03-04-02.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2015-01-07</td>
<td>03:53:32</td>
<td><script>document.write(moment("2015-01-07 03:53:32 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2015-01-07_03-53-32.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-12-12</td>
<td>08:42:09</td>
<td><script>document.write(moment("2014-12-12 08:42:09 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2014-12-12_08-42-09.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-12-04</td>
<td>23:21:02</td>
<td><script>document.write(moment("2014-12-04 23:21:02 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2014-12-04_23-21-02.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-11-29</td>
<td>09:29:33</td>
<td><script>document.write(moment("2014-11-29 09:29:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2014-11-29_09-29-33.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-11-20</td>
<td>13:31:52</td>
<td><script>document.write(moment("2014-11-20 13:31:52 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2014-11-20_13-31-52.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-11-18</td>
<td>23:44:23</td>
<td><script>document.write(moment("2014-11-18 23:44:23 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2014-11-18_23-44-23.html">Not compatible with this Coq</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html> | coq-bench/coq-bench.github.io-old | clean/Linux-x86_64-4.01.0-1.2.0/unstable/8.4.dev/contrib:additions/dev/index.html | HTML | mit | 5,462 |
<html>
<head>
<meta charset="utf-8">
<meta name="viewport">
<link href="css/util.css" rel="stylesheet" type="text/css">
<link href="css/fonts.css" rel="stylesheet" type="text/css">
<link href="style/headers.css" rel="stylesheet" type="text/css">
<link href="icons/styles/action_icons.css" rel="stylesheet" type="text/css">
<link href="style/input_areas.css" rel="stylesheet" type="text/css">
<style>
h2 {
margin-top: 1em;
}
input {
margin: 0.5em 1em;
}
</style>
<script>
function mudarKey() {
localStorage["apiKey"] = document.querySelector("#apiKey").value;
}
function init() {
var key = localStorage["apiKey"];
console.log("Stored API key: " + key);
if (key) {
document.querySelector("#apiKey").value = key;
}
}
</script>
</head>
<body>
<section role="region">
<header>
<button onclick="window.location='index.html'"><span class="icon icon-back">back</span></button>
<menu type="toolbar">
</menu>
<h1>Configurações</h1>
</header>
<article class="content scrollable">
<h2>Google API Key</h2>
<input id="apiKey" type="text" onchange="mudarKey()" placeholder="Google API Key" required="">
</article>
</section>
<script>
init();
</script>
</body>
</html>
| lauroschuck/stumble | config.html | HTML | mit | 1,297 |
<!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_25) on Sun Dec 08 14:57:16 UTC 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Interface org.neo4j.unsafe.batchinsert.BatchInserterIndex (Neo4j Community 2.0.0 API)</title>
<meta name="date" content="2013-12-08">
<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="Uses of Interface org.neo4j.unsafe.batchinsert.BatchInserterIndex (Neo4j Community 2.0.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="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndex.html" title="interface in org.neo4j.unsafe.batchinsert">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../overview-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em>Neo4j Community</em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/neo4j/unsafe/batchinsert/class-use/BatchInserterIndex.html" target="_top">Frames</a></li>
<li><a href="BatchInserterIndex.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">
<h2 title="Uses of Interface org.neo4j.unsafe.batchinsert.BatchInserterIndex" class="title">Uses of Interface<br>org.neo4j.unsafe.batchinsert.BatchInserterIndex</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndex.html" title="interface in org.neo4j.unsafe.batchinsert">BatchInserterIndex</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.neo4j.index.lucene.unsafe.batchinsert">org.neo4j.index.lucene.unsafe.batchinsert</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.neo4j.unsafe.batchinsert">org.neo4j.unsafe.batchinsert</a></td>
<td class="colLast">
<div class="block">Tools for high-performance data insertion; make sure to read the instructions before using.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.neo4j.index.lucene.unsafe.batchinsert">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndex.html" title="interface in org.neo4j.unsafe.batchinsert">BatchInserterIndex</a> in <a href="../../../../../org/neo4j/index/lucene/unsafe/batchinsert/package-summary.html">org.neo4j.index.lucene.unsafe.batchinsert</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../org/neo4j/index/lucene/unsafe/batchinsert/package-summary.html">org.neo4j.index.lucene.unsafe.batchinsert</a> that return <a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndex.html" title="interface in org.neo4j.unsafe.batchinsert">BatchInserterIndex</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndex.html" title="interface in org.neo4j.unsafe.batchinsert">BatchInserterIndex</a></code></td>
<td class="colLast"><span class="strong">LuceneBatchInserterIndexProvider.</span><code><strong><a href="../../../../../org/neo4j/index/lucene/unsafe/batchinsert/LuceneBatchInserterIndexProvider.html#nodeIndex(java.lang.String, java.util.Map)">nodeIndex</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> indexName,
<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>> config)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndex.html" title="interface in org.neo4j.unsafe.batchinsert">BatchInserterIndex</a></code></td>
<td class="colLast"><span class="strong">LuceneBatchInserterIndexProvider.</span><code><strong><a href="../../../../../org/neo4j/index/lucene/unsafe/batchinsert/LuceneBatchInserterIndexProvider.html#relationshipIndex(java.lang.String, java.util.Map)">relationshipIndex</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> indexName,
<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>> config)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.neo4j.unsafe.batchinsert">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndex.html" title="interface in org.neo4j.unsafe.batchinsert">BatchInserterIndex</a> in <a href="../../../../../org/neo4j/unsafe/batchinsert/package-summary.html">org.neo4j.unsafe.batchinsert</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../org/neo4j/unsafe/batchinsert/package-summary.html">org.neo4j.unsafe.batchinsert</a> that return <a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndex.html" title="interface in org.neo4j.unsafe.batchinsert">BatchInserterIndex</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndex.html" title="interface in org.neo4j.unsafe.batchinsert">BatchInserterIndex</a></code></td>
<td class="colLast"><span class="strong">BatchInserterIndexProvider.</span><code><strong><a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndexProvider.html#nodeIndex(java.lang.String, java.util.Map)">nodeIndex</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> indexName,
<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>> config)</code>
<div class="block">Returns a <a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndex.html" title="interface in org.neo4j.unsafe.batchinsert"><code>BatchInserterIndex</code></a> for <a href="../../../../../org/neo4j/graphdb/Node.html" title="interface in org.neo4j.graphdb"><code>Node</code></a>s for the name
<code>indexName</code> with the given <code>config</code>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndex.html" title="interface in org.neo4j.unsafe.batchinsert">BatchInserterIndex</a></code></td>
<td class="colLast"><span class="strong">BatchInserterIndexProvider.</span><code><strong><a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndexProvider.html#relationshipIndex(java.lang.String, java.util.Map)">relationshipIndex</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> indexName,
<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>> config)</code>
<div class="block">Returns a <a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndex.html" title="interface in org.neo4j.unsafe.batchinsert"><code>BatchInserterIndex</code></a> for <a href="../../../../../org/neo4j/graphdb/Relationship.html" title="interface in org.neo4j.graphdb"><code>Relationship</code></a>s for the
name <code>indexName</code> with the given <code>config</code>.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</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="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/neo4j/unsafe/batchinsert/BatchInserterIndex.html" title="interface in org.neo4j.unsafe.batchinsert">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../overview-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em>Neo4j Community</em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/neo4j/unsafe/batchinsert/class-use/BatchInserterIndex.html" target="_top">Frames</a></li>
<li><a href="BatchInserterIndex.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>Copyright © 2002–2013 <a href="http://neo4j.org/">The Neo4j Graph Database Project</a>. All rights reserved.</small></p>
</body>
</html>
| danielmorozoff/taste-rna-db | lib/neo4j-community-2.0.0/doc/java/api/org/neo4j/unsafe/batchinsert/class-use/BatchInserterIndex.html | HTML | mit | 12,899 |
<!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.8"/>
<title>Faeris: 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/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</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 style="padding-left: 0.5em;">
<div id="projectname">Faeris
 <span id="projectnumber">v3.2</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.8 -->
<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 class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div 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>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a></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><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">QuaternionTransform Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>addRef</b>() (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>autoDestroy</b>() (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>className</b>() FS_OVERRIDE (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>create</b>() (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>decRef</b>() (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>destroy</b>() (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>dropScriptData</b>() (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>equal</b>(FsObject *ob) (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>finalize</b>() (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>FS_CLASS_DECLARE</b>(FsObject) (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>FsObject</b>() (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>getAttribute</b>(const char *name) (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>getHashCode</b>() (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>getObjectNu</b>() (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>getPosition</b>() FS_OVERRIDE (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>getQuaternion</b>() (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>getRefDelete</b>() (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>getRotate</b>() FS_OVERRIDE (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>getScale</b>() FS_OVERRIDE (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>getTransformMatrix</b>() FS_OVERRIDE (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>getUserData</b>() (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>m_rotate</b> (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>m_scale</b> (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>m_scriptData</b> (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>m_transformMatrix</b> (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>m_transformMatrixDirty</b> (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>m_translate</b> (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>onFinalize</b> (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>QuaternionTransform</b>() (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>refCnt</b>() (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>setAttribute</b>(const char *name, const FsVariant &v) (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>setAttributes</b>(FsDict *dict) (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>setPosition</b>(const Vector3 &v) FS_OVERRIDE (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>setQuaternion</b>(const Quaternion &q) (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>setRefDelete</b>(bool value) (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>setRotate</b>(const Vector3 &r) FS_OVERRIDE (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>setScale</b>(const Vector3 &v) FS_OVERRIDE (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>setUserData</b>(void *data) (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>updateTransformMatrix</b>() FS_OVERRIDE (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>~FsObject</b>() (defined in <a class="el" href="class_fs_object.html">FsObject</a>)</td><td class="entry"><a class="el" href="class_fs_object.html">FsObject</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>~QuaternionTransform</b>() (defined in <a class="el" href="class_quaternion_transform.html">QuaternionTransform</a>)</td><td class="entry"><a class="el" href="class_quaternion_transform.html">QuaternionTransform</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">virtual</span></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jan 23 2015 17:58:37 for Faeris by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.8
</small></address>
</body>
</html>
| FSource/FDesign-Document | doxygen/html/class_quaternion_transform-members.html | HTML | mit | 16,627 |
{% extends "layout.html" %}
{% block title %}
Register
{% endblock %}
{% block main %}
<form action="{{ url_for('register') }}" method="post">
<fieldset>
<div class="form-group">
<input autocomplete="off" autofocus class="form-control" name="username" placeholder="Username" type="text"/>
</div>
<div class="form-group">
<input class="form-control" name="password" placeholder="Password" type="password"/>
</div>
<div class="form-group">
<input class="form-control" name="passwordagain" placeholder="Password (again)" type="password"/>
</div>
<div class="form-group">
<button class="btn btn-default" type="submit">Register</button>
</div>
</fieldset>
</form>
{% endblock %}
| jonenzl/cs50 | Pset 7/finance/templates/register.html | HTML | mit | 864 |
<!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>LINGUISTICS</title>
<link rel='stylesheet' href='/home/home.css' type='text/css'>
<script type='text/javascript'>var _gaq=_gaq || [];_gaq.push(['_setAccount','UA-39299338-2']);_gaq.push(['_trackPageview']);(function(){var ga=document.createElement('script');ga.type='text/javascript';ga.async=true;ga.src=('https:'==document.location.protocol?'https://ssl':'http://www')+'.google-analytics.com/ga.js';var s=document.getElementsByTagName('script')[0];s.parentNode.insertBefore(ga,s);})();</script>
</head>
<body>
<div><a href="http://www.washington.edu/"><img id="toplogo" src="/home/graphics/uw_logo.gif" alt="University of Washington" /></a></div>
<div id="toolbar">
<span class="l1text"><a href="/home/search.html">Search</a> |
<a href="/home/directories.html">Directories</a> |
<a href="http://www.lib.washington.edu/research/">Reference
Tools</a></span></div>
<!--Section Banner Table -->
<div class="bannerwrapper">
<div id="topbanner" ><img src="/home/graphics/rib0.gif" width="6" height="16" alt="" /></div>
</div>
<div id="crumbs"><span class="l1text"><a href="/">UW Home</a> > <a href="/discover/">Discover UW</a> > <a href="/students/">Student Guide</a></span> </div><div class="forceclear"></div>
<A CLASS="navlink" HREF="/students/crscat/glossary.html"><IMG SRC="/home/graphics/arrow.gif" ALT=" | " HEIGHT="13" WIDTH="18" BORDER="0">
Glossary</A>
<A CLASS="navlink" HREF="/students/crscatb/"><IMG SRC="/home/graphics/arrow.gif" ALT="" HEIGHT="13" WIDTH="18" BORDER="0">
UW Bothell Course Descriptions</A>
<A CLASS="navlink" HREF="/students/crscatt/"><IMG SRC="/home/graphics/arrow.gif" ALT="" HEIGHT="13" WIDTH="18" BORDER="0">
UW Tacoma Course Descriptions</A>
<!--
<br><br>
<A CLASS="navlink" HREF="search/"><IMG SRC="/home/graphics/arrow.gif" ALT="" HEIGHT="13" WIDTH="18" BORDER="0">
<span style="color:red;">New!</span> Improved Course Catalog Search (Beta)</A>
<A CLASS="navlink" HREF="search/"><IMG SRC="/home/graphics/arrow.gif" ALT="" HEIGHT="13" WIDTH="18" BORDER="0">
Google Search</A>
<input type=text name=q size=31 maxlength=255 value="">
<input type=hidden name=hq value="site:www.washington.edu/students/crscat">
<input type="hidden" name="site" value="search">
<input type="hidden" name="hl" value="en">
<input type="hidden" name="lr" value="">
<input type="hidden" name="safe" value="off">
<input type=submit name=sa value="Search">
-->
<div style="font-family: arial, helvetica, sans-serif; background-color:#666; color:#fff; padding:2px 3px;">
</span>
Search course descriptions with Google Custom Search:
<script>
(function() {
var cx = '016196792124746214904:cys_odfjmgq';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:search></gcse:search>
</div>
<h1>
COLLEGE OF ARTS & SCIENCES
<br/>LINGUISTICS
</h1>
<p>Detailed course offerings (Time Schedule) are available for<ul>
<li><a href="/students/timeschd/SUM2015/ling.html">Summer Quarter 2015</a></li>
<li><a href="/students/timeschd/AUT2015/ling.html">Autumn Quarter 2015</a></li>
</ul></p>
<a name="ling100"><p><b>LING 100 Fundamentals of Grammar (5) VLPA</b><i> L. MCGARRITY, C. SUREK-CLARK, K. ZAGONA</i><br/>Introduction to basic grammatical concepts and terminology. Specifically intended for students planning to take a foreign language or linguistics. Does not count toward the linguistics major or minor.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING100" target="_blank">View course details in MyPlan: LING 100</a></p></a>
<a name="ling101"><p><b>LING 101 Fundamentals of Pronunciation for Language Learners (5) VLPA</b><i> Kaisse</i><br/>Fundamentals of pronunciation for language learners. Introduces students to systematic characteristics of language sounds through examination of specific languages and their differences from English. Includes a laboratory component developing perceptual and productive skills of non-English sounds.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING101" target="_blank">View course details in MyPlan: LING 101</a></p></a>
<a name="ling200"><p><b>LING 200 Introduction to Linguistic Thought (5) VLPA/I&S, QSR</b><br/>Language as the fundamental characteristic of the human species; diversity and complexity of human languages; phonological and grammatical analysis; dimensions of language use; and language acquisition and historical language change. Not open for credit to students who have completed LING 201 or LING 400.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING200" target="_blank">View course details in MyPlan: LING 200</a></p></a>
<a name="ling201"><p><b>LING 201 Introduction to Linguistic Theory and Analysis (5) VLPA/I&S, QSR</b><br/>Background and scope of modern linguistics; behaviorist versus rationalist theories of language; universal and cognitive aspects of language structure; interplay of genetic and social factors in language formation; linguistic analysis. Not open for credit to students who have completed LING 200.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING201" target="_blank">View course details in MyPlan: LING 201</a></p></a>
<a name="ling203"><p><b>LING 203 Introduction to Anthropological Linguistics (5) VLPA/I&S</b><br/>Linguistic methods and theories used within anthropology. Basic structural features of language; human language and animal communication compared; evidence for the innate nature of language. Language and culture: linguistic relativism, ethnography of communication, sociolinguistics. Language and nationalism, language politics in the United States and elsewhere. Offered: jointly with ANTH 203.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING203" target="_blank">View course details in MyPlan: LING 203</a></p></a>
<a name="ling220"><p><b>LING 220 Origins of the Germanic Languages (5) VLPA</b><br/>Introduction to basic grammatical concepts, terminology, and linguistics with emphasis on German-English relationship. Overview of phonology, morphology, syntax, and history of Germanic languages and people, both ancient and modern. Languages covered include Old, Middle, and New High German; English, Frisian, Dutch, Old Saxon, and Gothic. Taught in English. Offered: jointly with GERMAN 220.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING220" target="_blank">View course details in MyPlan: LING 220</a></p></a>
<a name="ling233"><p><b>LING 233 Introduction to Language and Society (5) VLPA, DIV</b><i> Evans, Wassink</i><br/>Introduces the study of sociolects, the varieties of language that arise from differences in cultural and societal groups, often reflective of power inequalities. Raises awareness of the role that society and the individual play in shaping sociolects via the systematic observation and critical discussion of linguistic phenomena. Offered: jointly with ANTH 233/COM 233; A.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING233" target="_blank">View course details in MyPlan: LING 233</a></p></a>
<a name="ling234"><p><b>LING 234 Language and Diversity (5) I&S, DIV</b><i> Surek-Clark</i><br/>Advances students' knowledge of language and diversity in a global society, focusing on language and identity, multilingualism, language contact, language spread/variation, and language loss. Offered: W.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING234" target="_blank">View course details in MyPlan: LING 234</a></p></a>
<a name="ling242"><p><b>LING 242 Introduction to Meaning (5) VLPA</b><i> Ogihara</i><br/>Non-technical introduction to meaning in language and how it functions in communication and thinking. Discussion of how and why meanings of words change through time. Prerequisite: either LING 200, LING 201, ANTH/LING 203, or LING 400.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING242" target="_blank">View course details in MyPlan: LING 242</a></p></a>
<a name="ling269"><p><b>LING 269 Swearing and Taboo Language (5) I&S</b><i> L. MCGARRITY</i><br/>Examines swear words and taboo language, both within and across cultures, investigating their linguistic, pragmatic, neurological, psychological, social, and legal aspects. Offered: ASp.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING269" target="_blank">View course details in MyPlan: LING 269</a></p></a>
<a name="ling270"><p><b>LING 270 Introduction to Perl Programming for Linguists (5)</b><i> Bender</i><br/>Fundamental programming techniques, including data types, control flow, regular expressions, file handling, GUI design, and CGI interaction. Content relates to a variety of linguistic concepts including syntax, morphology, phonology, lexicon building and foreign language corpora. No previous programming necessary; however, a background in general linguistic theory is assumed. Offered: W.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING270" target="_blank">View course details in MyPlan: LING 270</a></p></a>
<a name="ling333"><p><b>LING 333 Linguistics and Society (3) VLPA/I&S</b><br/>Interaction of language, culture, and society, and the relationship of linguistic theory to societal problems. Ethical and political considerations involved in the application of linguistic theory.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING333" target="_blank">View course details in MyPlan: LING 333</a></p></a>
<a name="ling372"><p><b>LING 372 Language and Translation (5) VLPA</b><i> Tarlinskaja</i><br/>Role of linguistic concepts in the process of translation from one language to another. Attention to both language universals and language particulars.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING372" target="_blank">View course details in MyPlan: LING 372</a></p></a>
<a name="ling373"><p><b>LING 373 Introduction to Localization and Project Management (5)</b><br/>Covers basic concepts of translation, localization, and internationalization. Explores rationales for localizing products; history and future of the industry; workflows, professional roles, and localization tools. Includes the application of central concepts of localization to real-life situations; and introduction to the basics of localization project management. Offered: jointly with FRENCH 373.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING373" target="_blank">View course details in MyPlan: LING 373</a></p></a>
<a name="ling374"><p><b>LING 374 Localization: Technology and Tools (5)</b><br/>Covers basic concepts of localization and internationalization. Examines how technology and tools are applied to solving translation and localization scenarios in the real world. Includes daily tasks and basic steps; machine translation; community localization; and experience with actual localization tools. Offered: jointly with FRENCH 374.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING374" target="_blank">View course details in MyPlan: LING 374</a></p></a>
<a name="ling390"><p><b>LING 390 Foreign Studies in Linguistics (1-15, max. 20) I&S</b><br/>For students who take linguistics courses while participating in a University of Washington study abroad program and for which there is no direct University of Washington equivalent.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING390" target="_blank">View course details in MyPlan: LING 390</a></p></a>
<a name="ling400"><p><b>LING 400 Survey of Linguistic Method and Theory (5) VLPA/I&S, QSR</b><i> L. MCGARRITY</i><br/>Examines major linguistic theories in phonology, syntax and semantics; linguistic analysis and argumentation. Not available for credit to students who have completed LING 200.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING400" target="_blank">View course details in MyPlan: LING 400</a></p></a>
<a name="ling401"><p><b>LING 401 The Linguistic, Philosophical, and Political Thought of Noam Chomsky (3) VLPA/I&S</b><br/>Relation of current work in Chomskyan linguistics to philosophical, psychological, political, and educational thought.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING401" target="_blank">View course details in MyPlan: LING 401</a></p></a>
<a name="ling402"><p><b>LING 402 Survey of the History of Linguistics (3) VLPA/I&S</b><i> Zagona</i><br/>Main trends in linguistic theory and philosophy of linguistics from ancient times through advent of transformational-generative grammar. Includes nineteenth-century comparative and historical grammar, Prague school grammar, American structuralist grammar, major concerns of linguistics today. Prerequisite: LING 451.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING402" target="_blank">View course details in MyPlan: LING 402</a></p></a>
<a name="ling403"><p><b>LING 403 Structure of American Sign Language (5) VLPA</b><i> Hargus</i><br/>Introduction to the phonological, morphological, and syntactic structure of American Sign Language. Topics include acquisition, sociolinguisitics, neurolinguisitics, lexicography, history, and culture. Knowledge of American Sign Language is not required. Prerequisite: LING 200, 201, 203, or 400.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING403" target="_blank">View course details in MyPlan: LING 403</a></p></a>
<a name="ling404"><p><b>LING 404 Indo-European (3) VLPA</b><i> Voyles</i><br/>Overview of the Indo-European languages, of comparative method, and of the phonology, morphology, and syntax of reconstructed Indo-European. Grammatical analyses and texts from various attested ancient and modern Indo-European languages, selected according to the interests of the students.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING404" target="_blank">View course details in MyPlan: LING 404</a></p></a>
<a name="ling405"><p><b>LING 405 Indo-European (3) VLPA</b><i> Voyles</i><br/>Overview of the Indo-European languages, of comparative method, and of the phonology, morphology, and syntax of reconstructed Indo-European. Grammatical analyses and texts from various attested ancient and modern Indo-European languages, selected according to the interests of the students.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING405" target="_blank">View course details in MyPlan: LING 405</a></p></a>
<a name="ling406"><p><b>LING 406 Indo-European (3) VLPA</b><i> Voyles</i><br/>Overview of the Indo-European languages, of comparative method, and of the phonology, morphology, and syntax of reconstructed Indo-European. Grammatical analyses and texts from various attested ancient and modern Indo-European languages, selected according to the interests of the students.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING406" target="_blank">View course details in MyPlan: LING 406</a></p></a>
<a name="ling407"><p><b>LING 407 Languages of the World (5) VLPA</b><br/>A survey of the world's languages, focusing on their syntactic, phonological, and morphological properties. Prerequisite: either LING 200, LING 201, ANTH/LING 203, or LING 400.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING407" target="_blank">View course details in MyPlan: LING 407</a></p></a>
<a name="ling411"><p><b>LING 411 Native Languages and Language Families of Washington State (3) VLPA</b><i> Hargus</i><br/>Survey of linguistic structures of Washington native languages. Language families consist of Salish, Wakashan, Chemakuan, Athabaskan, Chinookan, Sahaptian, Cayuse. Structure and origin of Chinook jargon. Prerequisite: LING 450; either LING 461 or LING 481.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING411" target="_blank">View course details in MyPlan: LING 411</a></p></a>
<a name="ling415"><p><b>LING 415 History of the German Language (5) VLPA</b><br/>Traces the history of the German language from early Germanic to the present. Offered: jointly with GERMAN 452; W.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING415" target="_blank">View course details in MyPlan: LING 415</a></p></a>
<a name="ling419"><p><b>LING 419 Romance Linguistics Senior Essay (3) VLPA</b><br/>Capstone course for undergraduate Romance Linguistic majors.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING419" target="_blank">View course details in MyPlan: LING 419</a></p></a>
<a name="ling430"><p><b>LING 430 Pidgin and Creole Languages (5) VLPA/I&S</b><i> Wassink</i><br/>Explores aspects of the linguistic structure, history, and social context of pidgin and creole languages. Creolization as one possible outcome of language contact. Examines theories of creole genesis, similarities and differences between creole and non-creole languages. Prerequisite: either ANTH 203, LING 200, LING 201, LING 203, or LING 400. Offered: jointly with ANTH 439.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING430" target="_blank">View course details in MyPlan: LING 430</a></p></a>
<a name="ling432"><p><b>LING 432 Sociolinguistics I (5) VLPA/I&S, DIV</b><i> Evans, Wassink</i><br/>Interrelationships between social and linguistic factors influencing variation in speech production and perception, morphology, syntax, lexicon. Considers contribution of ethnic, regional and socioeconomic group memberships to dialect differentiation and progression of language change. Nonstandard language, diglossia, pidgins, creoles, gender differences, bi- and multilingualism, ethnography of speaking, pragmatics, and language attitudes. Prerequisite: either LING 200 or LING 400. Offered: jointly with ANTH 432.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING432" target="_blank">View course details in MyPlan: LING 432</a></p></a>
<a name="ling433"><p><b>LING 433 Sociolinguistics II (5) VLPA/I&S</b><i> Wassink</i><br/>Examines field methods linguists use in socially oriented studies of language variation and change. Includes language attitudes, study of urban dialects, syntactic variation, sampling and interview design. Discussion of issues related to recording, ethics, and analysis of large bodies of data. Prerequisite: LING 432. Offered: jointly with ANTH 433.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING433" target="_blank">View course details in MyPlan: LING 433</a></p></a>
<a name="ling441"><p><b>LING 441 Linguistics and Poetic Language (3) VLPA</b><br/>Introduction to the Relationship between linguistic structures, linguistic universals, and the poetic uses of language; linguistic description in the analysis of literature. Prerequisite: either LING 200, LING 201, ANTH/LING 203, or LING 400.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING441" target="_blank">View course details in MyPlan: LING 441</a></p></a>
<a name="ling442"><p><b>LING 442 Semantics I (5) VLPA/NW</b><i> Ogihara</i><br/>Introduction to the study of meaning as part of linguistic theory. Relation of semantics to syntax. Emphasis on formal semantics and pragmatics. Discussion of various semantic phenomena in natural language that are theoretically relevant. Prerequisite: LING 461.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING442" target="_blank">View course details in MyPlan: LING 442</a></p></a>
<a name="ling445"><p><b>LING 445 Descriptive Aspects of English as a Foreign Language (3) VLPA</b><br/>Linguistic analysis as a basis for the teaching of English as a foreign language; language as rule-governed behavior. Prerequisite: either LING 200, LING 201, ANTH/LING 203, or LING 400.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING445" target="_blank">View course details in MyPlan: LING 445</a></p></a>
<a name="ling446"><p><b>LING 446 English Phonology (3) VLPA</b><i> Hargus</i><br/>Descriptively oriented approach to of English phonology and phonetics; dialect differences. Prerequisite: LING 450.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING446" target="_blank">View course details in MyPlan: LING 446</a></p></a>
<a name="ling447"><p><b>LING 447 Psychology of Language (4) VLPA/I&S</b><i> Osterhout</i><br/>Introduction to the study of language, including language structure, speech perception, language acquisition, psychological processes underlying comprehension and production of language, the relation between brain and language, and the question of the species-specificity of human language. Prerequisite: either minimum 2.0 grade in PSYCH 209, minimum 2.0 grade in LING 200, or LING 201. Offered: jointly with PSYCH 447.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING447" target="_blank">View course details in MyPlan: LING 447</a></p></a>
<a name="ling449"><p><b>LING 449 Second-Language Learning (5) VLPA</b><i> Herschensohn</i><br/>Issues related to the linguistic aspects of second-language learning. Prerequisite: either LING 200, LING 201, ANTH/LING 203, or LING 400.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING449" target="_blank">View course details in MyPlan: LING 449</a></p></a>
<a name="ling450"><p><b>LING 450 Introduction to Linguistic Phonetics (5) VLPA/NW</b><i> S. HARGUS, A. WASSINK, R. WRIGHT</i><br/>Introduction to the articulatory and acoustic correlates of phonological features. Issues covered include the mapping of dynamic events to static representations, phonetic evidence for phonological description, universal constraints on phonological structure, and implications of psychological speech-sound categorization for phonological theory. Prerequisite: either LING 200 or LING 400.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING450" target="_blank">View course details in MyPlan: LING 450</a></p></a>
<a name="ling451"><p><b>LING 451 Phonology I (5) VLPA/I&S</b><i> Hargus, Kaisse</i><br/>Patterning of ounds and gestures in human languages; analysis in generative phonological framework. Prerequisite: LING 450.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING451" target="_blank">View course details in MyPlan: LING 451</a></p></a>
<a name="ling452"><p><b>LING 452 Phonology II (5) VLPA/I&S</b><i> Hargus, Kaisse</i><br/>Speech sounds, mechanism of their production, and structuring of sounds in languages; generative view of phonology; autosegmental and metrical phonology. Prerequisite: LING 451.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING452" target="_blank">View course details in MyPlan: LING 452</a></p></a>
<a name="ling453"><p><b>LING 453 Experimental Phonetics (5) VLPA/I&S/NW</b><i> Wright</i><br/>Examines phonetic and phonological aspects of spoken language using experimental methods. Focuses on acoustic phonetics and speech perception. Significant time devoted to experimental design and hands-on data analysis techniques. Prerequisite: LING 450.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING453" target="_blank">View course details in MyPlan: LING 453</a></p></a>
<a name="ling454"><p><b>LING 454 Methods in Comparative Linguistics (5) VLPA</b><i> Aldridge, Handel</i><br/>Method and theory of historical and comparative linguistics. Problems of phonological, morphological, syntactic, and semantic change and reconstruction. Prerequisite: either LING 200, LING 201, ANTH/LING 203, or LING 400.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING454" target="_blank">View course details in MyPlan: LING 454</a></p></a>
<a name="ling455"><p><b>LING 455 Areal Linguistics (3, max. 6) VLPA/I&S</b><br/>Issues involved in classification of languages. Systems of classification based on structure, word order, areal features. Ways in which languages may be classified for different purposes. Processes such as borrowing, vocabulary specialization, lexical change, and language death and revival. Prerequisite: either LING 200, LING 201, ANTH/LING 203, or LING 400. Offered: jointly with ANTH 455.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING455" target="_blank">View course details in MyPlan: LING 455</a></p></a>
<a name="ling457"><p><b>LING 457 Language Development (5) VLPA/I&S</b><br/>First-language acquisition and use by children. Emphasis on theoretical issues and research techniques. Prerequisite: minimum 2.0 grade in either PSYCH 206, PSYCH 306, LING 200, or LING 400. Offered: jointly with PSYCH 457.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING457" target="_blank">View course details in MyPlan: LING 457</a></p></a>
<a name="ling458"><p><b>LING 458 Language and Gender (5) VLPA/I&S, DIV</b><i> L. BILANIUK</i><br/>Survey of the theoretical trends, methods, and research findings on the relationship between language and gender. Focus on power relations in gendered language use. Extensive study of research based on conversational analysis. Prerequisite: LING 200; either LING 201, LING 203, or ANTH 203. Offered: jointly with ANTH 450/GWSS 450.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING458" target="_blank">View course details in MyPlan: LING 458</a></p></a>
<a name="ling461"><p><b>LING 461 Syntax I (5) VLPA/I&S</b><i> Aldridge, Citko, Zagona</i><br/>Study of the structural properties of language; introduction to generative transformational syntax. Prerequisite: either LING 200 or LING 400.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING461" target="_blank">View course details in MyPlan: LING 461</a></p></a>
<a name="ling462"><p><b>LING 462 Syntax II (5) VLPA/I&S</b><i> Aldridge, Citko, Zagona</i><br/>Study of the structural properties of language; introduction to generative transformational syntax. Prerequisite: LING 461.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING462" target="_blank">View course details in MyPlan: LING 462</a></p></a>
<a name="ling463"><p><b>LING 463 Syntax III (4) VLPA/I&S</b><br/>Study of the structural properties of language; introduction to generative transformational syntax. Prerequisite: LING 462.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING463" target="_blank">View course details in MyPlan: LING 463</a></p></a>
<a name="ling464"><p><b>LING 464 Language Politics and Cultural Identity (3) VLPA/I&S</b><i> L. BILANIUK</i><br/>Theories and case studies of the power of language and how it is manipulated. Multilingualism, diglossia. Role of language and linguistics in nationalism. Standardization, educational policy, language and ethnicity. World languages, language death and revival. Prerequisite: either LING 200, LING 201, ANTH/LING 203, or LING 400. Offered: jointly with ANTH 464.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING464" target="_blank">View course details in MyPlan: LING 464</a></p></a>
<a name="ling470"><p><b>LING 470 Discourse: Analyzing Talk and Texts (5) VLPA/I&S, DIV</b><br/>A critical and practical introduction to contemporary theories/methods in discourse analysis: how verbal communication (together with visual communication) is used in conversational talk and mediatized texts to construct identities and relationships; and how power and ideology are reproduced through these everyday social interactions. Offered: jointly with COM 470.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING470" target="_blank">View course details in MyPlan: LING 470</a></p></a>
<a name="ling471"><p><b>LING 471 Computational Methods for Linguists (5) QSR</b><br/>Overview of methods for working with linguistic data in electronic form: electronic corpora, linguistic software tools, textual data formats, operating system fundamentals, and basic programming. Prerequisite: either LING 450 or LING 461.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING471" target="_blank">View course details in MyPlan: LING 471</a></p></a>
<a name="ling472"><p><b>LING 472 Introduction to Computational Linguistics (5) VLPA/NW</b><i> E. BENDER</i><br/>Introduction to computational approaches to modeling language, for linguistic research and practical applications, including analyses at different levels of linguistic structure and symbolic as well as statistical approaches. Prerequisite: either LING 200 or LING 400; either LING 461 or CSE 311. Offered: jointly with CSE 472.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING472" target="_blank">View course details in MyPlan: LING 472</a></p></a>
<a name="ling473"><p><b>LING 473 Basics for Computational Linguistics (3)</b><br/>Examines computer applications involving automatic processing of natural language speech or text by machines. Intended as preparation for CLMS core courses. Includes concepts form probability and statistics; formal grammars and languages; finite-state automata and transducers; review of algorithms and data structures; and software for using parallel server cluster. Prerequisite: CSE 326; STAT 391; programming in Perl, C, C++, Java, or Python. Offered: S.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING473" target="_blank">View course details in MyPlan: LING 473</a></p></a>
<a name="ling476"><p><b>LING 476 Philosophy of Language (5) VLPA/I&S</b><br/>Current theories of meaning, reference, predication, and related concepts. Offered: jointly with PHIL 453.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING476" target="_blank">View course details in MyPlan: LING 476</a></p></a>
<a name="ling479"><p><b>LING 479 Semantics II (3) VLPA/I&S/NW</b><i> T. OGIHARA</i><br/>Formal characterization of linguistic meaning. Emphasis on nature and purpose of formal semantics and on its relation to formal syntax. Prerequisite: LING 442. Offered: jointly with PHIL 479.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING479" target="_blank">View course details in MyPlan: LING 479</a></p></a>
<a name="ling480"><p><b>LING 480 Topics in Linguistics (3, max. 12) VLPA</b><br/>Introduction to an area of linguistic study not covered by the regular departmental course offerings.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING480" target="_blank">View course details in MyPlan: LING 480</a></p></a>
<a name="ling481"><p><b>LING 481 Introduction to Morphology (5) VLPA</b><i> S. HARGUS</i><br/>Structure of words and the processes by which they are formed. Morphological processes in a wide variety of languages. Prerequisite: LING 450.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING481" target="_blank">View course details in MyPlan: LING 481</a></p></a>
<a name="ling484"><p><b>LING 484 Lexical Semantics and the Lexicon (3) VLPA</b><br/>Role of the lexicon in syntax and semantics. Topics include the syntax-lexicon mapping; theories of argument structure; complex predicate formation and lexical subordination; the lexicon and language acquisition; the role of the lexicon in linguistic theory; and the lexicon and sentence processing. Prerequisite: LING 461.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING484" target="_blank">View course details in MyPlan: LING 484</a></p></a>
<a name="ling490"><p><b>LING 490 Undergraduate Fieldwork (1-5, max. 15)</b><br/>Individual consultation with faculty member and supervised practical experience in a broad range of industry, community, clinical settings dealing with linguistic issues. Credit/no-credit only. Offered: AWSpS.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING490" target="_blank">View course details in MyPlan: LING 490</a></p></a>
<a name="ling499"><p><b>LING 499 UNDERGRADUATE RESEARCH (1-5, max. 10)</b><br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING499" target="_blank">View course details in MyPlan: LING 499</a></p></a>
<a name="ling501"><p><b>LING 501 Field Methods (3)</b><br/>Guided analysis of a language unfamiliar to all students of the class; construction of a grammar based on material elicited from native informant. Prerequisite: LING 452, LING 462, or LING 508.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING501" target="_blank">View course details in MyPlan: LING 501</a></p></a>
<a name="ling502"><p><b>LING 502 Field Methods (3)</b><br/>Guided analysis of a language unfamiliar to all students of the class; construction of a grammar based on material elicited from native informant. Prerequisite: LING 452, LING 462, or LING 508.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING502" target="_blank">View course details in MyPlan: LING 502</a></p></a>
<a name="ling503"><p><b>LING 503 Field Methods (3)</b><br/>Guided analysis of a language unfamiliar to all students of the class; construction of a grammar based on material elicited from native informant. Prerequisite: LING 453, LING 462, or permission of instructor.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING503" target="_blank">View course details in MyPlan: LING 503</a></p></a>
<a name="ling507"><p><b>LING 507 Syntactic Theory I (5)</b><i> E. ALDRIDGE, B. CITKO, K. ZAGONA</i><br/>Introduction to the principles and parameters model of syntactic theory. The lexicon and its relation to syntactic representations. Syntactic modules and principles. Problem solving.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING507" target="_blank">View course details in MyPlan: LING 507</a></p></a>
<a name="ling508"><p><b>LING 508 Syntactic Theory II (5)</b><i> Zagona, Aldridge, Citko</i><br/>Further explorations in principles and parameters syntax. Topics include logical form, island phenomena, locality restrictions, and licensing. Prerequisite: LING 507 or permission of instructor. Offered: W.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING508" target="_blank">View course details in MyPlan: LING 508</a></p></a>
<a name="ling509"><p><b>LING 509 Syntactic Theory III (5)</b><i> Zagona, Aldridge, Citko</i><br/>Focus on primary readings in syntactic theory, from classic papers on constraints and the architecture of grammar to recently published articles. Prerequisite: LING 508 or permission of instructor. Offered: Sp.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING509" target="_blank">View course details in MyPlan: LING 509</a></p></a>
<a name="ling514"><p><b>LING 514 Seminar in Comparative Linguistics (3)</b><i> Kaisse</i><br/>Nineteenth- and twentieth-century theories of phonological change. Prerequisite: LING 404 or permission of instructor.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING514" target="_blank">View course details in MyPlan: LING 514</a></p></a>
<a name="ling515"><p><b>LING 515 Topics in the History of Germanic Languages (5)</b><i> Barrack, Voyles</i><br/>Topics in diachronic studies of Germanic languages such as Gothic, Old High German, Old Saxon.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING515" target="_blank">View course details in MyPlan: LING 515</a></p></a>
<a name="ling519"><p><b>LING 519 Mathematical Models of Grammar (3)</b><i> Ogihara</i><br/>Study of some mathematical models of language recognition, emphasizing context-free and context-sensitive grammars. Prerequisite: graduate standing in mathematics, linguistics, or psychology, or permission of instructor.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING519" target="_blank">View course details in MyPlan: LING 519</a></p></a>
<a name="ling522"><p><b>LING 522 Topics in the History of Linguistics (3)</b><i> Zagona</i><br/>Intensive investigation of the main trends in the history of linguistics, concentrating on the development of nineteenth-century historical linguistics, the various schools of structural linguistics, and transformational-generative grammar. Prerequisite: LING 451.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING522" target="_blank">View course details in MyPlan: LING 522</a></p></a>
<a name="ling524"><p><b>LING 524 Seminar in Theoretical Linguistics (4, max. 8)</b><br/>Individual and joint research on selected topics in theoretical linguistics. Topics change each quarter. Typical topics are semantics, generative grammar, phonological theories. Prerequisite: LING 453, LING 463.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING524" target="_blank">View course details in MyPlan: LING 524</a></p></a>
<a name="ling525"><p><b>LING 525 Seminar in Theoretical Phonology (4, max. 12)</b><br/>Individual and joint research on selected topics in theoretical phonology. Topics vary. Typical offerings include phonology and the lexicon, syntax and phonology, phonological representations. Prerequisite: LING 452.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING525" target="_blank">View course details in MyPlan: LING 525</a></p></a>
<a name="ling530"><p><b>LING 530 Dialectology (3)</b><br/>The principles of dialect deviation as related to linguistic structure and usage. Prerequisite: LING 452, LING 462, LING 508, or permission of instructor. Offered: jointly with ANTH 530.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING530" target="_blank">View course details in MyPlan: LING 530</a></p></a>
<a name="ling531"><p><b>LING 531 Problems in Romance Linguistics (2-5, max. 15)</b><br/>Group seminar, or individual conferences are scheduled under this number to meet special needs. Prerequisite: permission of graduate program coordinator.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING531" target="_blank">View course details in MyPlan: LING 531</a></p></a>
<a name="ling532"><p><b>LING 532 Sociolinguistics I (5)</b><i> Evans, Wassink</i><br/>Examines social variation in the phonology, morphology, syntax, and lexicon of languages and dialects. Includes nonstandard language, diglossia, pidgins and creoles, gender differences, bi- and multilingualism, ethnography of speaking, and language attitudes. Prerequisite: either LING 200 or LING 400. Offered: jointly with ANTH 532; S.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING532" target="_blank">View course details in MyPlan: LING 532</a></p></a>
<a name="ling533"><p><b>LING 533 Topics and Methods in Sociolinguistic Theory (5)</b><i> Wassink</i><br/>Examines field methods linguists use in socially oriented studies of language variation and change. Includes language attitudes, study of urban dialects, syntactic variation, sampling and interview design. Discussion of issues related to recording, ethics, and analysis of large bodies of data. Prerequisite: LING 432.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING533" target="_blank">View course details in MyPlan: LING 533</a></p></a>
<a name="ling534"><p><b>LING 534 Sociolinguistic Applications of Social Network Theory (5)</b><i> Wassink</i><br/>Examines structure and content of social networks from a linguistic perspective. Reviews applications of graph theory and sociometry in sociolinguistics. Examines how language is embedded in personal networks and how the study of linkages between individuals can elucidate the regularity and direction of language change. Prerequisite: LING 400 and LING 432.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING534" target="_blank">View course details in MyPlan: LING 534</a></p></a>
<a name="ling535"><p><b>LING 535 Advanced Sociolinguistics (5, max. 10)</b><i> Wassink</i><br/>Explores perspective on language change and its mechanisms, understood in relation to the social context of language use in the speech community. Examines language-internal and -external motivations for change; phonological mergers and splits, chain-shifts, and diffusion of change through the lexicon. Prerequisite: LING 432 and LING 533.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING535" target="_blank">View course details in MyPlan: LING 535</a></p></a>
<a name="ling540"><p><b>LING 540 Phonological Development (3)</b><br/>Selected topics in the developmental sequence of phonological systems in normal-speaking children. Relationships between possible phonological inventories and rule systems in different languages. Prerequisite: LING 451, LING 452, or permission of instructor.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING540" target="_blank">View course details in MyPlan: LING 540</a></p></a>
<a name="ling542"><p><b>LING 542 Semantic Theory I (5)</b><i> Ogihara</i><br/>Introduction to formal semantics and pragmatics. Basic skills for proposing compositional semantic rules for natural language data. Discussion of various semantic phenomena in natural language that are theoretically relevant. Prerequisite: graduate standing in Linguistics or permission of instructor.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING542" target="_blank">View course details in MyPlan: LING 542</a></p></a>
<a name="ling548"><p><b>LING 548 Second/Foreign Language Teaching Capstone Project (3-5)</b><br/>Involves a research (original or library), materials development, or a teaching practicum. Offered: AWSpS.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING548" target="_blank">View course details in MyPlan: LING 548</a></p></a>
<a name="ling549"><p><b>LING 549 Second Language Learning (5)</b><i> Herschensohn</i><br/>Issues related to the linguistic aspects of second language learning. Prerequisite: either LING 200, LING 201, LING 203, or LING 400. Offered: AS.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING549" target="_blank">View course details in MyPlan: LING 549</a></p></a>
<a name="ling550"><p><b>LING 550 Introduction to Linguistic Phonetics (5)</b><i> Wright, Wassink</i><br/>Introduction to the articulatory and acoustic correlates of phonological features. Covers mapping of dynamic events to static presentations, phonetic evidence for phonological description, universal constraints on phonological structure, and implications of psychological speech-sound categorization for phonological theory. Prerequisite: either LING 200 or LING 400. Offered: AWS.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING550" target="_blank">View course details in MyPlan: LING 550</a></p></a>
<a name="ling551"><p><b>LING 551 Phonology I: Introduction to Phonological Analysis (5)</b><i> Hargus</i><br/>Patterning of sounds and gestures in human languages; analysis in generative phonological framework. Prerequisite: LING 550. Offered: WSpS.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING551" target="_blank">View course details in MyPlan: LING 551</a></p></a>
<a name="ling552"><p><b>LING 552 Phonology II: Advanced Phonology (5)</b><i> Hargus, Kaisse</i><br/>Optimality theory; phonetics-phonology interface. Prerequisite: LING 551.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING552" target="_blank">View course details in MyPlan: LING 552</a></p></a>
<a name="ling553"><p><b>LING 553 Experimental Phonetics (5)</b><i> Wright</i><br/>Examines phonetic and phonological aspects of spoken language using experimental methods. Focuses on acoustic phonetics and speech perception. Significant time devoted to experimental design and hands-on data analysis techniques. Prerequisite: LING 550. Offered: A.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING553" target="_blank">View course details in MyPlan: LING 553</a></p></a>
<a name="ling554"><p><b>LING 554 Advanced Linguistic Phonetics (3, max. 9)</b><i> Wright, Wassink</i><br/>Individual and joint projects on selected topics in theoretical and experimental phonetics. Topics may include articulatory timing, the phonetics phonology interface, and constraints and constraint interaction. Prerequisite: LING 450 or LING 452. Offered: Sp.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING554" target="_blank">View course details in MyPlan: LING 554</a></p></a>
<a name="ling561"><p><b>LING 561 Advanced Syntax (2-3, max. 9)</b><br/>Advanced study in modern syntactic theory. Topics change each quarter. Typical topics are history of transformational grammar, anaphora, logical form. Prerequisite: LING 461, LING 462.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING561" target="_blank">View course details in MyPlan: LING 561</a></p></a>
<a name="ling562"><p><b>LING 562 Advanced Syntax (2-3, max. 9)</b><br/>Advanced study in modern syntactic theory. Topics change each quarter. Typical topics are history of transformational grammar, anaphora, logical form. Prerequisite: LING 461, LING 462.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING562" target="_blank">View course details in MyPlan: LING 562</a></p></a>
<a name="ling563"><p><b>LING 563 Advanced Syntax (2-3, max. 9)</b><br/>Advanced study in modern syntactic theory. Topics change each quarter. Typical topics are history of transformational grammar, anaphora, logical form. Prerequisite: LING 461, LING 462.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING563" target="_blank">View course details in MyPlan: LING 563</a></p></a>
<a name="ling565"><p><b>LING 565 Contrastive Linguistics (3)</b><br/>The attempt to look across linguistic systems for comparable and contrastive classes and subclasses. Problems of subcategorization and universal grammar. Three conceptually distinct models: structural, transfer grammar, generative. Prerequisite: LING 452, LING 463.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING565" target="_blank">View course details in MyPlan: LING 565</a></p></a>
<a name="ling566"><p><b>LING 566 Introduction to Syntax for Computational Linguistics (3)</b><i> Bender</i><br/>Introduction to syntactic analysis and concepts with emphasis on the formally precise encoding in linguistic hypotheses and the design of grammars that can be scaled to practical applications. Coursework progressively builds up a consistent grammar for a fragment of English, while also considering data and phenomena from other languages. Offered: A.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING566" target="_blank">View course details in MyPlan: LING 566</a></p></a>
<a name="ling567"><p><b>LING 567 Knowledge Engineering for Deep Natural Language Processing (3)</b><i> Bender</i><br/>Techniques and theoretical issues relating to the development of knowledge engineering resources required for deep processing (symbolic or hybrid), focusing on grammar engineering and semantic representations. Prerequisite: LING 566.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING567" target="_blank">View course details in MyPlan: LING 567</a></p></a>
<a name="ling570"><p><b>LING 570 Shallow Processing Techniques for Natural Language Processing (4)</b><i> Xia</i><br/>Techniques and algorithms for associating relatively surface-level structures and information with natural language corpora, including POS tagging, morphological analysis, preprocessing/segmentation, named-entity recognition, chunk parsing, and word-sense disambiguation. Examines linguistic resources that can be leveraged for these tasks (e.g., WordNet). Prerequisite: a minimum grade of 2.7 in each of CSE 326 or equivalent, STAT 391 or equivalent, and LING 473 or passing score on the placement exam. Offered: A.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING570" target="_blank">View course details in MyPlan: LING 570</a></p></a>
<a name="ling571"><p><b>LING 571 Deep Processing Techniques for Natural Language Processing (4)</b><i> G. LEVOW</i><br/>Algorithms for associating deep or elaborated linguistic structures with naturally occurring linguistic data (parsing/semantics/discourse), and for producing natural language strings from input semantic representations (generation). Prerequisite: a minimum grade of 2.7 in each of CSE 326 or equivalent, STAT 391 or equivalent, and LING 473 or passing score on the placement exam. Offered: W.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING571" target="_blank">View course details in MyPlan: LING 571</a></p></a>
<a name="ling572"><p><b>LING 572 Advanced Statistical Methods in Natural Language Processing (4)</b><i> Xia</i><br/>Covers several important machine learning algorithms for natural language processing including decision tree, kNN, Naive Bayes, transformation-based learning, support vector machine, maximum entropy and conditional random field. Students implement many of the algorithms and apply these algorithms to some NLP tasks." Prerequisite: LING 570. Offered: W.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING572" target="_blank">View course details in MyPlan: LING 572</a></p></a>
<a name="ling573"><p><b>LING 573 Natural Language Processing Systems and Applications (4)</b><i> G. LEVOW</i><br/>Examines building coherent systems to handle practical applications. Particular topics vary. Possible topics include information retrieval/extraction, natural language query systems, dialogue systems, augmentative and alternative communications, computer-assisted language learning, language documentation, spell/grammar checking, and software localization. Prerequisite: LING 570, LING 571, LING 572. Offered: Sp.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING573" target="_blank">View course details in MyPlan: LING 573</a></p></a>
<a name="ling575"><p><b>LING 575 Topics in Computational Linguistics (3, max. 30)</b><i> Bender, Xia</i><br/>In-depth study of a particular area of computational linguistics, with hands-on experience. Prerequisite: LING 570 and 571, or permission of instructor. Offered: WSp.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING575" target="_blank">View course details in MyPlan: LING 575</a></p></a>
<a name="ling579"><p><b>LING 579 Semantic Theory II (5)</b><i> Ogihara</i><br/>Advanced introduction to the formal semantics of natural language. Emphasizes the interface between syntax and semantics. Prerequisite: LING 542.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING579" target="_blank">View course details in MyPlan: LING 579</a></p></a>
<a name="ling580"><p><b>LING 580 Problems in Linguistics (2-4, max. 99.9)</b><br/>Advanced study in current theories of syntax, semantics, phonology, or morphology. Can be repeated for credit.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING580" target="_blank">View course details in MyPlan: LING 580</a></p></a>
<a name="ling581"><p><b>LING 581 Morphology (5)</b><br/>Explores the structure of words and the processes by which they are formed. Morphological processes in a wide variety of languages. Prerequisite: either LING 450, LING 550, or equivalent.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING581" target="_blank">View course details in MyPlan: LING 581</a></p></a>
<a name="ling582"><p><b>LING 582 Capturing Brain Dynamics: A Combined Neuroscience and Engineering Approach (4)</b><i> A. LEE</i><br/>Introduces methods for capturing brain dynamics using an emerging neuroimaging technique know as magnetoencephalography (MEG). Uses techniques to examine perception and cognitive processes and their implications for future brain-computer-interface (BCI) design. Prepare students for interdisciplinary research in neuroscience and engineering. Offered: jointly with SPHSC 594; W.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING582" target="_blank">View course details in MyPlan: LING 582</a></p></a>
<a name="ling590"><p><b>LING 590 Graduate Fieldwork (1-10, max. 10)</b><br/>Individual consultation with faculty member and supervised practical experience in a broad range of industry, community, clinical settings dealing with linguistic issues. Offered: AWSpS.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING590" target="_blank">View course details in MyPlan: LING 590</a></p></a>
<a name="ling599"><p><b>LING 599 Linguistics Colloquium (1, max. 6)</b><br/>Seminar attended by faculty and graduate students to discuss research in progress and topics of general interest. Presentation of two seminars required for doctoral students. Prerequisite: permission of instructor.<br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING599" target="_blank">View course details in MyPlan: LING 599</a></p></a>
<a name="ling600"><p><b>LING 600 Independent Study or Research (*-)</b><br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING600" target="_blank">View course details in MyPlan: LING 600</a></p></a>
<a name="ling700"><p><b>LING 700 Master's Thesis (*-)</b><br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING700" target="_blank">View course details in MyPlan: LING 700</a></p></a>
<a name="ling800"><p><b>LING 800 Doctoral Dissertation (*-)</b><br/><a href="https://uwstudent.washington.edu/student/myplan/course/LING800" target="_blank">View course details in MyPlan: LING 800</a></p></a>
<div id="footer"><div id="footerseal">
<a href="http://www.washington.edu/"><img src="/home/graphics/blockw.gif" width="53" height="37" alt="UW Logo" /></a>
</div>
<div id="addressright"></div>
<div id="address"><address>
University of Washington Course Descriptions<br />
<a href="mailto:gencat@u.washington.edu">gencat@u.washington.edu</a><br />
Modified: September 5, 2015
</address>
</div>
</div>
</body>
</html>
<!--Created by chtml 1.48 on Sep 5, 2015 8:22am-->
| TxmszLou/uw-crsdep | html/ling.html | HTML | mit | 54,646 |
<!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>BIOMOLECULAR STRUCTURE AND DESIGN</title>
<link rel='stylesheet' href='/home/home.css' type='text/css'>
<script type='text/javascript'>var _gaq=_gaq || [];_gaq.push(['_setAccount','UA-39299338-2']);_gaq.push(['_trackPageview']);(function(){var ga=document.createElement('script');ga.type='text/javascript';ga.async=true;ga.src=('https:'==document.location.protocol?'https://ssl':'http://www')+'.google-analytics.com/ga.js';var s=document.getElementsByTagName('script')[0];s.parentNode.insertBefore(ga,s);})();</script>
</head>
<body>
<div><a href="http://www.washington.edu/"><img id="toplogo" src="/home/graphics/uw_logo.gif" alt="University of Washington" /></a></div>
<div id="toolbar">
<span class="l1text"><a href="/home/search.html">Search</a> |
<a href="/home/directories.html">Directories</a> |
<a href="http://www.lib.washington.edu/research/">Reference
Tools</a></span></div>
<!--Section Banner Table -->
<div class="bannerwrapper">
<div id="topbanner" ><img src="/home/graphics/rib0.gif" width="6" height="16" alt="" /></div>
</div>
<div id="crumbs"><span class="l1text"><a href="/">UW Home</a> > <a href="/discover/">Discover UW</a> > <a href="/students/">Student Guide</a></span> </div><div class="forceclear"></div>
<A CLASS="navlink" HREF="/students/crscat/glossary.html"><IMG SRC="/home/graphics/arrow.gif" ALT=" | " HEIGHT="13" WIDTH="18" BORDER="0">
Glossary</A>
<A CLASS="navlink" HREF="/students/crscatb/"><IMG SRC="/home/graphics/arrow.gif" ALT="" HEIGHT="13" WIDTH="18" BORDER="0">
UW Bothell Course Descriptions</A>
<A CLASS="navlink" HREF="/students/crscatt/"><IMG SRC="/home/graphics/arrow.gif" ALT="" HEIGHT="13" WIDTH="18" BORDER="0">
UW Tacoma Course Descriptions</A>
<!--
<br><br>
<A CLASS="navlink" HREF="search/"><IMG SRC="/home/graphics/arrow.gif" ALT="" HEIGHT="13" WIDTH="18" BORDER="0">
<span style="color:red;">New!</span> Improved Course Catalog Search (Beta)</A>
<A CLASS="navlink" HREF="search/"><IMG SRC="/home/graphics/arrow.gif" ALT="" HEIGHT="13" WIDTH="18" BORDER="0">
Google Search</A>
<input type=text name=q size=31 maxlength=255 value="">
<input type=hidden name=hq value="site:www.washington.edu/students/crscat">
<input type="hidden" name="site" value="search">
<input type="hidden" name="hl" value="en">
<input type="hidden" name="lr" value="">
<input type="hidden" name="safe" value="off">
<input type=submit name=sa value="Search">
-->
<div style="font-family: arial, helvetica, sans-serif; background-color:#666; color:#fff; padding:2px 3px;">
</span>
Search course descriptions with Google Custom Search:
<script>
(function() {
var cx = '016196792124746214904:cys_odfjmgq';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:search></gcse:search>
</div>
<h1>
INTERDISCIPLINARY GRADUATE PROGRAMS
<br/>BIOLOGICAL PHYSICS, STRUCTURE AND DESIGN
<br/>BIOMOLECULAR STRUCTURE AND DESIGN
</h1>
<p>Detailed course offerings (Time Schedule) are available for<ul>
<li><a href="/students/timeschd/SUM2015/bmsd.html">Summer Quarter 2015</a></li>
<li><a href="/students/timeschd/AUT2015/bmsd.html">Autumn Quarter 2015</a></li>
</ul></p>
<div id="footer"><div id="footerseal">
<a href="http://www.washington.edu/"><img src="/home/graphics/blockw.gif" width="53" height="37" alt="UW Logo" /></a>
</div>
<div id="addressright"></div>
<div id="address"><address>
University of Washington Course Descriptions<br />
<a href="mailto:gencat@u.washington.edu">gencat@u.washington.edu</a><br />
Modified: September 5, 2015
</address>
</div>
</div>
</body>
</html>
<!--Created by chtml 1.48 on Sep 5, 2015 8:33am-->
| TxmszLou/uw-crsdep | html/bmsd.html | HTML | mit | 4,185 |
<div class="row animated fadeIn">
<div class="col-5">
<div class="card" style="background: #2b2c2e; box-shadow: 5px 5px 5px #000; border-color: #2b2c2e;">
<div class="card-header" style="font-size: 25px; background: #2b2c2e; color: #e3e3e3; border: none; font-weight: bold">
관리 영역 인기도
</div>
<div class="card-block" style="height: 685px">
<div class="chart-wrapper"style="margin-top: 50px">
<canvas baseChart [data]="pieChartData" [colors]="pieChartColours" [options]="pieChartOptions" [labels]="pieChartLabels" [chartType]="pieChartType" (chartHover)="chartHovered($event)"
(chartClick)="chartClicked($event)"></canvas>
</div>
</div>
</div>
</div>
<div class="col-7">
<div class="card" style="background: #2b2c2e; box-shadow: 5px 5px 5px #000; border-color: #2b2c2e;">
<div class="card-header" style="font-size: 25px; background: #2b2c2e; color: #e3e3e3; border: none; font-weight: bold">
우아한형제들 - 시간별 방문 시간(초)
</div>
<div class="card-block">
<div class="chart-wrapper" style="height:130px;">
<canvas baseChart class="chart"
[datasets]="mainChartData"
[labels]="mainChartLabels"
[options]="mainChartOptions"
[colors]="mainChartColours"
[legend]="mainChartLegend"
[chartType]="mainChartType"
(chartHover)="chartHovered($event)"
(chartClick)="chartClicked($event)"></canvas>
</div>
</div>
</div>
<div class="card" style="background: #2b2c2e; box-shadow: 5px 5px 5px #000; border-color: #2b2c2e;">
<div class="card-header" style="font-size: 25px; background: #2b2c2e; color: #e3e3e3; border: none; font-weight: bold">
푸드테크 - 시간별 방문 시간(초)
</div>
<div class="card-block">
<div class="chart-wrapper" style="height:130px;">
<canvas baseChart class="chart"
[datasets]="mainChart2Data"
[labels]="mainChartLabels"
[options]="mainChartOptions"
[colors]="mainChartColours"
[legend]="mainChartLegend"
[chartType]="mainChartType"
(chartHover)="chartHovered($event)"
(chartClick)="chartClicked($event)"></canvas>
</div>
</div>
</div>
<div class="card" style="background: #2b2c2e; box-shadow: 5px 5px 5px #000; border-color: #2b2c2e;">
<div class="card-header" style="font-size: 25px; background: #2b2c2e; color: #e3e3e3; border: none; font-weight: bold">
마켓컬리 - 시간별 방문 시간(초)
</div>
<div class="card-block">
<div class="chart-wrapper" style="height:130px;">
<canvas baseChart class="chart"
[datasets]="mainChart3Data"
[labels]="mainChartLabels"
[options]="mainChartOptions"
[colors]="mainChartColours"
[legend]="mainChartLegend"
[chartType]="mainChartType"
(chartHover)="chartHovered($event)"
(chartClick)="chartClicked($event)"></canvas>
</div>
</div>
</div>
</div>
<div class="row animated fadeIn">
<div class="card" style="margin-left: 30px; width: 1420px; background: #2b2c2e; box-shadow: 5px 5px 5px #000; border-color: #2b2c2e;">
<div class="card-header" style="font-size: 25px; background: #2b2c2e; color: #e3e3e3; border: none; font-weight: bold">
관리 영역 별 군집도 시각화
</div>
<div class="card-block">
<app-brush-zoom-2></app-brush-zoom-2>
</div>
</div>
</div>
| masangbeom/flea_web | src/app/dashboard/dashboard.component.html | HTML | mit | 4,019 |
{{<govuk_template}}
{{$head}}
{{>includes/elements_head}}
<script>
var randomScalingFactor = function(){ return Math.round(Math.random()*100)};
var lineChartData = {
labels : ["1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014"],
datasets : [
{
label: "Mileage",
fillColor : "rgba(220,220,220,0.2)",
strokeColor : "rgba(48,162,151,1)",
pointColor : "rgba(27,131,121,1)",
pointStrokeColor : "#fff",
pointHighlightFill : "#222",
pointHighlightStroke : "rgba(220,220,220,1)",
data : [3,26618,39491,59635,79896,90567,109254,119254,157422,169570,176480,178128,180007,181178,183018,186307,186318,186828]
}
]
}
window.onload = function(){
var ctx = document.getElementById("canvas").getContext("2d");
window.myLine = new Chart(ctx).Line(lineChartData, {
responsive: true
});
}
</script>
<script type="text/javascript" src="/public/javascripts/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="/public/javascripts/application.js"></script>
<script type="text/javascript" src="/public/javascripts/Chart.js"></script>
{{/head}}
{{$propositionHeader}}
{{>includes/propositional_blank}}
{{/propositionHeader}}
{{$headerClass}}with-proposition{{/headerClass}}
{{$content}}
<div id="global-header-bar">
<div class="inner-block">
<div class="header-bar"></div>
</div>
</div>
<main id="wrapper" role="main">
<div id="content">
<div class="inner-block">
<a class="back-to-previous" href="change-address-1">Back <span class="visuallyhidden"> to the previous question</span></a>
<article>
<h1 class="heading-36">
Change address
</h1>
<div id="your-details">
<!--
<ul class="ul-data">
<li><span>Licence valid from</span><strong>15 Oct 2013</strong></li>
<li><span>Licence valid to</span><strong>22 Dec 2014 </strong></li>
<li><span>Driving licence number</span><strong>CLEGH710023PJ9BL</strong></li>
<li><span>Licence issue number</span><strong>12</strong></li>
</ul> -->
<!-- end #your-details -->
<fieldset>
<div class="form-group">
<label class="form-label" for="address-postcode"><h2 class="heading-19">Old postcode</h2></label>
<input type="text" class="form-control form-control-1-4" value="OX27 7QR" id="address-postcode">
<!-- <p class="form-hint">E.g. PR2 8AE or PR28AE</p> -->
<span style="padding-left:2em"><a href="#">Find a different address</a></span>
</div>
<fieldset>
<label for="address_uprn">
<span class="visuallyhidden">Select your </span>Address
</label>
<div class="validation-wrapper ">
<select id="address_uprn" name="address.uprn" class="lonely validate " data-validation-name="addressSelect" data-validation-type="field" data-validation-rules="nonEmpty">
<option value="">4 addresses found</option>
<option value="10009172278">Pantyffynnon Farm, Pontyberem, Llanelli, Carmarthenshire</option>
<option value="10004881783">Plas Uchaf, Pontyberem, Llanelli, Carmarthenshire</option>
<option value="10004881784">Ty Newydd Farm, Pontyberem, Llanelli, Carmarthenshire</option>
<option value="10004881785">Tyn Ton Farm, Pontyberem, Llanelli, Carmarthenshire</option>
</select>
</div>
<a href="change-address-manual" class="toggle">
I can’t find my address in the list<span class="visuallyhidden"> section</span>
</a>
</fieldset>
<div class="form-group" style="padding-top:2em">
<a href="change-address-3" class="button">Continue</a>
</div>
</article>
<!-- hide this next action button
<form action="get" class="form" style="margin-top:2.5em">
<fieldset>
<div style="float:left;padding-right:1em">
<input type="submit" class="button" value="Finish">
</div>
<div>
<p><a href="transfer-3">
Search for another vehicle
</a></p>
</div>
</fieldset>
</form>
-->
</div>
</div>
</main>
{{/content}}
{{/govuk_template}}
| paulpod/dartcharge | app/views/change-address-2.html | HTML | mit | 4,144 |
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:b="http://bindster.com" xmlns:fb="http://ogp.me/ns/fb#" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="description" content="Amorphic sample application">
<meta name="keywords" content="amorphic nodejs mongodb">
<meta name="title" content="Amorphic sample application">
<title> Amorphic Ticket Demo </title>
<!-- First include your library files -->
<!--script src="modules/q/q.js?ver=0"></script-->
<!--script src="js/lib/underscore.js?ver=0"></script-->
<!-- Bootstrap -->
<!--[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.3.0/respond.min.js"></script>
<![endif]-->
<script src="js/lib/jquery.js"></script>
<script src="js/lib/bootstrap.min.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Then include the amorphic files -->
<!--script src="supertype/index.js?ver=0"><--/script-->
<!--script src="semotus/index.js?ver=0"><--/script-->
<script src="js/bundle.js"></script>
<script src="amorphic/client.js?ver=0"></script>
<script src="modules/amorphic-bindster/index.js?ver=1"></script>
<script src="modules/amorphic-bindster/router.js?ver=0"></script>
<script src="js/router.js?ver=0"></script>
<!-- Dynamically generated script that will contain the controller and related objects -->
<script src="amorphic/init/ticket.js?ver=0"></script>
</head>
<body style="visibility:hidden;">
<!--#include virtual="inc/mappers.html" -->
<!--#include virtual="inc/messages.html" -->
<b:include url="menu.html"></b:include>
<div class="container" id="container" style="margin-top: 50px">
<!-- HOME PAGE GOES HERE WHERE SEARCH ENGINES WILL SEE IT -->
<b:if test="!file">
<div b:showif="loggedIn" class="page-header">
<h1>Hey <span b:bind="loggedInPerson.firstName"></span></h1>
<p>
Welcome to the Amorphic Ticket Demo
</p>
</div>
<div b:showif="!loggedIn" class="page-header">
<h1>Welcome to the Amorphic Ticket Demo</h1>
<p>
Amorphic is an open source project on
<a href="https://github.com/selsamman/amorphic" target="_blank">github</a>
</p>
</div>
<div style="text-align: center;color: red;margin-top: 20px" b:bind="error"></div>
</b:if>
<b:if test="file">
<b:include url="{file}"></b:include>
</b:if>
</div>
<!--#include virtual="inc/mocha.html" -->
<script src="modules/amorphic-bindster/bindster-amorphic.js"></script>
</body>
</html> | selsamman/amorphic-ticket-demo | apps/ticket/public/index.html | HTML | mit | 2,917 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_34) on Wed Oct 23 13:33:57 EDT 2013 -->
<TITLE>
Uses of Class org.hibernate.loader.custom.NonUniqueDiscoveredSqlAliasException (Hibernate JavaDocs)
</TITLE>
<META NAME="date" CONTENT="2013-10-23">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.hibernate.loader.custom.NonUniqueDiscoveredSqlAliasException (Hibernate JavaDocs)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/hibernate/loader/custom/NonUniqueDiscoveredSqlAliasException.html" title="class in org.hibernate.loader.custom"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/hibernate/loader/custom//class-useNonUniqueDiscoveredSqlAliasException.html" target="_top"><B>FRAMES</B></A>
<A HREF="NonUniqueDiscoveredSqlAliasException.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.hibernate.loader.custom.NonUniqueDiscoveredSqlAliasException</B></H2>
</CENTER>
No usage of org.hibernate.loader.custom.NonUniqueDiscoveredSqlAliasException
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/hibernate/loader/custom/NonUniqueDiscoveredSqlAliasException.html" title="class in org.hibernate.loader.custom"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/hibernate/loader/custom//class-useNonUniqueDiscoveredSqlAliasException.html" target="_top"><B>FRAMES</B></A>
<A HREF="NonUniqueDiscoveredSqlAliasException.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2001-2013 <a href="http://redhat.com">Red Hat, Inc.</a> All Rights Reserved.
</BODY>
</HTML>
| HerrB92/obp | OpenBeaconPackage/libraries/hibernate-release-4.2.7.SP1/documentation/javadocs/org/hibernate/loader/custom/class-use/NonUniqueDiscoveredSqlAliasException.html | HTML | mit | 6,326 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="es">
<head>
<!-- Generated by javadoc (1.8.0_05) on Sun Feb 19 22:06:13 GMT 2017 -->
<title>Overview List</title>
<meta name="date" content="2017-02-19">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="indexHeader"><span><a href="allclasses-frame.html" target="packageFrame">All Classes</a></span></div>
<div class="indexContainer">
<h2 title="Packages">Packages</h2>
<ul title="Packages">
<li><a href="ev3dev/actuators/package-frame.html" target="packageFrame">ev3dev.actuators</a></li>
<li><a href="ev3dev/actuators/motors/package-frame.html" target="packageFrame">ev3dev.actuators.motors</a></li>
<li><a href="ev3dev/hardware/package-frame.html" target="packageFrame">ev3dev.hardware</a></li>
<li><a href="ev3dev/robotics/tts/package-frame.html" target="packageFrame">ev3dev.robotics.tts</a></li>
<li><a href="ev3dev/sensors/package-frame.html" target="packageFrame">ev3dev.sensors</a></li>
<li><a href="ev3dev/sensors/ev3/package-frame.html" target="packageFrame">ev3dev.sensors.ev3</a></li>
<li><a href="ev3dev/utils/package-frame.html" target="packageFrame">ev3dev.utils</a></li>
</ul>
</div>
<p> </p>
</body>
</html>
| ev3dev-lang-java/ev3dev-lang-java.github.io | docs/api/v0.4.0/overview-frame.html | HTML | mit | 1,378 |
<section class="thirteen columns">
<h1>Skills</h1>
<article>
<header>
<h1>Software Development</h1>
</header>
<p>
<i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half-o"></i>
<em>Objective-C, Swift, iOS & related tech</em>
<p>
<i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half-o"></i>
<em>Java, Android & related tech</em>
</p>
<p>
<i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i>
<em>Software architecture and design</em>
</p>
<p>
<i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-o"></i>
<em>SQL and NoSQL databases</em> (MySQL, MongoDB, Google Datastore)
</p>
<!--Architecture, patterns, etc, bother?-->
<!--Big Data?-->
<br/>
<header>
<h1>Consultancy and Architecture</h1>
</header>
<p>
<i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i>
<em>Google Cloud</em> (Cloud Compute, Container Engine, App Engine, Big Query, Datastore, Firebase)
<p>
<i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half-o"></i>
<em>AWS</em> (EC2, S3, Elastic Beanstalk, DynamoDB, RDS, Route53, ELB, CloudFront)
</p>
<p>
<i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half-o"></i>
<em>Serverless / PaaS</em> (Firebase, Google App Engine, Lambda, Parse)
</p>
<p>
<i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half-o"></i>
<em>Containers</em> (Docker, Compose, Kubernetes)
</p>
<p>
<i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half-o"></i>
<em>DevOps</em> (Team City, Jenkins, Kubernetes, Elastic Beanstalk, CircleCI)
</p>
</article>
</section> | gazreese/gazreese.github.io | _includes/skills.html | HTML | mit | 2,680 |
<!doctype html>
<html lang=en >
<head>
<title>img-viewer-3d-moon.html</title>
<meta charset=utf-8 />
<meta name=viewport content='width=device-width,user-scalable=no,minimum-scale=1.0,maximum-scale=1.0' />
</head>
<body>
<script src=http://mrdoob.github.io/three.js/build/three.min.js ></script>
<script src=http://mrdoob.github.io/three.js/examples/js/controls/OrbitControls.js ></script>
<script src=http://mrdoob.github.io/three.js/examples/js/libs/stats.min.js ></script>
<script>
var info, stats, renderer, scene, camera, controls;
var geometry, material, mesh;
var startTime = Date.now();
var changes = 0;
// fileName = 'c:/temp/topo30/topo30';
// fileName = 'c:/temp/topo30/topo1.gsd';
// fileName = './topo30';
// fileName = 'http://caper.ws/terrain-srtm30-plus/topo30/topo30';
// var fileName = '../../../data-samples/usgs-srtm1-2-1/N37W121.hgt';
// var fileName = 'C:/temp/de-ferranti/P32/N60E006.hgt';
// var fileName = 'C:/temp/LDEM_16.IMG';
// var fileName = 'C:/temp/WAC_GLD100_E000N1800_004P.IMG';
// var fileName = 'C:/temp/WAC_GLD100_E000N1800_008P.IMG';
var fileName = 'C:/temp/WAC_GLD100_E000N1800_016P.IMG';
// var fileName = 'C:/temp/WAC_GLD100_E000N1800_032P.IMG';
var width = 1440; // 4P
var height = 720;
var width = 1440 * 4;
var height = 720 * 4;
var xmlHttp;
var byteArray;
init();
// animate();
function init() {
var css = document.head.appendChild( document.createElement('style') );
css.innerHTML ='body { font: 12pt monospace; margin: 0; /* overflow: hidden; */ }' ;
if ( window.self === window.top ) {
var info = document.body.appendChild( document.createElement( 'div' ) );
// info.style.cssText = 'margin: 0 20px; position: absolute; ';
info.innerHTML = '<h2><a href="" >' + document.title + '</a></h2>' +
'<p><a id=download href="" onclick=saveIt(); ><button>Save it</button></a></p>' +
'<canvas id=canvas ></canvas>' +
'<div id=msg0 ></div>' +
'<div id=msg1 ></div>' +
'<div id=msg2 ></div>' +
'';
} else {
// document.write('<h1>Inside an iframe</h1>');
}
/*
stats = new Stats();
stats.domElement.style.cssText = 'position: absolute; right: 0; z-index: 100; ';
document.body.appendChild( stats.domElement );
renderer = new THREE.WebGLRenderer( { alpha: 1, antialias: true, clearColor: 0xffffff } );
renderer.setSize( window.innerWidth, window.innerHeight );
document.body.appendChild( renderer.domElement );
camera = new THREE.PerspectiveCamera( 40, window.innerWidth / window.innerHeight, 1, 1000 );
camera.position.set( 10, 150, 200 );
controls = new THREE.OrbitControls( camera, renderer.domElement );
scene = new THREE.Scene();
// Axis
var axisHelper = new THREE.AxisHelper( 50 );
scene.add( axisHelper );
*/
/*
// Sea Level
var geometry = new THREE.PlaneGeometry( 256, 256 );
geometry.applyMatrix( new THREE.Matrix4().makeRotationX( -0.5 * Math.PI ) );
var material = new THREE.MeshBasicMaterial( { color: 0x0000ff, opacity: 0.5, side: 2, transparent: true } );
var mesh = new THREE.Mesh( geometry, material );
scene.add( mesh );
*/
requestHGTFile( fileName );
// canvas = document.createElement( 'canvas' );
// canvas = document.body.appendChild( document.createElement( 'canvas' ) );
canvas.width = width;
canvas.height = height;
// canvas.style.cssText = 'border: 1px solid gray; position: absolute; top: 0;z-index: -10; ';
context = canvas.getContext( '2d' );
imageData = context.createImageData( canvas.width, canvas.height );
imageDataData = imageData.data;
}
function requestHGTFile( fileName, startByte, finishByte ) {
startTime = new Date();
xmlHttp = new XMLHttpRequest();
xmlHttp.crossOrigin = 'Anonymous';
xmlHttp.responseType = 'arraybuffer';
xmlHttp.open( 'GET', fileName, true );
xmlHttp.onreadystatechange = getData;
// xmlHttp.setRequestHeader('Range', 'bytes=' + startByte + '-' + finishByte );
xmlHttp.send( null );
}
function getData() {
if ( xmlHttp.readyState === 4 ) {
byteArray = new Int16Array( xmlHttp.response );
var index = 0;
elevations = [];
for ( var i = 0; i < byteArray.length; i++ ) {
elevation = byteArray[ i ] + 10000;
elevations.push( elevation );
imageDataData[ index++ ] = (elevation & 0x0000ff )
imageDataData[ index++ ] = (elevation & 0x00ff00 ) >> 8;
imageDataData[ index++ ] = (elevation & 0xff0000 ) >> 16;
imageDataData[ index++ ] = 255;
}
context.putImageData( imageData, 0, 0 );
// map = context.getImageData( 5000, 3000, 256, 256 ).data;
// updatePlane();
}
}
function updatePlane() {
geometry = new THREE.PlaneGeometry( 500, 500, 255, 255 );
geometry.applyMatrix( new THREE.Matrix4().makeRotationX( 0.5 * Math.PI ) );
verts = geometry.vertices;
var scale = 0.01;
for (var i = 0, j = 0; i < verts.length; i++, j += 4 ) {
elevation = map[ j ] + 255 * map[ j + 1 ];
// elevation = elevation < -15000 || elevation > 10000 ? 0 : elevation ;
verts[ i ].y = scale * elevation ;
}
geometry.computeFaceNormals();
geometry.computeVertexNormals();
var material = new THREE.MeshNormalMaterial( { side: 2 } );
scene.remove( mesh );
mesh = new THREE.Mesh( geometry, material );
mesh.scale.z = -1;
scene.add( mesh );
msg2.innerHTML = 'Load time in ms: ' + ( Date.now() - startTime );
}
function saveIt() {
slash = navigator.platform === 'Win32' ? '\\' : '/' ;
name = fileName.substr( 1 + fileName.lastIndexOf( slash ) );
name = name.replace(/\.img|\.html|\.json|\.js|\.obj|\.stl/gi,'-') + width + 'x' + height + '.png';
var c2du = canvas.toDataURL();
download.download = name;
download.href = c2du;
}
function animate() {
requestAnimationFrame( animate );
controls.update();
stats.update();
renderer.render( scene, camera );
}
</script>
</body>
</html> | jaanga/terrain-r2 | viewers/moon-utilities/img-viewer-3d-moon.html | HTML | mit | 5,837 |
<!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" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" type="text/css" href="../css/main.css">
<!-- smoosh -->
<link rel="stylesheet" type="text/css" href="../css/media-queries.css">
<!-- endsmoosh -->
</head>
<body>
<table class="body">
<tr>
<td class="center" align="center" valign="top">
<center>
<table class="full-width-row header">
<tr>
<td class="center" align="center">
<center>
<table class="container">
<tr>
<td class="wrapper last">
<table class="twelve columns">
<tr>
<td class="six sub-columns">
<img src="http://placehold.it/200x50">
</td>
<td class="six sub-columns last" style="text-align:right; vertical-align:middle;">
<span class="template-label">BASIC</span>
</td>
<td class="expander"></td>
</tr>
</table>
</td>
</tr>
</table>
</center>
</td>
</tr>
</table>
<table class="container">
<tr>
<td>
<table class="row">
<tr>
<td class="wrapper last">
<table class="twelve columns">
<tr>
<td>
<h1>Hi, Susan Calvin</h1>
<p class="lead">Phasellus dictum sapien a neque luctus cursus. Pellentesque sem dolor, fringilla et pharetra vitae.</p>
<p>Phasellus dictum sapien a neque luctus cursus. Pellentesque sem dolor, fringilla et pharetra vitae. consequat vel lacus. Sed iaculis pulvinar ligula, ornare fringilla ante viverra et. In hac habitasse platea dictumst. Donec vel orci mi, eu congue justo. Integer eget odio est, eget malesuada lorem. Aenean sed tellus dui, vitae viverra risus. Nullam massa sapien, pulvinar eleifend fringilla id, convallis eget nisi. Mauris a sagittis dui. Pellentesque non lacinia mi. Fusce sit amet libero sit amet erat venenatis sollicitudin vitae vel eros. Cras nunc sapien, interdum sit amet porttitor ut, congue quis urna.</p>
</td>
<td class="expander"></td>
</tr>
</table>
</td>
</tr>
</table>
<table class="row callout">
<tr>
<td class="wrapper">
<table class="six columns">
<tr>
<td class="panel">
<p>Phasellus dictum sapien a neque luctus cursus. Pellentesque sem dolor, fringilla et pharetra vitae. <a href="#">Click it! »</a></p>
</td>
<td class="expander"></td>
</tr>
</table>
</td>
<td class="wrapper last">
<table class="six columns">
<tr>
<td class="panel">
<p>Phasellus dictum sapien a neque luctus cursus. Pellentesque sem dolor, fringilla et pharetra vitae. <a href="#">Click it! »</a></p>
</td>
<td class="expander"></td>
</tr>
</table>
</td>
</tr>
</table>
<table class="row footer">
<tr>
<td class="wrapper">
<table class="six columns">
<tr>
<td class="left-text-pad">
<h5>Connect With Us:</h5>
<table class="tiny-button facebook">
<tr>
<td>
<a href="#">Facebook</a>
</td>
</tr>
</table>
<table class="tiny-button twitter">
<tr>
<td>
<a href="#">Twitter</a>
</td>
</tr>
</table>
<table class="tiny-button google-plus">
<tr>
<td>
<a href="#">Google +</a>
</td>
</tr>
</table>
</td>
<td class="expander"></td>
</tr>
</table>
</td>
<td class="wrapper last">
<table class="six columns">
<tr>
<td class="last right-text-pad">
<h5>Contact Info:</h5>
<p>Phone: 408.341.0600</p>
<p>Email: <a href="mailto:hseldon@trantor.com">hseldon@trantor.com</a></p>
</td>
<td class="expander"></td>
</tr>
</table>
</td>
</tr>
</table>
<table class="row">
<tr>
<td class="wrapper last">
<table class="twelve columns">
<tr>
<td align="center">
<center>
<p style="text-align:center;"><a href="#">Terms</a> | <a href="#">Privacy</a> | <a href="#">Unsubscribe</a></p>
</center>
</td>
<td class="expander"></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- container end below -->
</td>
</tr>
</table>
</center>
</td>
</tr>
</table>
</body>
</html>
| whatsnewsaes/Email-Slayer | _input/basic.html | HTML | mit | 10,134 |
---
permalink: /schedule/presentation/3/
title: 'Presentation: Don''t be afraid to search | DjangoCon in Austin, TX'
---
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8"/>
<title>Presentation: Don't be afraid to search | DjangoCon in Austin, TX</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<meta content="DjangoCon US 2015 in Austin, TX" property="og:title">
<meta content="website" property="og:type">
<meta content="https://2015.djangocon.us/" property="og:url"/>
<meta content="DjangoCon US 2015" property="og:site_name"/>
<meta content="A six-day not-for-profit by-the-community and for-the-community international conference for the Django web framework. " property="og:description"/>
<meta content="https://2015.djangocon.us/site_media/static/images/djangocon-logo-thumb.png" property="og:image"/>
<link href="/site_media/static/main.css" media="screen,projection" rel="stylesheet" type="text/css"/>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="//oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="//oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<link href="/site_media/static/images/favicon.ico" rel="shortcut icon"/>
<script src="https://cdn.jsdelivr.net/jquery/1.11.2/jquery.min.js"></script>
</meta></meta></head>
<body class="" id="">
<div class="poster-bg">
<div class="poster-shadow">
<div class="django-sticker"></div>
<!-- Fixed navbar -->
<div class="navbar-wrapper">
<div class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" data-target=".navbar-collapse" data-toggle="collapse" type="button">
<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="/proposals/submit/">
<img alt="logo" class="img-responsive" src="/site_media/static/images/logo.png" width="180"/>
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="/#">
About
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
<li role="presentation">
<a href="/about/" role="menuitem">What is Djangocon?</a>
</li>
<li role="presentation">
<a href="/organizers/" role="menuitem">DjangoCon Organizers</a>
</li>
<li role="presentation">
<a href="/code_of_conduct/" role="menuitem">Code of Conduct</a>
</li>
<li role="presentation">
<a href="/diversity/" role="menuitem">Diversity</a>
</li>
<li role="presentation">
<a href="/accessibility/" role="menuitem">Accessibility</a>
</li>
<li role="presentation">
<a href="/financial_aid/" role="menuitem">Financial Aid</a>
</li>
<li role="presentation">
<a href="/childcare/" role="menuitem">Childcare</a>
</li>
<li role="presentation">
<a href="/volunteers/" role="menuitem">Volunteers</a>
</li>
<li role="presentation">
<a href="/contact/" role="menuitem">Contact Us</a>
</li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="/#">
Schedule
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
<li role="presentation">
<a href="/tutorials/list/" role="menuitem">Tutorial Schedule</a>
</li>
<li role="presentation">
<a href="/schedule/general-sessions/" role="menuitem">Talk Schedule</a>
</li>
<li role="presentation">
<a href="/sprints/" role="menuitem">Sprints</a>
</li>
<li role="presentation">
<a href="https://djangogirls.org/philadelphia/" role="menuitem">DjangoGirls Austin Workshop</a>
</li>
<li role="presentation">
<a href="/beginners/" role="menuitem">Beginner's Guide</a>
</li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="/#">
Registration
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
<li role="presentation">
<a href="/registration/" role="menuitem">Register for DjangoCon US</a>
</li>
<li role="presentation">
<a href="https://djangogirls.org/philadelphia/apply/" role="menuitem">Register for DjangoGirls Austin Workshop</a>
</li>
<li role="presentation">
<a href="https://resweb.passkey.com/go/DJANGO0915" role="menuitem">Register for Hotel Accommodations</a>
</li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="/#">
Venue
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
<li role="presentation">
<a href="/hotels/" role="menuitem">Hotel Accommodations</a>
</li>
<li role="presentation">
<a href="/travel/" role="menuitem">Travel</a>
</li>
<li role="presentation">
<a href="/austin/" role="menuitem">City Guide to Austin</a>
</li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="/#">
Speaking
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
<li role="presentation">
<a href="/speaking/cfp/" role="menuitem">Call For Proposals</a>
</li>
<li role="presentation">
<a href="/speaking/mentors/" role="menuitem">Speaker Mentors</a>
</li>
<li role="presentation">
<a href="/lightning_talks/" role="menuitem">Lightning Talks</a>
</li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="/#">
Sponsors
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
<li role="presentation">
<a href="/become-sponsor/" role="menuitem">Become a Sponsor</a>
</li>
<li role="presentation">
<a href="/sponsors/" role="menuitem">DjangoCon Sponsors</a>
</li>
</ul>
</li>
<li class=" ">
<a href="/blog/">
News
</a>
</li>
</ul>
<div class="" id="capsules">
<ul class="nav navbar-nav navbar-right">
<li><a href="/account/login/">Log in</a></li>
<li><a href="/account/signup/">Sign up</a></li>
</ul>
</div>
<form action="https://2015.djangocon.us/account/logout/" id="accountLogOutForm" method="POST" style="display: none;">
<input name="csrfmiddlewaretoken" type="hidden" value="vKDUxSvBXQum2uTW0DN1QlXrjKdu8pjA"/>
</form>
</div>
<!--/.nav-collapse -->
</div>
</div>
</div>
<div class="row small-header">
<div class="container">
<h1 class="brdp"></h1>
</div>
</div>
<div class="row base-row">
<div class="container">
</div>
</div>
<div class="row base-row">
<div class="page-content container">
<h4>
Sunday
9 a.m.–12:30 p.m.
</h4>
<h2>Don't be afraid to search</h2>
<h4>
<a href="/speaker/profile/9/">Honza Král</a>
</h4>
<dl class="dl-horizontal">
<dt><h3>Audience level:</h3></dt>
<dd style="margin-bottom: 0;">Novice</dd>
</dl>
<h3>Description</h3>
<div class="description"><p>Creating a good search functionality for your website is perceived as hard when it doesn't have to be so.</p>
<p>In this tutorial we will walk through the steps required to add search using elasticsearch. We will start with the theory of search and search engines and demonstrate this by implementing a simple search on a simple django site including features like auto complete and faceted navigation.</p></div>
<h3>Abstract</h3>
<div class="abstract"><p>Introduction</p>
<ul>
<li>what is search</li>
<li>inverted index & importance of analysis</li>
<li>elasticsearch and it's data model</li>
</ul>
<p>Simple Search - starting with working django app add</p>
<ul>
<li>simple full-text search to find the content we are looking for</li>
<li>add structured search (filters)</li>
</ul>
<p>Advanced search techniques</p>
<ul>
<li>auto-complete as you type functionality</li>
<li>faceted navigation</li>
</ul>
<p>Extras (when we have time, otherwise just an outline with links for home study)</p>
<ul>
<li>using Kibana to explore and visualize our data</li>
<li>tracking user searches to improve relevancy</li>
<li>building recommendations based on user behavior</li>
</ul>
<p>Only free and open source tools will be used. Sample django app and data will be provided for the tutorial via a git repo. Attendees should have a working django installation on their laptop and a JVM installed.</p></div>
</div>
</div>
<div class="row" id="footer">
<div class="mainback">
<div class="turm">
<div class="outer">
<div class="inner">
<div class="container">
<div class="nail nail-bl"></div>
<div class="nail nail-br"></div>
<div class="col-md-6 col-centered footer-note">
<div class="contact-us">Questions? Comments?</div><a href="/contact/">Contact Us</a><br/>
Design + Build by
<a href="https://www.lincolnloop.com">Lincoln Loop</a> <br>
Hosted on <a href="https://gondor.io">Gondor</a> <br/>
Presented by <a href="https://www.defna.org">DEFNA</a>
<p>©2016 DjangoCon</p>
</br></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script charset="utf-8" src="/site_media/static/main.js" type="text/javascript"></script>
{% include analytics.html %}
</body>
</html> | djangocon/2015.djangocon.us | _pages/schedule-presentation-3.html | HTML | mit | 9,162 |
<section id="contact">
<style>
@import url("{{ base_path }}/assets/css/bootstrap.min.css");
</style>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1 class="section-heading">Contattateci nel modo che preferite!</h1>
<hr class="primary">
<div class="col-md-12 text-left">
<p>Vi offriamo l’opportunità di conoscerci in un incontro preliminare <strong>discreto e senza impegno</strong>, perché un incarico di Consulenza è sempre una decisione bilaterale. Sta a voi decidere se siamo il partner che si adatta alle vostre esigenze: abbiamo iniziato a fare Consulenza di Direzione fin dal 2012, capitalizzando le esperienze e le competenze maturate in oltre 30 anni di lavoro in aziende di settori diversi e in ruoli di crescente responsabilità.</p>
<p>Prima di procedere con un progetto, valuteremo la possibilità di potervi aiutare efficacemente nel raggiungere i risultati desiderati, perciò ci prenderemo il tempo necessario per definire insieme a voi<strong> obiettivi</strong>, <strong>traguardi</strong> e <strong>vantaggi</strong> della nostra collaborazione.</p>
</div>
</div>
<div class="col-md-4 col-xs-4 text-center">
<a href="mailto:{{ site.email }}">
<i class="fa fa-envelope-o fa-3x wow bounceIn" data-wow-delay=".1s"></i>
<p>{{ site.email }}</p>
</a>
</div>
<div class="col-md-4 col-xs-4 text-center">
<a href="https://twitter.com/{{ site.twitter_username }}">
<i class="fa fa-twitter fa-3x wow bounceIn" data-wow-delay=".2s"></i>
<p>{{ site.twitter_username }}</p>
</a>
</div>
<div class="col-md-4 col-xs-4 text-center">
<a href="https://www.linkedin.com/in/{{ site.linkedin_username }}">
<i class="fa fa-linkedin fa-3x wow bounceIn" data-wow-delay=".3s"></i>
<p>{{ site.linkedin_username }}</p>
</a>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-6">
<h3>POSSIAMO PARLARNE DAVANTI A UN CAFFE':</h3>
<p>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2874.3914628149328!2d10.2164159506801!3d43.909868843711656!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x12d5a056f1f73a63%3A0xd599da7d8d1defb!2sVia+Abetone%2C+47%2C+55041+Camaiore+LU!5e0!3m2!1sen!2sit!4v1466599566991" width="500" height="350" frameborder="0" style="border:0" allowfullscreen></iframe>
</p>
</div>
<div class="col-sm-6">
<h3>OPPURE, SE PREFERITE, POTETE SCRIVERCI:</h3>
<p></p>
<div class="container">
<form id="contact-form" action="//formspree.io/info@menicucci.co" method="post">
<fieldset>
<input type="hidden" name="_next" value="{{ site.url }}/thanks" />
<input type="hidden" name="_subject" value="Nuovo messaggio dal sito!" />
<input type="text" name="_gotcha" style="display:none" />
<!-- FORM -->
<div class="col-sm-4">
<div class="form-group">
<label for="InputName">Nome e Cognome</label>
<input type="text" class="form-control" name="InputName" id="InputName" placeholder="Nome e Cognome" required>
<label for="InputEmail">Indirizzo Email</label>
<input type="_replyto" class="form-control" id="InputEmail" name="InputEmail" placeholder="Indirizzo Mail" required>
<label for="InputMessage">Messaggio</label>
<textarea name="InputMessage" id="InputMessage" class="form-control" rows="4" required></textarea>
</div>
<div class="span7 text-left">
<button type="submit" class="btn btn-danger btn-lg">Invia >></button>
</div>
</div>
</fieldset>
</form>
</div>
<!--
<script type="text/javascript">
var $contactForm = $('#contact-form');
$contactForm.submit(function(e) {
e.preventDefault();
$.ajax({
url: '//formspree.io/info@menicucci.co',
method: 'POST',
data: $(this).serialize(),
dataType: 'json',
beforeSend: function() {
$contactForm.append('<div class="alert alert-success">Invio il messaggio…</div>');
},
success: function(data) {
$contactForm.find('.alert--loading').hide();
$contactForm.append('<div class="alert alert-success">Messaggio inviato!</div>');
},
error: function(err) {
$contactForm.find('.alert--loading').hide();
$contactForm.append('<div class="alert alert-danger">Oops! Correggi gli errori e riprova</div>');
}
});
});
</script> -->
</div>
</div>
</div>
</section>
<style>
@import url("{{ base_path }}/assets/css/main.css");
</style>
| bmenicucci/bmenicucci.github.io | _includes/contatti.html | HTML | mit | 6,175 |
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>A reading list for the starting grad student</title>
<meta name="description" content="">
<meta name="author" content=''>
<link href="https://fonts.googleapis.com/css2?family=Karla:wght@400;700" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="/sass/researcher.min.css">
</head>
<body><div class="container mt-5">
<nav class="navbar navbar-expand-sm flex-column flex-sm-row text-nowrap p-0">
<a class="navbar-brand mx-0 mr-sm-auto" href="https://jclos.github.io">Jeremie Clos</a>
<div class="navbar-nav flex-row flex-wrap justify-content-center">
<a class="nav-item nav-link" href="/about">
About
</a>
<span class="nav-item navbar-text mx-1">/</span>
<a class="nav-item nav-link" href="/projects">
Projects
</a>
<span class="nav-item navbar-text mx-1">/</span>
<a class="nav-item nav-link" href="/teaching">
Teaching
</a>
<span class="nav-item navbar-text mx-1">/</span>
<a class="nav-item nav-link" href="/ramblings">
Ramblings
</a>
<span class="nav-item navbar-text mx-1">/</span>
<a class="nav-item nav-link" href="/contact">
Contact
</a>
</div>
</nav>
</div>
<hr>
<div id="content">
<div class="container">
<p><a href="https://jclos.github.io/ramblings/">Go back to ramblings</a></p>
<h3 id="a-reading-list-for-the-grad-student-who-doesnt-know-what-to-read">A reading list for the grad student (who doesn’t know what to read)</h3>
<p>One thing I deeply regret about starting my graduate studies is the progressive loss of taste for casual reading. You feel trapped between wanting to read and the guilt of the reading material not being related to your work and end up associating the two, leading to simply not reading at all. Here is an attempt at a reading list of books about academia which I found useful, entertaining or something in between, while not being directly related to one’s research topic:</p>
<ul>
<li><strong>Academia Obscura: The Hidden Silly Side of Higher Education</strong> is a funny and informative book about the less serious side of academia. Reading it helped me contextualise my troubles as a grad student and realise that the entire field was, in fact, rather silly.</li>
<li><strong>The Scientist’s Guide to Writing: How to Write More Easily and Effectively throughout Your Scientific Career</strong> is a dry read, but an important one. I still use it as a reference to teach writing to my Masters students.</li>
<li><strong>The Slow Professor: Challenging the Culture of Speed in the Academy</strong> is a nice read about academic culture in a world where more and more time is wasted on trying to find metrics to measure everything.</li>
<li><strong>A PhD Is Not Enough!: A Guide to Survival in Science</strong> should be essential reading, and I wish I had read it before starting my PhD. It deals with a lot of intricate details about the academic job market and how to use one’s time effectively while pursuing graduate studies.</li>
<li><strong>Stylish Academic Writing</strong> is, as its name indicates, a plea to academics to stop writing such boring and formulaic papers. It is best read after The Scientist’s Guide to Writing and once you have written a few papers of your own, because you can only break the rules once you really know them.</li>
<li><strong>The Productive Researcher</strong> is an interesting book about the habits of high-performing researchers. Of course, it is difficult to know whether those researchers became high-performing because of these habits, despite of these habits, or whether they developed these habits because their high performance could afford them to, but it is full of interesting insights into research, which is an activity that is usually done in isolation in our ivory towers.</li>
<li><strong>Write No Matter What</strong> is also an excellent book about, you guessed it, writing. It provides actionable advice that one should pick and choose from and add in their toolbox, and I wish I had read it before starting my graduate studies.</li>
</ul>
</div>
</div><div id="footer" class="mb-5">
</div>
</body>
</html>
| jclos/jclos.github.io | posts/a-reading-list/index.html | HTML | mit | 5,260 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>list-select jQuery Plugin</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="css/bp-list-select.css">
<style>
body {
padding: 5px;
}
</style>
</head>
<body>
Example usage of the <a href="http://github.com/michalbe/list-select">bpListSelect</a>.
<div class="jumbotron" style="text-align: center;">
<div class="container">
<form action="#" class="head-input">
<input type="text" class="form-control" id="main-input" placeholder="Choose a city" autocomplete="off">
</form>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="bp-list-select.plugin.js"></script>
<script>
$('#main-input').bpListSelect([
"Zagreb",
"London",
"Mexico City",
"Kilimanjaro",
"Bali",
"Madrid",
"Prague",
"Sydney",
"Taipei",
"Tokyo",
"Beijing",
"Berlin",
"Amsterdam",
"New York",
"Paris",
"San Francisco",
"Warsaw"
].sort());
</script>
</body>
</html>
| michalbe/list-select | index.html | HTML | mit | 1,306 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Book Review Inner Game Outdoor Photography</title>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,600">
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/custom.css">
<link rel="alternate" type="application/rss+xml" title="Des Paroz" href="https://desparoz.me/feed.xml" />
<link rel="alternate" type="application/json" title="Des Paroz" href="https://desparoz.me/feed.json" />
<link rel="EditURI" type="application/rsd+xml" href="/rsd.xml" />
<link rel="me" href="https://micro.blog/desparoz" />
<link rel="me" href="https://twitter.com/desparoz" />
<link rel="me" href="https://github.com/desparoz" />
<link rel="authorization_endpoint" href="https://indieauth.com/auth" />
<link rel="token_endpoint" href="https://tokens.indieauth.com/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>
<div class="container">
<header class="masthead">
<h1 class="masthead-title--small">
<a href="/">Des Paroz</a>
</h1>
</header>
<div class="content post h-entry">
<h1 class="page-title">Book Review Inner Game Outdoor Photography</h1>
<div class="post-date">
<time class="dt-published" datetime="2006-12-21 13:44:00 +0300">21 Dec 2006</time>
</div>
<div class="e-content">
<p><i>The following review was originally published on my website BlueBeyond.com.au. I’ve decided to move it over here for reference. </i></p>
<p>Galen Rowell’s Inner Game of Outdoor Photography is a book that I have been meaning to review for some time, but with the recent, tragic death of the author in a light plane crash, its time to put pen to paper. For my money this is one of the outstanding books on photography philosophy, and should be part of every photographer’s library.</p>
<p><a href="http://www.amazon.com/gp/product/0393338088/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=0393338088&linkCode=as2&tag=bluebeyond-20&linkId=AEJDLIQCKYK5IS37"><img src="http://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=0393338088&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=bluebeyond-20" alt="" align="right" border="0" /></a><img style="border: none !important; margin: 0px !important;" src="http://ir-na.amazon-adsystem.com/e/ir?t=bluebeyond-20&l=as2&o=1&a=0393338088" alt="" width="1" height="1" align="right" border="0" />
Galen Rowell was one of the outstanding adventure photographers of our time. A major proponent of “participatory photography”, Rowell’s unique approach was based less on equipment and technique, and more on vision and philosophy. Participatory photography is an approach where the photographer is not a passive observer of the subject, but someone who is interacting with the environment and the subjects. Rowell was an active participant, and as such was a noted mountain climber and hiker, skills that allowed him to get a unique perspective that most photographers don’t even get close to.</p>
<p>Most of us have seen those photos of a climber hanging delicately from a cliff face, and marvelled at the extreme situation in which that climber has got themselves into. Yet few of us stop to think about the photographer, who is right there in the same place taking that photo. Many times that photographer was Galen Rowell.</p>
<p>His remarkable photographs have been featured in National Geographic, Outdoors and Outdoor Photographer. He wrote 18 books; some of them coffee table books, others more instructive about his approach to photography, and some of them about climbing.</p>
<p>The Inner Game of Outdoor Photography is one of Rowell’s most recent books. Inner Game is a compilation of various articles that Rowell has written over the years for Outdoor Photographer magazine.</p>
<p>Clearly underwater photography is a form of participatory photography - it is difficult for the photographer to be passive. Although not known for underwater images, Rowell’s philosophy and approach is one that underwater photographers should consider. Few other photographers become so much a part of their environment as underwater photographers!</p>
<p>As a matter of interest, Rowell did in fact do some underwater photography, and some of these pictures are published in Inner Game. When you look at these, underwater photographers may notice some backscatter – a curse that most land based photographers never learn much about. But the composition, the organisation of the elements within the photo and the technical exposure are up there with the best, as you would expect. His landscape and adventure photography are without equal.</p>
<p>Many underwater photographers have an extensive library of books on our subject. Many of us read up on photographic fundamentals, landscape photography, macro photography and so on, due to the parallels between topside and underwater techniques. This book is different – it focuses on the philosophy and approach. These are aspects independent of environment.</p>
<p>The Inner Game of Outdoor Photography is a superbly written and beautifully illustrated book. I would recommend this book highly to underwater photographers, landscape photographers, and indeed to any photographer who understands the importance of vision in image creation.</p>
<p>See <a href="http://www.amazon.com/gp/product/0393338088/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=0393338088&linkCode=as2&tag=bluebeyond-20&linkId=AEJDLIQCKYK5IS37">Galen Rowell’s Inner Game of Outdoor Photography</a><img style="border: none !important; margin: 0px !important;" src="http://ir-na.amazon-adsystem.com/e/ir?t=bluebeyond-20&l=as2&o=1&a=0393338088" alt="" width="1" height="1" border="0" />
at Amazon.com (aff).</p>
</div>
</div>
</div>
</body>
</html>
| desparoz/desparoz.github.io | _site/2006/12/21/book-review-inner.html | HTML | mit | 6,209 |
<div class="row col-lg-12">
<!-- Page Heading -->
<div class="page-title">
<h3> Dashboard </h3>
<div class="page-breadcrumb">
<ol class="breadcrumb">
<li><a href="#!/admin/dashboard/bookingListing">Home</a></li>
<li><a href="#!/admin/dashboard/bookingListing">Our Policies</a></li>
</ol>
</div>
</div>
<div class="panel panel-white">
<div class="panel-heading">
<h3><i class="fa fa-money fa-fw"></i> Our Policies </h3>
</div>
<tabset justified="true">
<tab heading="Guidelines and Policies">
<!-- Guidelines SEction-->
<div class="panel-body">
<div class="col-lg-12 add-policy" ng-init="guideline()">
<div class="panel panel-white ">
<div class="panel-body">
<div class="policy-detail">
<h4>Title</h4>
<input class="form-control input-lg" name="guidelineTitle" type="text" data-ng-model="guideline.title" placeholder="Title" required=""/>
</div>
<div class="policy-detail">
<h4>Description</h4>
<div ng-init="guideline.description='Add text'">
<text-angular name="guidelinedescription" ng-model="guideline.description" placeholder="Guideline Description"> </text-angular> <br/>
<!-- <textarea class="result" ng-model="guideline.description" style="width:100%;" readonly> </textarea> -->
<button ng-click="guideline.description='Add text'" class="reset-btn">Reset</button>
</div>
</div> <br/>
<div class="policy-detail-btn">
<a type="submit" class="btn btn-lg btn-bg" data-ng-click="editGuideline(guideline)" href="javascript:void(0);">
Update Guidelines</a>
</div> <br/>
<div class="policy-detail">
<span ng-show="showMsg" >
<alert type ="success" close="closeAlert('error')"> {{msg}} </alert>
</span>
</div>
</div>
</div>
</div>
</div>
</tab>
<tab heading="Contact Us">
<!-- Contact us SEction-->
<div class="panel-body">
<div class="col-lg-12 add-policy" ng-init="contact()">
<div class="panel panel-white ">
<div class="panel-body">
<div class="policy-detail">
<h4>Title</h4>
<input class="form-control input-lg" name="contactTitle" type="text" data-ng-model="contact.title" placeholder="Title" required=""/>
</div>
<div class="policy-detail">
<h4>Description</h4>
<div ng-init="contact.description='Add text'">
<text-angular name="contactdescription" ng-model="contact.description" placeholder="Contact Description"> </text-angular> <br/>
<!-- <textarea class="result" ng-model="contact.description" style="width:100%;" readonly> </textarea> -->
<button ng-click="contact.description='Add text'" class="reset-btn">Reset</button>
</div>
</div> <br/>
<div class="policy-detail-btn">
<a type="submit" class="btn btn-lg btn-bg" data-ng-click="editContact(contact)" href="javascript:void(0);">Update Contact Details</a>
</div> <br/>
<div class="policy-detail">
<span ng-show="showMsg" >
<alert type ="success" close="closeAlert('error')"> {{msg}} </alert>
</span>
</div>
</div>
</div>
</div>
</div>
</tab>
<tab heading="Help">
<!-- Help SEction-->
<div class="panel-body">
<div class="col-lg-12 add-policy" ng-init="help()">
<div class="panel panel-white ">
<div class="panel-body">
<div class="policy-detail">
<h4>Title</h4>
<input class="form-control input-lg" name="helpTitle" type="text" data-ng-model="help.title" placeholder="Title" required=""/>
</div>
<div class="policy-detail">
<h4>Description</h4>
<div ng-init="help.description='Add text'">
<text-angular name="helpdescription" ng-model="help.description" placeholder="Help Description"> </text-angular> <br/>
<!-- <textarea class="result" ng-model="help.description" style="width:100%;" readonly> </textarea> -->
<button ng-click="help.description='Add text'" class="reset-btn">Reset</button>
</div>
</div> <br/>
<div class="policy-detail-btn">
<a type="submit" class="btn btn-lg btn-bg" data-ng-click="editHelp(help)" href="javascript:void(0);">Update Help Details</a>
</div> <br/>
<div class="policy-detail">
<span ng-show="showMsg" >
<alert type ="success" close="closeAlert('error')"> {{msg}} </alert>
</span>
</div>
</div>
</div>
</div>
</div>
</tab>
</tabset>
</div>
</div> | chauhanmohit/meanStack | public/modules/users/views/adminSection/home.admin_ourPolicies.view.html | HTML | mit | 4,932 |
<!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="./145262a63939c051442f4ccf4b8e70bf1e9a9a0babe04ba9d21ca01681a17a68.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> | simonmysun/praxis | TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/67c8c7e98866ae2145b092e086e1986ff811aa3677a01ecbfa58177a0a861870.html | HTML | mit | 550 |
---
extends: base.ru.html
default_block: body
---
<div class="container">
<div class='col-lg-12'>
<div class='page-header'>
<h1>Наши основные публикации по томографии</h1>
</div>
{% filter markdown -%}
* 2014
* Anastasiya INGACHEVA , Marina CHUKALINA , Alexey BUZMAKOV , Dmitry NIKOLAEV, Denis ZOLOTOV, Victor PRUN, Victor ASADCHIKOV Tomography problem in polychromatic conditions // XTOP 2014, Villard-de-Lans, France, 2014, Book of abstracts, p. 124 [скачать pdf]({{ media_url('data/publications/2014_Ingacheva_xtop_poster.pdf') }})
* Alexey BUZMAKOV , Marina CHUKALINA , Denis ZOLOTOV , Victor ASADCHIKOV Optimization of micro-tomographic experiment and reconstruction parameters at low signal-to-noise ratio // XTOP 2014, Villard-de-Lans, France, 2014, Book of abstracts, p. 87 [скачать pdf]({{ media_url('data/publications/2014_Buzmakov_xtop_poster.pdf') }})
* M. Chukalina, Image reconstruction for fluorescence tomography. Advanced X-Ray Tomography: Experiment, Modeling, and Algorithms from 10 Feb 2014 through 14 Feb 2014, Lorentz Center, Leiden, Netherlands [скачать pdf]({{ media_url('data/publications/2014_Chukalina.pdf') }})
* ... - 2013
* Зайцев С.И., Ушаков Н.Г., Чукалина М.В. Рентгеновская флуоресцентная микротопография. Известия академии наук, сер. физическая, т. 60, N 2. (1996)129-134.
* M.V. Chukalina , N.G. Ushakov, S.I. Zaitsev. Signal formation, simulation and inverse problem in fluorescence X-ray microscopy using focused beams. Proceedings of the 5th International conference XRM'96. Wuerzburg, Germany, (1996)I141-I144.
* Аврутин В.С., Гартман Я.М., Зайцев С.И., Зуев А.П., Изюмская Н.Ф., Ушаков Н.Г., Чукалина М.В. Метод определения размера рентгеновского микрозонда. Известия академии наук, сер. физическая, т. 61, N 10. (1997)1999-2002.
* Зайцев С.И., Ушаков Н.Г., Чукалина М.В. Формирование рентгенофлуоресцентного сигнала скрытой границей пленка-подложка. Известия академии наук, сер. физическая, т. 61, N 10. (1997)2003-2006.
* Simionovoci A., M. Chukalina, M. Drakopoulos, I. Snigireva, A. Snigirev, Ch. Schroer, B. Lengeler, F. Adams. X-ray fluorescence microtomgraphy: experiment and reconstruction SPIE, Vol.3772. (1999)304-310.
* M. Chukalina, A. Simionovici, S. Zaitsev. X-ray fluorescence microtomography: comparison between a standart CT setup and a confocal collimator apparatus. Bulletin of the Russian Academy of Sciences Physics, Vol. 69, No. 2. (2004)239-242.
* H. Funke, A.C. Scheinost, and M. Chukalina. Wavelet analysis of extended x-ray absorption fine structure data. Phys. Rev. B 9, Vol. 71, 094110(2005).
* M. Chukalina, D. Nikolaev, A. Somogyi, G. Schaefer. Multi-technique data treatment for multi-spectral image visualization. Book of Proceedings. 22th European Conference on Modelling and Simulation, Nikosia, Cyprus (2008) 234-236.
* В.В.Аристов, Л.Г.Шабельников, Я.Л.Шабельникова, Т.А.Сагдуллин, В.Я.Панченко, А.В.Евсеев, М.М.Новиков, В.Е.Асадчиков, А.В.Бузмаков, "Рентгеновские преломляющие линзы, имеющие профиль вращения, с масштабным сокращением радиуса кривизны", Доклады Академии Наук, V426, N6, c.750-753. (2009)
* Чукалина М.В., Бузмаков А.В., Николаев Д.П., Чуличков А.И., Каримов М.К., Расулов Г.А., Сенин Р.А., Асадчиков В.Е. Тестовые измерения на лабораторном рентгеновском микротомографе: математическая обработка результатов измерений. Измерительная техника, №2, 2008 г., стр 19-24.
* Чукалина М.В., Николаев Д.П. Восстановление формы рентгеновского зонда. Заводская лаборатория. Диагностика материалов. Ном. 8, т.77 (2011) 30-33.
* Я.Л. Шабельникова, М.В. Чукалина. Сравнение функции сбора рентгенофлуоресцентеного сигнала для двух типов коллиматоров. Письма в журнал теоретической физики том 38 ном 10 (2012) 6-13.
* Прун В. Е. Бузмаков А.В., Николаев Д.П., Чукалина М.В., Асадчиков В.Е. Вычислительно эффективный вариант алгебраического метода компьютерной томографии. Автоматика и телемеханика . 2013г. N 10 86-97.
{%- endfilter %}
</div>
</div>
| buzmakov/fluro_site | content/publications.ru.html | HTML | mit | 5,191 |
<!DOCTYPE html>
<html>
<head>
<title>Rango</title>
</head>
<body>
<h1>Add a Page to {{category_name }}</h1>
<form id="page_form" method="post" action="/rango/category/{{category_name_url}}/add_page/">
{% csrf_token %}
{% for hidden in form.hidden_fields %}
{{ hidden }}
{% endfor %}
{% for field in form.visible_fields %}
{{ field.errors }}
{{ field.help_text }}
{{ field }} <br/>
{% endfor %}
<input type="submit" name="submit" value="Create Page" />
</form>
</body>
</html>
| Kentoseth/rangoapp | tango_with_django_project/templates/rango/add_page.html | HTML | mit | 541 |
<!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.6"/>
<title>Klepsydra: Składowe plików</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="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</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 style="padding-left: 0.5em;">
<div id="projectname">Klepsydra
 <span id="projectnumber">0.1</span>
</div>
<div id="projectbrief">WDS2015</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Wygenerowano przez Doxygen 1.8.6 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Strona główna</span></a></li>
<li><a href="annotated.html"><span>Klasy</span></a></li>
<li class="current"><a href="files.html"><span>Pliki</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>Lista plików</span></a></li>
<li class="current"><a href="globals.html"><span>Składowe plików</span></a></li>
</ul>
</div>
<div id="navrow3" class="tabs2">
<ul class="tablist">
<li class="current"><a href="globals.html"><span>All</span></a></li>
<li><a href="globals_func.html"><span>Funkcje</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('globals.html','');});
</script>
<div id="doc-content">
<div class="contents">
<div class="textblock">Tutaj znajduje się lista wszystkich składowych plików wraz z odnośnikami do plików, do których one należą:</div><ul>
<li>main()
: <a class="el" href="main_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97">main.cpp</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">Wygenerowano Pn, 15 cze 2015 17:53:14 dla Klepsydra programem
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 </li>
</ul>
</div>
</body>
</html>
| superdyzio/PWR-Stuff | AIR-ARR/Wizualizacja Danych Sensorycznych/Qt/dox/html/globals.html | HTML | mit | 3,241 |
<!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>daycount.js: tests</title>
<!-- include jasmine testing framework -->
<link rel="stylesheet" type="text/css" href="lib/jasmine-1.0.1/jasmine.css">
<script type="text/javascript" src="lib/jasmine-1.0.1/jasmine.js"></script>
<script type="text/javascript" src="lib/jasmine-1.0.1/jasmine-html.js"></script>
<!-- include daycount.js -->
<script type="text/javascript" src="../src/0-base.js"></script>
<script type="text/javascript" src="../src/badi.js"></script>
<script type="text/javascript" src="../src/gregorian.js"></script>
<script type="text/javascript" src="../src/gregorian-local-en.js"></script>
<script type="text/javascript" src="../src/julianDay.js"></script>
<script type="text/javascript" src="../src/localJulianDay.js"></script>
<script type="text/javascript" src="../src/dreamspell.js"></script>
<script type="text/javascript" src="../src/dreamspell-local-en.js"></script>
<script type="text/javascript" src="../src/venus.js"></script>
<script type="text/javascript" src="../src/mars.js"></script>
<script type="text/javascript" src="../src/thoth.js"></script>
<script type="text/javascript" src="../src/long.js"></script>
<script type="text/javascript" src="../src/chineseYear.js"></script>
<!-- include test suites -->
<script type="text/javascript" src="suites/base.spec.js"></script>
<script type="text/javascript" src="suites/base.moment.spec.js"></script>
<script type="text/javascript" src="suites/badi.spec.js"></script>
<script type="text/javascript" src="suites/gregorian.spec.js"></script>
<script type="text/javascript" src="suites/julianDay.spec.js"></script>
<script type="text/javascript" src="suites/localJulianDay.spec.js"></script>
<script type="text/javascript" src="suites/dreamspell.spec.js"></script>
<script type="text/javascript" src="suites/venus.spec.js"></script>
<script type="text/javascript" src="suites/mars.spec.js"></script>
<script type="text/javascript" src="suites/thoth.spec.js"></script>
<script type="text/javascript" src="suites/long.spec.js"></script>
<script type="text/javascript" src="suites/chineseYear.spec.js"></script>
</head>
<body>
<script type="text/javascript">
jasmine.getEnv().addReporter(new jasmine.TrivialReporter());
jasmine.getEnv().execute();
</script>
</body>
</html>
| jtacoma/daycount.js | spec/runner.html | HTML | mit | 2,532 |
---
layout: default
title: 404 - Page not found
permalink: /404.html
---
<div class="text-center">
<h1>Whoops, this page doesn't exist.</h1>
<h1>I must have made an error.</h1>
<br/>
<img src="{{ site.baseurl }}/img/404_jose-canseco.jpg" />
</div>
| cjteeter/cjteeter.github.io | 404.html | HTML | mit | 258 |
<!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 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ArrayListModel (PJ's Java Commons — v1.1)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ArrayListModel (PJ\'s Java Commons \u2014 v1.1)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ArrayListModel.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-files/index-1.html">Index</a></li>
</ul>
<div class="aboutLanguage"><b>PJ's Java Commons</b><br>v1.1</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../../../../../pj/common/ui/swing/list/ArraySetModel.html" title="class in pj.common.ui.swing.list"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?pj/common/ui/swing/list/ArrayListModel.html" target="_top">Frames</a></li>
<li><a href="ArrayListModel.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#fields.inherited.from.class.java.util.AbstractList">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">pj.common.ui.swing.list</div>
<h2 title="Class ArrayListModel" class="title">Class ArrayListModel<E></h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>java.util.AbstractCollection<E></li>
<li>
<ul class="inheritance">
<li>java.util.AbstractList<E></li>
<li>
<ul class="inheritance">
<li>java.util.ArrayList<E></li>
<li>
<ul class="inheritance">
<li>pj.common.ui.swing.list.ArrayListModel<E></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt><span class="paramLabel">Type Parameters:</span></dt>
<dd><code>E</code> - the class of elements</dd>
</dl>
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable, java.lang.Cloneable, java.lang.Iterable<E>, java.util.Collection<E>, java.util.List<E>, java.util.RandomAccess, javax.swing.ComboBoxModel<E>, javax.swing.ListModel<E></dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">ArrayListModel<E></span>
extends java.util.ArrayList<E>
implements javax.swing.ListModel<E>, javax.swing.ComboBoxModel<E></pre>
<div class="block">An <code>ArrayList</code> implementation of <code>ListModel</code> and <code>ComboBoxModel</code>.
<p>This collection does not permit null elements.</p></div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.1</dd>
<dt><span class="simpleTagLabel">Version:</span></dt>
<dd>1.1</dd>
<dt><span class="simpleTagLabel">Author:</span></dt>
<dd>Paul Jarosch</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../serialized-form.html#pj.common.ui.swing.list.ArrayListModel">Serialized Form</a></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="fields.inherited.from.class.java.util.AbstractList">
<!-- -->
</a>
<h3>Fields inherited from class java.util.AbstractList</h3>
<code>modCount</code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#ArrayListModel--">ArrayListModel</a></span>()</code>
<div class="block">Constructs an empty list with an initial capacity of ten.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#ArrayListModel-java.util.Collection-">ArrayListModel</a></span>(java.util.Collection<? extends <a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>> c)</code>
<div class="block">Constructs a list containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#ArrayListModel-int-">ArrayListModel</a></span>(int initialCapacity)</code>
<div class="block">Constructs an empty list with the specified initial capacity.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#add-E-">add</a></span>(<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a> element)</code> </td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#add-int-E-">add</a></span>(int index,
<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a> element)</code> </td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#addAll-java.util.Collection-">addAll</a></span>(java.util.Collection<? extends <a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>> c)</code> </td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#addAll-int-java.util.Collection-">addAll</a></span>(int index,
java.util.Collection<? extends <a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>> c)</code> </td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#addListDataListener-javax.swing.event.ListDataListener-">addListDataListener</a></span>(javax.swing.event.ListDataListener l)</code> </td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#clear--">clear</a></span>()</code> </td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#fireListChanged--">fireListChanged</a></span>()</code>
<div class="block">Notifies all listeners that the list has changed.</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#fireListChanged-java.lang.Object-">fireListChanged</a></span>(java.lang.Object source)</code>
<div class="block">Notifies all listeners that the list has changed.</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#getElementAt-int-">getElementAt</a></span>(int index)</code> </td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#getSelectedIndex--">getSelectedIndex</a></span>()</code>
<div class="block">Get the selected index or -1 if there is no selection.</div>
</td>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><code><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#getSelectedItem--">getSelectedItem</a></span>()</code> </td>
</tr>
<tr id="i11" class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#getSize--">getSize</a></span>()</code> </td>
</tr>
<tr id="i12" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#isSuppressEvents--">isSuppressEvents</a></span>()</code>
<div class="block">Get the suppress events flag</div>
</td>
</tr>
<tr id="i13" class="rowColor">
<td class="colFirst"><code><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#remove-int-">remove</a></span>(int index)</code> </td>
</tr>
<tr id="i14" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#remove-java.lang.Object-">remove</a></span>(java.lang.Object o)</code> </td>
</tr>
<tr id="i15" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#removeAll-java.util.Collection-">removeAll</a></span>(java.util.Collection<?> c)</code> </td>
</tr>
<tr id="i16" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#removeListDataListener-javax.swing.event.ListDataListener-">removeListDataListener</a></span>(javax.swing.event.ListDataListener l)</code> </td>
</tr>
<tr id="i17" class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#removeRange-int-int-">removeRange</a></span>(int fromIndex,
int toIndex)</code> </td>
</tr>
<tr id="i18" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#retainAll-java.util.Collection-">retainAll</a></span>(java.util.Collection<?> c)</code> </td>
</tr>
<tr id="i19" class="rowColor">
<td class="colFirst"><code><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#set-int-E-">set</a></span>(int index,
<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a> element)</code> </td>
</tr>
<tr id="i20" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#setSelectedItem-java.lang.Object-">setSelectedItem</a></span>(java.lang.Object anItem)</code> </td>
</tr>
<tr id="i21" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html#setSuppressEvents-boolean-">setSuppressEvents</a></span>(boolean suppressEvents)</code>
<div class="block">Set the suppress events flag.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.util.ArrayList">
<!-- -->
</a>
<h3>Methods inherited from class java.util.ArrayList</h3>
<code>clone, contains, ensureCapacity, forEach, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, removeIf, replaceAll, size, sort, spliterator, subList, toArray, toArray, trimToSize</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.util.AbstractList">
<!-- -->
</a>
<h3>Methods inherited from class java.util.AbstractList</h3>
<code>equals, hashCode</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.util.AbstractCollection">
<!-- -->
</a>
<h3>Methods inherited from class java.util.AbstractCollection</h3>
<code>containsAll, toString</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>finalize, getClass, notify, notifyAll, wait, wait, wait</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.util.List">
<!-- -->
</a>
<h3>Methods inherited from interface java.util.List</h3>
<code>containsAll, equals, hashCode</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.util.Collection">
<!-- -->
</a>
<h3>Methods inherited from interface java.util.Collection</h3>
<code>parallelStream, stream</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ArrayListModel--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ArrayListModel</h4>
<pre>public ArrayListModel()</pre>
<div class="block">Constructs an empty list with an initial capacity of ten.</div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.1</dd>
</dl>
</li>
</ul>
<a name="ArrayListModel-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ArrayListModel</h4>
<pre>public ArrayListModel(int initialCapacity)</pre>
<div class="block">Constructs an empty list with the specified initial capacity.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>initialCapacity</code> - the initial capacity of the list</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if the specified initial capacity is negative</dd>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.1</dd>
</dl>
</li>
</ul>
<a name="ArrayListModel-java.util.Collection-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ArrayListModel</h4>
<pre>public ArrayListModel(java.util.Collection<? extends <a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>> c)</pre>
<div class="block">Constructs a list containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>c</code> - the collection whose elements are to be placed into this list</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.NullPointerException</code> - if the specified collection is null</dd>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.1</dd>
</dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="setSuppressEvents-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setSuppressEvents</h4>
<pre>public void setSuppressEvents(boolean suppressEvents)</pre>
<div class="block">Set the suppress events flag.
<p>Besides being used internally, this flag allows multiple operations to be done (such as sort) before a list change event is fired.</p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>suppressEvents</code> - the flag value. If true, list events are not fired when changes occur.</dd>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.1</dd>
</dl>
</li>
</ul>
<a name="getSelectedIndex--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSelectedIndex</h4>
<pre>public int getSelectedIndex()</pre>
<div class="block">Get the selected index or -1 if there is no selection.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the selected index</dd>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.1</dd>
</dl>
</li>
</ul>
<a name="isSuppressEvents--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isSuppressEvents</h4>
<pre>public boolean isSuppressEvents()</pre>
<div class="block">Get the suppress events flag</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the flag value</dd>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.1</dd>
</dl>
</li>
</ul>
<a name="fireListChanged--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fireListChanged</h4>
<pre>public final void fireListChanged()</pre>
<div class="block">Notifies all listeners that the list has changed.
<p>The source for the notification event is this model.</p></div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.1</dd>
</dl>
</li>
</ul>
<a name="fireListChanged-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fireListChanged</h4>
<pre>public final void fireListChanged(java.lang.Object source)</pre>
<div class="block">Notifies all listeners that the list has changed.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>source</code> - the source of the change.</dd>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.1</dd>
</dl>
</li>
</ul>
<a name="set-int-java.lang.Object-">
<!-- -->
</a><a name="set-int-E-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>set</h4>
<pre>public <a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a> set(int index,
<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a> element)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>set</code> in interface <code>java.util.List<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code>set</code> in class <code>java.util.ArrayList<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="add-java.lang.Object-">
<!-- -->
</a><a name="add-E-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>add</h4>
<pre>public boolean add(<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a> element)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>add</code> in interface <code>java.util.Collection<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>add</code> in interface <code>java.util.List<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code>add</code> in class <code>java.util.ArrayList<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="add-int-java.lang.Object-">
<!-- -->
</a><a name="add-int-E-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>add</h4>
<pre>public void add(int index,
<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a> element)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>add</code> in interface <code>java.util.List<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code>add</code> in class <code>java.util.ArrayList<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="remove-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>remove</h4>
<pre>public <a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a> remove(int index)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>remove</code> in interface <code>java.util.List<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code>remove</code> in class <code>java.util.ArrayList<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="remove-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>remove</h4>
<pre>public boolean remove(java.lang.Object o)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>remove</code> in interface <code>java.util.Collection<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>remove</code> in interface <code>java.util.List<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code>remove</code> in class <code>java.util.ArrayList<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="clear--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>clear</h4>
<pre>public void clear()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>clear</code> in interface <code>java.util.Collection<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>clear</code> in interface <code>java.util.List<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code>clear</code> in class <code>java.util.ArrayList<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="addAll-java.util.Collection-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addAll</h4>
<pre>public boolean addAll(java.util.Collection<? extends <a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>> c)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>addAll</code> in interface <code>java.util.Collection<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>addAll</code> in interface <code>java.util.List<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code>addAll</code> in class <code>java.util.ArrayList<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="addAll-int-java.util.Collection-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addAll</h4>
<pre>public boolean addAll(int index,
java.util.Collection<? extends <a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>> c)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>addAll</code> in interface <code>java.util.List<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code>addAll</code> in class <code>java.util.ArrayList<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="removeRange-int-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>removeRange</h4>
<pre>protected void removeRange(int fromIndex,
int toIndex)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code>removeRange</code> in class <code>java.util.ArrayList<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="removeAll-java.util.Collection-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>removeAll</h4>
<pre>public boolean removeAll(java.util.Collection<?> c)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>removeAll</code> in interface <code>java.util.Collection<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>removeAll</code> in interface <code>java.util.List<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code>removeAll</code> in class <code>java.util.ArrayList<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="retainAll-java.util.Collection-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>retainAll</h4>
<pre>public boolean retainAll(java.util.Collection<?> c)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>retainAll</code> in interface <code>java.util.Collection<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>retainAll</code> in interface <code>java.util.List<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code>retainAll</code> in class <code>java.util.ArrayList<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="getSize--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSize</h4>
<pre>public int getSize()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>getSize</code> in interface <code>javax.swing.ListModel<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="getElementAt-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getElementAt</h4>
<pre>public <a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a> getElementAt(int index)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>getElementAt</code> in interface <code>javax.swing.ListModel<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="addListDataListener-javax.swing.event.ListDataListener-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addListDataListener</h4>
<pre>public void addListDataListener(javax.swing.event.ListDataListener l)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>addListDataListener</code> in interface <code>javax.swing.ListModel<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="removeListDataListener-javax.swing.event.ListDataListener-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>removeListDataListener</h4>
<pre>public void removeListDataListener(javax.swing.event.ListDataListener l)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>removeListDataListener</code> in interface <code>javax.swing.ListModel<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="setSelectedItem-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setSelectedItem</h4>
<pre>public void setSelectedItem(java.lang.Object anItem)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>setSelectedItem</code> in interface <code>javax.swing.ComboBoxModel<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
<a name="getSelectedItem--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getSelectedItem</h4>
<pre>public <a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a> getSelectedItem()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>getSelectedItem</code> in interface <code>javax.swing.ComboBoxModel<<a href="../../../../../pj/common/ui/swing/list/ArrayListModel.html" title="type parameter in ArrayListModel">E</a>></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ArrayListModel.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-files/index-1.html">Index</a></li>
</ul>
<div class="aboutLanguage"><a target="_blank" href="http://pauljarosch.name">http://pauljarosch.name</a></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../../../../../pj/common/ui/swing/list/ArraySetModel.html" title="class in pj.common.ui.swing.list"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?pj/common/ui/swing/list/ArrayListModel.html" target="_top">Frames</a></li>
<li><a href="ArrayListModel.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#fields.inherited.from.class.java.util.AbstractList">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| paulmjarosch/pj_jcommon | docs/pj/common/ui/swing/list/ArrayListModel.html | HTML | mit | 38,573 |
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="keywords" content=" ">
<title>Retrieve Chat Sessions | LivePerson Technical Documentation</title>
<link rel="stylesheet" href="css/syntax.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome-4.7.0/css/font-awesome.min.css">
<!--<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">-->
<link rel="stylesheet" href="css/modern-business.css">
<link rel="stylesheet" href="css/lavish-bootstrap.css">
<link rel="stylesheet" href="css/customstyles.css">
<link rel="stylesheet" href="css/theme-blue.css">
<!-- <script src="assets/js/jsoneditor.js"></script> -->
<script src="assets/js/jquery-3.1.0.min.js"></script>
<!-- <link rel='stylesheet' id='theme_stylesheet' href='//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css'> -->
<!-- <link rel='stylesheet' id='theme_stylesheet' href='//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css'>
-->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> -->
<script src="assets/js/jquery.cookie-1.4.1.min.js"></script>
<script src="js/jquery.navgoco.min.js"></script>
<script src="assets/js/bootstrap-3.3.4.min.js"></script>
<script src="assets/js/anchor-2.0.0.min.js"></script>
<script src="js/toc.js"></script>
<script src="js/customscripts.js"></script>
<link rel="shortcut icon" href="images/favicon.ico">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="alternate" type="application/rss+xml" title="" href="http://0.0.0.0:4005feed.xml">
<script>
$(document).ready(function() {
// Initialize navgoco with default options
$("#mysidebar").navgoco({
caretHtml: '',
accordion: true,
openClass: 'active', // open
save: false, // leave false or nav highlighting doesn't work right
cookie: {
name: 'navgoco',
expires: false,
path: '/'
},
slide: {
duration: 400,
easing: 'swing'
}
});
$("#collapseAll").click(function(e) {
e.preventDefault();
$("#mysidebar").navgoco('toggle', false);
});
$("#expandAll").click(function(e) {
e.preventDefault();
$("#mysidebar").navgoco('toggle', true);
});
});
</script>
<script>
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
</script>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container topnavlinks">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="fa fa-home fa-lg navbar-brand" href="index.html"> <span class="projectTitle"> LivePerson Technical Documentation</span></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<!-- entries without drop-downs appear here -->
<!-- entries with drop-downs appear here -->
<!-- conditional logic to control which topnav appears for the audience defined in the configuration file.-->
<li><a class="email" title="Submit feedback" href="https://github.com/LivePersonInc/dev-hub/issues" ><i class="fa fa-github"></i> Issues</a><li>
<!--comment out this block if you want to hide search-->
<li>
<!--start search-->
<div id="search-demo-container">
<input type="text" id="search-input" placeholder="search...">
<ul id="results-container"></ul>
</div>
<script src="js/jekyll-search.js" type="text/javascript"></script>
<script type="text/javascript">
SimpleJekyllSearch.init({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('results-container'),
dataSource: 'search.json',
searchResultTemplate: '<li><a href="{url}" title="Retrieve Chat Sessions">{title}</a></li>',
noResultsText: 'No results found.',
limit: 10,
fuzzy: true,
})
</script>
<!--end search-->
</li>
</ul>
</div>
</div>
<!-- /.container -->
</nav>
<!-- Page Content -->
<div class="container">
<div class="col-lg-12"> </div>
<!-- Content Row -->
<div class="row">
<!-- Sidebar Column -->
<div class="col-md-3">
<ul id="mysidebar" class="nav">
<li class="sidebarTitle"> </li>
<li>
<a href="#">Common Guidelines</a>
<ul>
<li class="subfolders">
<a href="#">Introduction</a>
<ul>
<li class="thirdlevel"><a href="index.html">Home</a></li>
<li class="thirdlevel"><a href="getting-started.html">Getting Started with LiveEngage APIs</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Guides</a>
<ul>
<li class="thirdlevel"><a href="guides-customizedchat.html">Customized Chat Windows</a></li>
</ul>
</li>
</ul>
<li>
<a href="#">Account Configuration</a>
<ul>
<li class="subfolders">
<a href="#">Predefined Content API</a>
<ul>
<li class="thirdlevel"><a href="account-configuration-predefined-content-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="account-configuration-predefined-content-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="account-configuration-predefined-content-get-items.html">Get Predefined Content Items</a></li>
<li class="thirdlevel"><a href="account-configuration-predefined-content-get-by-id.html">Get Predefined Content by ID</a></li>
<li class="thirdlevel"><a href="account-configuration-predefined-content-query-delta.html">Predefined Content Query Delta</a></li>
<li class="thirdlevel"><a href="account-configuration-predefined-content-create-content.html">Create Predefined Content</a></li>
<li class="thirdlevel"><a href="account-configuration-predefined-content-update-content.html">Update Predefined Content</a></li>
<li class="thirdlevel"><a href="account-configuration-predefined-content-update-content-items.html">Update Predefined Content Items</a></li>
<li class="thirdlevel"><a href="account-configuration-predefined-content-delete-content.html">Delete Predefined Content</a></li>
<li class="thirdlevel"><a href="account-configuration-predefined-content-delete-content-items.html">Delete Predefined Content Items</a></li>
<li class="thirdlevel"><a href="account-configuration-predefined-content-get-default-items.html">Get Default Predefined Content Items</a></li>
<li class="thirdlevel"><a href="account-configuration-predefined-content-get-default-items-by-id.html">Get Default Predefined Content by ID</a></li>
<li class="thirdlevel"><a href="account-configuration-predefined-content-appendix.html">Appendix</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Automatic Messages API</a>
<ul>
<li class="thirdlevel"><a href="account-configuration-automatic-messages-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="account-configuration-automatic-messages-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="account-configuration-automatic-messages-get-automatic-messages.html">Get Automatic Messages</a></li>
<li class="thirdlevel"><a href="account-configuration-automatic-messages-get-automatic-message-by-id.html">Get Automatic Message by ID</a></li>
<li class="thirdlevel"><a href="account-configuration-automatic-messages-update-an-automatic-message.html">Update an Automatic Message</a></li>
<li class="thirdlevel"><a href="account-configuration-automatic-messages-appendix.html">Appendix</a></li>
</ul>
</li>
</ul>
<li>
<a href="#">Administration</a>
<ul>
<li class="subfolders">
<a href="#">Users API</a>
<ul>
<li class="thirdlevel"><a href="administration-users-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="administration-users-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="administration-get-all-users.html">Get all users</a></li>
<li class="thirdlevel"><a href="administration-get-user-by-id.html">Get user by ID</a></li>
<li class="thirdlevel"><a href="administration-create-users.html">Create users</a></li>
<li class="thirdlevel"><a href="administration-update-users.html">Update users</a></li>
<li class="thirdlevel"><a href="administration-update-user.html">Update user</a></li>
<li class="thirdlevel"><a href="administration-delete-users.html">Delete users</a></li>
<li class="thirdlevel"><a href="administration-delete-user.html">Delete user</a></li>
<li class="thirdlevel"><a href="administration-change-users-password.html">Change user's password</a></li>
<li class="thirdlevel"><a href="administration-reset-users-password.html">Reset user's password</a></li>
<li class="thirdlevel"><a href="administration-user-query-delta.html">User query delta</a></li>
<li class="thirdlevel"><a href="administration-users-appendix.html">Appendix</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Skills API</a>
<ul>
<li class="thirdlevel"><a href="administration-skills-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="administration-skills-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="administration-get-all-skills.html">Get all skills</a></li>
<li class="thirdlevel"><a href="administration-get-skill-by-id.html">Get skill by ID</a></li>
<li class="thirdlevel"><a href="administration-create-skills.html">Create skills</a></li>
<li class="thirdlevel"><a href="administration.update-skills.html">Update skills</a></li>
<li class="thirdlevel"><a href="administration-update-skill.html">Update skill</a></li>
<li class="thirdlevel"><a href="administration-delete-skills.html">Delete skills</a></li>
<li class="thirdlevel"><a href="administration-delete-skill.html">Delete skill</a></li>
<li class="thirdlevel"><a href="administration-skills-query-delta.html">Skills Query Delta</a></li>
<li class="thirdlevel"><a href="administration-skills-appendix.html">Appendix</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Agent Groups API</a>
<ul>
<li class="thirdlevel"><a href="administration-agent-groups-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="administration-agent-groups-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="administration-get-all-agent-groups.html">Get all agent groups</a></li>
<li class="thirdlevel"><a href="administration-get-agent-groups-by-id.html">Get agent group by ID</a></li>
<li class="thirdlevel"><a href="administration-create-agent-groups.html">Create agent groups</a></li>
<li class="thirdlevel"><a href="administration-update-agent-groups.html">Update agent groups</a></li>
<li class="thirdlevel"><a href="administration-update-agent-group.html">Update agent group</a></li>
<li class="thirdlevel"><a href="administration-delete-agent-groups.html">Delete agent groups</a></li>
<li class="thirdlevel"><a href="administration-delete-agent-group.html">Delete agent group</a></li>
<li class="thirdlevel"><a href="administration-get-subgroups-and-members.html">Get subgroups and members of an agent group</a></li>
<li class="thirdlevel"><a href="administration-agent-groups-query-delta.html">Agent Groups Query Delta</a></li>
</ul>
</li>
</ul>
<li>
<a href="#">Consumer Experience</a>
<ul>
<li class="subfolders">
<a href="#">JavaScript Chat SDK</a>
<ul>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-getting-started.html">Getting Started</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-chat-states.html">Chat States</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-surveys.html">Surveys</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-creating-an-instance.html">Creating an Instance</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-getestimatedwaittime.html">getEstimatedWaitTime</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-getprechatsurvey.html">getPreChatSurvey</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-getengagement.html">getEngagement</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-requestchat.html">requestChat</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-addline.html">addLine</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-setvisitortyping.html">setVisitorTyping</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-setvisitorname.html">setVisitorName</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-endchat.html">endChat</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-requesttranscript.html">requestTranscript</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-getexitsurvey.html">getExitSurvey</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-submitexitsurvey.html">submitExitSurvey</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-getofflinesurvey.html">getOfflineSurvey</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-submitofflinesurvey.html">submitOfflineSurvey</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-getstate.html">getState</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-getagentloginname.html">getAgentLoginName</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-getvisitorname.html">getVisitorName</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-getagentid.html">getAgentId</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-getrtsessionid.html">getRtSessionId</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-getsessionkey.html">getSessionKey</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-getagenttyping.html">getAgentTyping</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-events.html">Events</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-onload.html">onLoad</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-oninit.html">onInit</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-onestimatedwaittime.html">onEstimatedWaitTime</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-onengagement.html">onEngagement</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-onprechatsurvey.html">onPreChatSurvey</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-onstart.html">onStart</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-onstop.html">onStop</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-onrequestchat.html">onRequestChat</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-ontranscript.html">onTranscript</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-online.html">onLine</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-onstate.html">onState</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-oninfo.html">onInfo</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-onagenttyping.html">onAgentTyping</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-onexitsurvey.html">onExitSurvey</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-onaccounttoaccounttransfer.html">onAccountToAccountTransfer</a></li>
<li class="thirdlevel"><a href="rt-interactions-example.html">Engagement Attributes Body Example</a></li>
<li class="thirdlevel"><a href="consumer-experience-javascript-chat-demo.html">Demo App</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Server Chat API</a>
<ul>
<li class="thirdlevel"><a href="consumer-experience-server-chat-getting-started.html">Getting Started</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-availability.html">Retrieve Availability</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-available-slots.html">Retrieve Available Slots</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-estimated-wait-time.html">Retrieve Estimated Wait Time</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-offline-survey.html">Retrieve an Offline Survey</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-start-chat.html">Start a Chat</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-chat-resources.html">Retrieve Chat Resources, Events and Information</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-chat-events.html">Retrieve Chat Events</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-add-lines.html">Add Lines / End Chat</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-chat-information.html">Retrieve Chat Information</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-visitor-name.html">Retrieve the Visitor's Name</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-set-visitor-name.html">Set the Visitor's Name</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-agent-typing-status.html">Retrieve the Agent's Typing Status</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-visitor-typing-status.html">Retrieve the Visitor's Typing Status</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-set-visitor-typing-status.html">Set the Visitor's Typing Status</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-exit-survey-structure.html">Retrieve Exit Survey Structure</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-submit-survey-data.html">Submit Survey Data</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-send-transcript.html">Send a Transcript</a></li>
<li class="thirdlevel"><a href="consumer-experience-server-chat-sample.html">Sample Postman Collection</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Push Service API</a>
<ul>
<li class="thirdlevel"><a href="push-service-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="push-service-tls-html">TLS Authentication</a></li>
<li class="thirdlevel"><a href="push-service-codes-html">HTTP Response Codes</a></li>
<li class="thirdlevel"><a href="push-service-configuration-html">Configuration of Push Proxy</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">In-App Messaging SDK iOS (2.0)</a>
<ul>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-quick-start.html">Quick Start</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-advanced-configurations.html">Advanced Configurations</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-initialize.html">initialize</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-showconversation.html">showConversation</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-removeconversation.html">removeConversation</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-reconnect.html">reconnect</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-togglechatactions.html">toggleChatActions</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-checkactiveconversation.html">checkActiveConversation</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-markasurgent.html">markAsUrgent</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-isurgent.html">isUrgent</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-dismissurgent.html">dismissUrgent</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-resolveconversation.html">resolveConversation</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-clearhistory.html">clearHistory</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-logout.html">logout</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-destruct.html">destruct</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-handlepush.html">handlePush</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-registerpushnotifications.html">registerPushNotifications</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-setuserprofile.html">setUserProfile</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-getassignedagent.html">getAssignedAgent</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-subscribelogevents.html">subscribeLogEvents</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-getsdkversion.html">getSDKVersion</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-printalllocalizedkeys.html">printAllLocalizedKeys</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-printsupportedlanguages.html">printSupportedLanguages</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-getallsupportedlanguages.html">getAllSupportedLanguages</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-interfacedefinitions.html">Interface and Class Definitions</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-callbacks-index.html">Callbacks index</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-configuring-the-sdk.html">Configuring the SDK</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-attributes.html">Attributes</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-deprecated-attributes.html">Deprecated Attributes</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-stringlocalization.html">String localization in SDK</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-localizationkeys.html">Localization Keys</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-timestamps.html">Timestamps Formatting</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-createcertificate.html">OS Certificate Creation</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-advanced-csat.html">CSAT UI Content</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-photosharing.html">Photo Sharing (Beta)</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-pushnotifications.html">Configuring Push Notifications</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-opensource.html">Open Source List</a></li>
<li class="thirdlevel"><a href="consumer-experience-ios-sdk-security.html">Security</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">In-App Messaging SDK Android (2.0)</a>
<ul>
<li class="thirdlevel"><a href="android-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="android-prerequisites.html">Prerequisites</a></li>
<li class="thirdlevel"><a href="android-download-and-unzip.html">Step 1: Download and Unzip the SDK</a></li>
<li class="thirdlevel"><a href="android-configure-project-settings.html">Step 2: Configure project settings to connect LiveEngage SDK</a></li>
<li class="thirdlevel"><a href="android-code-integration.html">Step 3: Code integration for basic deployment</a></li>
<li class="thirdlevel"><a href="android-initialization.html">SDK Initialization and Lifecycle</a></li>
<li class="thirdlevel"><a href="android-authentication.html">Authentication</a></li>
<li class="thirdlevel"><a href="android-conversations-lifecycle.html">Conversations Lifecycle</a></li>
<li class="thirdlevel"><a href="android-callbacks-interface.html">LivePerson Callbacks Interface</a></li>
<li class="thirdlevel"><a href="android-notifications.html">Notifications</a></li>
<li class="thirdlevel"><a href="android-user-data.html">User Data</a></li>
<li class="thirdlevel"><a href="android-logs.html">Logs and Info</a></li>
<li class="thirdlevel"><a href="android-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="android-initializedeprecated.html">initialize (Deprecated)</a></li>
<li class="thirdlevel"><a href="android-initializeproperties.html">initialize (with SDK properties object)</a></li>
<li class="thirdlevel"><a href="android-showconversation.html">showConversation</a></li>
<li class="thirdlevel"><a href="android-showconversationauth.html">showConversation (with authentication support)</a></li>
<li class="thirdlevel"><a href="android-hideconversation.html">hideConversation</a></li>
<li class="thirdlevel"><a href="android-getconversationfrag.html">getConversationFragment</a></li>
<li class="thirdlevel"><a href="android-getconversationfragauth.html">getConversationFragment with authentication support</a></li>
<li class="thirdlevel"><a href="android-reconnect.html">reconnect</a></li>
<li class="thirdlevel"><a href="android-setuserprofile.html">setUserProfile</a></li>
<li class="thirdlevel"><a href="android-setuserprofiledeprecated.html">setUserProfile (Deprecated)</a></li>
<li class="thirdlevel"><a href="android-registerlppusher.html">registerLPPusher</a></li>
<li class="thirdlevel"><a href="android-unregisterlppusher.html">unregisterLPPusher</a></li>
<li class="thirdlevel"><a href="android-handlepush.html">handlePush</a></li>
<li class="thirdlevel"><a href="android-getsdkversion.html">getSDKVersion</a></li>
<li class="thirdlevel"><a href="android-setcallback.html">setCallback</a></li>
<li class="thirdlevel"><a href="android-removecallback.html">removeCallBack</a></li>
<li class="thirdlevel"><a href="android-checkactiveconversation.html">checkActiveConversation</a></li>
<li class="thirdlevel"><a href="android-checkagentid.html">checkAgentID</a></li>
<li class="thirdlevel"><a href="android-markurgent.html">markConversationAsUrgent</a></li>
<li class="thirdlevel"><a href="android-marknormal.html">markConversationAsNormal</a></li>
<li class="thirdlevel"><a href="android-checkurgent.html">checkConversationIsMarkedAsUrgent</a></li>
<li class="thirdlevel"><a href="android-resolveconversation.html">resolveConversation</a></li>
<li class="thirdlevel"><a href="android-shutdown.html">shutDown</a></li>
<li class="thirdlevel"><a href="android-shutdowndeprecated.html">shutDown (Deprecated)</a></li>
<li class="thirdlevel"><a href="android-clearhistory.html">clearHistory</a></li>
<li class="thirdlevel"><a href="android-logout.html">logOut</a></li>
<li class="thirdlevel"><a href="android-callbacks-index.html">Callbacks Index</a></li>
<li class="thirdlevel"><a href="android-configuring-sdk.html">Configuring the SDK</a></li>
<li class="thirdlevel"><a href="android-attributes.html">Attributes</a></li>
<li class="thirdlevel"><a href="android-configuring-edittext.html">Configuring the message’s EditText</a></li>
<li class="thirdlevel"><a href="android-proguard.html">Proguard Configuration</a></li>
<li class="thirdlevel"><a href="android-modifying-string.html">Modifying Strings</a></li>
<li class="thirdlevel"><a href="android-modifying-resources.html">Modifying Resources</a></li>
<li class="thirdlevel"><a href="android-plural-string.html">Plural String Resource Example</a></li>
<li class="thirdlevel"><a href="android-timestamps.html">Timestamps Formatting</a></li>
<li class="thirdlevel"><a href="android-off-hours.html">Date and Time</a></li>
<li class="thirdlevel"><a href="android-bubble.html">Bubble Timestamp</a></li>
<li class="thirdlevel"><a href="android-separator.html">Separator Timestamp</a></li>
<li class="thirdlevel"><a href="android-resolve.html">Resolve Message</a></li>
<li class="thirdlevel"><a href="android-csat.html">CSAT Behavior</a></li>
<li class="thirdlevel"><a href="android-photo-sharing.html">Photo Sharing - Beta</a></li>
<li class="thirdlevel"><a href="android-push-notifications.html">Enable Push Notifications</a></li>
<li class="thirdlevel"><a href="android-appendix.html">Appendix</a></li>
</ul>
</li>
</ul>
<li>
<a href="#">Real-time Interactions</a>
<ul>
<li class="subfolders">
<a href="#">Visit Information API</a>
<ul>
<li class="thirdlevel"><a href="rt-interactions-visit-information-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="rt-interactions-visit-information-visit-information.html">Visit Information</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">App Engagement API</a>
<ul>
<li class="thirdlevel"><a href="rt-interactions-app-engagement-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="rt-interactions-app-engagement-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="rt-interactions-create-session.html">Create Session</a></li>
<li class="thirdlevel"><a href="rt-interactions-update-session.html">Update Session</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Engagement Attributes</a>
<ul>
<li class="thirdlevel"><a href="rt-interactions-engagement-attributes-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="rt-interactions-engagement-attributes-engagement-attributes.html">Engagement Attributes</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">IVR Engagement API</a>
<ul>
<li class="thirdlevel"><a href="rt-interactions-ivr-engagement-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="rt-interactions-ivr-engagement-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="rt-interactions-ivr-engagement-external engagement.html">External Engagement</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Validate Engagement</a>
<ul>
<li class="thirdlevel"><a href="rt-interactions-validate-engagement-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="rt-interactions-validate-engagement-validate-engagement.html">Validate Engagement API</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Engagement Trigger API</a>
<ul>
<li class="thirdlevel"><a href="trigger-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="trigger-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="trigger-click.html">Click</a></li>
<li class="thirdlevel"><a href="trigger-getinfo.html">getEngagementInfo</a></li>
<li class="thirdlevel"><a href="trigger-getstate.html">getEngagementState</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Engagement Window Widget SDK</a>
<ul>
<li class="thirdlevel"><a href="rt-interactions-window-sdk-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="rt-interactions-window-sdk-getting-started.html">Getting Started</a></li>
<li class="thirdlevel"><a href="rt-interactions-window-sdk-limitations.html">Limitations</a></li>
<li class="thirdlevel"><a href="rt-interactions-window-sdk-configuration.html">Configuration</a></li>
<li class="thirdlevel"><a href="rt-interactions-window-sdk-how-to-use.html">How to use the SDK</a></li>
<li class="thirdlevel"><a href="rt-interactions-window-sdk-code-examples.html">Code Examples</a></li>
<li class="thirdlevel"><a href="rt-interactions-window-sdk-event-structure.html">Event Structure</a></li>
</ul>
</li>
</ul>
<li>
<a href="#">Agent</a>
<ul>
<li class="subfolders">
<a href="#">Agent Workspace Widget SDK</a>
<ul>
<li class="thirdlevel"><a href="agent-workspace-sdk-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="agent-workspace-sdk-getting-started.html">Getting Started</a></li>
<li class="thirdlevel"><a href="agent-workspace-sdk-limitations.html">Limitations</a></li>
<li class="thirdlevel"><a href="agent-workspace-sdk-how-to-use.html">How to use the SDK</a></li>
<li class="thirdlevel"><a href="agent-workspace-sdk-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="agent-workspace-sdk-public-model.html">Public Model Structure</a></li>
<li class="thirdlevel"><a href="agent-workspace-sdk-public-properties.html">Public Properties</a></li>
<li class="thirdlevel"><a href="agent-workspace-sdk-code-examples.html">Code Examples</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">LivePerson Domain API</a>
<ul>
<li class="thirdlevel"><a href="agent-domain-domain-api.html">Domain API</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Login Service API</a>
<ul>
<li class="thirdlevel"><a href="login-getting-started.html">Getting Started</a></li>
<li class="thirdlevel"><a href="agent-login-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="agent-login.html">Login</a></li>
<li class="thirdlevel"><a href="agent-refresh.html">Refresh</a></li>
<li class="thirdlevel"><a href="agent-refresh.html">Logout</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Chat Agent API</a>
<ul>
<li class="thirdlevel"><a href="chat-agent-getting-started.html">Getting Started</a></li>
<li class="thirdlevel"><a href="agent-chat-agent-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="agent-start-agent-session.html">Start Agent Session</a></li>
<li class="thirdlevel"><a href="agent-retrieve-current-availability.html">Retrieve Current Availability</a></li>
<li class="thirdlevel"><a href="agent-set-agent-availability.html">Set Agent Availability</a></li>
<li class="thirdlevel"><a href="agent-retrieve-available-agents.html">Retrieve Available Agents</a></li>
<li class="thirdlevel"><a href="agent-retrieve-available-slots.html">Retrieve Available Slots</a></li>
<li class="thirdlevel"><a href="agent-retrieve-agent-information.html">Retrieve Agent Information</a></li>
<li class="thirdlevel"><a href="agent-determine-incoming.html">Determine Incoming Chat Requests</a></li>
<li class="thirdlevel"><a href="agent-accept-chat.html">Accept a Chat</a></li>
<li class="active thirdlevel"><a href="agent-retrieve-chat-sessions.html">Retrieve Chat Sessions</a></li>
<li class="thirdlevel"><a href="agent-retrieve-chat-resources.html">Retrieve Chat Resources, Events and Information</a></li>
<li class="thirdlevel"><a href="agent-retrieve-data.html">Retrieve Data for Multiple Chats</a></li>
<li class="thirdlevel"><a href="agent-retrieve-chat-events.html">Retrieve Chat Events</a></li>
<li class="thirdlevel"><a href="agent-add-lines.html">Add Lines</a></li>
<li class="thirdlevel"><a href="agent-end-chat.html">End Chat</a></li>
<li class="thirdlevel"><a href="agent-retrieve-chat-info.html">Retrieve Chat Information</a></li>
<li class="thirdlevel"><a href="">Retrieve Visitor’s Name</a></li>
<li class="thirdlevel"><a href="agent-retrieve-agent-typing.html">Retrieve Agent's Typing Status</a></li>
<li class="thirdlevel"><a href="agent-set-agent-typing.html">Set Agent’s Typing Status</a></li>
<li class="thirdlevel"><a href="agent-retrieve-visitor-typing.html">Retrieve Visitor's Typing Status</a></li>
<li class="thirdlevel"><a href="agent-chat-agent-retrieve-skills.html">Retrieve Available Skills</a></li>
<li class="thirdlevel"><a href="agent-transfer-chat.html">Transfer a Chat</a></li>
<li class="thirdlevel"><a href="agent-retrieve-survey-structure.html">Retrieve Agent Survey Structure</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Messaging Agent SDK</a>
<ul>
<li class="thirdlevel"><a href="messaging-agent-sdk-overview.html">Overview</a></li>
</ul>
</li>
</ul>
<li>
<a href="#">Data</a>
<ul>
<li class="subfolders">
<a href="#">Data Access API (Beta)</a>
<ul>
<li class="thirdlevel"><a href="data-data-access-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="data-data-access-architecture.html">Architecture</a></li>
<li class="thirdlevel"><a href="data-data-access-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="data-data-access-base-resource.html">Base Resource</a></li>
<li class="thirdlevel"><a href="data-data-access-agent-activity.html">Agent Activity</a></li>
<li class="thirdlevel"><a href="data-data-access-web-session.html">Web Session</a></li>
<li class="thirdlevel"><a href="data-data-access-engagement.html">Engagement</a></li>
<li class="thirdlevel"><a href="data-data-access-survey.html">Survey</a></li>
<li class="thirdlevel"><a href="data-data-access-schema.html">Schema</a></li>
<li class="thirdlevel"><a href="data-data-access-appendix.html">Appendix</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Messaging Operations API</a>
<ul>
<li class="thirdlevel"><a href="data-messaging-operations-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="data-messaging-operations-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="data-messaging-operations-messaging-conversation.html">Messaging Conversation</a></li>
<li class="thirdlevel"><a href="data-messaging-operations-messaging-csat-distribution.html">Messaging CSAT Distribution</a></li>
<li class="thirdlevel"><a href="data-messaging-operations-appendix.html">Appendix</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Messaging Interactions API (Beta)</a>
<ul>
<li class="thirdlevel"><a href="data-messaging-interactions-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="data-messaging-interactions-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="data-messaging-interactions-conversations.html">Conversations</a></li>
<li class="thirdlevel"><a href="data-messaging-interactions-get-conversation-by-conversation-id.html">Get conversation by conversation ID</a></li>
<li class="thirdlevel"><a href="data-messaging-interactions-get-conversations-by-consumer-id.html">Get Conversations by Consumer ID</a></li>
<li class="thirdlevel"><a href="data-messaging-interactions-sample-code.html">Sample Code</a></li>
<li class="thirdlevel"><a href="data-messaging-interactions-appendix.html">Appendix</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Engagement History API</a>
<ul>
<li class="thirdlevel"><a href="data-data-access-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="data-engagement-history-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="data-engagement-history-retrieve-engagement-list-by-criteria.html">Retrieve Engagement List by Criteria</a></li>
<li class="thirdlevel"><a href="data-engagement-history-sample-code.html">Sample Code</a></li>
<li class="thirdlevel"><a href="data-engagement-history-appendix.html">Appendix</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Operational Real-time API</a>
<ul>
<li class="thirdlevel"><a href="data-operational-realtime-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="data-operational-realtime-methods.html">Methods</a></li>
<li class="thirdlevel"><a href="data-operational-realtime-queue-health.html">Queue Health</a></li>
<li class="thirdlevel"><a href="data-operational-realtime-engagement-activity.html">Engagement Activity</a></li>
<li class="thirdlevel"><a href="data-operational-realtime-agent-activity.html">Agent Activity</a></li>
<li class="thirdlevel"><a href="data-operational-realtime-current-queue-state.html">Current Queue State</a></li>
<li class="thirdlevel"><a href="data-operational-realtime-sla-histogram.html">SLA Histogram</a></li>
<li class="thirdlevel"><a href="data-operational-realtime-sample-code.html">Sample Code</a></li>
</ul>
</li>
</ul>
<li>
<a href="#">LiveEngage Tag</a>
<ul>
<li class="subfolders">
<a href="#">LE Tag Events</a>
<ul>
<li class="thirdlevel"><a href="lp-tag-tag-events-overview.html">Overview</a></li>
<li class="thirdlevel"><a href="lp-tag-tag-events-how.html">How to use these Events</a></li>
<li class="thirdlevel"><a href="lp-tag-tag-events-events.html">Events</a></li>
<li class="thirdlevel"><a href="lp-tag-visitor-flow.html">Visitor Flow Events</a></li>
<li class="thirdlevel"><a href="lp-tag-engagement.html">Engagement Events</a></li>
<li class="thirdlevel"><a href="lp-tag-engagement-window.html">Engagement Window Events</a></li>
</ul>
</li>
</ul>
<li>
<a href="#">Messaging Window API</a>
<ul>
<li class="subfolders">
<a href="#">Introduction</a>
<ul>
<li class="thirdlevel"><a href="consumer-interation-index.html">Home</a></li>
<li class="thirdlevel"><a href="consumer-int-protocol-overview.html">Protocol Overview</a></li>
<li class="thirdlevel"><a href="consumer-int-getting-started.html">Getting Started</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Tutorials</a>
<ul>
<li class="thirdlevel"><a href="consumer-int-get-msg.html">Get Messages</a></li>
<li class="thirdlevel"><a href="consumer-int-conversation-md.html">Conversation Metadata</a></li>
<li class="thirdlevel"><a href="consumer-int-readaccept-events.html">Read/Accept events</a></li>
<li class="thirdlevel"><a href="consumer-int-authentication.html">Authentication</a></li>
<li class="thirdlevel"><a href="consumer-int-agent-profile.html">Agent Profile</a></li>
<li class="thirdlevel"><a href="consumer-int-post-survey.html">Post Conversation Survey</a></li>
<li class="thirdlevel"><a href="consumer-int-client-props.html">Client Properties</a></li>
<li class="thirdlevel"><a href="consumer-int-no-headers.html">Avoid Webqasocket Headers</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Samples</a>
<ul>
<li class="thirdlevel"><a href="consumer-int-js-sample.html">JavaScript Messenger</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">API Reference</a>
<ul>
<li class="thirdlevel"><a href="consumer-int-api-reference.html">Overview</a></li>
<li class="thirdlevel"><a href="consumer-int-msg-reqs.html">Request Builder</a></li>
<li class="thirdlevel"><a href="consumer-int-msg-resps.html">Response Builder</a></li>
<li class="thirdlevel"><a href="consumer-int-msg-notifications.html">Notification Builder</a></li>
<li class="thirdlevel"><a href="consumer-int-msg-req-conv.html">New Conversation</a></li>
<li class="thirdlevel"><a href="consumer-int-msg-close-conv.html">Close Conversation</a></li>
<li class="thirdlevel"><a href="consumer-int-msg-conv-ttr.html">Urgent Conversation</a></li>
<li class="thirdlevel"><a href="consumer-int-msg-csat-conv.html">Update CSAT</a></li>
<li class="thirdlevel"><a href="consumer-int-msg-sub-conv.html">Subscribe Conversations Metadata</a></li>
<li class="thirdlevel"><a href="consumer-int-msg-unsub-conv.html">Unsubscribe Conversations Metadata</a></li>
<li class="thirdlevel"><a href="consumer-int-msg-text-cont.html">Publish Content</a></li>
<li class="thirdlevel"><a href="consumer-int-msg-sub-events.html">Subscribe Conversation Content</a></li>
<li class="thirdlevel"><a href="consumer-int-msg-init-con.html">Browser Init Connection</a></li>
</ul>
</li>
</ul>
<!-- if you aren't using the accordion, uncomment this block:
<p class="external">
<a href="#" id="collapseAll">Collapse All</a> | <a href="#" id="expandAll">Expand All</a>
</p>
-->
</li>
</ul>
</div>
<!-- this highlights the active parent class in the navgoco sidebar. this is critical so that the parent expands when you're viewing a page. This must appear below the sidebar code above. Otherwise, if placed inside customscripts.js, the script runs before the sidebar code runs and the class never gets inserted.-->
<script>$("li.active").parents('li').toggleClass("active");</script>
<!-- Content Column -->
<div class="col-md-9">
<div class="post-header">
<h1 class="post-title-main">Retrieve Chat Sessions</h1>
</div>
<div class="post-content">
<p>This method returns a list of the chat-session URIs that this agent managed in the previous session.</p>
<h2 id="request">Request</h2>
<table>
<thead>
<tr>
<th style="text-align: left">Method</th>
<th style="text-align: left">URI</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left">GET</td>
<td style="text-align: left">https://{domain}/api/account/{accountId}/agentSession/{agentSessionId}/chatSessions?v=1&NC=true</td>
</tr>
</tbody>
</table>
<p><strong>Request Headers</strong></p>
<table>
<thead>
<tr>
<th style="text-align: left">Header</th>
<th style="text-align: left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left">Authorization</td>
<td style="text-align: left">Bearer {bearer-from-login}</td>
</tr>
<tr>
<td style="text-align: left">Content-Type</td>
<td style="text-align: left">application/json</td>
</tr>
<tr>
<td style="text-align: left">Accept</td>
<td style="text-align: left">application/json</td>
</tr>
</tbody>
</table>
<p><strong>Formats</strong></p>
<p>The body media type must have one of the following formats:</p>
<ul>
<li>XML</li>
<li>JSON</li>
</ul>
<h2 id="response">Response</h2>
<p><strong>Elements in the response</strong></p>
<table>
<thead>
<tr>
<th style="text-align: left">Name</th>
<th style="text-align: left">Description</th>
<th style="text-align: left">Type/Value</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left">chat-session</td>
<td style="text-align: left">URI to retrieve the chat session events and info.</td>
<td style="text-align: left">link relationship</td>
</tr>
<tr>
<td style="text-align: left">chatSessionKey</td>
<td style="text-align: left">The chat session key.</td>
<td style="text-align: left">alphanumeric</td>
</tr>
<tr>
<td style="text-align: left">startTime</td>
<td style="text-align: left">The chat session start time.</td>
<td style="text-align: left">numeric</td>
</tr>
</tbody>
</table>
<p><strong>Response Codes</strong></p>
<table>
<thead>
<tr>
<th style="text-align: left">Code</th>
<th style="text-align: left">Response</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left">200</td>
<td style="text-align: left">OK</td>
</tr>
</tbody>
</table>
<p>Response example for JSON:</p>
<div class="highlighter-rouge"><pre class="highlight"><code><span class="p">{</span><span class="w">
</span><span class="nt">"chatSessions"</span><span class="p">:</span><span class="w"> </span><span class="p">{</span><span class="w">
</span><span class="nt">"chatSession"</span><span class="p">:</span><span class="w"> </span><span class="p">[</span><span class="w">
</span><span class="p">{</span><span class="w">
</span><span class="nt">"link"</span><span class="p">:</span><span class="w"> </span><span class="p">{</span><span class="w">
</span><span class="nt">"href"</span><span class="p">:</span><span class="w"> </span><span class="s2">"https://{domain}/api/account/{accountId}/agentSession/{agentSessionId}/chat/{chatId}"</span><span class="p">,</span><span class="w">
</span><span class="nt">"rel"</span><span class="p">:</span><span class="w"> </span><span class="s2">"chat-session"</span><span class="w">
</span><span class="p">},</span><span class="w">
</span><span class="nt">"chatSessionKey"</span><span class="p">:</span><span class="w"> </span><span class="s2">"H31879676690579736-632532233958645150K8414055"</span><span class="p">,</span><span class="w">
</span><span class="nt">"startTime"</span><span class="p">:</span><span class="w"> </span><span class="mi">1440934609097</span><span class="w">
</span><span class="p">}</span><span class="w">
</span><span class="p">]</span><span class="w">
</span><span class="p">}</span><span class="w">
</span><span class="p">}</span><span class="w">
</span></code></pre>
</div>
<p><em>Note: This resource intends to provide a “continuity” ability to the agent while moving between one device to another. This means that the secondary agent session login action must take place while there is a current agent session active for that specific agent. In case the agent logs out of the system and then logs in again, any active chat session from the previous session will be returned back to the queue or disconnected in case there is no suitable agent to take the chat.</em></p>
<div class="tags">
</div>
</div>
<hr class="shaded"/>
<footer>
<div class="row">
<div class="col-lg-12 footer">
©2017 LivePerson. All rights reserved.<br />This documentation is subject to change without notice.<br />
Site last generated: Mar 13, 2017 <br />
<p><img src="img/company_logo.png" alt="Company logo"/></p>
</div>
</div>
</footer>
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</div>
</body>
</html> | LivePersonInc/dev-hub | content10/agent-retrieve-chat-sessions.html | HTML | mit | 170,456 |
<div class="sidebar">
<div class="widget-search">
<div class="input-group">
<input type="text" class="form-control" placeholder="关键词">
<span class="input-group-btn">
<button class="btn btn-default" type="button">搜索</button>
</span>
</div>
</div>
<div class="widget-recent-posts">
<div class="post-group">
<h4 class="widget-title">最近的文章</h4>
<ul>
{% for recent_post in recent_posts %}
<li class="recent-post">
<a href="{{ url_for('post', posttitle=recent_post.title) }}">{{ recent_post.title }}</a>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="widget-category">
<div class="category-group">
<h4 class="sidebar-title">分类</h4>
<ul>
{% for category in all_categories %}
<li class="sidebar-category">
<a href="{{ url_for('category', name=category.name) }}">
{{ category.name }}
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="widget-tag">
<div class="tag-group"></div>
<h4 class="sidebar-title">标签</h4>
<div class="tagcloud">
{% for tag in all_tags %}
<a href="{{ url_for('tag', name=tag.name) }}">{{ tag.name }}</a>
{% endfor %}
</div>
</div>
</div> | guan080/personal_website | app/templates/_sidebar.html | HTML | mit | 1,618 |
<div class="header">
<div class="title">
<div class="submenu">
<a ui-sref="agenda.item.list" class="btn btn-sm btn-default">
<i class="fa fa-angle-double-left fa-lg"></i>
<translate>Back to overview</translate>
</a>
</div>
<h1 translate>Sort agenda</h1>
</div>
</div>
<div class="details">
<p class="lead" translate>Drag and drop items to change the order of the agenda. Your modification will be saved immediately.</p>
<div ui-tree="treeOptions" id="tree-root">
<ol ui-tree-nodes ng-model="items">
<li ng-repeat="item in items" ui-tree-node ng-include="'nodes_renderer.html'">
</ol>
</div>
<p class="spacer">* <translate>Internal item</translate</p>
</div>
<!-- Nested node template -->
<script type="text/ng-template" id="nodes_renderer.html">
<div ui-tree-handle>
<span ng-if="item.item.is_hidden">*</span>
{{ item.item.getListViewTitle() }}
</div>
<ol ui-tree-nodes="" ng-model="item.children">
<li ng-repeat="item in item.children" ui-tree-node ng-include="'nodes_renderer.html'">
</ol>
</script>
| rolandgeider/OpenSlides | openslides/agenda/static/templates/agenda/item-sort.html | HTML | mit | 1,093 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li class="active"><a href="">8.5beta1 / contrib:fermat4 8.4.dev</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../../..">« Up</a>
<h1>contrib:fermat4 <small>8.4.dev</small></h1>
<table class="table table-striped text-center">
<thead>
<tr>
<td>Date</td>
<td>Time</td>
<td>Relative</td>
<td>Status</td>
</tr>
</thead>
<tbody>
<tr>
<td>2015-02-03</td>
<td>21:08:42</td>
<td><script>document.write(moment("2015-02-03 21:08:42 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2015-02-03_21-08-42.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2015-01-31</td>
<td>01:41:06</td>
<td><script>document.write(moment("2015-01-31 01:41:06 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2015-01-31_01-41-06.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2015-01-29</td>
<td>00:14:41</td>
<td><script>document.write(moment("2015-01-29 00:14:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2015-01-29_00-14-41.html">Not compatible with this Coq</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html> | coq-bench/coq-bench.github.io-old | clean/Linux-x86_64-4.02.1-1.2.0/unstable/8.5beta1/contrib:fermat4/8.4.dev/index.html | HTML | mit | 4,039 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Realtime Tests</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{content-for 'head'}}
{{content-for 'test-head'}}
<link rel="stylesheet" href="assets/vendor.css">
<link rel="stylesheet" href="assets/realtime.css">
<link rel="stylesheet" href="assets/test-support.css">
{{content-for 'head-footer'}}
{{content-for 'test-head-footer'}}
</head>
<body>
{{content-for 'body'}}
{{content-for 'test-body'}}
<script src="assets/vendor.js"></script>
<script src="assets/test-support.js"></script>
<script src="assets/realtime.js"></script>
<script src="testem.js"></script>
<script src="assets/test-loader.js"></script>
{{content-for 'body-footer'}}
{{content-for 'test-body-footer'}}
</body>
</html>
| acoustep/realtime-chat-with-laravel-ember-js-and-pusher | ember/tests/index.html | HTML | mit | 969 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="/assets/blend2/dist/boost.css">
<link rel="stylesheet" href="/assets/blend2/css/samples.css">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body >
<header data-blend-widget="header" class="blend-header">
<span class="blend-header-left">
<a class="blend-header-item blend-action-back-icon" href="javascript:history.back();"></a>
</span>
<span class="blend-header-title">
<span class="blend-header-item">星标</span>
</span>
<span class="blend-header-right">
</span>
</header>
<div class="blend-star">
<i class="blend-star-item selected"></i>
<i class="blend-star-item selected"></i>
<i class="blend-star-item selected"></i>
<i class="blend-star-item selected"></i>
<i class="blend-star-item"></i>
</div>
<script src="/assets/blend2/dist/boost.js"></script>
</body>
</html> | Clouda-team/CloudaOfficalSite | app/assets/blend2/samples/star.html | HTML | mit | 1,068 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>trailer</title>
<style>
body{
background:
/* top, transparent red, faked with gradient */
linear-gradient(
rgba(0,0,0,0.6),
rgba(0,0,0,0.6)
),
/* bg image */
url('./dist/img4.jpg');
background-size: cover;
opacity: 0.9;
margin: 0;
}
</style>
</head>
<body>
<div id="app"></div>
<script src="./dist/build.js"></script>
</body>
</html>
| pankaja-shree/30Days30Sites-Main | projects/day7/trailer/index.html | HTML | mit | 505 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>AK 2048</title>
<link href="style/main.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="favicon.ico">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0, maximum-scale=1, user-scalable=no">
</head>
<body>
<div class="container">
<div class="heading">
<h1 class="title">AK 2048</h1>
<div class="scores-container">
<div class="score-container">0</div>
<div class="best-container">0</div>
</div>
</div>
<p class="game-intro">Hedef 2048</p>
<div class="game-container">
<div class="game-message">
<p></p>
<div class="lower">
<a class="keep-playing-button">EVT BBCM</a>
<a class="retry-button">BBCM ANLMDM?</a>
</div>
</div>
<div class="grid-container">
<div class="grid-row">
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
</div>
<div class="grid-row">
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
</div>
<div class="grid-row">
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
</div>
<div class="grid-row">
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
</div>
</div>
<div class="tile-container">
</div>
</div>
<script src="js/bind.js"></script>
<script src="js/classList.js"></script>
<script src="js/animframe_polyfill.js"></script>
<script src="js/keyboard_input_manager.js"></script>
<script src="js/html_actuator.js"></script>
<script src="js/grid.js"></script>
<script src="js/tile.js"></script>
<script src="js/local_score_manager.js"></script>
<script src="js/game_manager.js"></script>
<script src="js/application.js"></script>
</body>
</html>
| onatm/ak2048-android | platforms/android/assets/www/index.html | HTML | mit | 2,355 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sorting Story | AverageMind</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="大概是开学之前的一些体会。 竟然有了一点sorting things的意识,不管是对于收拾屋子里的东西还是整理开发机的环境。本质上都是建立index,然后降低complexity,每次只关注整个system上的一个局部的事情,还是条理清晰地去divide it into different modules。 比如开发机的上的环境,在熟悉了cmake之后意识到 source tree, build">
<meta property="og:type" content="article">
<meta property="og:title" content="Sorting Story">
<meta property="og:url" content="http://yoursite.com/2019/09/01/sorting-story/index.html">
<meta property="og:site_name" content="AverageMind">
<meta property="og:description" content="大概是开学之前的一些体会。 竟然有了一点sorting things的意识,不管是对于收拾屋子里的东西还是整理开发机的环境。本质上都是建立index,然后降低complexity,每次只关注整个system上的一个局部的事情,还是条理清晰地去divide it into different modules。 比如开发机的上的环境,在熟悉了cmake之后意识到 source tree, build">
<meta property="og:locale" content="default">
<meta property="og:updated_time" content="2021-06-12T12:24:41.468Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Sorting Story">
<meta name="twitter:description" content="大概是开学之前的一些体会。 竟然有了一点sorting things的意识,不管是对于收拾屋子里的东西还是整理开发机的环境。本质上都是建立index,然后降低complexity,每次只关注整个system上的一个局部的事情,还是条理清晰地去divide it into different modules。 比如开发机的上的环境,在熟悉了cmake之后意识到 source tree, build">
<link rel="alternate" href="/atom.xml" title="AverageMind" type="application/atom+xml">
<link rel="icon" href="/favicon.png">
<link rel="stylesheet" href="/css/style.css">
<!-- Google Analytics -->
<script type="text/javascript">
(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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-165927341-1', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
</head>
<body>
<div id="container">
<div id="wrap">
<header id="header">
<div id="banner"></div>
<div id="header-outer" class="outer">
<div id="header-inner" class="inner">
<nav id="sub-nav">
<a id="nav-rss-link" class="nav-icon" href="/atom.xml" title="RSS Feed"></a>
<a id="nav-search-btn" class="nav-icon" title="搜索"></a>
</nav>
<div id="search-form-wrap">
<form action="//google.com/search" method="get" accept-charset="UTF-8" class="search-form"><input type="search" name="q" class="search-form-input" placeholder="Search"><button type="submit" class="search-form-submit"></button><input type="hidden" name="sitesearch" value="http://yoursite.com"></form>
</div>
<nav id="main-nav">
<a id="main-nav-toggle" class="nav-icon"></a>
<a class="main-nav-link" href="/">首页</a>
<a class="main-nav-link" href="/archives">归档</a>
<a class="main-nav-link" href="/about">关于</a>
</nav>
</div>
<div id="header-title" class="inner">
<h1 id="logo-wrap">
<a href="/" id="logo">AverageMind</a>
</h1>
<h2 id="subtitle-wrap">
<a href="/" id="subtitle">Writing is nature's way of letting you know how sloppy your thinking is.</a>
</h2>
</div>
</div>
</header>
<div class="outer">
<section id="main"><article id="post-sorting-story" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-meta">
<a href="/2019/09/01/sorting-story/" class="article-date">
<time datetime="2019-09-01T21:39:43.000Z" itemprop="datePublished">2019-09-01</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/story/">story</a>
</div>
</div>
<div class="article-inner">
<header class="article-header">
<h1 class="article-title" itemprop="name">
Sorting Story
</h1>
</header>
<div class="article-entry" itemprop="articleBody">
<!-- Table of Contents -->
<p>大概是开学之前的一些体会。</p>
<p>竟然有了一点sorting things的意识,不管是对于收拾屋子里的东西还是整理开发机的环境。本质上都是建立index,然后降低complexity,每次只关注整个system上的一个局部的事情,还是条理清晰地去divide it into different modules。</p>
<p>比如开发机的上的环境,在熟悉了cmake之后意识到 source tree, build tree 以及 install tree的划分思路,比如在home dir中,有cworkspace, pyworkspace, goworkspace等等,在cworkspace中,划分目录是src, build, install 之后比如rapidjson的package,source放在src目录中,build的目录全都以<code>build_</code>开头,install的目录全都以<code>install_</code>开头,这样的好处是不会把文件弄混,找起来也比较方便。对于home dir 比较小的,就按照同样的规则在/tmp或者/scratch的目录下进行划分。</p>
<p>那些老员工常常不进行install,其实build之后大部分的文件都已经具备了,install就仅仅是把需要的文件拷贝到指定的地方,使用cmake的话,已经有<code>.cmake</code>,即使是在build dir下也能找到合适的.so文件,有的时候多install一下反而会有一些额外的错误,比如有的.so文件找不到,毕竟多一个操作就多一个错误的可能性。</p>
<p>才发现原来学校的ilab是很好的平台了,一般的集群没有配置parallel file system,HPC的机器通常都是用script提交任务,想获得交互的机器通常都会限制权限,不小心在login上执行了任务还会被freeze account(事实上后来发现 仅仅是多加个srun就行了 但是以前这个意识不是很好),而这些在ilab上都不用考虑,登上去各种交互操作debug还是很方便的。以前觉得hard disk比较小,不方便,现在才发现原来是自己的使用方式不对。src文件就放在backup的home dir下,build dir就放在 /tmp 或者是类似的 存储大文件的file system 下。之前总觉得不方便的原因是自己把src dir和build dir mix 到了一起,这样很多build过程中的冗余文件也都被包括在内了,目录也是很凌乱。</p>
<p>所谓在software的管理上变得有经验的过程就是,以前都是有apt-get管理的packge现在很多都是自己管理了。在使用HPC之前,总觉得系统没有sudo权限自己就没法使用了,之后用了HPC,慢慢了解到不论是auto tool 的 configure 都是可以配置 prefix 的。才知道不是所有的内容都要放在需要sudo权限的目录下。</p>
<p>实习的时候虽然只有一个single node的pc,但也做了很多事,甚至是MPI的程序,其实真正使用HPC的时候就是program debuging ready 然后在HPC上仅仅变换一下 -n 后面的数字 然后run各种实验。真正大量的时间还是花在debuging的时间上,这个时候仅仅使用small level的数据集在single node server上 debug 就足够了,哪怕是MPI的程序。</p>
<p>有时候又想自己是不是太把自己的工作当回事儿搞得很沉重,想想这些年来做的事情,尽管是很努力地想着怎么能把影响力扩大,增长时间,但是真正能算得上是有影响力的却没有几件,这就让我反思,自己着急忙慌的,到底是为了什么。着急忙慌地把事情做好,到底有什么意义。特别是code层面,每当自己尝试construct一个稍微大一点的事情的时候,最后总是搞的一团糟。</p>
<p>比如testing啊,比如interface的定义啊,等等,为了省事求快弄出来的code和exp最后常常又被废弃掉了,总有时间白过了的感慨。也得想想在分配时间上,那些缓慢付出但是影响力可以逐渐积累的事情上也要分配点时间。</p>
<p>when writting the scripts, be imaginative and try to forsee what will happen on the system, and use the suitable log info at the suitable places, a littel bit hard at first, but time will be saved a lot actually, the work dir will be more clean at least.</p>
<p>临近开学,同学大多归校,昨天几位好友一起晚餐,之后大家畅谈吐槽phd生活,类似学术圈八卦种种,谈话间citation几百几千什么的,回来想想自己,才是从0开始起步。有的时候思路需要变通,作为一个成功的phd或者faculty,当然越多的citation或者论文数量是好的,但是作为一个成功的人来说,可能拿到phd的学位在职业生涯能发展顺利,也是很好的吧,想到这里大概就不用去羡慕别人怎么有这么多的论文以及背景如何如何,一个人能做什么事情,做的什么成就,际遇有时是重要的因素,安稳一点心态做自己的事情,一个事情在同样的指标上实在没有办法做的比别人好的时候,索性就退一步想想,怎么和别人做的不一样吧,然后培养一些自己的diversity的能力,也是蛮好的。</p>
</div>
<footer class="article-footer">
<a data-url="http://yoursite.com/2019/09/01/sorting-story/" data-id="ckuho23mo004fap0acrzetii8" class="article-share-link">分享</a>
</footer>
</div>
<script src="/jquery/jquery.min.js"></script>
<div id="random_posts">
<h2>推荐文章</h2>
<div class="random_posts_ul">
<script>
var random_count =4
var site = {BASE_URI:'/'};
function load_random_posts(obj) {
var arr=site.posts;
if (!obj) return;
// var count = $(obj).attr('data-count') || 6;
for (var i, tmp, n = arr.length; n; i = Math.floor(Math.random() * n), tmp = arr[--n], arr[n] = arr[i], arr[i] = tmp);
arr = arr.slice(0, random_count);
var html = '<ul>';
for(var j=0;j<arr.length;j++){
var item=arr[j];
html += '<li><strong>' +
item.date + ': <a href="' + (site.BASE_URI+item.uri) + '">' +
(item.title || item.uri) + '</a></strong>';
if(item.excerpt){
html +='<div class="post-excerpt">'+item.excerpt+'</div>';
}
html +='</li>';
}
$(obj).html(html + '</ul>');
}
$('.random_posts_ul').each(function () {
var c = this;
if (!site.posts || !site.posts.length){
$.getJSON(site.BASE_URI + 'js/posts.js',function(json){site.posts = json;load_random_posts(c)});
}
else{
load_random_posts(c);
}
});
</script>
</div>
</div>
<nav id="article-nav">
<a href="/2019/09/01/Halfmoon-Story/" id="article-nav-newer" class="article-nav-link-wrap">
<strong class="article-nav-caption">上一篇</strong>
<div class="article-nav-title">
Halfmoon Story
</div>
</a>
<a href="/2019/08/22/paper-taolu/" id="article-nav-older" class="article-nav-link-wrap">
<strong class="article-nav-caption">下一篇</strong>
<div class="article-nav-title">paper_taolu</div>
</a>
</nav>
</article>
<div class="comments" id="comments">
<div id="cloud-tie-wrapper" class="cloud-tie-wrapper"></div>
</div>
</section>
<aside id="sidebar">
<div class="widget-wrap">
<h3 class="widget-title recent-posts">最新文章</h3>
<div class="widget">
<ul>
<li>
<a href="/2021/10/07/Programming-by-c-for-a-cpp-programmer/">Programming by c for a cpp programmer</a>
</li>
<li>
<a href="/2021/07/23/Poem-Story/">Poem Story</a>
</li>
<li>
<a href="/2021/07/11/Wedding-Story/">Wedding Story</a>
</li>
<li>
<a href="/2021/06/27/HPC-vs-CloudComputing/">HPC vs CloudComputing</a>
</li>
<li>
<a href="/2021/06/21/Editing-taolu/">Editing-taolu</a>
</li>
</ul>
</div>
</div>
</aside>
</div>
<footer id="footer">
<div class="outer">
<div id="footer-left">
© 2014 - 2021 zhe |
主题 <a href="https://github.com/giscafer/hexo-theme-cafe/" target="_blank">Cafe</a>
</div>
<div id="footer-right">
联系方式 | godenwangzhe@gmail.com
</div>
</div>
</footer>
<script src="/jquery/jquery.min.js"></script>
</div>
<nav id="mobile-nav">
<a href="/" class="mobile-nav-link">首页</a>
<a href="/archives" class="mobile-nav-link">归档</a>
<a href="/about" class="mobile-nav-link">关于</a>
</nav>
<img class="back-to-top-btn" src="/images/fly-to-top.png"/>
<script>
// Elevator script included on the page, already.
window.onload = function() {
var elevator = new Elevator({
selector:'.back-to-top-btn',
element: document.querySelector('.back-to-top-btn'),
duration: 1000 // milliseconds
});
}
</script>
<script>
var cloudTieConfig = {
url: document.location.href,
sourceId: "",
productKey: "e2fb4051c49842688ce669e634bc983f",
target: "cloud-tie-wrapper"
};
</script>
<script src="https://img1.ws.126.net/f2e/tie/yun/sdk/loader.js"></script>
<!-- author:forvoid begin -->
<!-- author:forvoid begin -->
<!-- author:forvoid end -->
<!-- author:forvoid end -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
}
})
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax(), i;
for (i=0; i < all.length; i += 1) {
all[i].SourceElement().parentNode.className += ' has-jax';
}
})
</script>
<script type="text/javascript" src="https://cdn.rawgit.com/mathjax/MathJax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script src="/js/is.js"></script>
<link rel="stylesheet" href="/fancybox/jquery.fancybox.css">
<script src="/fancybox/jquery.fancybox.pack.js"></script>
<script src="/js/script.js"></script>
<script src="/js/elevator.js"></script>
</div>
</body>
</html> | wangzhezhe/wangzhezhe.github.io | 2019/09/01/sorting-story/index.html | HTML | mit | 15,577 |
---
layout: blog_page
description: "进步听力"
permalink: /blogindex.html
---
{% for post in paginator.posts %}
<div class="post-preview">
<a href="{{ post.url | prepend: site.baseurl }}">
<h2 class="post-title">
{{ post.title }}
</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
<div class="post-content-preview">
{{ post.content | strip_html | truncate:150 }}
</div>
</a>
<p class="post-meta">Posted by {% if post.author %}{{ post.author }}{% else %}{{ site.title }}{% endif %} on {{ post.date | date: "%B %-d, %Y" }}</p>
</div>
<hr>
{% endfor %}
<!-- Pager -->
{% if paginator.total_pages > 1 %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}
| caiguocn/Jinbu | blogindex.html | HTML | mit | 1,206 |
<h2>The Rec Sailing Club</h2>
<p>Queen’s Sailing runs a recreational sailing program. Lessons are taught by <span class="caps">SailCanada</span>-certified instructors.
The club offers an opportunity for club members to participate in sailing in a noncompetitive environment.
<strong>All skill levels are welcome and no experience is necessary! Come check it out next fall!</strong></p>
<p>President: Natalie Tanczak</p>
<p>Rec Club Email: <a href="mailto:RECSail@gogaelsgo.com">RECSail@gogaelsgo.com</a></p>
| QueensSailing/QueensSailing.github.io | _includes/recsail.html | HTML | mit | 513 |
---
layout: default
title: CSS
slug: css
lead: "Global CSS settings, fundamental HTML elements styled and enhanced with extensible classes, and an advanced grid system."
base_url: "../"
---
<!-- Global Bootstrap settings
================================================== -->
<div class="bs-docs-section">
<div class="page-header">
<h1 id="overview">Overview</h1>
</div>
<p class="lead">Get the lowdown on the key pieces of {{ site.app_name }}'s infrastructure, including our approach to better, faster, stronger web development.</p>
<h3 id="overview-doctype">HTML5 doctype</h3>
<p>{{ site.app_name }} makes use of certain HTML elements and CSS properties that require the use of the HTML5 doctype. Include it at the beginning of all your projects.</p>
{% highlight html %}
<!DOCTYPE html>
<html lang="en">
...
</html>
{% endhighlight %}
<h3 id="overview-mobile">Mobile first</h3>
<p>With Bootstrap 2, we added optional mobile friendly styles for key aspects of the framework. With Bootstrap 3, we've rewritten the project to be mobile friendly from the start. Instead of adding on optional mobile styles, they're baked right into the core. In fact, <strong>{{ site.app_name }} is mobile first</strong>. Mobile first styles can be found throughout the entire library instead of in separate files.</p>
<p>To ensure proper rendering and touch zooming, <strong>add the viewport meta tag</strong> to your <code><head></code>.</p>
{% highlight html %}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% endhighlight %}
<p>You can disable zooming capabilities on mobile devices by adding <code>user-scalable=no</code> to the viewport meta tag. This disables zooming, meaning users are only able to scroll, and results in your site feeling a bit more like a native application. Overall we don't recommend this on every site, so use caution!</p>
{% highlight html %}
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
{% endhighlight %}
<h3 id="overview-responsive-images">Responsive images</h3>
<p>Images in Bootstrap 3 can be made responsive-friendly via the addition of the <code>.img-responsive</code> class. This applies <code>max-width: 100%;</code> and <code>height: auto;</code> to the image so that it scales nicely to the parent element.</p>
{% highlight html %}
<img src="..." class="img-responsive" alt="Responsive image">
{% endhighlight %}
<h3 id="overview-type-links">Typography and links</h3>
<p>{{ site.app_name }} sets basic global display, typography, and link styles. Specifically, we:</p>
<ul>
<li>Remove <code>margin</code> on the body</li>
<li>Set <code>background-color: white;</code> on the <code>body</code></li>
<li>Use the <code>@font-family-base</code>, <code>@font-size-base</code>, and <code>@line-height-base</code> attributes as our typographic base</li>
<li>Set the global link color via <code>@link-color</code> and apply link underlines only on <code>:hover</code></li>
</ul>
<p>These styles can be found within <code>_scaffolding.scss</code>.</p>
<h3 id="overview-normalize">Normalize</h3>
<p>For improved cross-browser rendering, we use <a href="http://necolas.github.io/normalize.css/" target="_blank">Normalize</a>, a project by <a href="http://twitter.com/necolas" target="_blank">Nicolas Gallagher</a> and <a href="http://twitter.com/jon_neal" target="_blank">Jonathan Neal</a>.</p>
<h3 id="overview-container">Containers</h3>
<p>Easily center a page's contents by wrapping its contents in a <code>.container</code>. Containers set <code>max-width</code> at various media query breakpoints to match our grid system.</p>
{% highlight html %}
<div class="container">
...
</div>
{% endhighlight %}
</div>
<!-- Grid system
================================================== -->
<div class="bs-docs-section">
<div class="page-header">
<h1 id="grid">Grid system</h1>
</div>
<p class="lead">{{ site.app_name }} includes a responsive, mobile first fluid grid system that appropriately scales up to 12 columns as the device or viewport size increases. It includes <a href="#grid-example-basic">predefined classes</a> for easy layout options, as well as powerful <a href="#grid-scss">mixins for generating more semantic layouts</a>.</p>
<h3 id="grid-media-queries">Media queries</h3>
<p>We use the following media queries to create the key breakpoints in our grid system.</p>
{% highlight css %}
/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in {{ site.app_name }} */
/* Small devices (tablets, 768px and up) */
@media (min-width: $screen-sm-min) { ... }
/* Medium devices (desktops, 992px and up) */
@media (min-width: $screen-md-min) { ... }
/* Large devices (large desktops, 1200px and up) */
@media (min-width: $screen-lg-min) { ... }
{% endhighlight %}
<p>We occasionally expand on these media queries to include a <code>max-width</code> to limit CSS to a narrower set of devices.</p>
{% highlight css %}
@media (max-width: $screen-xs-max) { ... }
@media (min-width: $screen-sm-min) and (max-width: $screen-sm-max) { ... }
@media (min-width: $screen-md-min) and (max-width: $screen-md-max) { ... }
@media (min-width: $screen-lg-min) { ... }
{% endhighlight %}
<h3 id="grid-options">Grid options</h3>
<p>See how aspects of the {{ site.app_name }} grid system work across multiple devices with a handy table.</p>
<div class="table-responsive">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th></th>
<th>
Extra small devices
<small>Phones (<768px)</small>
</th>
<th>
Small devices
<small>Tablets (≥768px)</small>
</th>
<th>
Medium devices
<small>Desktops (≥992px)</small>
</th>
<th>
Large devices
<small>Desktops (≥1200px)</small>
</th>
</tr>
</thead>
<tbody>
<tr>
<th>Grid behavior</th>
<td>Horizontal at all times</td>
<td colspan="3">Collapsed to start, horizontal above breakpoints</td>
</tr>
<tr>
<th>Max container width</th>
<td>None (auto)</td>
<td>750px</td>
<td>970px</td>
<td>1170px</td>
</tr>
<tr>
<th>Class prefix</th>
<td><code>.col-xs-</code></td>
<td><code>.col-sm-</code></td>
<td><code>.col-md-</code></td>
<td><code>.col-lg-</code></td>
</tr>
<tr>
<th># of columns</th>
<td colspan="4">12</td>
</tr>
<tr>
<th>Max column width</th>
<td class="text-muted">Auto</td>
<td>60px</td>
<td>78px</td>
<td>95px</td>
</tr>
<tr>
<th>Gutter width</th>
<td colspan="4">30px (15px on each side of a column)</td>
</tr>
<tr>
<th>Nestable</th>
<td colspan="4">Yes</td>
</tr>
<tr>
<th>Offsets</th>
<td colspan="1" class="text-muted">N/A</td>
<td colspan="3">Yes</td>
</tr>
<tr>
<th>Column ordering</th>
<td class="text-muted">N/A</td>
<td colspan="3">Yes</td>
</tr>
</tbody>
</table>
</div>
<h3 id="grid-example-basic">Example: Stacked-to-horizontal</h3>
<p>Using a single set of <code>.col-md-*</code> grid classes, you can create a basic grid system that starts out stacked on mobile devices and tablet devices (the extra small to small range) before becoming horizontal on desktop (medium) devices.</p>
<div class="bs-docs-grid">
<div class="row show-grid">
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
</div>
<div class="row show-grid">
<div class="col-md-8">.col-md-8</div>
<div class="col-md-4">.col-md-4</div>
</div>
<div class="row show-grid">
<div class="col-md-4">.col-md-4</div>
<div class="col-md-4">.col-md-4</div>
<div class="col-md-4">.col-md-4</div>
</div>
<div class="row show-grid">
<div class="col-md-6">.col-md-6</div>
<div class="col-md-6">.col-md-6</div>
</div>
</div>
{% highlight html %}
<div class="row">
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
<div class="col-md-1">.col-md-1</div>
</div>
<div class="row">
<div class="col-md-8">.col-md-8</div>
<div class="col-md-4">.col-md-4</div>
</div>
<div class="row">
<div class="col-md-4">.col-md-4</div>
<div class="col-md-4">.col-md-4</div>
<div class="col-md-4">.col-md-4</div>
</div>
<div class="row">
<div class="col-md-6">.col-md-6</div>
<div class="col-md-6">.col-md-6</div>
</div>
{% endhighlight %}
<h3 id="grid-example-mixed">Example: Mobile and desktop</h3>
<p>Don't want your columns to simply stack in smaller devices? Use the extra small and medium device grid classes by adding <code>.col-xs-*</code> <code>.col-md-*</code> to your columns. See the example below for a better idea of how it all works.</p>
<div class="bs-docs-grid">
<div class="row show-grid">
<div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
</div>
<div class="row show-grid">
<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
</div>
<div class="row show-grid">
<div class="col-xs-6">.col-xs-6</div>
<div class="col-xs-6">.col-xs-6</div>
</div>
</div>
{% highlight html %}
<!-- Stack the columns on mobile by making one full-width and the other half-width -->
<div class="row">
<div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
</div>
<!-- Columns start at 50% wide on mobile and bump up to 33.3% wide on desktop -->
<div class="row">
<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
</div>
<!-- Columns are always 50% wide, on mobile and desktop -->
<div class="row">
<div class="col-xs-6">.col-xs-6</div>
<div class="col-xs-6">.col-xs-6</div>
</div>
{% endhighlight %}
<h3 id="grid-example-mixed-complete">Example: Mobile, tablet, desktops</h3>
<p>Build on the previous example by creating even more dynamic and powerful layouts with tablet <code>.col-sm-*</code> classes.</p>
<div class="bs-docs-grid">
<div class="row show-grid">
<div class="col-xs-12 col-sm-6 col-md-8">.col-xs-12 .col-sm-6 .col-md-8</div>
<div class="col-xs-6 col-sm-6 col-md-4">.col-xs-6 .col-sm-6 .col-md-4</div>
</div>
<div class="row show-grid">
<div class="col-xs-6 col-sm-4 col-md-4">.col-xs-6 .col-sm-4 .col-md-4</div>
<div class="col-xs-6 col-sm-4 col-md-4">.col-xs-6 .col-sm-4 .col-md-4</div>
<!-- Optional: clear the XS cols if their content doesn't match in height -->
<div class="clearfix visible-xs"></div>
<div class="col-xs-6 col-sm-4 col-md-4">.col-xs-6 .col-sm-4 .col-md-4</div>
</div>
</div>
{% highlight html %}
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-8">.col-xs-12 .col-sm-6 .col-md-8</div>
<div class="col-xs-6 col-sm-6 col-md-4">.col-xs-6 .col-sm-6 .col-md-4</div>
</div>
<div class="row">
<div class="col-xs-6 col-sm-4 col-md-4">.col-xs-6 .col-sm-4 .col-md-4</div>
<div class="col-xs-6 col-sm-4 col-md-4">.col-xs-6 .col-sm-4 .col-md-4</div>
<!-- Optional: clear the XS cols if their content doesn't match in height -->
<div class="clearfix visible-xs"></div>
<div class="col-xs-6 col-sm-4 col-md-4">.col-xs-6 .col-sm-4 .col-md-4</div>
</div>
{% endhighlight %}
<h3 id="grid-responsive-resets">Responsive column resets</h3>
<p>With the four tiers of grids available you're bound to run into issues where, at certain breakpoints, your columns don't clear quite right as one is taller than the other. To fix that, use a combination of a <code>.clearfix</code> and our <a href="../css#responsive-utilities">responsive utility classes</a>.</p>
{% highlight html %}
<div class="row">
<div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
<div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
<!-- Add the extra clearfix for only the required viewport -->
<div class="clearfix visible-xs"></div>
<div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
<div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
</div>
{% endhighlight %}
<p>In addition to column clearing at responsive breakpoints, you may need to <strong>reset offsets, pushes, or pulls</strong>. Those resets are available for medium and large grid tiers only, since they start only at the (second) small grid tier. See this in action in <a href="../examples/grid/">the grid example</a>.</p>
{% highlight html %}
<div class="row">
<div class="col-sm-5 col-md-6">.col-sm-5 .col-md-6</div>
<div class="col-sm-5 col-sm-offset-2 col-md-6 col-md-offset-0">.col-sm-5 .col-sm-offset-2 .col-md-6 .col-md-offset-0</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-5 col-lg-6">.col-sm-6 .col-md-5 .col-lg-6</div>
<div class="col-sm-6 col-md-5 col-md-offset-2 col-lg-6 col-lg-offset-0">.col-sm-6 .col-md-5 .col-md-offset-2 .col-lg-6 .col-lg-offset-0</div>
</div>
{% endhighlight %}
<h3 id="grid-offsetting">Offsetting columns</h3>
<p>Move columns to the right using <code>.col-md-offset-*</code> classes. These classes increase the left margin of a column by <code>*</code> columns. For example, <code>.col-md-offset-4</code> moves <code>.col-md-4</code> over four columns.</p>
<div class="bs-docs-grid">
<div class="row show-grid">
<div class="col-md-4">.col-md-4</div>
<div class="col-md-4 col-md-offset-4">.col-md-4 .col-md-offset-4</div>
</div>
<div class="row show-grid">
<div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div>
<div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div>
</div>
<div class="row show-grid">
<div class="col-md-6 col-md-offset-3">.col-md-6 .col-md-offset-3</div>
</div>
</div>
{% highlight html %}
<div class="row">
<div class="col-md-4">.col-md-4</div>
<div class="col-md-4 col-md-offset-4">.col-md-4 .col-md-offset-4</div>
</div>
<div class="row">
<div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div>
<div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">.col-md-6 .col-md-offset-3</div>
</div>
{% endhighlight %}
<h3 id="grid-nesting">Nesting columns</h3>
<p>To nest your content with the default grid, add a new <code>.row</code> and set of <code>.col-md-*</code> columns within an existing <code>.col-md-*</code> column. Nested rows should include a set of columns that add up to 12.</p>
<div class="row show-grid">
<div class="col-md-9">
Level 1: .col-md-9
<div class="row show-grid">
<div class="col-md-6">
Level 2: .col-md-6
</div>
<div class="col-md-6">
Level 2: .col-md-6
</div>
</div>
</div>
</div>
{% highlight html %}
<div class="row">
<div class="col-md-9">
Level 1: .col-md-9
<div class="row">
<div class="col-md-6">
Level 2: .col-md-6
</div>
<div class="col-md-6">
Level 2: .col-md-6
</div>
</div>
</div>
</div>
{% endhighlight %}
<h3 id="grid-column-ordering">Column ordering</h3>
<p>Easily change the order of our built-in grid columns with <code>.col-md-push-*</code> and <code>.col-md-pull-*</code> modifier classes.</p>
<div class="row show-grid">
<div class="col-md-9 col-md-push-3">.col-md-9 .col-md-push-3</div>
<div class="col-md-3 col-md-pull-9">.col-md-3 .col-md-pull-9</div>
</div>
{% highlight html %}
<div class="row">
<div class="col-md-9 col-md-push-3">.col-md-9 .col-md-push-3</div>
<div class="col-md-3 col-md-pull-9">.col-md-3 .col-md-pull-9</div>
</div>
{% endhighlight %}
<h3 id="grid-scss">SCSS mixins and variables</h3>
<p>In addition to <a href="#grid-example-basic">prebuilt grid classes</a> for fast layouts, {{ site.app_name }} includes SCSS variables and mixins for quickly generating your own simple, semantic layouts.</p>
<h4>Variables</h4>
<p>Variables determine the number of columns, the gutter width, and the media query point at which to begin floating columns. We use these to generate the predefined grid classes documented above, as well as for the custom mixins listed below.</p>
{% highlight css %}
$grid-columns: 12;
$grid-gutter-width: 30px;
$grid-float-breakpoint: 768px;
{% endhighlight %}
<h4>Mixins</h4>
<p>Mixins are used in conjunction with the grid variables to generate semantic CSS for individual grid columns.</p>
{% highlight css %}
// Creates a wrapper for a series of columns
@mixin make-row($gutter: $grid-gutter-width) {
// Then clear the floated columns
@include clearfix();
@media (min-width: $screen-sm) {
margin-left: ($gutter / -2);
margin-right: ($gutter / -2);
}
// Negative margin nested rows out to align the content of columns
.row {
margin-left: ($gutter / -2);
margin-right: ($gutter / -2);
}
}
// Generate the extra small columns
@mixin make-xs-column($columns, $gutter: $grid-gutter-width) {
position: relative;
// Prevent columns from collapsing when empty
min-height: 1px;
// Inner gutter via padding
padding-left: ($gutter / 2);
padding-right: ($gutter / 2);
// Calculate width based on number of columns available
@media (min-width: $grid-float-breakpoint) {
float: left;
width: percentage(($columns / $grid-columns));
}
}
// Generate the small columns
@mixin make-sm-column($columns, $gutter: $grid-gutter-width) {
position: relative;
// Prevent columns from collapsing when empty
min-height: 1px;
// Inner gutter via padding
padding-left: ($gutter / 2);
padding-right: ($gutter / 2);
// Calculate width based on number of columns available
@media (min-width: $screen-s) {
float: left;
width: percentage(($columns / $grid-columns));
}
}
// Generate the small column offsets
@mixin make-sm-column-offset($columns) {
@media (min-width: $screen-sm) {
margin-left: percentage(($columns / $grid-columns));
}
}
@mixin make-sm-column-push($columns) {
@media (min-width: $screen-sm) {
left: percentage(($columns / $grid-columns));
}
}
@mixin make-sm-column-pull($columns) {
@media (min-width: $screen-sm) {
right: percentage(($columns / $grid-columns));
}
}
// Generate the medium columns
@mixin make-md-column($columns, $gutter: $grid-gutter-width) {
position: relative;
// Prevent columns from collapsing when empty
min-height: 1px;
// Inner gutter via padding
padding-left: ($gutter / 2);
padding-right: ($gutter / 2);
// Calculate width based on number of columns available
@media (min-width: $screen-md) {
float: left;
width: percentage(($columns / $grid-columns));
}
}
// Generate the medium column offsets
@mixin make-md-column-offset($columns) {
@media (min-width: $screen-md) {
margin-left: percentage(($columns / $grid-columns));
}
}
@mixin make-md-column-push($columns) {
@media (min-width: $screen-md) {
left: percentage(($columns / $grid-columns));
}
}
@mixin make-md-column-pull($columns) {
@media (min-width: $screen-md) {
right: percentage(($columns / $grid-columns));
}
}
// Generate the large columns
@mixin make-lg-column($columns, $gutter: $grid-gutter-width) {
position: relative;
// Prevent columns from collapsing when empty
min-height: 1px;
// Inner gutter via padding
padding-left: ($gutter / 2);
padding-right: ($gutter / 2);
// Calculate width based on number of columns available
@media (min-width: $screen-lg) {
float: left;
width: percentage(($columns / $grid-columns));
}
}
// Generate the large column offsets
@mixin make-lg-column-offset($columns) {
@media (min-width: $screen-lg) {
margin-left: percentage(($columns / $grid-columns));
}
}
@mixin make-lg-column-push($columns) {
@media (min-width: $screen-lg) {
left: percentage(($columns / $grid-columns));
}
}
@mixin make-lg-column-pull($columns) {
@media (min-width: $screen-lg) {
right: percentage(($columns / $grid-columns));
}
}
{% endhighlight %}
<h4>Example usage</h4>
<p>You can modify the variables to your own custom values, or just use the mixins with their default values. Here's an example of using the default settings to create a two-column layout with a gap between.</p>
{% highlight css %}
.wrapper {
@include make-row();
}
.content-main {
@include make-lg-column(8);
}
.content-secondary {
@include make-lg-column(3);
@include make-lg-column-offset(1);
}
{% endhighlight %}
{% highlight html %}
<div class="wrapper">
<div class="content-main">...</div>
<div class="content-secondary">...</div>
</div>
{% endhighlight %}
</div>
<!-- Typography
================================================== -->
<div class="bs-docs-section">
<div class="page-header">
<h1 id="type">Typography</h1>
</div>
<!-- Headings -->
<h2 id="type-headings">Headings</h2>
<p>All HTML headings, <code><h1></code> through <code><h6></code> are available.</p>
<div class="bs-example bs-example-type">
<table class="table">
<tbody>
<tr>
<td><h1>h1. Bootstrap heading</h1></td>
<td class="info">Semibold 36px</td>
</tr>
<tr>
<td><h2>h2. Bootstrap heading</h2></td>
<td class="info">Semibold 30px</td>
</tr>
<tr>
<td><h3>h3. Bootstrap heading</h3></td>
<td class="info">Semibold 24px</td>
</tr>
<tr>
<td><h4>h4. Bootstrap heading</h4></td>
<td class="info">Semibold 18px</td>
</tr>
<tr>
<td><h5>h5. Bootstrap heading</h5></td>
<td class="info">Semibold 14px</td>
</tr>
<tr>
<td><h6>h6. Bootstrap heading</h6></td>
<td class="info">Semibold 12px</td>
</tr>
</tbody>
</table>
</div>
{% highlight html %}
<h1>h1. Bootstrap heading</h1>
<h2>h2. Bootstrap heading</h2>
<h3>h3. Bootstrap heading</h3>
<h4>h4. Bootstrap heading</h4>
<h5>h5. Bootstrap heading</h5>
<h6>h6. Bootstrap heading</h6>
{% endhighlight %}
<p>Also included with headings is an autoscaling <code><small></code> element. Use it for smaller, gray secondary text in any heading.</p>
<div class="bs-example bs-example-type">
<table class="table">
<tbody>
<tr>
<td><h1>h1. Bootstrap heading <small>Secondary text</small></h1></td>
</tr>
<tr>
<td><h2>h2. Bootstrap heading <small>Secondary text</small></h2></td>
</tr>
<tr>
<td><h3>h3. Bootstrap heading <small>Secondary text</small></h3></td>
</tr>
<tr>
<td><h4>h4. Bootstrap heading <small>Secondary text</small></h4></td>
</tr>
<tr>
<td><h5>h5. Bootstrap heading <small>Secondary text</small></h5></td>
</tr>
<tr>
<td><h6>h6. Bootstrap heading <small>Secondary text</small></h6></td>
</tr>
</tbody>
</table>
</div>
{% highlight html %}
<h1>h1. Bootstrap heading <small>Secondary text</small></h1>
<h2>h2. Bootstrap heading <small>Secondary text</small></h2>
<h3>h3. Bootstrap heading <small>Secondary text</small></h3>
<h4>h4. Bootstrap heading <small>Secondary text</small></h4>
<h5>h5. Bootstrap heading <small>Secondary text</small></h5>
<h6>h6. Bootstrap heading <small>Secondary text</small></h6>
{% endhighlight %}
<!-- Body copy -->
<h2 id="type-body-copy">Body copy</h2>
<p>{{ site.app_name }}'s global default <code>font-size</code> is <strong>14px</strong>, with a <code>line-height</code> of <strong>1.428</strong>. This is applied to the <code><body></code> and all paragraphs. In addition, <code><p></code> (paragraphs) receive a bottom margin of half their computed line-height (10px by default).</p>
<div class="bs-example">
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.</p>
<p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla.</p>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.</p>
</div>
{% highlight html %}
<p>...</p>
{% endhighlight %}
<!-- Body copy .lead -->
<h3>Lead body copy</h3>
<p>Make a paragraph stand out by adding <code>.lead</code>.</p>
<div class="bs-example">
<p class="lead">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.</p>
</div>
{% highlight html %}
<p class="lead">...</p>
{% endhighlight %}
<!-- Using SCSS -->
<h3>Built with Sass</h3>
<p>The typographic scale is based on two SCSS variables in <strong>_variables.scss</strong>: <code>$font-size-base</code> and <code>$line-height-base</code>. The first is the base font-size used throughout and the second is the base line-height. We use those variables and some simple math to create the margins, paddings, and line-heights of all our type and more. Customize them and {{ site.app_name }} adapts.</p>
<!-- Emphasis -->
<h2 id="type-emphasis">Emphasis</h2>
<p>Make use of HTML's default emphasis tags with lightweight styles.</p>
<h3>Small text</h3>
<p>For de-emphasizing inline or blocks of text, use the <code><small></code> tag to set text at 85% the size of the parent. Heading elements receive their own <code>font-size</code> for nested <code><small></code> elements.</p>
<div class="bs-example">
<p><small>This line of text is meant to be treated as fine print.</small></p>
</div>
{% highlight html %}
<small>This line of text is meant to be treated as fine print.</small>
{% endhighlight %}
<h3>Bold</h3>
<p>For emphasizing a snippet of text with a heavier font-weight.</p>
<div class="bs-example">
<p>The following snippet of text is <strong>rendered as bold text</strong>.</p>
</div>
{% highlight html %}
<strong>rendered as bold text</strong>
{% endhighlight %}
<h3>Italics</h3>
<p>For emphasizing a snippet of text with italics.</p>
<div class="bs-example">
<p>The following snippet of text is <em>rendered as italicized text</em>.</p>
</div>
{% highlight html %}
<em>rendered as italicized text</em>
{% endhighlight %}
<div class="bs-callout bs-callout-info">
<h4>Alternate elements</h4>
<p>Feel free to use <code><b></code> and <code><i></code> in HTML5. <code><b></code> is meant to highlight words or phrases without conveying additional importance while <code><i></code> is mostly for voice, technical terms, etc.</p>
</div>
<h3>Alignment classes</h3>
<p>Easily realign text to components with text alignment classes.</p>
<div class="bs-example">
<p class="text-left">Left aligned text.</p>
<p class="text-center">Center aligned text.</p>
<p class="text-right">Right aligned text.</p>
</div>
{% highlight html %}
<p class="text-left">Left aligned text.</p>
<p class="text-center">Center aligned text.</p>
<p class="text-right">Right aligned text.</p>
{% endhighlight %}
<h3>Emphasis classes</h3>
<p>Convey meaning through color with a handful of emphasis utility classes. These may also be applied to links and will darken on hover just like our default link styles.</p>
<div class="bs-example">
<p class="text-muted">Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.</p>
<p class="text-primary">Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
<p class="text-success">Duis mollis, est non commodo luctus, nisi erat porttitor ligula.</p>
<p class="text-info">Maecenas sed diam eget risus varius blandit sit amet non magna.</p>
<p class="text-warning">Etiam porta sem malesuada magna mollis euismod.</p>
<p class="text-danger">Donec ullamcorper nulla non metus auctor fringilla.</p>
</div>
{% highlight html %}
<p class="text-muted">...</p>
<p class="text-primary">...</p>
<p class="text-success">...</p>
<p class="text-info">...</p>
<p class="text-warning">...</p>
<p class="text-danger">...</p>
{% endhighlight %}
<div class="bs-callout bs-callout-info">
<h4>Dealing with specificity</h4>
<p>Sometimes emphasis classes cannot be applied due to the specificity of another selector. In most cases, a sufficient workaround is to wrap your text in a <code><span></code> with the class.</p>
</div>
<!-- Abbreviations -->
<h2 id="type-abbreviations">Abbreviations</h2>
<p>Stylized implementation of HTML's <code><abbr></code> element for abbreviations and acronyms to show the expanded version on hover. Abbreviations with a <code>title</code> attribute have a light dotted bottom border and a help cursor on hover, providing additional context on hover.</p>
<h3>Basic abbreviation</h3>
<p>For expanded text on long hover of an abbreviation, include the <code>title</code> attribute with the <code><abbr></code> element.</p>
<div class="bs-example">
<p>An abbreviation of the word attribute is <abbr title="attribute">attr</abbr>.</p>
</div>
{% highlight html %}
<abbr title="attribute">attr</abbr>
{% endhighlight %}
<h3>Initialism</h3>
<p>Add <code>.initialism</code> to an abbreviation for a slightly smaller font-size.</p>
<div class="bs-example">
<p><abbr title="HyperText Markup Language" class="initialism">HTML</abbr> is the best thing since sliced bread.</p>
</div>
{% highlight html %}
<abbr title="HyperText Markup Language" class="initialism">HTML</abbr>
{% endhighlight %}
<!-- Addresses -->
<h2 id="type-addresses">Addresses</h2>
<p>Present contact information for the nearest ancestor or the entire body of work. Preserve formatting by ending all lines with <code><br></code>.</p>
<div class="bs-example">
<address>
<strong>Twitter, Inc.</strong><br>
795 Folsom Ave, Suite 600<br>
San Francisco, CA 94107<br>
<abbr title="Phone">P:</abbr> (123) 456-7890
</address>
<address>
<strong>Full Name</strong><br>
<a href="mailto:#">first.last@example.com</a>
</address>
</div>
{% highlight html %}
<address>
<strong>Twitter, Inc.</strong><br>
795 Folsom Ave, Suite 600<br>
San Francisco, CA 94107<br>
<abbr title="Phone">P:</abbr> (123) 456-7890
</address>
<address>
<strong>Full Name</strong><br>
<a href="mailto:#">first.last@example.com</a>
</address>
{% endhighlight %}
<!-- Blockquotes -->
<h2 id="type-blockquotes">Blockquotes</h2>
<p>For quoting blocks of content from another source within your document.</p>
<h3>Default blockquote</h3>
<p>Wrap <code><blockquote></code> around any <abbr title="HyperText Markup Language">HTML</abbr> as the quote. For straight quotes, we recommend a <code><p></code>.</p>
<div class="bs-example">
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
</blockquote>
</div>
{% highlight html %}
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
</blockquote>
{% endhighlight %}
<h3>Blockquote options</h3>
<p>Style and content changes for simple variations on a standard <code><blockquote></code>.</p>
<h4>Naming a source</h4>
<p>Add <code><small></code> tag for identifying the source. Wrap the name of the source work in <code><cite></code>.</p>
<div class="bs-example">
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<small>Someone famous in <cite title="Source Title">Source Title</cite></small>
</blockquote>
</div>
{% highlight html %}
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<small>Someone famous in <cite title="Source Title">Source Title</cite></small>
</blockquote>
{% endhighlight %}
<h4>Alternate displays</h4>
<p>Use <code>.pull-right</code> for a floated, right-aligned blockquote.</p>
<div class="bs-example" style="overflow: hidden;">
<blockquote class="pull-right">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<small>Someone famous in <cite title="Source Title">Source Title</cite></small>
</blockquote>
</div>
{% highlight html %}
<blockquote class="pull-right">
...
</blockquote>
{% endhighlight %}
<!-- Lists -->
<h2 id="type-lists">Lists</h2>
<h3>Unordered</h3>
<p>A list of items in which the order does <em>not</em> explicitly matter.</p>
<div class="bs-example">
<ul>
<li>Lorem ipsum dolor sit amet</li>
<li>Consectetur adipiscing elit</li>
<li>Integer molestie lorem at massa</li>
<li>Facilisis in pretium nisl aliquet</li>
<li>Nulla volutpat aliquam velit
<ul>
<li>Phasellus iaculis neque</li>
<li>Purus sodales ultricies</li>
<li>Vestibulum laoreet porttitor sem</li>
<li>Ac tristique libero volutpat at</li>
</ul>
</li>
<li>Faucibus porta lacus fringilla vel</li>
<li>Aenean sit amet erat nunc</li>
<li>Eget porttitor lorem</li>
</ul>
</div>
{% highlight html %}
<ul>
<li>...</li>
</ul>
{% endhighlight %}
<h3>Ordered</h3>
<p>A list of items in which the order <em>does</em> explicitly matter.</p>
<div class="bs-example">
<ol>
<li>Lorem ipsum dolor sit amet</li>
<li>Consectetur adipiscing elit</li>
<li>Integer molestie lorem at massa</li>
<li>Facilisis in pretium nisl aliquet</li>
<li>Nulla volutpat aliquam velit</li>
<li>Faucibus porta lacus fringilla vel</li>
<li>Aenean sit amet erat nunc</li>
<li>Eget porttitor lorem</li>
</ol>
</div>
{% highlight html %}
<ol>
<li>...</li>
</ol>
{% endhighlight %}
<h3>Unstyled</h3>
<p>Remove the default <code>list-style</code> and left margin on list items (immediate children only). <strong>This only applies to immediate children list items</strong>, meaning you will need to add the class for any nested lists as well.</p>
<div class="bs-example">
<ul class="list-unstyled">
<li>Lorem ipsum dolor sit amet</li>
<li>Consectetur adipiscing elit</li>
<li>Integer molestie lorem at massa</li>
<li>Facilisis in pretium nisl aliquet</li>
<li>Nulla volutpat aliquam velit
<ul>
<li>Phasellus iaculis neque</li>
<li>Purus sodales ultricies</li>
<li>Vestibulum laoreet porttitor sem</li>
<li>Ac tristique libero volutpat at</li>
</ul>
</li>
<li>Faucibus porta lacus fringilla vel</li>
<li>Aenean sit amet erat nunc</li>
<li>Eget porttitor lorem</li>
</ul>
</div>
{% highlight html %}
<ul class="list-unstyled">
<li>...</li>
</ul>
{% endhighlight %}
<h3>Inline</h3>
<p>Place all list items on a single line with <code>display: inline-block;</code> and some light padding.</p>
<div class="bs-example">
<ul class="list-inline">
<li>Lorem ipsum</li>
<li>Phasellus iaculis</li>
<li>Nulla volutpat</li>
</ul>
</div>
{% highlight html %}
<ul class="list-inline">
<li>...</li>
</ul>
{% endhighlight %}
<h3>Description</h3>
<p>A list of terms with their associated descriptions.</p>
<div class="bs-example">
<dl>
<dt>Description lists</dt>
<dd>A description list is perfect for defining terms.</dd>
<dt>Euismod</dt>
<dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd>
<dd>Donec id elit non mi porta gravida at eget metus.</dd>
<dt>Malesuada porta</dt>
<dd>Etiam porta sem malesuada magna mollis euismod.</dd>
</dl>
</div>
{% highlight html %}
<dl>
<dt>...</dt>
<dd>...</dd>
</dl>
{% endhighlight %}
<h4>Horizontal description</h4>
<p>Make terms and descriptions in <code><dl></code> line up side-by-side. Starts off stacked like default <code><dl></code>s, but when the navbar expands, so do these.</p>
<div class="bs-example">
<dl class="dl-horizontal">
<dt>Description lists</dt>
<dd>A description list is perfect for defining terms.</dd>
<dt>Euismod</dt>
<dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd>
<dd>Donec id elit non mi porta gravida at eget metus.</dd>
<dt>Malesuada porta</dt>
<dd>Etiam porta sem malesuada magna mollis euismod.</dd>
<dt>Felis euismod semper eget lacinia</dt>
<dd>Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</dd>
</dl>
</div>
{% highlight html %}
<dl class="dl-horizontal">
<dt>...</dt>
<dd>...</dd>
</dl>
{% endhighlight %}
<div class="bs-callout bs-callout-info">
<h4>Auto-truncating</h4>
<p>Horizontal description lists will truncate terms that are too long to fit in the left column with <code>text-overflow</code>. In narrower viewports, they will change to the default stacked layout.</p>
</div>
</div>
<!-- Code
================================================== -->
<div class="bs-docs-section">
<div class="page-header">
<h1 id="code">Code</h1>
</div>
<h2>Inline</h2>
<p>Wrap inline snippets of code with <code><code></code>.</p>
<div class="bs-example">
For example, <code><section></code> should be wrapped as inline.
</div>
{% highlight html %}
For example, <code><section></code> should be wrapped as inline.
{% endhighlight %}
<h2>Basic block</h2>
<p>Use <code><pre></code> for multiple lines of code. Be sure to escape any angle brackets in the code for proper rendering.</p>
<div class="bs-example">
<pre><p>Sample text here...</p></pre>
</div>
{% highlight html %}
<pre><p>Sample text here...</p></pre>
{% endhighlight %}
<p>You may optionally add the <code>.pre-scrollable</code> class, which will set a max-height of 350px and provide a y-axis scrollbar.</p>
</div>
<!-- Tables
================================================== -->
<div class="bs-docs-section">
<div class="page-header">
<h1 id="tables">Tables</h1>
</div>
<h2 id="tables-example">Basic example</h2>
<p>For basic styling—light padding and only horizontal dividers—add the base class <code>.table</code> to any <code><table></code>. It may seem super redundant, but given the widespread use of tables for other plugins like calendars and date pickers, we've opted to isolate our custom table styles.</p>
<div class="bs-example">
<table class="table">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div><!-- /example -->
{% highlight html %}
<table class="table">
...
</table>
{% endhighlight %}
<h2 id="tables-striped">Striped rows</h2>
<p>Use <code>.table-striped</code> to add zebra-striping to any table row within the <code><tbody></code>.</p>
<div class="bs-callout bs-callout-danger">
<h4>Cross-browser compatibility</h4>
<p>Striped tables are styled via the <code>:nth-child</code> CSS selector, which is not available in Internet Explorer 8.</p>
</div>
<div class="bs-example">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div><!-- /example -->
{% highlight html %}
<table class="table table-striped">
...
</table>
{% endhighlight %}
<h2 id="tables-bordered">Bordered table</h2>
<p>Add <code>.table-bordered</code> for borders on all sides of the table and cells.</p>
<div class="bs-example">
<table class="table table-bordered">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>Mark</td>
<td>Otto</td>
<td>@TwBootstrap</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div><!-- /example -->
{% highlight html %}
<table class="table table-bordered">
...
</table>
{% endhighlight %}
<h2 id="tables-hover-rows">Hover rows</h2>
<p>Add <code>.table-hover</code> to enable a hover state on table rows within a <code><tbody></code>.</p>
<div class="bs-example">
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div><!-- /example -->
{% highlight html %}
<table class="table table-hover">
...
</table>
{% endhighlight %}
<h2 id="tables-condensed">Condensed table</h2>
<p>Add <code>.table-condensed</code> to make tables more compact by cutting cell padding in half.</p>
<div class="bs-example">
<table class="table table-condensed">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div><!-- /example -->
{% highlight html %}
<table class="table table-condensed">
...
</table>
{% endhighlight %}
<h2 id="tables-contextual-classes">Contextual classes</h2>
<p>Use contextual classes to color table rows or individual cells.</p>
<div class="table-responsive">
<table class="table table-bordered table-striped">
<colgroup>
<col class="col-lg-1">
<col class="col-lg-7">
</colgroup>
<thead>
<tr>
<th>Class</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code>.active</code>
</td>
<td>Applies the hover color to a particular row or cell</td>
</tr>
<tr>
<td>
<code>.success</code>
</td>
<td>Indicates a successful or positive action</td>
</tr>
<tr>
<td>
<code>.warning</code>
</td>
<td>Indicates a warning that might need attention</td>
</tr>
<tr>
<td>
<code>.danger</code>
</td>
<td>Indicates a dangerous or potentially negative action</td>
</tr>
</tbody>
</table>
</div>
<div class="bs-example">
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Column heading</th>
<th>Column heading</th>
<th>Column heading</th>
</tr>
</thead>
<tbody>
<tr class="active">
<td>1</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr>
<td>2</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="success">
<td>3</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr>
<td>4</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="warning">
<td>5</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr>
<td>6</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="danger">
<td>7</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
</tbody>
</table>
</div><!-- /example -->
{% highlight html %}
<!-- On rows -->
<tr class="active">...</tr>
<tr class="success">...</tr>
<tr class="warning">...</tr>
<tr class="danger">...</tr>
<!-- On cells (`td` or `th`) -->
<tr>
<td class="active">...</td>
<td class="success">...</td>
<td class="warning">...</td>
<td class="danger">...</td>
</tr>
{% endhighlight %}
<h2 id="tables-responsive">Responsive tables</h2>
<p>Create responsive tables by wrapping any <code>.table</code> in <code>.table-responsive</code> to make them scroll horizontally up to small devices (under 768px). When viewing on anything larger than 768px wide, you will not see any difference in these tables.</p>
<div class="bs-example">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
<tr>
<td>2</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
<tr>
<td>3</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
</tbody>
</table>
</div><!-- /.table-responsive -->
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th>#</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
<tr>
<td>2</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
<tr>
<td>3</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
</tbody>
</table>
</div><!-- /.table-responsive -->
</div><!-- /example -->
{% highlight html %}
<div class="table-responsive">
<table class="table">
...
</table>
</div>
{% endhighlight %}
</div>
<!-- Forms
================================================== -->
<div class="bs-docs-section">
<div class="page-header">
<h1 id="forms">Forms</h1>
</div>
<h2 id="forms-example">Basic example</h2>
<p>Individual form controls automatically receive some global styling. All textual <code><input></code>, <code><textarea></code>, and <code><select></code> elements with <code>.form-control</code> are set to <code>width: 100%;</code> by default. Wrap labels and controls in <code>.form-group</code> for optimum spacing.</p>
<div class="bs-example">
<form role="form">
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
<div class="form-group">
<label for="exampleInputFile">File input</label>
<input type="file" id="exampleInputFile">
<p class="help-block">Example block-level help text here.</p>
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Check me out
</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div><!-- /example -->
{% highlight html %}
<form role="form">
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
<div class="form-group">
<label for="exampleInputFile">File input</label>
<input type="file" id="exampleInputFile">
<p class="help-block">Example block-level help text here.</p>
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Check me out
</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
{% endhighlight %}
<h2 id="forms-inline">Inline form</h2>
<p>Add <code>.form-inline</code> for left-aligned and inline-block controls for a compact layout.</p>
<div class="bs-callout bs-callout-danger">
<h4>Requires custom widths</h4>
<p>Inputs, selects, and textareas are 100% wide by default in {{ site.app_name }}. To use the inline form, you'll have to set a width on the form controls used within.</p>
</div>
<div class="bs-callout bs-callout-danger">
<h4>Always add labels</h4>
<p>Screen readers will have trouble with your forms if you don't include a label for every input. For these inline forms, you can hide the labels using the <code>.sr-only</code> class.</p>
</div>
<div class="bs-example">
<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>
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
<button type="submit" class="btn btn-default">Sign in</button>
</form>
</div><!-- /example -->
{% highlight html %}
<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>
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
<button type="submit" class="btn btn-default">Sign in</button>
</form>
{% endhighlight %}
<h2 id="forms-horizontal">Horizontal form</h2>
<p>Use {{ site.app_name }}'s predefined grid classes to align labels and groups of form controls in a horizontal layout by adding <code>.form-horizontal</code> to the form. Doing so changes <code>.form-group</code>s to behave as grid rows, so no need for <code>.row</code>.</p>
<div class="bs-example">
<form class="form-horizontal">
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="inputPassword3" placeholder="Password">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Sign in</button>
</div>
</div>
</form>
</div><!-- /.bs-example -->
{% highlight html %}
<form class="form-horizontal" role="form">
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="inputPassword3" placeholder="Password">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Sign in</button>
</div>
</div>
</form>
{% endhighlight %}
<h2 id="forms-controls">Supported controls</h2>
<p>Examples of standard form controls supported in an example form layout.</p>
<h3>Inputs</h3>
<p>Most common form control, text-based input fields. Includes support for all HTML5 types: <code>text</code>, <code>password</code>, <code>datetime</code>, <code>datetime-local</code>, <code>date</code>, <code>month</code>, <code>time</code>, <code>week</code>, <code>number</code>, <code>email</code>, <code>url</code>, <code>search</code>, <code>tel</code>, and <code>color</code>.</p>
<div class="bs-callout bs-callout-danger">
<h4>Type declaration required</h4>
<p>Inputs will only be fully styled if their <code>type</code> is properly declared.</p>
</div>
<div class="bs-example">
<form role="form">
<input type="text" class="form-control" placeholder="Text input">
</form>
</div><!-- /.bs-example -->
{% highlight html %}
<input type="text" class="form-control" placeholder="Text input">
{% endhighlight %}
<h3>Textarea</h3>
<p>Form control which supports multiple lines of text. Change <code>rows</code> attribute as necessary.</p>
<div class="bs-example">
<form role="form">
<textarea class="form-control" rows="3"></textarea>
</form>
</div><!-- /.bs-example -->
{% highlight html %}
<textarea class="form-control" rows="3"></textarea>
{% endhighlight %}
<h3>Checkboxes and radios</h3>
<p>Checkboxes are for selecting one or several options in a list while radios are for selecting one option from many.</p>
<h4>Default (stacked)</h4>
<div class="bs-example">
<form role="form">
<div class="checkbox">
<label>
<input type="checkbox" value="">
Option one is this and that—be sure to include why it's great
</label>
</div>
<br>
<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>
</form>
</div><!-- /.bs-example -->
{% highlight html %}
<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>
{% endhighlight %}
<h4>Inline checkboxes</h4>
<p>Use <code>.checkbox-inline</code> or <code>.radio-inline</code> class to a series of checkboxes or radios for controls appear on the same line.</p>
<div class="bs-example">
<form role="form">
<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>
</form>
</div><!-- /.bs-example -->
{% highlight html %}
<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>
{% endhighlight %}
<h3>Selects</h3>
<p>Use the default option, or add <code>multiple</code> to show multiple options at once.</p>
<div class="bs-example">
<form role="form">
<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>
</form>
</div><!-- /.bs-example -->
{% highlight html %}
<select class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
<select multiple class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
{% endhighlight %}
<h2 id="forms-controls-static">Static control</h2>
<p>When you need to place plain text next to a form label within a horizontal form, use the <code>.form-control-static</code> class on a <code><p></code>.</p>
<div class="bs-example">
<form class="form-horizontal" role="form">
<div class="form-group">
<label class="col-lg-2 control-label">Email</label>
<div class="col-lg-10">
<p class="form-control-static">email@example.com</p>
</div>
</div>
<div class="form-group">
<label for="inputPassword" class="col-lg-2 control-label">Password</label>
<div class="col-lg-10">
<input type="password" class="form-control" id="inputPassword" placeholder="Password">
</div>
</div>
</form>
</div><!-- /.bs-example -->
{% highlight html %}
<form class="form-horizontal" role="form">
<div class="form-group">
<label class="col-lg-2 control-label">Email</label>
<div class="col-lg-10">
<p class="form-control-static">email@example.com</p>
</div>
</div>
<div class="form-group">
<label for="inputPassword" class="col-lg-2 control-label">Password</label>
<div class="col-lg-10">
<input type="password" class="form-control" id="inputPassword" placeholder="Password">
</div>
</div>
</form>
{% endhighlight %}
<h2 id="forms-control-states">Form states</h2>
<p>Provide feedback to users or visitors with basic feedback states on form controls and labels.</p>
<h3 id="forms-input-focus">Input focus</h3>
<p>We remove the default <code>outline</code> styles on some form controls and apply a <code>box-shadow</code> in its place for <code>:focus</code>.</p>
<div class="bs-example">
<form role="form">
<input class="form-control" id="focusedInput" type="text" value="This is focused...">
</form>
</div>
{% highlight html %}
<input class="form-control" id="focusedInput" type="text" value="This is focused...">
{% endhighlight %}
<h3 id="forms-disabled-inputs">Disabled inputs</h3>
<p>Add the <code>disabled</code> attribute on an input to prevent user input and trigger a slightly different look.</p>
<div class="bs-example">
<form role="form">
<input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here…" disabled>
</form>
</div><!-- /.bs-example -->
{% highlight html %}
<input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here..." disabled>
{% endhighlight %}
<h3 id="forms-disabled-fieldsets">Disabled fieldsets</h3>
<p>Add the <code>disabled</code> attribute to a <code><fieldset></code> to disable all the controls within the <code><fieldset></code> at once.</p>
<div class="bs-callout bs-callout-warning">
<h4>Link functionality of <code><a></code> not impacted</h4>
<p>This class will only change the appearance of <code><a class="btn btn-default"></code> buttons, not their functionality. Use custom JavaScript to disable links here.</p>
</div>
<div class="bs-callout bs-callout-danger">
<h4>Cross-browser compatibility</h4>
<p>While {{ site.app_name }} will apply these styles in all browsers, Internet Explorer 9 and below don't actually support the <code>disabled</code> attribute on a <code><fieldset></code>. Use custom JavaScript to disable the fieldset in these browsers.</p>
</div>
<div class="bs-example">
<form role="form">
<fieldset disabled>
<div class="form-group">
<label for="disabledTextInput">Disabled input</label>
<input type="text" id="disabledTextInput" class="form-control" placeholder="Disabled input">
</div>
<div class="form-group">
<label for="disabledSelect">Disabled select menu</label>
<select id="disabledSelect" class="form-control">
<option>Disabled select</option>
</select>
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Can't check this
</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</fieldset>
</form>
</div><!-- /.bs-example -->
{% highlight html %}
<form role="form">
<fieldset disabled>
<div class="form-group">
<label for="disabledTextInput">Disabled input</label>
<input type="text" id="disabledTextInput" class="form-control" placeholder="Disabled input">
</div>
<div class="form-group">
<label for="disabledSelect">Disabled select menu</label>
<select id="disabledSelect" class="form-control">
<option>Disabled select</option>
</select>
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Can't check this
</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</fieldset>
</form>
{% endhighlight %}
<h3 id="forms-validation">Validation states</h3>
<p>{{ site.app_name }} includes validation styles for error, warning, and success states on form controls. To use, add <code>.has-warning</code>, <code>.has-error</code>, or <code>.has-success</code> to the parent element. Any <code>.control-label</code>, <code>.form-control</code>, and <code>.help-block</code> within that element will receive the validation styles.</p>
<div class="bs-example">
<form role="form">
<div class="form-group has-success">
<label class="control-label" for="inputSuccess">Input with success</label>
<input type="text" class="form-control" id="inputSuccess">
</div>
<div class="form-group has-warning">
<label class="control-label" for="inputWarning">Input with warning</label>
<input type="text" class="form-control" id="inputWarning">
</div>
<div class="form-group has-error">
<label class="control-label" for="inputError">Input with error</label>
<input type="text" class="form-control" id="inputError">
</div>
</form>
</div><!-- /.bs-example -->
{% highlight html %}
<div class="form-group has-success">
<label class="control-label" for="inputSuccess">Input with success</label>
<input type="text" class="form-control" id="inputSuccess">
</div>
<div class="form-group has-warning">
<label class="control-label" for="inputWarning">Input with warning</label>
<input type="text" class="form-control" id="inputWarning">
</div>
<div class="form-group has-error">
<label class="control-label" for="inputError">Input with error</label>
<input type="text" class="form-control" id="inputError">
</div>
{% endhighlight %}
<h2 id="forms-control-sizes">Control sizing</h2>
<p>Set heights using classes like <code>.input-lg</code>, and set widths using grid column classes like <code>.col-lg-*</code>.</p>
<h3>Height sizing</h3>
<p>Create larger or smaller form controls that match button sizes.</p>
<div class="bs-example bs-example-control-sizing">
<form role="form">
<div class="controls">
<input class="form-control input-lg" type="text" placeholder=".input-lg">
<input type="text" class="form-control" placeholder="Default input">
<input class="form-control input-sm" type="text" placeholder=".input-sm">
<select class="form-control input-lg">
<option value="">.input-lg</option>
</select>
<select class="form-control">
<option value="">Default select</option>
</select>
<select class="form-control input-sm">
<option value="">.input-sm</option>
</select>
</div>
</form>
</div><!-- /.bs-example -->
{% highlight html %}
<input class="form-control input-lg" type="text" placeholder=".input-lg">
<input class="form-control" type="text" placeholder="Default input">
<input class="form-control input-sm" type="text" placeholder=".input-sm">
<select class="form-control input-lg">...</select>
<select class="form-control">...</select>
<select class="form-control input-sm">...</select>
{% endhighlight %}
<h3>Column sizing</h3>
<p>Wrap inputs in grid columns, or any custom parent element, to easily enforce desired widths.</p>
<div class="bs-example">
<form role="form">
<div class="row">
<div class="col-lg-2">
<input type="text" class="form-control" placeholder=".col-lg-2">
</div>
<div class="col-lg-3">
<input type="text" class="form-control" placeholder=".col-lg-3">
</div>
<div class="col-lg-4">
<input type="text" class="form-control" placeholder=".col-lg-4">
</div>
</div>
</form>
</div><!-- /.bs-example -->
{% highlight html %}
<div class="row">
<div class="col-lg-2">
<input type="text" class="form-control" placeholder=".col-lg-2">
</div>
<div class="col-lg-3">
<input type="text" class="form-control" placeholder=".col-lg-3">
</div>
<div class="col-lg-4">
<input type="text" class="form-control" placeholder=".col-lg-4">
</div>
</div>
{% endhighlight %}
<h2 id="forms-help-text">Help text</h2>
<p>Block level help text for form controls.</p>
<div class="bs-example">
<form role="form">
<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>
</form>
</div><!-- /.bs-example -->
{% highlight html %}
<span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>
{% endhighlight %}
</div>
<!-- Buttons
================================================== -->
<div class="bs-docs-section">
<div class="page-header">
<h1 id="buttons">Buttons</h1>
</div>
<h2 id="buttons-options">Options</h2>
<p>Use any of the available button classes to quickly create a styled button.</p>
<div class="bs-example">
<button type="button" class="btn btn-default">Default</button>
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-success">Success</button>
<button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-link">Link</button>
</div>
{% highlight html %}
<!-- Standard button -->
<button type="button" class="btn btn-default">Default</button>
<!-- Provides extra visual weight and identifies the primary action in a set of buttons -->
<button type="button" class="btn btn-primary">Primary</button>
<!-- Indicates a successful or positive action -->
<button type="button" class="btn btn-success">Success</button>
<!-- Contextual button for informational alert messages -->
<button type="button" class="btn btn-info">Info</button>
<!-- Indicates caution should be taken with this action -->
<button type="button" class="btn btn-warning">Warning</button>
<!-- Indicates a dangerous or potentially negative action -->
<button type="button" class="btn btn-danger">Danger</button>
<!-- Deemphasize a button by making it look like a link while maintaining button behavior -->
<button type="button" class="btn btn-link">Link</button>
{% endhighlight %}
<h2 id="buttons-sizes">Sizes</h2>
<p>Fancy larger or smaller buttons? Add <code>.btn-lg</code>, <code>.btn-sm</code>, or <code>.btn-xs</code> for additional sizes.</p>
<div class="bs-example">
<p>
<button type="button" class="btn btn-primary btn-lg">Large button</button>
<button type="button" class="btn btn-default btn-lg">Large button</button>
</p>
<p>
<button type="button" class="btn btn-primary">Default button</button>
<button type="button" class="btn btn-default">Default button</button>
</p>
<p>
<button type="button" class="btn btn-primary btn-sm">Small button</button>
<button type="button" class="btn btn-default btn-sm">Small button</button>
</p>
<p>
<button type="button" class="btn btn-primary btn-xs">Extra small button</button>
<button type="button" class="btn btn-default btn-xs">Extra small button</button>
</p>
</div>
{% highlight html %}
<p>
<button type="button" class="btn btn-primary btn-lg">Large button</button>
<button type="button" class="btn btn-default btn-lg">Large button</button>
</p>
<p>
<button type="button" class="btn btn-primary">Default button</button>
<button type="button" class="btn btn-default">Default button</button>
</p>
<p>
<button type="button" class="btn btn-primary btn-sm">Small button</button>
<button type="button" class="btn btn-default btn-sm">Small button</button>
</p>
<p>
<button type="button" class="btn btn-primary btn-xs">Extra small button</button>
<button type="button" class="btn btn-default btn-xs">Extra small button</button>
</p>
{% endhighlight %}
<p>Create block level buttons—those that span the full width of a parent— by adding <code>.btn-block</code>.</p>
<div class="bs-example">
<div class="well" style="max-width: 400px; margin: 0 auto 10px;">
<button type="button" class="btn btn-primary btn-lg btn-block">Block level button</button>
<button type="button" class="btn btn-default btn-lg btn-block">Block level button</button>
</div>
</div>
{% highlight html %}
<button type="button" class="btn btn-primary btn-lg btn-block">Block level button</button>
<button type="button" class="btn btn-default btn-lg btn-block">Block level button</button>
{% endhighlight %}
<h2 id="buttons-active">Active state</h2>
<p>Buttons will appear pressed (with a darker background, darker border, and inset shadow) when active. For <code><button></code> elements, this is done via <code>:active</code>. For <code><a></code> elements, it's done with <code>.active</code>. However, you may use <code>.active</code> <code><button></code>s should you need to replicate the active state progammatically.</p>
<h3>Button element</h3>
<p>No need to add <code>:active</code> as it's a pseudo-class, but if you need to force the same appearance, go ahead and add <code>.active</code>.</p>
<p class="bs-example">
<button type="button" class="btn btn-primary btn-lg active">Primary button</button>
<button type="button" class="btn btn-default btn-lg active">Button</button>
</p>
{% highlight html %}
<button type="button" class="btn btn-primary btn-lg active">Primary button</button>
<button type="button" class="btn btn-default btn-lg active">Button</button>
{% endhighlight %}
<h3>Anchor element</h3>
<p>Add the <code>.active</code> class to <code><a></code> buttons.</p>
<p class="bs-example">
<a href="#" class="btn btn-primary btn-lg active" role="button">Primary link</a>
<a href="#" class="btn btn-default btn-lg active" role="button">Link</a>
</p>
{% highlight html %}
<a href="#" class="btn btn-primary btn-lg active" role="button">Primary link</a>
<a href="#" class="btn btn-default btn-lg active" role="button">Link</a>
{% endhighlight %}
<h2 id="buttons-disabled">Disabled state</h2>
<p>Make buttons look unclickable by fading them back 50%.</p>
<h3>Button element</h3>
<p>Add the <code>disabled</code> attribute to <code><button></code> buttons.</p>
<p class="bs-example">
<button type="button" class="btn btn-primary btn-lg" disabled="disabled">Primary button</button>
<button type="button" class="btn btn-default btn-lg" disabled="disabled">Button</button>
</p>
{% highlight html %}
<button type="button" class="btn btn-lg btn-primary" disabled="disabled">Primary button</button>
<button type="button" class="btn btn-default btn-lg" disabled="disabled">Button</button>
{% endhighlight %}
<div class="bs-callout bs-callout-danger">
<h4>Cross-browser compatibility</h4>
<p>If you add the <code>disabled</code> attribute to a <code><button></code>, Internet Explorer 9 and below will render text gray with a nasty text-shadow that we cannot fix.</p>
</div>
<h3>Anchor element</h3>
<p>Add the <code>.disabled</code> class to <code><a></code> buttons.</p>
<p class="bs-example">
<a href="#" class="btn btn-primary btn-lg disabled" role="button">Primary link</a>
<a href="#" class="btn btn-default btn-lg disabled" role="button">Link</a>
</p>
{% highlight html %}
<a href="#" class="btn btn-primary btn-lg disabled" role="button">Primary link</a>
<a href="#" class="btn btn-default btn-lg disabled" role="button">Link</a>
{% endhighlight %}
<p>
We use <code>.disabled</code> as a utility class here, similar to the common <code>.active</code> class, so no prefix is required.
</p>
<div class="bs-callout bs-callout-warning">
<h4>Link functionality not impacted</h4>
<p>This class will only change the <code><a></code>'s appearance, not its functionality. Use custom JavaScript to disable links here.</p>
</div>
<h2 id="buttons-tags">Button tags</h2>
<p>Use the button classes on an <code><a></code>, <code><button></code>, or <code><input></code> element.</p>
<form class="bs-example">
<a class="btn btn-default" href="#" role="button">Link</a>
<button class="btn btn-default" type="submit">Button</button>
<input class="btn btn-default" type="button" value="Input">
<input class="btn btn-default" type="submit" value="Submit">
</form>
{% highlight html %}
<a class="btn btn-default" href="#" role="button">Link</a>
<button class="btn btn-default" type="submit">Button</button>
<input class="btn btn-default" type="button" value="Input">
<input class="btn btn-default" type="submit" value="Submit">
{% endhighlight %}
<div class="bs-callout bs-callout-warning">
<h4>Cross-browser rendering</h4>
<p>As a best practice, <strong>we highly recommend using the <code><button></code> element whenever possible</strong> to ensure matching cross-browser rendering.</p>
<p>Among other things, there's <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=697451">a Firefox bug</a> that prevents us from setting the <code>line-height</code> of <code><input></code>-based buttons, causing them to not exactly match the height of other buttons on Firefox.</p>
</div>
</div>
<!-- Images
================================================== -->
<div class="bs-docs-section">
<div class="page-header">
<h1 id="images">Images</h1>
</div>
<p>Add classes to an <code><img></code> element to easily style images in any project.</p>
<div class="bs-callout bs-callout-danger">
<h4>Cross-browser compatibility</h4>
<p>Keep in mind that Internet Explorer 8 lacks support for rounded corners.</p>
</div>
<div class="bs-example bs-example-images">
<img data-src="holder.js/140x140" src="data:image/png;base64," class="img-rounded" alt="A generic square placeholder image with rounded corners">
<img data-src="holder.js/140x140" src="data:image/png;base64," class="img-circle" alt="A generic square placeholder image where only the portion within the circle circumscribed about said square is visible">
<img data-src="holder.js/140x140" src="data:image/png;base64," class="img-thumbnail" alt="A generic square placeholder image with a white border around it, making it resemble a photograph taken with an old instant camera">
</div>
{% highlight html %}
<img src="..." alt="..." class="img-rounded">
<img src="..." alt="..." class="img-circle">
<img src="..." alt="..." class="img-thumbnail">
{% endhighlight %}
<div class="bs-callout bs-callout-warning">
<h4>Responsive images</h4>
<p>Looking for how to make images more responsive? <a href="../css#overview-responsive-images">Check out the responsive images section</a> up top.</p>
</div>
</div>
<!-- Helpers
================================================== -->
<div class="bs-docs-section">
<div class="page-header">
<h1 id="helper-classes">Helper classes</h1>
</div>
<h3 id="helper-classes-close">Close icon</h3>
<p>Use the generic close icon for dismissing content like modals and alerts.</p>
<div class="bs-example">
<p><button type="button" class="close" aria-hidden="true">×</button></p>
</div>
{% highlight html %}
<button type="button" class="close" aria-hidden="true">×</button>
{% endhighlight %}
<h3 id="helper-classes-floats">Quick floats</h3>
<p>Float an element to the left or right with a class. <code>!important</code> is included to avoid specificity issues. Classes can also be used as mixins.</p>
{% highlight html %}
<div class="pull-left">...</div>
<div class="pull-right">...</div>
{% endhighlight %}
{% highlight css %}
// Classes
.pull-left {
float: left !important;
}
.pull-right {
float: right !important;
}
// Usage as mixins
.element {
.pull-left();
}
.another-element {
.pull-right();
}
{% endhighlight %}
<div class="bs-callout bs-callout-warning">
<h4>Not for use in navbars</h4>
<p>To align components in navbars with utility classes, use <code>.navbar-left</code> or <code>.navbar-right</code> instead. <a href="../components/#navbar-component-alignment">See the navbar docs</a> for details.</p>
</div>
<h3 id="helper-classes-center">Center content blocks</h3>
<p>Set an element to <code>display: block</code> and center via <code>margin</code>. Available as a mixin and class.</p>
{% highlight html %}
<div class="center-block">...</div>
{% endhighlight %}
{% highlight css %}
// Classes
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
// Usage as mixins
.element {
.center-block();
}
{% endhighlight %}
<h3 id="helper-classes-clearfix">Clearfix</h3>
<p>Clear the <code>float</code> on any element with the <code>.clearfix</code> class. Utilizes <a href="http://nicolasgallagher.com/micro-clearfix-hack/">the micro clearfix</a> as popularized by Nicolas Gallagher. Can also be used as a mixin.</p>
{% highlight html %}
<!-- Usage as a class -->
<div class="clearfix">...</div>
{% endhighlight %}
{% highlight css %}
// Mixin itself
.clearfix() {
&:before,
&:after {
content: " ";
display: table;
}
&:after {
clear: both;
}
}
// Usage as a Mixin
.element {
.clearfix();
}
{% endhighlight %}
<h3 id="helper-classes-show-hide">Showing and hiding content</h3>
<p>Force an element to be shown or hidden via <code>display</code> with the use of <code>.show</code> and <code>.hide</code> classes. These classes use <code>!important</code> to avoid specificity conflicts, just like the <a href="../css/#helper-classes-floats">quick floats</a>. They are only available for block level toggling. They can also be used as mixins.</p>
{% highlight html %}
<div class="show">...</div>
<div class="hide">...</div>
{% endhighlight %}
{% highlight css %}
// Classes
.show {
display: block !important;
}
.hide {
display: none !important;
}
// Usage as mixins
.element {
.show();
}
.another-element {
.hide();
}
{% endhighlight %}
<h3 id="helper-classes-screen-readers">Screen reader content</h3>
<p>Hide an element everywhere, <strong>including screen readers</strong>, with <code>.hidden</code>. Can also be used as a mixin.</p>
{% highlight html %}
<div class="hidden"></div>
{% endhighlight %}
{% highlight css %}
// Usage as a Mixin
.example {
.hidden();
}
{% endhighlight %}
<p>Hide an element to all devices <strong>except screen readers</strong> with <code>.sr-only</code>. Necessary for following <a href="{{ page.base_url }}getting-started#accessibility">accessibility best practices</a>. Can also be used as a mixin.</p>
{% highlight html %}
<a class="sr-only" href="#content">Skip to content</a>
{% endhighlight %}
{% highlight css %}
// Usage as a Mixin
.skip-navigation {
.sr-only();
}
{% endhighlight %}
<h3 id="helper-classes-image-replacement">Image replacement</h3>
<p>Utilize the <code>.text-hide</code> class or mixin to help replace an element's text content with a background image.</p>
{% highlight html %}
<h1 class="text-hide">Custom heading</h1>
{% endhighlight %}
{% highlight css %}
// Usage as a Mixin
.heading {
.text-hide();
}
{% endhighlight %}
</div>
<!-- Responsive utilities
================================================== -->
<div class="bs-docs-section" id="responsive-utilities">
<div class="page-header">
<h1>Responsive utilities</h1>
</div>
<p class="lead">For faster mobile-friendly development, use these utility classes for showing and hiding content by device via media query. Also included are utility classes for toggling content when printed.</p>
<p>Try to use these on a limited basis and avoid creating entirely different versions of the same site. Instead, use them to complement each device's presentation. <strong>Responsive utilities are currently only available for block and table toggling.</strong> Use with inline and table elements is currently not supported.</p>
<h2 id="responsive-utilities-classes">Available classes</h2>
<p>Use a single or combination of the available classes for toggling content across viewport breakpoints.</p>
<div class="table-responsive">
<table class="table table-bordered table-striped responsive-utilities">
<thead>
<tr>
<th></th>
<th>
Extra small devices
<small>Phones (<768px)</small>
</th>
<th>
Small devices
<small>Tablets (≥768px)</small>
</th>
<th>
Medium devices
<small>Desktops (≥992px)</small>
</th>
<th>
Large devices
<small>Desktops (≥1200px)</small>
</th>
</tr>
</thead>
<tbody>
<tr>
<th><code>.visible-xs</code></th>
<td class="is-visible">Visible</td>
<td class="is-hidden">Hidden</td>
<td class="is-hidden">Hidden</td>
<td class="is-hidden">Hidden</td>
</tr>
<tr>
<th><code>.visible-sm</code></th>
<td class="is-hidden">Hidden</td>
<td class="is-visible">Visible</td>
<td class="is-hidden">Hidden</td>
<td class="is-hidden">Hidden</td>
</tr>
<tr>
<th><code>.visible-md</code></th>
<td class="is-hidden">Hidden</td>
<td class="is-hidden">Hidden</td>
<td class="is-visible">Visible</td>
<td class="is-hidden">Hidden</td>
</tr>
<tr>
<th><code>.visible-lg</code></th>
<td class="is-hidden">Hidden</td>
<td class="is-hidden">Hidden</td>
<td class="is-hidden">Hidden</td>
<td class="is-visible">Visible</td>
</tr>
</tbody>
<tbody>
<tr>
<th><code>.hidden-xs</code></th>
<td class="is-hidden">Hidden</td>
<td class="is-visible">Visible</td>
<td class="is-visible">Visible</td>
<td class="is-visible">Visible</td>
</tr>
<tr>
<th><code>.hidden-sm</code></th>
<td class="is-visible">Visible</td>
<td class="is-hidden">Hidden</td>
<td class="is-visible">Visible</td>
<td class="is-visible">Visible</td>
</tr>
<tr>
<th><code>.hidden-md</code></th>
<td class="is-visible">Visible</td>
<td class="is-visible">Visible</td>
<td class="is-hidden">Hidden</td>
<td class="is-visible">Visible</td>
</tr>
<tr>
<th><code>.hidden-lg</code></th>
<td class="is-visible">Visible</td>
<td class="is-visible">Visible</td>
<td class="is-visible">Visible</td>
<td class="is-hidden">Hidden</td>
</tr>
</tbody>
</table>
</div>
<h2 id="responsive-utilities-print">Print classes</h2>
<p>Similar to the regular responsive classes, use these for toggling content for print.</p>
<div class="table-responsive">
<table class="table table-bordered table-striped responsive-utilities">
<thead>
<tr>
<th>Class</th>
<th>Browser</th>
<th>Print</th>
</tr>
</thead>
<tbody>
<tr>
<th><code>.visible-print</code></th>
<td class="is-hidden">Hidden</td>
<td class="is-visible">Visible</td>
</tr>
<tr>
<th><code>.hidden-print</code></th>
<td class="is-visible">Visible</td>
<td class="is-hidden">Hidden</td>
</tr>
</tbody>
</table>
</div>
<h2 id="responsive-utilities-tests">Test cases</h2>
<p>Resize your browser or load on different devices to test the responsive utility classes.</p>
<h3>Visible on...</h3>
<p>Green checkmarks indicate the element <strong>is visible</strong> in your current viewport.</p>
<div class="row responsive-utilities-test visible-on">
<div class="col-xs-6 col-sm-3">
<span class="hidden-xs">Extra small</span>
<span class="visible-xs">✔ Visible on x-small</span>
</div>
<div class="col-xs-6 col-sm-3">
<span class="hidden-sm">Small</span>
<span class="visible-sm">✔ Visible on small</span>
</div>
<div class="clearfix visible-xs"></div>
<div class="col-xs-6 col-sm-3">
<span class="hidden-md">Medium</span>
<span class="visible-md">✔ Visible on medium</span>
</div>
<div class="col-xs-6 col-sm-3">
<span class="hidden-lg">Large</span>
<span class="visible-lg">✔ Visible on large</span>
</div>
</div>
<div class="row responsive-utilities-test visible-on">
<div class="col-xs-6 col-sm-6">
<span class="hidden-xs hidden-sm">Extra small and small</span>
<span class="visible-xs visible-sm">✔ Visible on x-small and small</span>
</div>
<div class="col-xs-6 col-sm-6">
<span class="hidden-md hidden-lg">Medium and large</span>
<span class="visible-md visible-lg">✔ Visible on medium and large</span>
</div>
<div class="clearfix visible-xs"></div>
<div class="col-xs-6 col-sm-6">
<span class="hidden-xs hidden-md">Extra small and medium</span>
<span class="visible-xs visible-md">✔ Visible on x-small and medium</span>
</div>
<div class="col-xs-6 col-sm-6">
<span class="hidden-sm hidden-lg">Small and large</span>
<span class="visible-sm visible-lg">✔ Visible on small and large</span>
</div>
<div class="clearfix visible-xs"></div>
<div class="col-xs-6 col-sm-6">
<span class="hidden-xs hidden-lg">Extra small and large</span>
<span class="visible-xs visible-lg">✔ Visible on x-small and large</span>
</div>
<div class="col-xs-6 col-sm-6">
<span class="hidden-sm hidden-md">Small and medium</span>
<span class="visible-sm visible-md">✔ Visible on small and medium</span>
</div>
</div>
<h3>Hidden on...</h3>
<p>Here, green checkmarks indicate the element <strong>is hidden</strong> in your current viewport.</p>
<div class="row responsive-utilities-test hidden-on">
<div class="col-xs-6 col-sm-3">
<span class="visible-xs">Extra small</span>
<span class="hidden-xs">✔ Hidden on x-small</span>
</div>
<div class="col-xs-6 col-sm-3">
<span class="visible-sm">Small</span>
<span class="hidden-sm">✔ Hidden on small</span>
</div>
<div class="clearfix visible-xs"></div>
<div class="col-xs-6 col-sm-3">
<span class="visible-md">Medium</span>
<span class="hidden-md">✔ Hidden on medium</span>
</div>
<div class="col-xs-6 col-sm-3">
<span class="visible-lg">Large</span>
<span class="hidden-lg">✔ Hidden on large</span>
</div>
</div>
<div class="row responsive-utilities-test hidden-on">
<div class="col-xs-6 col-sm-6">
<span class="visible-xs visible-sm">Extra small and small</span>
<span class="hidden-xs hidden-sm">✔ Hidden on x-small and small</span>
</div>
<div class="col-xs-6 col-sm-6">
<span class="visible-md visible-lg">Medium and large</span>
<span class="hidden-md hidden-lg">✔ Hidden on medium and large</span>
</div>
<div class="clearfix visible-xs"></div>
<div class="col-xs-6 col-sm-6">
<span class="visible-xs visible-md">Extra small and medium</span>
<span class="hidden-xs hidden-md">✔ Hidden on x-small and medium</span>
</div>
<div class="col-xs-6 col-sm-6">
<span class="visible-sm visible-lg">Small and large</span>
<span class="hidden-sm hidden-lg">✔ Hidden on small and large</span>
</div>
<div class="clearfix visible-xs"></div>
<div class="col-xs-6 col-sm-6">
<span class="visible-xs visible-lg">Extra small and large</span>
<span class="hidden-xs hidden-lg">✔ Hidden on x-small and large</span>
</div>
<div class="col-xs-6 col-sm-6">
<span class="visible-sm visible-md">Small and medium</span>
<span class="hidden-sm hidden-md">✔ Hidden on small and medium</span>
</div>
</div>
</div>
| godot/crm-2000 | public/bower_components/sass-bootstrap-compass/css.html | HTML | mit | 98,787 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="JobsOnTheGo, a B2L project for Chingu">
<link href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' rel='stylesheet' crossorigin='anonymous'>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-59b2adf0fcc16b35"></script>
<base href="/">
<title>JobsOnTheGo</title>
</head>
<body>
<div id="root"></div>
</body>
</html>
| luckyrose89/Jobbatical-clone | src/client/index.html | HTML | mit | 589 |
<!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_15) on Sat May 30 22:34:28 CEST 2015 -->
<title>All Classes</title>
<meta name="date" content="2015-05-30">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<h1 class="bar">All Classes</h1>
<div class="indexContainer">
<ul>
<li><a href="de/hdu/pvs/crashfinder/instrument/AbstractInstrumenter.html" title="class in de.hdu.pvs.crashfinder.instrument" target="classFrame">AbstractInstrumenter</a></li>
<li><a href="de/hdu/pvs/crashfinder/util/Command.html" title="class in de.hdu.pvs.crashfinder.util" target="classFrame">Command</a></li>
<li><a href="de/hdu/pvs/crashfinder/util/Command.StreamGobbler.html" title="class in de.hdu.pvs.crashfinder.util" target="classFrame">Command.StreamGobbler</a></li>
<li><a href="de/hdu/pvs/crashfinder/experiments/CommonUtils.html" title="class in de.hdu.pvs.crashfinder.experiments" target="classFrame">CommonUtils</a></li>
<li><a href="de/hdu/pvs/crashfinder/analysis/Differencer.html" title="class in de.hdu.pvs.crashfinder.analysis" target="classFrame">Differencer</a></li>
<li><a href="de/hdu/pvs/crashfinder/instrument/EveryStmtInstrumenter.html" title="class in de.hdu.pvs.crashfinder.instrument" target="classFrame">EveryStmtInstrumenter</a></li>
<li><a href="de/hdu/pvs/crashfinder/test/FieldDeps.html" title="class in de.hdu.pvs.crashfinder.test" target="classFrame">FieldDeps</a></li>
<li><a href="de/hdu/pvs/crashfinder/util/Files.html" title="class in de.hdu.pvs.crashfinder.util" target="classFrame">Files</a></li>
<li><a href="de/hdu/pvs/crashfinder/util/Globals.html" title="class in de.hdu.pvs.crashfinder.util" target="classFrame">Globals</a></li>
<li><a href="de/hdu/pvs/crashfinder/util/Globals.ErrorStreamAssigner.html" title="class in de.hdu.pvs.crashfinder.util" target="classFrame">Globals.ErrorStreamAssigner</a></li>
<li><a href="de/hdu/pvs/crashfinder/analysis/InputMain.html" title="class in de.hdu.pvs.crashfinder.analysis" target="classFrame">InputMain</a></li>
<li><a href="de/hdu/pvs/crashfinder/instrument/Instrumenter.html" title="class in de.hdu.pvs.crashfinder.instrument" target="classFrame">Instrumenter</a></li>
<li><a href="de/hdu/pvs/crashfinder/instrument/InstrumenterBench.html" title="class in de.hdu.pvs.crashfinder.instrument" target="classFrame">InstrumenterBench</a></li>
<li><a href="de/hdu/pvs/crashfinder/instrument/InstrumenterMain.html" title="class in de.hdu.pvs.crashfinder.instrument" target="classFrame">InstrumenterMain</a></li>
<li><a href="de/hdu/pvs/crashfinder/instrument/InstrumentStats.html" title="class in de.hdu.pvs.crashfinder.instrument" target="classFrame">InstrumentStats</a></li>
<li><a href="de/hdu/pvs/crashfinder/analysis/IRStatement.html" title="class in de.hdu.pvs.crashfinder.analysis" target="classFrame">IRStatement</a></li>
<li><a href="de/hdu/pvs/crashfinder/util/Log.html" title="class in de.hdu.pvs.crashfinder.util" target="classFrame">Log</a></li>
<li><a href="de/hdu/pvs/crashfinder/instrument/MethodTracer.html" title="class in de.hdu.pvs.crashfinder.instrument" target="classFrame">MethodTracer</a></li>
<li><a href="de/hdu/pvs/crashfinder/diagnosis/OutputMain.html" title="class in de.hdu.pvs.crashfinder.diagnosis" target="classFrame">OutputMain</a></li>
<li><a href="de/hdu/pvs/crashfinder/diagnosis/Ranker.html" title="class in de.hdu.pvs.crashfinder.diagnosis" target="classFrame">Ranker</a></li>
<li><a href="de/hdu/pvs/crashfinder/instrument/RelatedStmtInstrumenter.html" title="class in de.hdu.pvs.crashfinder.instrument" target="classFrame">RelatedStmtInstrumenter</a></li>
<li><a href="de/hdu/pvs/crashfinder/test/SeeCoverage.html" title="class in de.hdu.pvs.crashfinder.test" target="classFrame">SeeCoverage</a></li>
<li><a href="de/hdu/pvs/crashfinder/analysis/ShrikePoint.html" title="class in de.hdu.pvs.crashfinder.analysis" target="classFrame">ShrikePoint</a></li>
<li><a href="de/hdu/pvs/crashfinder/analysis/Slicing.html" title="class in de.hdu.pvs.crashfinder.analysis" target="classFrame">Slicing</a></li>
<li><a href="de/hdu/pvs/crashfinder/analysis/Slicing.CG.html" title="enum in de.hdu.pvs.crashfinder.analysis" target="classFrame">Slicing.CG</a></li>
<li><a href="de/hdu/pvs/crashfinder/analysis/SlicingOutput.html" title="class in de.hdu.pvs.crashfinder.analysis" target="classFrame">SlicingOutput</a></li>
<li><a href="de/hdu/pvs/crashfinder/instrument/StmtTracer.html" title="class in de.hdu.pvs.crashfinder.instrument" target="classFrame">StmtTracer</a></li>
<li><a href="de/hdu/pvs/crashfinder/instrument/TestNoChange.html" title="class in de.hdu.pvs.crashfinder.instrument" target="classFrame">TestNoChange</a></li>
<li><a href="de/hdu/pvs/crashfinder/analysis/TestSlicer.html" title="class in de.hdu.pvs.crashfinder.analysis" target="classFrame">TestSlicer</a></li>
<li><a href="de/hdu/pvs/crashfinder/instrument/TestStmtInstrumenter.html" title="class in de.hdu.pvs.crashfinder.instrument" target="classFrame">TestStmtInstrumenter</a></li>
<li><a href="de/hdu/pvs/crashfinder/util/Utils.html" title="class in de.hdu.pvs.crashfinder.util" target="classFrame">Utils</a></li>
<li><a href="de/hdu/pvs/crashfinder/util/WALAUtils.html" title="class in de.hdu.pvs.crashfinder.util" target="classFrame">WALAUtils</a></li>
</ul>
</div>
</body>
</html>
| heiqs/crashfinder | doc/allclasses-frame.html | HTML | mit | 5,427 |
<!DOCTYPE html>
<html>
<head>
<title>左马屯边式</title>
</head>
<body>
<textarea id="t0">
[Game "Chinese Chess"]
[FEN "rnbakabnr/9/1c5c1/p1p1p1p1p/9/9/P1P1P1P1P/1C5C1/9/RNBAKABNR w - - 0 1"]
[Format "ICCS"]
1. H2-E2 H9-G7
2. H0-G2 I9-H9
3. I0-H0 B9-C7
4. C3-C4 G6-G5
5. H0-H6 H7-I7
6. H6-G6 D9-E8
7. B0-C2 I7-I8
8. B2-A2 A9-B9
9. A0-B0
</textarea>
<textarea id="t4b2" style="display:none;">
var t0 = document.getElementById('t0');
var s = t0.value;
s1 = s.split('[Format "ICCS"]');
var s2 = s1[1].split('\n');
var i = 0;
var r = "";
for(i=1;i<s2.length-1;i++)
{
var s3 = s2[i].split('.');
var s4 = s3[1].split(' ');
r += s4[1];
r += "+";
r += s4[2];
r += "+";
}
blObj.blc.blCreateFlashCChessBord(document.body,"f2",r);
</textarea>
<script>
var v_This_File = "v0.0.5";
var hrefRoot = "https://littleflute.github.io/cchess/ref/pu/PianZhaoYuDuiCe/";
var hrefRootE = "https://github.com/littleflute/cchess/edit/master/ref/pu/PianZhaoYuDuiCe/";
var hrefObject = "6/3/";
function blClass(){
this.blRunJs = function(s){
eval(s);
}
this.blCreateFlashCChessBord = function(oDivBoss,id,ml){
var t = this.blDiv(oDivBoss,id+"title",id+":"+ml);
var s = "";
s += '<embed ';
s += 'src="';
s += 'https://littleflute.github.io/cchess/ref/http/www.xqbase.com/pub/flashxq.swf"';
s += 'width="324" height="396" type="application/x-shockwave-flash"';
s += 'pluginspage="http://www.macromedia.com/go/getflashplayer"';
s += 'allowScriptAccess="always" quality="high" wmode="transparent"';
s += 'flashvars="MoveList=';
s += ml;
s += '"';
s += '/>';
var r = this.blDiv(oDivBoss,id,s);
return r;
}
this.blTextArea = function (oBoss,id,html){
var r = document.getElementById(id);
if(!r){
r = document.createElement("textarea");
r.id = id; oBoss.appendChild(r);
}
r.innerHTML = html;
return r;
}
this.blBtn = function (oBoss,id,html){
var r = document.getElementById(id);
if(!r){
r = document.createElement("button");
r.id = id; oBoss.appendChild(r);
}
r.innerHTML = html;
return r;
}
this.blDiv = function (oBoss,id,html){
var r = document.getElementById(id);
if(!r){
r = document.createElement("div");
r.id = id;
}
r.innerHTML = html;
oBoss.appendChild(r);
return r;
}
this.blLink = function (oBoss,id,html,href,bkClr){
var r = document.getElementById(id);
if(!r){
r = document.createElement("a");
oBoss.appendChild(r);
}
r.innerHTML = html;
var t = document.createTextNode(html);
r.setAttribute("href", href);
r.setAttribute("target", "_blank");
r.id = id;
r.style.backgroundColor = bkClr?bkClr:"blue";
return r;
}
this.blShowObj2Div = function (oDivBoss,obj)
{
var oBoss = oDivBoss;
if(!oBoss) {
oBoss = document.createElement("div");
oBoss.id = "divBlShowObj";
oBoss.style.border = "green 1px solid";
document.body.appendChild(oBoss);
}
if(!oBoss){
alert("boss error!");return;
}
// oBoss.innerHTML = "";
for(i in obj)
{
var b = document.createElement("button");
b.id = b.innerHTML = i;
if(i[0]=="b"&&i[1]=="l") b.style.backgroundColor = "yellow";
oBoss.appendChild(b);
var d = document.createElement("div");
d.innerHTML = obj[i];
d.style.border = "blue 1px solid";
d.style.backgroundColor = "green";
d.style.color = "yellow";
oBoss.appendChild(d);
}
}
this.blAjx = function(worker,href)
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
worker._2do(xmlhttp.responseText);
}
}
xmlhttp.open("GET",href,true);
xmlhttp.send();
}
}//blClass end.
var blObj = {};
blObj.run = function(){
var blc = new blClass;
var main = blc.blDiv(document.body,"mainDiv","mainDiv:");
var av = blc.blLink(main,"av",v_This_File,hrefRootE+hrefObject+"index.html","red");
var aDev1 = blc.blLink(main,"aDev1","Dev1","https://www.w3schools.com/html/tryit.asp?filename=tryhtml_default","green");
var aDemo = blc.blLink(main,"aDemo","Demo","http://www.beautifullover.org/php/vschess120/demo.html","blue");
var ame = blc.blLink(main,"ame","+me",hrefRoot+hrefObject+"index.html","yellow");
var ap = blc.blLink(main,"ap","[..]","..","gray");
var t1 = blc.blTextArea(main,"t1","t1");
var b1 = blc.blBtn(main,"b1","run");
var b2 = blc.blBtn(main,"b2","b2");
var b1i = blc.blBtn(main,"b1i","b1i");
var path = hrefRoot+hrefObject;
b1.onclick = function(){
blc.blRunJs(t1.value);
}
var t0 = document.getElementById('t0');
t0._2do = function(s){
t0.value = s;//alert(s);
b2.click();
b1.click();
}
b1i.onclick = function(){
var w = {};
w._2do = function(s){
var i = s.split(";");
for(var n = 0; n<i.length-1;n++)
{
var b = blc.blBtn(main,"n"+n,n+1);
b.nClickNum = 0;
b.nFileName = n+1;
b.onclick = function(){
var s = path + this.nFileName+".txt";
var file = blc.blLink(main,"aFile",s,s,"gray");
this.nClickNum++;
this.innerHTML = this.nFileName + ":" + this.nClickNum;
blc.blAjx(t0,s);
}
}
}
blc.blAjx(w,path+"i.txt");
}
//*
b1.style.display="none";
b2.style.display="none";
t0.style.display="none";
t1.style.display="none";
//*/
b2.onclick = function(){
var t4b2 = document.getElementById('t4b2');
t1.value = t4b2.value;
}
return blc;
}
blObj.blc = blObj.run();
b1i.click();
</script>
<script>
</body>
</html>
| littleflute/cchess | ref/pu/PianZhaoYuDuiCe/6/3/index.html | HTML | mit | 7,519 |
<div>
<div data-dojo-attach-point="sherlockDiv"></div>
<div class="control-group">
<label data-dojo-attach-point='bufferLabel'></label>
<input type="number" data-dojo-attach-point="bufferNum" class='form-control'
step='0.01'>
</div>
</div>
| agrc/deq-enviro | _src/app/search/templates/Stream.html | HTML | mit | 280 |
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca -->
<head>
<!-- Title begins / Début du titre -->
<title>
The Gentlemen Plumbers Edmonton -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492324675135&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=46383&V_SEARCH.docsStart=46382&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/updt.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=46381&V_DOCUMENT.docRank=46382&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492324687579&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567149760&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=46383&V_DOCUMENT.docRank=46384&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492324687579&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=900269980000&profileId=&key.newSearchLabel=">Next Company</a></li>
</ul>
</div>
<details>
<summary>Third-Party Information Liability Disclaimer</summary>
<p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p>
</details>
<h2>
The Gentlemen Plumbers
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal Name:</h2>
<p>The Gentlemen Plumbers</p>
<h2 class="h5 mrgn-bttm-0">Operating Name:</h2>
<p>The Gentlemen Plumbers Edmonton</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.thegentlemenplumbersedmonton.com"
target="_blank" title="Website URL">http://www.thegentlemenplumbersedmonton.com</a></p>
<p><a href="mailto:actionauger1@gmail.com" title="actionauger1@gmail.com">actionauger1@gmail.com</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
101-3239 97 St NW<br/>
EDMONTON,
Alberta<br/>
T6N 1B7
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
101-3239 97 St NW<br/>
EDMONTON,
Alberta<br/>
T6N 1B7
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(587) 786-6328
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
</p>
</div>
<div class="col-md-3 mrgn-tp-md">
<h2 class="wb-inv">Logo</h2>
<img class="img-responsive text-left" src="https://www.ic.gc.ca/app/ccc/srch/media?estblmntNo=234567149761&graphFileName=Logo+-+The+Gentlemen&applicationCode=AP&lang=eng" alt="Logo" />
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
<h2 class="wb-inv">Company Profile</h2>
<br> The Gentlemen Plumbers began as a nickname, advanced to a slogan and soon became the name of Edmonton's top plumbing company. We have been serving residential customers since 2002. The Gentlemen Plumbers is run by a third generation plumber with an expansive knowledge of the plumbing industry and a genuine concern for customer satisfaction.<br>
</div>
</div>
<!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> -->
<div class="wb-tabs ignore-session">
<div class="tabpanels">
<details id="details-panel1">
<summary>
Full profile
</summary>
<!-- Tab 1 -->
<h2 class="wb-invisible">
Full profile
</h2>
<!-- Contact Information -->
<h3 class="page-header">
Contact information
</h3>
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
George
Ouimet
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Consultant
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Domestic Sales & Marketing.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(587) 288-4743
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
actionauger1@gmail.com
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
238220 - Plumbing, Heating and Air-Conditioning Contractors
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
Plumbing<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
The Gentlemen Plumbers of Edmonton specialize in plumbing repair, furnaces, heating systems, humidifers, camera inspections and hot water tanks.<br>
<br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
George
Ouimet
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Consultant
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Domestic Sales & Marketing.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(587) 288-4743
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
actionauger1@gmail.com
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
238220 - Plumbing, Heating and Air-Conditioning Contractors
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
Plumbing<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
The Gentlemen Plumbers of Edmonton specialize in plumbing repair, furnaces, heating systems, humidifers, camera inspections and hot water tanks.<br>
<br>
</div>
</div>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2016-09-19
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
| GoC-Spending/data-corporations | html/234567149761.html | HTML | mit | 34,328 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<style>
.button {
background-color: #FA58F4;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.button1 {background-color: #EE15E4;}
.button2 {background-color: #F1F8E0;}
.button3 {background-color: #EE15E4; color: black;}
.button4 {background-color: #F1F8E0;}
.button5{background-color: #EE15E4; color: black;}
.button6{background-color: #F1F8E0;}
.button7{background-color: #EE15E4;}
.button8{background-color: #F1F8E0;}
.button9{background-color: #EE15E4;}
</style>
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/mk_MK/sdk.js#xfbml=1&version=v2.9";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fenster">
<a href="./raknadojka.html"><img src="raknadojka.jpg" height="500" width="100%" style="float:left"></a>
</div>
<button class="button button1"><a href="./pochetna.html"><font color="black">Почетна</font></a></button>
<button class="button button2"><a href="./zakancerot.html"><font color="black">За канцерот</font></a></button>
<button class="button button3"><a href="./stadiumi.html"><font color="black">Хемотерапија</font></a></button>
<button class="button button4"><a href="./recepti.html"><font color="black">Рецепти</font></a></button>
<button class="button button5"><a href="./dieti.html"><font color="black">Исхрана</font></a></button>
<button class="button button6"><a href="./soveti.html"><font color="black">Совети</font></a></button>
<button class="button button7"><a href="./bolnici.html"><font color="black"</font>Болници</a></button>
<button class="button button8"><a href="./Donacii.html"><font color="black">Донации</font></a></button>
<button class="button button9"><a href="./lekovi.html"><font color="black">Лекови</font></a></button>
<title>Рак на дојка</title>
<style>
h1 {
color: #EE15E4;
text-shadow: 2px 2px 4px #000000;
}
</style>
</head>
<body>
<h1>РАК НА ДОЈКА</h1>
<p><b><font size="3">На светско ниво, ракот на дојката, е најчест рак кај жените, афектирајќи 10% од женската популација во некоја етапа од
нивниот живот. Покрај напорите што се прават за да се постигне рана детекција и ефективен третман. Околу 20% од пациентите умираат од оваа
болест. Според ова ракот на дојката, е втора по честота причина за смрт кај жените.
</font></b></p>
<img src="dojka1.jpg" alt="Smiley face" style="float:center;width:=100%;height:600px;">
<p><b><font size="3">За да се открие некаква промена во градата, неопходно е да се знае што е нормално за дојките во смисла на изглед.
Во овој случај доколку има појава на некоја абнормалност и промена во изгледот, структурата, конзистенцијата, симетричноста на градата
тоа може лесно да се воочи и забележи. Доколку се забележат промени веднаш консултирајте се со лекар, во најракток можен рок, без
одлагање дека промета сама ќе се повлече. Во почетните стадиуми нема никакви симптоми или забележителни знаци. Меѓутоа со прогредирање
на процесот и растење на туморот ќе се забележат значителни знаци. </font></b></p>
<p><b><font size="3">Третманот на ракот на дојка зависи од возраста на жената и нејзиното здравје ,
а исто така и од типот,големината и локацијата на туморот , како и од тоа дали ракот е останат во градата или е метастазиран на
други органи од човековото тело. За успешно лекување најважно е раното откривање што се постигнува пред се со
Здравствено просветување на жената.Штом се открие јазол во дојката многу е важно брзото поставување дијагноза и започнување со третманот.
3/4 од случаите на рак на дојка се откриваат од самите жени или нивните партнери, но 50-60% од овие жени чекаат три и повеќе месеци
додека да се обратат на лекар. Ова одлагање на третманот е суштествен проблем бидејќи жените кои чекаат повеќе од три месеци имаат
драматично полоша прогноза во однос на жените кои веднаш се јавуваат на лекар. Затоа сите жени кај кои се појавиле јазли,
тврди маси во дојките треба да бидат прегледани од специјалист во рок од две недели по нивното откривање!!!</font></b></p>
<iframe width="60%" height="400" src="https://www.youtube.com/embed/y6o12KQXydw" frameborder="0" allowfullscreen></iframe>
<p><b><font size="3">Особена тежина на болеста и дава и психичката лабилност која ја проследува. Жената е депримирана и исплашена поради
сознанието дека има рак на дојка и дека нејзиниот живот можеби е загрозен, потоа дека можеби ке ја изгуби едната града. Затоа многу важен
дел во лекувањето завзема и психосоматското лекување. Мошне знчајна е поддршката која жената ја добива од своите блиски и од околината,
пристапот кон жената во предоперативната подготовка, односот со медицинскиот тим за време на лекувањето. Да и се објасни на пациентката
за неопходноста од операција, можните последици но секако и за можноста за естетска корекција на градата по зафатот се со цел
смирување на менталните и телесните оптоварувања и успешно излекување. Голем успех во постоперативната нега допринесува и примената
на јога или медитација. Исхрана Одредена растителна храна содржи фотоестрогени, слаби растителни естрогени кои можат да бидат мнгу полезни
во борбата против некои видови рак на дојката, чуствителни на хормони. Фотоестрогените го запираат влегувањето на телесниот естроген во
ткивото на дојката. Задржувањето на естрогенот надвор од дојката може да ја намали веројатноста за рак, или пак при постоење на болеста да
ја намали брзината со која клетките на ракот се размножуваат. Пченицата, сојата, маслинките, сливите, морковот, јаболката, слаткиот компир
и кокосовиот орев спаѓаат во видот на храна која содржи фотоестрогени и затоа се препорачуваат во поголеми количини.</font></b></p>
<div class="fb-comments" data-href="http://127.0.0.1:8020/borbaprotivkancerot/raknadojka.html" data-numposts="5"></div>
</body>
</html>
| majaradichevich/majaradichevich.github.io | raknadojka.html | HTML | mit | 9,006 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<h1>Files statics</h1>
</body>
</html> | Agfeynman/2DAW-Entorno-Cliente-ejercicios | Tema7/NodeJS_Express/chat/public/index2.html | HTML | mit | 288 |
<!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 v9.2.0 - v9.2.1: 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 v9.2.0 - v9.2.1
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><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_1Number.html">Number</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">v8::Number Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classv8_1_1Number.html">v8::Number</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>Cast</b>(v8::Value *obj) (defined in <a class="el" href="classv8_1_1Number.html">v8::Number</a>)</td><td class="entry"><a class="el" href="classv8_1_1Number.html">v8::Number</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 bgcolor="#f0f0f0"><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 bgcolor="#f0f0f0" class="even"><td class="entry"><b>InstanceOf</b>(Local< Context > context, Local< Object > object) (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>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_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_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>(Isolate *isolate, double value) (defined in <a class="el" href="classv8_1_1Number.html">v8::Number</a>)</td><td class="entry"><a class="el" href="classv8_1_1Number.html">v8::Number</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><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"><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>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< 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"><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" class="even"><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"><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" class="even"><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"><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" class="even"><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"><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" class="even"><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"><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" class="even"><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"><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" class="even"><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"><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" class="even"><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><td class="entry"><a class="el" href="classv8_1_1Value.html#ae3528a485935d1b19a0e007cd5a06799">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" class="even"><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"><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" class="even"><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"><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" class="even"><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"><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 class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#adedc431c9a5f9fc875027c773cc26585">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 bgcolor="#f0f0f0"><td class="entry"><b>Value</b>() const (defined in <a class="el" href="classv8_1_1Number.html">v8::Number</a>)</td><td class="entry"><a class="el" href="classv8_1_1Number.html">v8::Number</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>
| v8-dox/v8-dox.github.io | 4e9bfdf/html/classv8_1_1Number-members.html | HTML | mit | 31,162 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.