text
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
<span>This test passes if the caret is at the start of the first line.</span> <p id="result"></p> <div id="edit" contentEditable="true" style="width: 350px; height: 100px; border: 1px solid blue;">a <span style=color:blue;">xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</span></div> <script> if (window.testRunner) testRunner.dumpAsText(); var edit = document.getElementById("edit"); window.getSelection().collapse(edit.childNodes.item(1).childNodes.item(0), 2); window.getSelection().modify("move", "backward", "line"); window.getSelection().modify("move", "backward", "line"); document.getElementById("result").innerText = getSelection().baseOffset == 0 ? "PASS" : "FAIL"; </script>
scheib/chromium
third_party/blink/web_tests/editing/selection/wrapped-line-caret-3.html
HTML
bsd-3-clause
692
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI Sortable - Drop placeholder</title> <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css"> <script src="../../jquery-1.10.2.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.sortable.js"></script> <link rel="stylesheet" href="../demos.css"> <style> #sortable { list-style-type: none; margin: 0; padding: 0; width: 60%; } #sortable li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; height: 1.5em; } html>body #sortable li { height: 1.5em; line-height: 1.2em; } .ui-state-highlight { height: 1.5em; line-height: 1.2em; } </style> <script> $(function() { $( "#sortable" ).sortable({ placeholder: "ui-state-highlight" }); $( "#sortable" ).disableSelection(); }); </script> </head> <body> <ul id="sortable"> <li class="ui-state-default">Item 1</li> <li class="ui-state-default">Item 2</li> <li class="ui-state-default">Item 3</li> <li class="ui-state-default">Item 4</li> <li class="ui-state-default">Item 5</li> <li class="ui-state-default">Item 6</li> <li class="ui-state-default">Item 7</li> </ul> <div class="demo-description"> <p> When dragging a sortable item to a new location, other items will make room for the that item by shifting to allow white space between them. Pass a class into the <code>placeholder</code> option to style that space to be visible. Use the boolean <code>forcePlaceholderSize</code> option to set dimensions on the placeholder. </p> </div> </body> </html>
yuyang545262477/Resume
项目三jQueryMobile/bower_components/jquery-ui/demos/sortable/placeholder.html
HTML
mit
1,681
{{#markdown}} ```scss // We use this to control the maximum blocks and spacing $block-grid-elements: 12; $block-grid-default-spacing: rem-calc(20); $align-block-grid-to-grid: false; //removes column gutter so edges of block grid align with grid // Enables media queries for block-grid classes. Set to false if writing semantic HTML. $block-grid-media-queries: true; ``` {{/markdown}}
milardovich/agenda-moparman
vendor/zurb/foundation/doc/includes/block/examples_block_variables.html
HTML
mit
385
<html> <body> This inspection reports libraries attached to the specified inspection scope that are not used directly from code. <br> <br> </body> </html>
Yihy/resources_cn
src/main/resources/inspectionDescriptions/UnusedLibrary.html
HTML
apache-2.0
156
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <base href="../../../" /> <script src="list.js"></script> <script src="page.js"></script> <link type="text/css" rel="stylesheet" href="page.css" /> </head> <body> [page:Curve] &rarr; <h1>[name]</h1> <div class="desc"> An abstract base class further extending [page:Curve]. A CurvePath is simply an array of connected curves, but retains the api of a curve. </div> <h2>Constructor</h2> <h3>[name]()</h3> <div> The constructor take no parameters. </div> <h2>Properties</h2> <h3>[property:array curves]</h3> <div> The array of [page:Curve]s </div> <h3>[property:array bends]</h3> <div> An array of [page:Curve]s used to transform and bend the curve using [page:CurvePath.getWrapPoints]. </div> <h3>[property:boolean autoClose]</h3> <div> Whether or not to automatically close the path. </div> <h2>Methods</h2> <h3>[method:Array getWrapPoints]([page:Array vertices], [page:Curve curve])</h3> <div> vertices -- An array of [page:Vector2]s to modify<br /> curve -- An array of 2d [page:Curve]s </div> <div> Modifies the array of vertices by warping it by the curve. The curve parameter also accepts objects with similar interfaces such as [page:CurvePath], [page:Path], [page:SplineCurve], etc. Returns the original vertices after modification. </div> <h3>[method:null addWrapPath]([page:Curve curve])</h3> <div> curve -- A [page:Curve] or object with a similar interface. </div> <div> Pushes a curve onto the bends array. </div> <h3>[method:Geometry createGeometry]([page:Vector3 points])</h3> <div> points -- An array of [page:Vector3]s </div> <div> Creates a geometry from points </div> <h3>[method:Geometry createPointsGeometry]([page:Integer divisions])</h3> <div> divisions -- How many segments to create with [page:Vector3]s. Defaults to 12. </div> <div> Creates a [page:Geometry] object comprised of [page:Vector3]s </div> <h3>[method:Geometry createSpacedPointsGeometry]([page:Integer divisions])</h3> <div> divisions -- How many segments to create with [page:Vector3]s. Defaults to 12. </div> <div> Creates a [page:Geometry] object comprised of [page:Vector3]s that are equidistant. </div> <h3>[method:null add]([page:Curve curve])</h3> <div> curve -- The [page:Curve curve] to add </div> <div> Pushes a curve onto the curves array. </div> <h3>[method:null closePath]()</h3> <div> Adds a curve to close the path. </div> <h3>[method:Object getBoundingBox]()</h3> <div> Returns an object with the keys minX, minY, maxX, maxY, (if 3d: maxZ, minZ) </div> <h3>[method:Float getCurveLengths]()</h3> <div> Adds together the length of the curves </div> <h3>[method:Array getTransformedPoints]([page:Integer segments], [page:Array bends])</h3> <div> segments -- The number of segments to create using the getPoints()<br /> bends -- (optional) An array of [page:Curve]s used to transform the points. Defaults to this.bends if blank. </div> <div> Uses this CurvePath to generate a series of points transformed by the curves in the bends array. Returns an array of [page:Vector2]s. </div> <h3>[method:Array getTransformedSpacedPoints]([page:Integer segments], [page:Array bends])</h3> <div> segments -- The number of segments to create using the getPoints()<br /> bends -- (optional) Defaults to this.bends if blank. An array of [page:Curve]s used to transform the points. </div> <div> Uses this CurvePath to generate a series equidistant points that are then transformed by the curves in the bends. Returns an array of [page:Vector2]s. </div> <h2>Source</h2> [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] </body> </html>
toruta39/threejs-dash-gen
threejs.docset/Contents/Resources/Documents/api/extras/core/CurvePath.html
HTML
mit
3,865
<!-- THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. Copyright (c) Microsoft Corporation. All rights reserved --> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Article</title> <!-- WinJS references --> <link href="/Microsoft.WinJS.4.0/css/ui-dark.css" rel="stylesheet"> <script src="/Microsoft.WinJS.4.0/js/WinJS.js"></script> <link href="/css/default.css" rel="stylesheet"> <link href="/pages/article/article.css" rel="stylesheet"> <script src="/pages/article/article.js"></script> </head> <body class="win-type-body"> <!-- The content that will be loaded and displayed. --> <div id="article" class="fragment"> <header aria-label="Header content" role="banner"> <button class="win-backbutton win-button" aria-label="Back" disabled></button> <h1 class="titlearea win-type-ellipsis win-type-header"> <span class="pagetitle"></span> </h1> </header> <div id="articleArea" aria-label="Main content" role="main"> <article> <div id="content"></div> </article> </div> </div> </body> </html>
ddpruitt/Windows-universal-samples
Samples/FeedReader/js/pages/article/article.html
HTML
mit
1,344
<!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.10"/> <title>0.9.7: GLM_GTX_quaternion</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 id="projectlogo"><img alt="Logo" src="logo.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">0.9.7 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.10 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#func-members">Functions</a> </div> <div class="headertitle"> <div class="title">GLM_GTX_quaternion<div class="ingroups"><a class="el" href="a00161.html">GTX Extensions (Experimental)</a></div></div> </div> </div><!--header--> <div class="contents"> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a> Functions</h2></td></tr> <tr class="memitem:ga33ecf8ba903eee5fc09f0fbfc0d5ca6b"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:ga33ecf8ba903eee5fc09f0fbfc0d5ca6b"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tvec3&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#ga33ecf8ba903eee5fc09f0fbfc0d5ca6b">cross</a> (tquat&lt; T, P &gt; const &amp;q, tvec3&lt; T, P &gt; const &amp;v)</td></tr> <tr class="separator:ga33ecf8ba903eee5fc09f0fbfc0d5ca6b"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga4bfe3c7770fc43d14b8ef0058c4a86b5"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:ga4bfe3c7770fc43d14b8ef0058c4a86b5"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tvec3&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#ga4bfe3c7770fc43d14b8ef0058c4a86b5">cross</a> (tvec3&lt; T, P &gt; const &amp;v, tquat&lt; T, P &gt; const &amp;q)</td></tr> <tr class="separator:ga4bfe3c7770fc43d14b8ef0058c4a86b5"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga17295173d4c2b5ae49b84e9993b63a62"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:ga17295173d4c2b5ae49b84e9993b63a62"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tquat&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#ga17295173d4c2b5ae49b84e9993b63a62">exp</a> (tquat&lt; T, P &gt; const &amp;q)</td></tr> <tr class="separator:ga17295173d4c2b5ae49b84e9993b63a62"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga90de879d97487ec804522dd418e5d8a0"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:ga90de879d97487ec804522dd418e5d8a0"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL T&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#ga90de879d97487ec804522dd418e5d8a0">extractRealComponent</a> (tquat&lt; T, P &gt; const &amp;q)</td></tr> <tr class="separator:ga90de879d97487ec804522dd418e5d8a0"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:gac11bf550f17d1da14423595a27575084"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:gac11bf550f17d1da14423595a27575084"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tquat&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#gac11bf550f17d1da14423595a27575084">fastMix</a> (tquat&lt; T, P &gt; const &amp;x, tquat&lt; T, P &gt; const &amp;y, T const &amp;a)</td></tr> <tr class="separator:gac11bf550f17d1da14423595a27575084"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga56abae85b3669c866e91f3c57b298b9c"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:ga56abae85b3669c866e91f3c57b298b9c"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tquat&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#ga56abae85b3669c866e91f3c57b298b9c">intermediate</a> (tquat&lt; T, P &gt; const &amp;prev, tquat&lt; T, P &gt; const &amp;curr, tquat&lt; T, P &gt; const &amp;next)</td></tr> <tr class="separator:ga56abae85b3669c866e91f3c57b298b9c"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga02b45352c7ac345cabc9e877314acda6"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:ga02b45352c7ac345cabc9e877314acda6"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL T&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#ga02b45352c7ac345cabc9e877314acda6">length2</a> (tquat&lt; T, P &gt; const &amp;q)</td></tr> <tr class="separator:ga02b45352c7ac345cabc9e877314acda6"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga791f42e134bfe97fc9c96f4668dd7489"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:ga791f42e134bfe97fc9c96f4668dd7489"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tquat&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#ga791f42e134bfe97fc9c96f4668dd7489">log</a> (tquat&lt; T, P &gt; const &amp;q)</td></tr> <tr class="separator:ga791f42e134bfe97fc9c96f4668dd7489"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga42a0cf206c59eaeff4c67dd62e09a580"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:ga42a0cf206c59eaeff4c67dd62e09a580"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tquat&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#ga42a0cf206c59eaeff4c67dd62e09a580">pow</a> (tquat&lt; T, P &gt; const &amp;x, T const &amp;y)</td></tr> <tr class="separator:ga42a0cf206c59eaeff4c67dd62e09a580"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga9f39f0d3ecd66839a4af44560aa10fb2"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:ga9f39f0d3ecd66839a4af44560aa10fb2"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tvec3&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#ga9f39f0d3ecd66839a4af44560aa10fb2">rotate</a> (tquat&lt; T, P &gt; const &amp;q, tvec3&lt; T, P &gt; const &amp;v)</td></tr> <tr class="separator:ga9f39f0d3ecd66839a4af44560aa10fb2"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga96575f8868b3f2aa3e13cab9b94ccbd3"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:ga96575f8868b3f2aa3e13cab9b94ccbd3"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tvec4&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#ga96575f8868b3f2aa3e13cab9b94ccbd3">rotate</a> (tquat&lt; T, P &gt; const &amp;q, tvec4&lt; T, P &gt; const &amp;v)</td></tr> <tr class="separator:ga96575f8868b3f2aa3e13cab9b94ccbd3"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:gac4856d356c5c97cec74e9b672ea89240"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:gac4856d356c5c97cec74e9b672ea89240"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tquat&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#gac4856d356c5c97cec74e9b672ea89240">rotation</a> (tvec3&lt; T, P &gt; const &amp;orig, tvec3&lt; T, P &gt; const &amp;dest)</td></tr> <tr class="separator:gac4856d356c5c97cec74e9b672ea89240"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga3534443de2a1a806f386976546cddc81"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:ga3534443de2a1a806f386976546cddc81"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tquat&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#ga3534443de2a1a806f386976546cddc81">shortMix</a> (tquat&lt; T, P &gt; const &amp;x, tquat&lt; T, P &gt; const &amp;y, T const &amp;a)</td></tr> <tr class="separator:ga3534443de2a1a806f386976546cddc81"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:gae75f537becdf2b1381b4482ec96e6c82"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:gae75f537becdf2b1381b4482ec96e6c82"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tquat&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#gae75f537becdf2b1381b4482ec96e6c82">squad</a> (tquat&lt; T, P &gt; const &amp;q1, tquat&lt; T, P &gt; const &amp;q2, tquat&lt; T, P &gt; const &amp;s1, tquat&lt; T, P &gt; const &amp;s2, T const &amp;h)</td></tr> <tr class="separator:gae75f537becdf2b1381b4482ec96e6c82"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga01935b66ba245c2fd7dee5427d86ce9b"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:ga01935b66ba245c2fd7dee5427d86ce9b"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tmat3x3&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#ga01935b66ba245c2fd7dee5427d86ce9b">toMat3</a> (tquat&lt; T, P &gt; const &amp;x)</td></tr> <tr class="separator:ga01935b66ba245c2fd7dee5427d86ce9b"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:gaedc9fba6485eade37cc26c16df9d7aad"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:gaedc9fba6485eade37cc26c16df9d7aad"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tmat4x4&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#gaedc9fba6485eade37cc26c16df9d7aad">toMat4</a> (tquat&lt; T, P &gt; const &amp;x)</td></tr> <tr class="separator:gaedc9fba6485eade37cc26c16df9d7aad"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:gac9e3109ca60b644ce508d6b71a1697bc"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:gac9e3109ca60b644ce508d6b71a1697bc"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tquat&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#gac9e3109ca60b644ce508d6b71a1697bc">toQuat</a> (tmat3x3&lt; T, P &gt; const &amp;x)</td></tr> <tr class="separator:gac9e3109ca60b644ce508d6b71a1697bc"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga808dd0f83ee8150db7e652313bde8eb2"><td class="memTemplParams" colspan="2">template&lt;typename T , precision P&gt; </td></tr> <tr class="memitem:ga808dd0f83ee8150db7e652313bde8eb2"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL tquat&lt; T, P &gt;&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00224.html#ga808dd0f83ee8150db7e652313bde8eb2">toQuat</a> (tmat4x4&lt; T, P &gt; const &amp;x)</td></tr> <tr class="separator:ga808dd0f83ee8150db7e652313bde8eb2"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <p>Extented quaternion types and functions. </p> <p>&lt;<a class="el" href="a00095.html" title="OpenGL Mathematics (glm.g-truc.net) ">glm/gtx/quaternion.hpp</a>&gt; need to be included to use these functionalities. </p> <h2 class="groupheader">Function Documentation</h2> <a class="anchor" id="ga33ecf8ba903eee5fc09f0fbfc0d5ca6b"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tvec3&lt;T, P&gt; glm::cross </td> <td>(</td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>q</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">tvec3&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>v</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Compute a cross product between a quaternion and a vector. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> </div> </div> <a class="anchor" id="ga4bfe3c7770fc43d14b8ef0058c4a86b5"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tvec3&lt;T, P&gt; glm::cross </td> <td>(</td> <td class="paramtype">tvec3&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>v</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>q</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Compute a cross product between a vector and a quaternion. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> </div> </div> <a class="anchor" id="ga17295173d4c2b5ae49b84e9993b63a62"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tquat&lt;T, P&gt; glm::exp </td> <td>(</td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>q</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Returns a exp of a quaternion. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> </div> </div> <a class="anchor" id="ga90de879d97487ec804522dd418e5d8a0"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL T glm::extractRealComponent </td> <td>(</td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>q</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Extract the real component of a quaternion. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> </div> </div> <a class="anchor" id="gac11bf550f17d1da14423595a27575084"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tquat&lt;T, P&gt; glm::fastMix </td> <td>(</td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>x</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>y</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">T const &amp;&#160;</td> <td class="paramname"><em>a</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Quaternion normalized linear interpolation. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> </div> </div> <a class="anchor" id="ga56abae85b3669c866e91f3c57b298b9c"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tquat&lt;T, P&gt; glm::intermediate </td> <td>(</td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>prev</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>curr</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>next</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Returns an intermediate control point for squad interpolation. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> </div> </div> <a class="anchor" id="ga02b45352c7ac345cabc9e877314acda6"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL T glm::length2 </td> <td>(</td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>q</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Returns the squared length of x. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> </div> </div> <a class="anchor" id="ga791f42e134bfe97fc9c96f4668dd7489"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tquat&lt;T, P&gt; glm::log </td> <td>(</td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>q</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Returns a log of a quaternion. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> </div> </div> <a class="anchor" id="ga42a0cf206c59eaeff4c67dd62e09a580"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tquat&lt;T, P&gt; glm::pow </td> <td>(</td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>x</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">T const &amp;&#160;</td> <td class="paramname"><em>y</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Returns x raised to the y power. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> </div> </div> <a class="anchor" id="ga9f39f0d3ecd66839a4af44560aa10fb2"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tvec3&lt;T, P&gt; glm::rotate </td> <td>(</td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>q</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">tvec3&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>v</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Returns quarternion square root. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> Rotates a 3 components vector by a quaternion.</dd> <dd> <a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> </div> </div> <a class="anchor" id="ga96575f8868b3f2aa3e13cab9b94ccbd3"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tvec4&lt;T, P&gt; glm::rotate </td> <td>(</td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>q</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">tvec4&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>v</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Rotates a 4 components vector by a quaternion. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> </div> </div> <a class="anchor" id="gac4856d356c5c97cec74e9b672ea89240"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tquat&lt;T, P&gt; glm::rotation </td> <td>(</td> <td class="paramtype">tvec3&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>orig</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">tvec3&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>dest</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Compute the rotation between two vectors. </p> <p>param orig vector, needs to be normalized param dest vector, needs to be normalized</p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> </div> </div> <a class="anchor" id="ga3534443de2a1a806f386976546cddc81"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tquat&lt;T, P&gt; glm::shortMix </td> <td>(</td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>x</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>y</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">T const &amp;&#160;</td> <td class="paramname"><em>a</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Quaternion interpolation using the rotation short path. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> </div> </div> <a class="anchor" id="gae75f537becdf2b1381b4482ec96e6c82"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tquat&lt;T, P&gt; glm::squad </td> <td>(</td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>q1</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>q2</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>s1</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>s2</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">T const &amp;&#160;</td> <td class="paramname"><em>h</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Compute a point on a path according squad equation. </p> <p>q1 and q2 are control points; s1 and s2 are intermediate control points.</p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> </div> </div> <a class="anchor" id="ga01935b66ba245c2fd7dee5427d86ce9b"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tmat3x3&lt;T, P&gt; glm::toMat3 </td> <td>(</td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>x</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Converts a quaternion to a 3 * 3 matrix. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> <p>Definition at line <a class="el" href="a00095_source.html#l00153">153</a> of file <a class="el" href="a00095_source.html">gtx/quaternion.hpp</a>.</p> <p>References <a class="el" href="a00177.html#gae04c39422eb4e450ec8c4f45a1057b40">glm::mat3_cast()</a>.</p> </div> </div> <a class="anchor" id="gaedc9fba6485eade37cc26c16df9d7aad"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tmat4x4&lt;T, P&gt; glm::toMat4 </td> <td>(</td> <td class="paramtype">tquat&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>x</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Converts a quaternion to a 4 * 4 matrix. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> <p>Definition at line <a class="el" href="a00095_source.html#l00160">160</a> of file <a class="el" href="a00095_source.html">gtx/quaternion.hpp</a>.</p> <p>References <a class="el" href="a00177.html#ga14bb2ddf028c91542763eb6f2bba47ef">glm::mat4_cast()</a>.</p> </div> </div> <a class="anchor" id="gac9e3109ca60b644ce508d6b71a1697bc"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tquat&lt;T, P&gt; glm::toQuat </td> <td>(</td> <td class="paramtype">tmat3x3&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>x</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Converts a 3 * 3 matrix to a quaternion. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> <p>Definition at line <a class="el" href="a00095_source.html#l00167">167</a> of file <a class="el" href="a00095_source.html">gtx/quaternion.hpp</a>.</p> <p>References <a class="el" href="a00177.html#ga950f8acff3e33bbda77895a3dcb7e5ce">glm::quat_cast()</a>.</p> </div> </div> <a class="anchor" id="ga808dd0f83ee8150db7e652313bde8eb2"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">GLM_FUNC_DECL tquat&lt;T, P&gt; glm::toQuat </td> <td>(</td> <td class="paramtype">tmat4x4&lt; T, P &gt; const &amp;&#160;</td> <td class="paramname"><em>x</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Converts a 4 * 4 matrix to a quaternion. </p> <dl class="section see"><dt>See also</dt><dd><a class="el" href="a00224.html" title="Extented quaternion types and functions. ">GLM_GTX_quaternion</a> </dd></dl> <p>Definition at line <a class="el" href="a00095_source.html#l00174">174</a> of file <a class="el" href="a00095_source.html">gtx/quaternion.hpp</a>.</p> <p>References <a class="el" href="a00177.html#ga950f8acff3e33bbda77895a3dcb7e5ce">glm::quat_cast()</a>.</p> </div> </div> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.10 </small></address> </body> </html>
glcoder/gl44lessons
vendors/glm-0.9.7.1/doc/api/a00224.html
HTML
mit
31,223
{% if post.layout != post %} {% assign words = post.content | strip_html | number_of_words %} {% if words < 180 %} less than 1 minute read {% elsif words < 360 %} 1 minute read {% else %} {{ words | divided_by:180 }} minute read {% endif %} {% endif %} {% if post.layout == post %} {% assign words = content | number_of_words %} {% if words < 180 %} less than 1 minute read {% elsif words < 360 %} 1 minute read {% else %} {{ words | divided_by:180 }} minute read {% endif %} {% endif %}
sengchong/sengchong.github.io
_includes/read-time.html
HTML
mit
533
<div class="bs-docs-section"> <h1 id="tabs" class="page-header">Togglable tabs <small>tab.js</small></h1> <h2 id="tabs-examples">Example tabs</h2> <p>Add quick, dynamic tab functionality to transition through panes of local content, even via dropdown menus.</p> <div class="bs-example bs-example-tabs"> <ul id="myTab" class="nav nav-tabs" role="tablist"> <li class="active"><a href="#home" role="tab" data-toggle="tab">Home</a></li> <li><a href="#profile" role="tab" data-toggle="tab">Profile</a></li> <li class="dropdown"> <a href="#" id="myTabDrop1" class="dropdown-toggle" data-toggle="dropdown">Dropdown <span class="caret"></span></a> <ul class="dropdown-menu" role="menu" aria-labelledby="myTabDrop1"> <li><a href="#dropdown1" tabindex="-1" role="tab" data-toggle="tab">@fat</a></li> <li><a href="#dropdown2" tabindex="-1" role="tab" data-toggle="tab">@mdo</a></li> </ul> </li> </ul> <div id="myTabContent" class="tab-content"> <div class="tab-pane fade in active" 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. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park.</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. Williamsburg banh mi whatever gluten-free, carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork sustainable tofu synth chambray yr.</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. Lomo wolf viral, mustache readymade thundercats keffiyeh craft beer marfa ethical. Wolf salvia freegan, sartorial keffiyeh echo park vegan.</p> </div> </div> </div><!-- /example --> <div class="bs-callout bs-callout-info"> <h4>Extends tabbed navigation</h4> <p>This plugin extends the <a href="../components/#nav-tabs">tabbed navigation component</a> to add tabbable areas.</p> </div> <h2 id="tabs-usage">Usage</h2> <p>Enable tabbable tabs via JavaScript (each tab needs to be activated individually):</p> {% highlight js %} $('#myTab a').click(function (e) { e.preventDefault() $(this).tab('show') }) {% endhighlight %} <p>You can activate individual tabs in several ways:</p> {% highlight js %} $('#myTab a[href="#profile"]').tab('show') // Select tab by name $('#myTab a:first').tab('show') // Select first tab $('#myTab a:last').tab('show') // Select last tab $('#myTab li:eq(2) a').tab('show') // Select third tab (0-indexed) {% endhighlight %} <h3>Markup</h3> <p>You can activate a tab or pill navigation without writing any JavaScript by simply specifying <code>data-toggle="tab"</code> or <code>data-toggle="pill"</code> on an element. Adding the <code>nav</code> and <code>nav-tabs</code> classes to the tab <code>ul</code> will apply the Bootstrap <a href="../components/#nav-tabs">tab styling</a>, while adding the <code>nav</code> and <code>nav-pills</code> classes will apply <a href="../components/#nav-pills">pill styling</a>.</p> {% highlight html %} <!-- Nav tabs --> <ul class="nav nav-tabs" role="tablist"> <li class="active"><a href="#home" role="tab" data-toggle="tab">Home</a></li> <li><a href="#profile" role="tab" data-toggle="tab">Profile</a></li> <li><a href="#messages" role="tab" data-toggle="tab">Messages</a></li> <li><a href="#settings" role="tab" data-toggle="tab">Settings</a></li> </ul> <!-- Tab panes --> <div class="tab-content"> <div class="tab-pane active" id="home">...</div> <div class="tab-pane" id="profile">...</div> <div class="tab-pane" id="messages">...</div> <div class="tab-pane" id="settings">...</div> </div> {% endhighlight %} <h3>Fade effect</h3> <p>To make tabs fade in, add <code>.fade</code> to each <code>.tab-pane</code>. The first tab pane must also have <code>.in</code> to properly fade in initial content.</p> {% highlight html %} <div class="tab-content"> <div class="tab-pane fade in active" id="home">...</div> <div class="tab-pane fade" id="profile">...</div> <div class="tab-pane fade" id="messages">...</div> <div class="tab-pane fade" id="settings">...</div> </div> {% endhighlight %} <h3>Methods</h3> <h4>$().tab</h4> <p> Activates a tab element and content container. Tab should have either a <code>data-target</code> or an <code>href</code> targeting a container node in the DOM. </p> {% highlight html %} <ul class="nav nav-tabs" role="tablist" id="myTab"> <li class="active"><a href="#home" role="tab" data-toggle="tab">Home</a></li> <li><a href="#profile" role="tab" data-toggle="tab">Profile</a></li> <li><a href="#messages" role="tab" data-toggle="tab">Messages</a></li> <li><a href="#settings" role="tab" data-toggle="tab">Settings</a></li> </ul> <div class="tab-content"> <div class="tab-pane active" id="home">...</div> <div class="tab-pane" id="profile">...</div> <div class="tab-pane" id="messages">...</div> <div class="tab-pane" id="settings">...</div> </div> <script> $(function () { $('#myTab a:last').tab('show') }) </script> {% endhighlight %} <h3>Events</h3> <div class="table-responsive"> <table class="table table-bordered table-striped"> <thead> <tr> <th style="width: 150px;">Event Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td>show.bs.tab</td> <td>This event fires on tab show, but before the new tab has been shown. Use <code>event.target</code> and <code>event.relatedTarget</code> to target the active tab and the previous active tab (if available) respectively.</td> </tr> <tr> <td>shown.bs.tab</td> <td>This event fires on tab show after a tab has been shown. Use <code>event.target</code> and <code>event.relatedTarget</code> to target the active tab and the previous active tab (if available) respectively.</td> </tr> </tbody> </table> </div><!-- /.table-responsive --> {% highlight js %} $('a[data-toggle="tab"]').on('shown.bs.tab', function (e) { e.target // activated tab e.relatedTarget // previous tab }) {% endhighlight %} </div>
cauchif/Zulm.pk
zulm/docs/_includes/js/tabs.html
HTML
mit
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: matrix_transform.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 &#160;<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&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;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&#160;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_f7324829a002c536307b42a892c06451.html">gtc</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">matrix_transform.hpp</div> </div> </div><!--header--> <div class="contents"> <a href="a00080.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;</div> <div class="line"><a name="l00046"></a><span class="lineno"> 46</span>&#160;<span class="preprocessor">#ifndef GLM_GTC_matrix_transform</span></div> <div class="line"><a name="l00047"></a><span class="lineno"> 47</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#define GLM_GTC_matrix_transform</span></div> <div class="line"><a name="l00048"></a><span class="lineno"> 48</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00049"></a><span class="lineno"> 49</span>&#160;<span class="comment">// Dependency:</span></div> <div class="line"><a name="l00050"></a><span class="lineno"> 50</span>&#160;<span class="preprocessor">#include &quot;../mat4x4.hpp&quot;</span></div> <div class="line"><a name="l00051"></a><span class="lineno"> 51</span>&#160;<span class="preprocessor">#include &quot;../vec2.hpp&quot;</span></div> <div class="line"><a name="l00052"></a><span class="lineno"> 52</span>&#160;<span class="preprocessor">#include &quot;../vec3.hpp&quot;</span></div> <div class="line"><a name="l00053"></a><span class="lineno"> 53</span>&#160;<span class="preprocessor">#include &quot;../vec4.hpp&quot;</span></div> <div class="line"><a name="l00054"></a><span class="lineno"> 54</span>&#160;</div> <div class="line"><a name="l00055"></a><span class="lineno"> 55</span>&#160;<span class="preprocessor">#if(defined(GLM_MESSAGES) &amp;&amp; !defined(GLM_EXT_INCLUDED))</span></div> <div class="line"><a name="l00056"></a><span class="lineno"> 56</span>&#160;<span class="preprocessor"></span><span class="preprocessor"># pragma message(&quot;GLM: GLM_GTC_matrix_transform extension included&quot;)</span></div> <div class="line"><a name="l00057"></a><span class="lineno"> 57</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#endif</span></div> <div class="line"><a name="l00058"></a><span class="lineno"> 58</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00059"></a><span class="lineno"> 59</span>&#160;<span class="keyword">namespace </span>glm</div> <div class="line"><a name="l00060"></a><span class="lineno"> 60</span>&#160;{</div> <div class="line"><a name="l00063"></a><span class="lineno"> 63</span>&#160;</div> <div class="line"><a name="l00084"></a><span class="lineno"> 84</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00085"></a><span class="lineno"> 85</span>&#160; GLM_FUNC_DECL detail::tmat4x4&lt;T, P&gt; <a class="code" href="a00176.html#ga1501de0fa580dcc491b67e0685bbc7c2">translate</a>(</div> <div class="line"><a name="l00086"></a><span class="lineno"> 86</span>&#160; detail::tmat4x4&lt;T, P&gt; <span class="keyword">const</span> &amp; m,</div> <div class="line"><a name="l00087"></a><span class="lineno"> 87</span>&#160; detail::tvec3&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00088"></a><span class="lineno"> 88</span>&#160; </div> <div class="line"><a name="l00100"></a><span class="lineno"> 100</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00101"></a><span class="lineno"> 101</span>&#160; GLM_FUNC_DECL detail::tmat4x4&lt;T, P&gt; <a class="code" href="a00176.html#ga61e65a3bb227c267d1a15113d1056fb1">rotate</a>(</div> <div class="line"><a name="l00102"></a><span class="lineno"> 102</span>&#160; detail::tmat4x4&lt;T, P&gt; <span class="keyword">const</span> &amp; m,</div> <div class="line"><a name="l00103"></a><span class="lineno"> 103</span>&#160; T <span class="keyword">const</span> &amp; <a class="code" href="a00179.html#ga23a3fc7ada5bbb665ff84c92c6e0542c">angle</a>,</div> <div class="line"><a name="l00104"></a><span class="lineno"> 104</span>&#160; detail::tvec3&lt;T, P&gt; <span class="keyword">const</span> &amp; <a class="code" href="a00179.html#ga8eef9f8c3f2e4836dccf09df975b20fb">axis</a>);</div> <div class="line"><a name="l00105"></a><span class="lineno"> 105</span>&#160;</div> <div class="line"><a name="l00116"></a><span class="lineno"> 116</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00117"></a><span class="lineno"> 117</span>&#160; GLM_FUNC_DECL detail::tmat4x4&lt;T, P&gt; <a class="code" href="a00176.html#gabd40959f269abd16c256a4f59ab03d62">scale</a>(</div> <div class="line"><a name="l00118"></a><span class="lineno"> 118</span>&#160; detail::tmat4x4&lt;T, P&gt; <span class="keyword">const</span> &amp; m,</div> <div class="line"><a name="l00119"></a><span class="lineno"> 119</span>&#160; detail::tvec3&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00120"></a><span class="lineno"> 120</span>&#160;</div> <div class="line"><a name="l00132"></a><span class="lineno"> 132</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;</div> <div class="line"><a name="l00133"></a><span class="lineno"> 133</span>&#160; GLM_FUNC_DECL detail::tmat4x4&lt;T, defaultp&gt; <a class="code" href="a00176.html#gac393e9262776e4980731c386123e4377">ortho</a>(</div> <div class="line"><a name="l00134"></a><span class="lineno"> 134</span>&#160; T <span class="keyword">const</span> &amp; left,</div> <div class="line"><a name="l00135"></a><span class="lineno"> 135</span>&#160; T <span class="keyword">const</span> &amp; right,</div> <div class="line"><a name="l00136"></a><span class="lineno"> 136</span>&#160; T <span class="keyword">const</span> &amp; bottom,</div> <div class="line"><a name="l00137"></a><span class="lineno"> 137</span>&#160; T <span class="keyword">const</span> &amp; top,</div> <div class="line"><a name="l00138"></a><span class="lineno"> 138</span>&#160; T <span class="keyword">const</span> &amp; zNear,</div> <div class="line"><a name="l00139"></a><span class="lineno"> 139</span>&#160; T <span class="keyword">const</span> &amp; zFar);</div> <div class="line"><a name="l00140"></a><span class="lineno"> 140</span>&#160;</div> <div class="line"><a name="l00150"></a><span class="lineno"> 150</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;</div> <div class="line"><a name="l00151"></a><span class="lineno"> 151</span>&#160; GLM_FUNC_DECL detail::tmat4x4&lt;T, defaultp&gt; <a class="code" href="a00176.html#gac393e9262776e4980731c386123e4377">ortho</a>(</div> <div class="line"><a name="l00152"></a><span class="lineno"> 152</span>&#160; T <span class="keyword">const</span> &amp; left,</div> <div class="line"><a name="l00153"></a><span class="lineno"> 153</span>&#160; T <span class="keyword">const</span> &amp; right,</div> <div class="line"><a name="l00154"></a><span class="lineno"> 154</span>&#160; T <span class="keyword">const</span> &amp; bottom,</div> <div class="line"><a name="l00155"></a><span class="lineno"> 155</span>&#160; T <span class="keyword">const</span> &amp; top);</div> <div class="line"><a name="l00156"></a><span class="lineno"> 156</span>&#160;</div> <div class="line"><a name="l00167"></a><span class="lineno"> 167</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00168"></a><span class="lineno"> 168</span>&#160; GLM_FUNC_DECL detail::tmat4x4&lt;T, P&gt; <a class="code" href="a00176.html#ga4e1138c8a4bcc3bbbb40090d8441b0a5">frustum</a>(</div> <div class="line"><a name="l00169"></a><span class="lineno"> 169</span>&#160; T <span class="keyword">const</span> &amp; left,</div> <div class="line"><a name="l00170"></a><span class="lineno"> 170</span>&#160; T <span class="keyword">const</span> &amp; right,</div> <div class="line"><a name="l00171"></a><span class="lineno"> 171</span>&#160; T <span class="keyword">const</span> &amp; bottom,</div> <div class="line"><a name="l00172"></a><span class="lineno"> 172</span>&#160; T <span class="keyword">const</span> &amp; top,</div> <div class="line"><a name="l00173"></a><span class="lineno"> 173</span>&#160; T <span class="keyword">const</span> &amp; near,</div> <div class="line"><a name="l00174"></a><span class="lineno"> 174</span>&#160; T <span class="keyword">const</span> &amp; far);</div> <div class="line"><a name="l00175"></a><span class="lineno"> 175</span>&#160;</div> <div class="line"><a name="l00184"></a><span class="lineno"> 184</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00185"></a><span class="lineno"> 185</span>&#160; GLM_FUNC_DECL detail::tmat4x4&lt;T, P&gt; <a class="code" href="a00176.html#ga24983212d8d25b5b32e30d574dfccd1c">perspective</a>(</div> <div class="line"><a name="l00186"></a><span class="lineno"> 186</span>&#160; T <span class="keyword">const</span> &amp; fovy,</div> <div class="line"><a name="l00187"></a><span class="lineno"> 187</span>&#160; T <span class="keyword">const</span> &amp; aspect,</div> <div class="line"><a name="l00188"></a><span class="lineno"> 188</span>&#160; T <span class="keyword">const</span> &amp; near,</div> <div class="line"><a name="l00189"></a><span class="lineno"> 189</span>&#160; T <span class="keyword">const</span> &amp; far);</div> <div class="line"><a name="l00190"></a><span class="lineno"> 190</span>&#160;</div> <div class="line"><a name="l00200"></a><span class="lineno"> 200</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00201"></a><span class="lineno"> 201</span>&#160; GLM_FUNC_DECL detail::tmat4x4&lt;T, P&gt; <a class="code" href="a00176.html#ga7e820c9c692e28041be6d7c7042e4e4a">perspectiveFov</a>(</div> <div class="line"><a name="l00202"></a><span class="lineno"> 202</span>&#160; T <span class="keyword">const</span> &amp; fov,</div> <div class="line"><a name="l00203"></a><span class="lineno"> 203</span>&#160; T <span class="keyword">const</span> &amp; width,</div> <div class="line"><a name="l00204"></a><span class="lineno"> 204</span>&#160; T <span class="keyword">const</span> &amp; height,</div> <div class="line"><a name="l00205"></a><span class="lineno"> 205</span>&#160; T <span class="keyword">const</span> &amp; near,</div> <div class="line"><a name="l00206"></a><span class="lineno"> 206</span>&#160; T <span class="keyword">const</span> &amp; far);</div> <div class="line"><a name="l00207"></a><span class="lineno"> 207</span>&#160;</div> <div class="line"><a name="l00215"></a><span class="lineno"> 215</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00216"></a><span class="lineno"> 216</span>&#160; GLM_FUNC_DECL detail::tmat4x4&lt;T, P&gt; <a class="code" href="a00176.html#ga7e5b5501b0113d0ed76ba4e3a8e5523c">infinitePerspective</a>(</div> <div class="line"><a name="l00217"></a><span class="lineno"> 217</span>&#160; T fovy, T aspect, T near);</div> <div class="line"><a name="l00218"></a><span class="lineno"> 218</span>&#160;</div> <div class="line"><a name="l00226"></a><span class="lineno"> 226</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00227"></a><span class="lineno"> 227</span>&#160; GLM_FUNC_DECL detail::tmat4x4&lt;T, P&gt; <a class="code" href="a00176.html#ga460dc59dd0debb5113f4a118251bff61">tweakedInfinitePerspective</a>(</div> <div class="line"><a name="l00228"></a><span class="lineno"> 228</span>&#160; T fovy, T aspect, T near);</div> <div class="line"><a name="l00229"></a><span class="lineno"> 229</span>&#160;</div> <div class="line"><a name="l00239"></a><span class="lineno"> 239</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, <span class="keyword">typename</span> U, precision P&gt;</div> <div class="line"><a name="l00240"></a><span class="lineno"> 240</span>&#160; GLM_FUNC_DECL detail::tvec3&lt;T, P&gt; <a class="code" href="a00176.html#ga41227b7b98882dcbaa8dab52df372c7b">project</a>(</div> <div class="line"><a name="l00241"></a><span class="lineno"> 241</span>&#160; detail::tvec3&lt;T, P&gt; <span class="keyword">const</span> &amp; obj,</div> <div class="line"><a name="l00242"></a><span class="lineno"> 242</span>&#160; detail::tmat4x4&lt;T, P&gt; <span class="keyword">const</span> &amp; model,</div> <div class="line"><a name="l00243"></a><span class="lineno"> 243</span>&#160; detail::tmat4x4&lt;T, P&gt; <span class="keyword">const</span> &amp; <a class="code" href="a00221.html#ga08294223071a96e777de7033cc708439">proj</a>,</div> <div class="line"><a name="l00244"></a><span class="lineno"> 244</span>&#160; detail::tvec4&lt;U, P&gt; <span class="keyword">const</span> &amp; viewport);</div> <div class="line"><a name="l00245"></a><span class="lineno"> 245</span>&#160;</div> <div class="line"><a name="l00255"></a><span class="lineno"> 255</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, <span class="keyword">typename</span> U, precision P&gt;</div> <div class="line"><a name="l00256"></a><span class="lineno"> 256</span>&#160; GLM_FUNC_DECL detail::tvec3&lt;T, P&gt; <a class="code" href="a00176.html#ga4b0a9086d15e2a743ecd7b6128146af1">unProject</a>(</div> <div class="line"><a name="l00257"></a><span class="lineno"> 257</span>&#160; detail::tvec3&lt;T, P&gt; <span class="keyword">const</span> &amp; win,</div> <div class="line"><a name="l00258"></a><span class="lineno"> 258</span>&#160; detail::tmat4x4&lt;T, P&gt; <span class="keyword">const</span> &amp; model,</div> <div class="line"><a name="l00259"></a><span class="lineno"> 259</span>&#160; detail::tmat4x4&lt;T, P&gt; <span class="keyword">const</span> &amp; <a class="code" href="a00221.html#ga08294223071a96e777de7033cc708439">proj</a>,</div> <div class="line"><a name="l00260"></a><span class="lineno"> 260</span>&#160; detail::tvec4&lt;U, P&gt; <span class="keyword">const</span> &amp; viewport);</div> <div class="line"><a name="l00261"></a><span class="lineno"> 261</span>&#160;</div> <div class="line"><a name="l00270"></a><span class="lineno"> 270</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P, <span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00271"></a><span class="lineno"> 271</span>&#160; GLM_FUNC_DECL detail::tmat4x4&lt;T, P&gt; <a class="code" href="a00176.html#ga0fb64f04bf5ad52523fcd4b10b46aff6">pickMatrix</a>(</div> <div class="line"><a name="l00272"></a><span class="lineno"> 272</span>&#160; detail::tvec2&lt;T, P&gt; <span class="keyword">const</span> &amp; center,</div> <div class="line"><a name="l00273"></a><span class="lineno"> 273</span>&#160; detail::tvec2&lt;T, P&gt; <span class="keyword">const</span> &amp; delta,</div> <div class="line"><a name="l00274"></a><span class="lineno"> 274</span>&#160; detail::tvec4&lt;U, P&gt; <span class="keyword">const</span> &amp; viewport);</div> <div class="line"><a name="l00275"></a><span class="lineno"> 275</span>&#160;</div> <div class="line"><a name="l00283"></a><span class="lineno"> 283</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00284"></a><span class="lineno"> 284</span>&#160; GLM_FUNC_DECL detail::tmat4x4&lt;T, P&gt; <a class="code" href="a00176.html#ga454fdf3163c2779eeeeeb9d75907ce97">lookAt</a>(</div> <div class="line"><a name="l00285"></a><span class="lineno"> 285</span>&#160; detail::tvec3&lt;T, P&gt; <span class="keyword">const</span> &amp; eye,</div> <div class="line"><a name="l00286"></a><span class="lineno"> 286</span>&#160; detail::tvec3&lt;T, P&gt; <span class="keyword">const</span> &amp; center,</div> <div class="line"><a name="l00287"></a><span class="lineno"> 287</span>&#160; detail::tvec3&lt;T, P&gt; <span class="keyword">const</span> &amp; up);</div> <div class="line"><a name="l00288"></a><span class="lineno"> 288</span>&#160;</div> <div class="line"><a name="l00290"></a><span class="lineno"> 290</span>&#160;}<span class="comment">//namespace glm</span></div> <div class="line"><a name="l00291"></a><span class="lineno"> 291</span>&#160;</div> <div class="line"><a name="l00292"></a><span class="lineno"> 292</span>&#160;<span class="preprocessor">#include &quot;matrix_transform.inl&quot;</span></div> <div class="line"><a name="l00293"></a><span class="lineno"> 293</span>&#160;</div> <div class="line"><a name="l00294"></a><span class="lineno"> 294</span>&#160;<span class="preprocessor">#endif//GLM_GTC_matrix_transform</span></div> <div class="ttc" id="a00176_html_ga61e65a3bb227c267d1a15113d1056fb1"><div class="ttname"><a href="a00176.html#ga61e65a3bb227c267d1a15113d1056fb1">glm::rotate</a></div><div class="ttdeci">GLM_FUNC_DECL detail::tmat4x4&lt; T, P &gt; rotate(detail::tmat4x4&lt; T, P &gt; const &amp;m, T const &amp;angle, detail::tvec3&lt; T, P &gt; const &amp;axis)</div><div class="ttdoc">Builds a rotation 4 * 4 matrix created from an axis vector and an angle. </div></div> <div class="ttc" id="a00221_html_ga08294223071a96e777de7033cc708439"><div class="ttname"><a href="a00221.html#ga08294223071a96e777de7033cc708439">glm::proj</a></div><div class="ttdeci">vecType proj(vecType const &amp;x, vecType const &amp;Normal)</div><div class="ttdoc">Projects x on Normal. </div></div> <div class="ttc" id="a00179_html_ga23a3fc7ada5bbb665ff84c92c6e0542c"><div class="ttname"><a href="a00179.html#ga23a3fc7ada5bbb665ff84c92c6e0542c">glm::angle</a></div><div class="ttdeci">GLM_FUNC_DECL T angle(detail::tquat&lt; T, P &gt; const &amp;x)</div><div class="ttdoc">Returns the quaternion rotation angle. </div></div> <div class="ttc" id="a00176_html_gabd40959f269abd16c256a4f59ab03d62"><div class="ttname"><a href="a00176.html#gabd40959f269abd16c256a4f59ab03d62">glm::scale</a></div><div class="ttdeci">GLM_FUNC_DECL detail::tmat4x4&lt; T, P &gt; scale(detail::tmat4x4&lt; T, P &gt; const &amp;m, detail::tvec3&lt; T, P &gt; const &amp;v)</div><div class="ttdoc">Builds a scale 4 * 4 matrix created from 3 scalars. </div></div> <div class="ttc" id="a00176_html_ga460dc59dd0debb5113f4a118251bff61"><div class="ttname"><a href="a00176.html#ga460dc59dd0debb5113f4a118251bff61">glm::tweakedInfinitePerspective</a></div><div class="ttdeci">GLM_FUNC_DECL detail::tmat4x4&lt; T, P &gt; tweakedInfinitePerspective(T fovy, T aspect, T near)</div><div class="ttdoc">Creates a matrix for a symmetric perspective-view frustum with far plane at infinite for graphics har...</div></div> <div class="ttc" id="a00176_html_ga1501de0fa580dcc491b67e0685bbc7c2"><div class="ttname"><a href="a00176.html#ga1501de0fa580dcc491b67e0685bbc7c2">glm::translate</a></div><div class="ttdeci">GLM_FUNC_DECL detail::tmat4x4&lt; T, P &gt; translate(detail::tmat4x4&lt; T, P &gt; const &amp;m, detail::tvec3&lt; T, P &gt; const &amp;v)</div><div class="ttdoc">Builds a translation 4 * 4 matrix created from a vector of 3 components. </div></div> <div class="ttc" id="a00176_html_ga24983212d8d25b5b32e30d574dfccd1c"><div class="ttname"><a href="a00176.html#ga24983212d8d25b5b32e30d574dfccd1c">glm::perspective</a></div><div class="ttdeci">GLM_FUNC_DECL detail::tmat4x4&lt; T, P &gt; perspective(T const &amp;fovy, T const &amp;aspect, T const &amp;near, T const &amp;far)</div><div class="ttdoc">Creates a matrix for a symetric perspective-view frustum. </div></div> <div class="ttc" id="a00176_html_ga0fb64f04bf5ad52523fcd4b10b46aff6"><div class="ttname"><a href="a00176.html#ga0fb64f04bf5ad52523fcd4b10b46aff6">glm::pickMatrix</a></div><div class="ttdeci">GLM_FUNC_DECL detail::tmat4x4&lt; T, P &gt; pickMatrix(detail::tvec2&lt; T, P &gt; const &amp;center, detail::tvec2&lt; T, P &gt; const &amp;delta, detail::tvec4&lt; U, P &gt; const &amp;viewport)</div><div class="ttdoc">Define a picking region. </div></div> <div class="ttc" id="a00176_html_ga7e5b5501b0113d0ed76ba4e3a8e5523c"><div class="ttname"><a href="a00176.html#ga7e5b5501b0113d0ed76ba4e3a8e5523c">glm::infinitePerspective</a></div><div class="ttdeci">GLM_FUNC_DECL detail::tmat4x4&lt; T, P &gt; infinitePerspective(T fovy, T aspect, T near)</div><div class="ttdoc">Creates a matrix for a symmetric perspective-view frustum with far plane at infinite. </div></div> <div class="ttc" id="a00176_html_gac393e9262776e4980731c386123e4377"><div class="ttname"><a href="a00176.html#gac393e9262776e4980731c386123e4377">glm::ortho</a></div><div class="ttdeci">GLM_FUNC_DECL detail::tmat4x4&lt; T, defaultp &gt; ortho(T const &amp;left, T const &amp;right, T const &amp;bottom, T const &amp;top, T const &amp;zNear, T const &amp;zFar)</div><div class="ttdoc">Creates a matrix for an orthographic parallel viewing volume. </div></div> <div class="ttc" id="a00179_html_ga8eef9f8c3f2e4836dccf09df975b20fb"><div class="ttname"><a href="a00179.html#ga8eef9f8c3f2e4836dccf09df975b20fb">glm::axis</a></div><div class="ttdeci">GLM_FUNC_DECL detail::tvec3&lt; T, P &gt; axis(detail::tquat&lt; T, P &gt; const &amp;x)</div><div class="ttdoc">Returns the q rotation axis. </div></div> <div class="ttc" id="a00176_html_ga4b0a9086d15e2a743ecd7b6128146af1"><div class="ttname"><a href="a00176.html#ga4b0a9086d15e2a743ecd7b6128146af1">glm::unProject</a></div><div class="ttdeci">GLM_FUNC_DECL detail::tvec3&lt; T, P &gt; unProject(detail::tvec3&lt; T, P &gt; const &amp;win, detail::tmat4x4&lt; T, P &gt; const &amp;model, detail::tmat4x4&lt; T, P &gt; const &amp;proj, detail::tvec4&lt; U, P &gt; const &amp;viewport)</div><div class="ttdoc">Map the specified window coordinates (win.x, win.y, win.z) into object coordinates. </div></div> <div class="ttc" id="a00176_html_ga7e820c9c692e28041be6d7c7042e4e4a"><div class="ttname"><a href="a00176.html#ga7e820c9c692e28041be6d7c7042e4e4a">glm::perspectiveFov</a></div><div class="ttdeci">GLM_FUNC_DECL detail::tmat4x4&lt; T, P &gt; perspectiveFov(T const &amp;fov, T const &amp;width, T const &amp;height, T const &amp;near, T const &amp;far)</div><div class="ttdoc">Builds a perspective projection matrix based on a field of view. </div></div> <div class="ttc" id="a00176_html_ga454fdf3163c2779eeeeeb9d75907ce97"><div class="ttname"><a href="a00176.html#ga454fdf3163c2779eeeeeb9d75907ce97">glm::lookAt</a></div><div class="ttdeci">GLM_FUNC_DECL detail::tmat4x4&lt; T, P &gt; lookAt(detail::tvec3&lt; T, P &gt; const &amp;eye, detail::tvec3&lt; T, P &gt; const &amp;center, detail::tvec3&lt; T, P &gt; const &amp;up)</div><div class="ttdoc">Build a look at view matrix. </div></div> <div class="ttc" id="a00176_html_ga4e1138c8a4bcc3bbbb40090d8441b0a5"><div class="ttname"><a href="a00176.html#ga4e1138c8a4bcc3bbbb40090d8441b0a5">glm::frustum</a></div><div class="ttdeci">GLM_FUNC_DECL detail::tmat4x4&lt; T, P &gt; frustum(T const &amp;left, T const &amp;right, T const &amp;bottom, T const &amp;top, T const &amp;near, T const &amp;far)</div><div class="ttdoc">Creates a frustum matrix. </div></div> <div class="ttc" id="a00176_html_ga41227b7b98882dcbaa8dab52df372c7b"><div class="ttname"><a href="a00176.html#ga41227b7b98882dcbaa8dab52df372c7b">glm::project</a></div><div class="ttdeci">GLM_FUNC_DECL detail::tvec3&lt; T, P &gt; project(detail::tvec3&lt; T, P &gt; const &amp;obj, detail::tmat4x4&lt; T, P &gt; const &amp;model, detail::tmat4x4&lt; T, P &gt; const &amp;proj, detail::tvec4&lt; U, P &gt; const &amp;viewport)</div><div class="ttdoc">Map the specified object coordinates (obj.x, obj.y, obj.z) into window coordinates. </div></div> </div><!-- fragment --></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<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/a00080_source.html
HTML
apache-2.0
27,714
<!DOCTYPE html> <html><head> <title> scheduler: event listener defined by script in a document in history</title> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="testlib/testlib.js"></script> </head> <body> <div id="log">FAILED (This TC requires JavaScript enabled)</div> <iframe src="about:blank"></iframe> <script> log('inline script #1'); function fireFooEvent(){ var evt=document.createEvent('Event'); evt.initEvent('foo', true, true); document.dispatchEvent(evt); } var doc = frames[0].document; doc.open('text/html'); doc.write('<script>top.log("IFRAME script");top.document.addEventListener("foo", function(e){ top.log("event: "+e.type); }, false)<\/script>'); log('end script #1'); </script> <script> fireFooEvent(); frames[0].location='about:blank'; // returning to about:blank should de-activate document that defined event listener..? </script> <script> fireFooEvent(); </script> <script type="text/javascript"> log( 'inline script #2' ); var t = async_test() function test() { assert_equals(frames[0].location.toString(), "about:blank"); assert_array_equals(eventOrder, ['inline script #1', 'IFRAME script', 'end script #1', 'event: foo', 'inline script #2' ]); t.done(); } onload = function() {setTimeout(t.step_func(function() {fireFooEvent(); test()}), 80)}; </script> </body></html>
youtube/cobalt
third_party/web_platform_tests/old-tests/submission/Opera/script_scheduling/083.html
HTML
bsd-3-clause
1,458
<!DOCTYPE html> <meta charset=utf-8> <title>invalid cite: userinfo-backslash</title> <q cite="http://a\b:c\[email protected]"></q>
youtube/cobalt
third_party/web_platform_tests/conformance-checkers/html/elements/q/cite/userinfo-backslash-novalid.html
HTML
bsd-3-clause
123
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_55) on Thu Apr 24 20:55:48 UTC 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class org.apache.solr.core.SolrXMLSerializer.SolrXMLDef (Solr 4.8.0 API)</title> <meta name="date" content="2014-04-24"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.solr.core.SolrXMLSerializer.SolrXMLDef (Solr 4.8.0 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/apache/solr/core/SolrXMLSerializer.SolrXMLDef.html" title="class in org.apache.solr.core">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/solr/core/class-use/SolrXMLSerializer.SolrXMLDef.html" target="_top">Frames</a></li> <li><a href="SolrXMLSerializer.SolrXMLDef.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 Class org.apache.solr.core.SolrXMLSerializer.SolrXMLDef" class="title">Uses of Class<br>org.apache.solr.core.SolrXMLSerializer.SolrXMLDef</h2> </div> <div class="classUseContainer">No usage of org.apache.solr.core.SolrXMLSerializer.SolrXMLDef</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/apache/solr/core/SolrXMLSerializer.SolrXMLDef.html" title="class in org.apache.solr.core">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/solr/core/class-use/SolrXMLSerializer.SolrXMLDef.html" target="_top">Frames</a></li> <li><a href="SolrXMLSerializer.SolrXMLDef.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright &copy; 2000-2014 Apache Software Foundation. All Rights Reserved.</i> <script src='../../../../../prettify.js' type='text/javascript'></script> <script type='text/javascript'> (function(){ var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = prettyPrint; } else { window.onload = function() { oldonload(); prettyPrint(); } } })(); </script> </small></p> </body> </html>
dtelaroli/angular-solr-example
solr-4.8.0/docs/solr-core/org/apache/solr/core/class-use/SolrXMLSerializer.SolrXMLDef.html
HTML
mit
4,890
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Vahl's boxwood factsheet on ARKive - Buxus vahlii</title> <link rel="canonical" href="http://www.arkive.org/vahls-boxwood/buxus-vahlii/" /> <link rel="stylesheet" type="text/css" media="screen,print" href="/rcss/factsheet.css" /> <link rel="icon" href="/favicon.ico" type="image/x-icon" /> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> </head> <body> <!-- onload="window.print()">--> <div id="container"> <div id="header"><a href="/"><img src="/rimg/factsheet/header_left.png" alt="" border="0" /><img src="/rimg/factsheet/header_logo.png" alt="" border="0" /><img src="/rimg/factsheet/header_right.png" alt="" border="0" /></a></div> <div id="content"> <h1>Vahl's boxwood (<i>Buxus vahlii</i>)</h1> <img alt="" src="/media/87/87C70488-5715-47C3-B616-6C0C658FD916/Presentation.Large/Vahls-boxwood-leaves.jpg"/> <table cellspacing="0" cellpadding="0" id="factList"> <tbody> <tr class="kingdom"><th align="left">Kingdom</th><td align="left">Plantae</td></tr> <tr class="phylum"><th align="left">Phylum</th><td align="left">Tracheophyta</td></tr> <tr class="class"><th align="left">Class</th><td align="left">Magnoliopsida</td></tr> <tr class="order"><th align="left">Order</th><td align="left">Euphorbiales</td></tr> <tr class="family"><th align="left">Family</th><td align="left">Buxaceae</td></tr> <tr class="genus"><th align="left">Genus</th><td align="left"><em>Buxus (1)</em></td></tr> </tbody> </table> <h2><img src="/rimg/factsheet/Status.png" class="heading" /></h2><p class="Status"><p>This species is classified as Critically Endangered (CR) on the IUCN Red List (1).</p></p><h2><img src="/rimg/factsheet/Description.png" class="heading" /></h2><p class="Description"><p>Information on Vahl's boxwood is currently being researched and written and will appear here shortly.</p></p><h2><img src="/rimg/factsheet/FurtherInformation.png" class="heading" /></h2><p class="Find out more"><p>For more information on the vahl's boxwood, see:</p> <ul> <li> Center for Plant Conservation: <br/><a href="http://www.centerforplantconservation.org/Collection/CPC_ViewProfile.asp?CPCNum=644" target="_blank">http://www.centerforplantconservation.org/Collection/CPC_ViewProfile.asp?CPCNum=644</a></li> </ul> </p><h2><img src="/rimg/factsheet/Authentication.png" class="heading" /></h2><p class="AuthenticatioModel"><p>This information is awaiting authentication by a species expert, and will be updated as soon as possible. If you are able to help please contact: <br/><a href="mailto:[email protected]">[email protected]</a></p></p><h2><img src="/rimg/factsheet/References.png" class="heading" /></h2> <ol id="references"> <li id="ref1"> <a id="reference_1" name="reference_1"></a> IUCN Red List (July, 2010) <br/><a href="http://www.iucnredlist.org" target="_blank">http://www.iucnredlist.org</a></li> </ol> </div> </div> </body> </html>
andrewedstrom/cs638project
raw_data/arkive-critically-endangered-html/buxus-vahlii.html
HTML
mit
3,249
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>ramsey: 8 s</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.10.0 / ramsey - 8.10.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> ramsey <small> 8.10.0 <span class="label label-success">8 s</span> </small> </h1> <p><em><script>document.write(moment("2020-02-26 23:22:14 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-02-26 23:22:14 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-m4 1 Virtual package relying on m4 coq 8.10.0 Formal proof management system num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.09.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.09.0 Official release 4.09.0 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.8.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;[email protected]&quot; homepage: &quot;https://github.com/coq-contribs/ramsey&quot; license: &quot;LGPL 2.1&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/Ramsey&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.10&quot; &amp; &lt; &quot;8.11~&quot;} ] tags: [ &quot;keyword: dimension one Ramsey theorem&quot; &quot;keyword: constructive mathematics&quot; &quot;keyword: almost full sets&quot; &quot;category: Mathematics/Logic/See also&quot; &quot;category: Mathematics/Combinatorics and Graph Theory&quot; &quot;category: Miscellaneous/Extracted Programs/Combinatorics&quot; ] authors: [ &quot;Marc Bezem&quot; ] bug-reports: &quot;https://github.com/coq-contribs/ramsey/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/ramsey.git&quot; synopsis: &quot;Ramsey Theory&quot; description: &quot;&quot;&quot; For dimension one, the Infinite Ramsey Theorem states that, for any subset A of the natural numbers nat, either A or nat\\A is infinite. This special case of the Pigeon Hole Principle is classically equivalent to: if A and B are both co-finite, then so is their intersection. None of these principles is constructively valid. In [VB] the notion of an almost full set is introduced, classically equivalent to co-finiteness, for which closure under finite intersection can be proved constructively. A is almost full if for every (strictly) increasing sequence f: nat -&gt; nat there exists an x in nat such that f(x) in A. The notion of almost full and its closure under finite intersection are generalized to all finite dimensions, yielding constructive Ramsey Theorems. The proofs for dimension two and higher essentially use Brouwer&#39;s Bar Theorem. In the proof development below we strengthen the notion of almost full for dimension one in the following sense. A: nat -&gt; Prop is called Y-full if for every (strictly) increasing sequence f: nat -&gt; nat we have (A (f (Y f))). Here of course Y : (nat -&gt; nat) -&gt; nat. Given YA-full A and YB-full B we construct X from YA and YB such that the intersection of A and B is X-full. This is essentially [VB, Th. 5.4], but now it can be done without using axioms, using only inductive types. The generalization to higher dimensions will be much more difficult and is not pursued here.&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/ramsey/archive/v8.10.0.tar.gz&quot; checksum: &quot;md5=4ac9988a8896338d3f8000c5832e39f0&quot; } </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-ramsey.8.10.0 coq.8.10.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam list; echo; ulimit -Sv 4000000; timeout 2h opam install -y --deps-only coq-ramsey.8.10.0 coq.8.10.0</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>4 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam list; echo; ulimit -Sv 16000000; timeout 2h opam install -y -v coq-ramsey.8.10.0 coq.8.10.0</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>8 s</dd> </dl> <h2>Installation size</h2> <p>Total: 37 K</p> <ul> <li>16 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/Ramsey/Ramsey.vo</code></li> <li>13 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/Ramsey/Ramsey.glob</code></li> <li>8 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/Ramsey/Ramsey.v</code></li> </ul> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq-ramsey.8.10.0</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <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
clean/Linux-x86_64-4.09.0-2.0.5/released/8.10.0/ramsey/8.10.0.html
HTML
mit
8,376
<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>條目&nbsp;</b></th><td class="std2">撮科打哄</td></tr> <tr><th class="std1"><b>注音&nbsp;</b></th><td class="std2">ㄘㄨㄛ ㄎㄜ ㄉㄚ<sup class="subfont">ˇ</sup> ㄏㄨㄥ<sup class="subfont">ˇ</sup></td></tr> <tr><th class="std1"><b>漢語拼音&nbsp;</b></th><td class="std2"><font class="english_word">cuō kē dǎ hǒng</font></td></tr> <tr><th class="std1"><b>釋義&nbsp;</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>&nbsp;</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/25000-25999/25559-22.html
HTML
mit
1,386
<!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.5.0_18) on Tue Nov 02 11:26:42 PDT 2010 --> <TITLE> All Classes </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameHeadingFont"> <B>All Classes</B></FONT> <BR> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="edu/sdsc/inca/AgentClient.html" title="class in edu.sdsc.inca" target="classFrame">AgentClient</A> <BR> <A HREF="edu/sdsc/inca/util/CachedProperties.html" title="class in edu.sdsc.inca.util" target="classFrame">CachedProperties</A> <BR> <A HREF="edu/sdsc/inca/Client.html" title="class in edu.sdsc.inca" target="classFrame">Client</A> <BR> <A HREF="edu/sdsc/inca/Component.html" title="class in edu.sdsc.inca" target="classFrame">Component</A> <BR> <A HREF="edu/sdsc/inca/util/ConfigProperties.html" title="class in edu.sdsc.inca.util" target="classFrame">ConfigProperties</A> <BR> <A HREF="edu/sdsc/inca/util/ConfigPropertiesTest.html" title="class in edu.sdsc.inca.util" target="classFrame">ConfigPropertiesTest</A> <BR> <A HREF="edu/sdsc/inca/ConfigurationException.html" title="class in edu.sdsc.inca" target="classFrame">ConfigurationException</A> <BR> <A HREF="edu/sdsc/inca/util/Constants.html" title="class in edu.sdsc.inca.util" target="classFrame">Constants</A> <BR> <A HREF="edu/sdsc/inca/util/CronSchedule.html" title="class in edu.sdsc.inca.util" target="classFrame">CronSchedule</A> <BR> <A HREF="edu/sdsc/inca/util/CronScheduleTest.html" title="class in edu.sdsc.inca.util" target="classFrame">CronScheduleTest</A> <BR> <A HREF="edu/sdsc/inca/util/Crypter.html" title="class in edu.sdsc.inca.util" target="classFrame">Crypter</A> <BR> <A HREF="edu/sdsc/inca/util/CrypterException.html" title="class in edu.sdsc.inca.util" target="classFrame">CrypterException</A> <BR> <A HREF="edu/sdsc/inca/util/CrypterTest.html" title="class in edu.sdsc.inca.util" target="classFrame">CrypterTest</A> <BR> <A HREF="edu/sdsc/inca/DepotClient.html" title="class in edu.sdsc.inca" target="classFrame">DepotClient</A> <BR> <A HREF="edu/sdsc/inca/util/ExpandablePattern.html" title="class in edu.sdsc.inca.util" target="classFrame">ExpandablePattern</A> <BR> <A HREF="edu/sdsc/inca/util/ExpandablePatternTest.html" title="class in edu.sdsc.inca.util" target="classFrame">ExpandablePatternTest</A> <BR> <A HREF="edu/sdsc/inca/util/ExprEvaluator.html" title="class in edu.sdsc.inca.util" target="classFrame">ExprEvaluator</A> <BR> <A HREF="edu/sdsc/inca/util/ExprEvaluatorTest.html" title="class in edu.sdsc.inca.util" target="classFrame">ExprEvaluatorTest</A> <BR> <A HREF="edu/sdsc/inca/protocol/GetLog.html" title="class in edu.sdsc.inca.protocol" target="classFrame">GetLog</A> <BR> <A HREF="edu/sdsc/inca/protocol/LogConfig.html" title="class in edu.sdsc.inca.protocol" target="classFrame">LogConfig</A> <BR> <A HREF="edu/sdsc/inca/ManagerClient.html" title="class in edu.sdsc.inca" target="classFrame">ManagerClient</A> <BR> <A HREF="edu/sdsc/inca/protocol/MessageHandler.html" title="class in edu.sdsc.inca.protocol" target="classFrame">MessageHandler</A> <BR> <A HREF="edu/sdsc/inca/protocol/MessageHandler.Permittee.html" title="class in edu.sdsc.inca.protocol" target="classFrame">MessageHandler.Permittee</A> <BR> <A HREF="edu/sdsc/inca/protocol/MessageHandler.PermitteeGroup.html" title="enum in edu.sdsc.inca.protocol" target="classFrame">MessageHandler.PermitteeGroup</A> <BR> <A HREF="edu/sdsc/inca/protocol/MessageHandlerFactory.html" title="class in edu.sdsc.inca.protocol" target="classFrame">MessageHandlerFactory</A> <BR> <A HREF="edu/sdsc/inca/protocol/MessageHandlerFactoryTest.html" title="class in edu.sdsc.inca.protocol" target="classFrame">MessageHandlerFactoryTest</A> <BR> <A HREF="edu/sdsc/inca/protocol/Permit.html" title="class in edu.sdsc.inca.protocol" target="classFrame">Permit</A> <BR> <A HREF="edu/sdsc/inca/protocol/PermitTest.html" title="class in edu.sdsc.inca.protocol" target="classFrame">PermitTest</A> <BR> <A HREF="edu/sdsc/inca/protocol/Ping.html" title="class in edu.sdsc.inca.protocol" target="classFrame">Ping</A> <BR> <A HREF="edu/sdsc/inca/protocol/Protocol.html" title="class in edu.sdsc.inca.protocol" target="classFrame">Protocol</A> <BR> <A HREF="edu/sdsc/inca/protocol/ProtocolException.html" title="class in edu.sdsc.inca.protocol" target="classFrame">ProtocolException</A> <BR> <A HREF="edu/sdsc/inca/protocol/ProtocolReader.html" title="class in edu.sdsc.inca.protocol" target="classFrame">ProtocolReader</A> <BR> <A HREF="edu/sdsc/inca/protocol/ProtocolReaderTest.html" title="class in edu.sdsc.inca.protocol" target="classFrame">ProtocolReaderTest</A> <BR> <A HREF="edu/sdsc/inca/protocol/ProtocolWriter.html" title="class in edu.sdsc.inca.protocol" target="classFrame">ProtocolWriter</A> <BR> <A HREF="edu/sdsc/inca/protocol/ProtocolWriterTest.html" title="class in edu.sdsc.inca.protocol" target="classFrame">ProtocolWriterTest</A> <BR> <A HREF="edu/sdsc/inca/repository/ReporterPackage.html" title="class in edu.sdsc.inca.repository" target="classFrame">ReporterPackage</A> <BR> <A HREF="edu/sdsc/inca/repository/Repositories.html" title="class in edu.sdsc.inca.repository" target="classFrame">Repositories</A> <BR> <A HREF="edu/sdsc/inca/repository/RepositoriesTest.html" title="class in edu.sdsc.inca.repository" target="classFrame">RepositoriesTest</A> <BR> <A HREF="edu/sdsc/inca/repository/Repository.html" title="class in edu.sdsc.inca.repository" target="classFrame">Repository</A> <BR> <A HREF="edu/sdsc/inca/repository/RepositoryPackageTest.html" title="class in edu.sdsc.inca.repository" target="classFrame">RepositoryPackageTest</A> <BR> <A HREF="edu/sdsc/inca/util/ResourcesWrapper.html" title="class in edu.sdsc.inca.util" target="classFrame">ResourcesWrapper</A> <BR> <A HREF="edu/sdsc/inca/util/ResourcesWrapperTest.html" title="class in edu.sdsc.inca.util" target="classFrame">ResourcesWrapperTest</A> <BR> <A HREF="edu/sdsc/inca/protocol/Revoke.html" title="class in edu.sdsc.inca.protocol" target="classFrame">Revoke</A> <BR> <A HREF="edu/sdsc/inca/protocol/RevokeAll.html" title="class in edu.sdsc.inca.protocol" target="classFrame">RevokeAll</A> <BR> <A HREF="edu/sdsc/inca/util/RpmPackage.html" title="class in edu.sdsc.inca.util" target="classFrame">RpmPackage</A> <BR> <A HREF="edu/sdsc/inca/Server.html" title="class in edu.sdsc.inca" target="classFrame">Server</A> <BR> <A HREF="edu/sdsc/inca/ServerClientTest.html" title="class in edu.sdsc.inca" target="classFrame">ServerClientTest</A> <BR> <A HREF="edu/sdsc/inca/ServerInput.html" title="class in edu.sdsc.inca" target="classFrame">ServerInput</A> <BR> <A HREF="edu/sdsc/inca/ServerTest.html" title="class in edu.sdsc.inca" target="classFrame">ServerTest</A> <BR> <A HREF="edu/sdsc/inca/protocol/StandardMessageHandler.html" title="class in edu.sdsc.inca.protocol" target="classFrame">StandardMessageHandler</A> <BR> <A HREF="edu/sdsc/inca/protocol/Statement.html" title="class in edu.sdsc.inca.protocol" target="classFrame">Statement</A> <BR> <A HREF="edu/sdsc/inca/protocol/StatementTest.html" title="class in edu.sdsc.inca.protocol" target="classFrame">StatementTest</A> <BR> <A HREF="edu/sdsc/inca/util/StringMethods.html" title="class in edu.sdsc.inca.util" target="classFrame">StringMethods</A> <BR> <A HREF="edu/sdsc/inca/util/StringMethodsTest.html" title="class in edu.sdsc.inca.util" target="classFrame">StringMethodsTest</A> <BR> <A HREF="edu/sdsc/inca/util/SuiteModificationException.html" title="class in edu.sdsc.inca.util" target="classFrame">SuiteModificationException</A> <BR> <A HREF="edu/sdsc/inca/util/SuiteStagesWrapper.html" title="class in edu.sdsc.inca.util" target="classFrame">SuiteStagesWrapper</A> <BR> <A HREF="edu/sdsc/inca/util/SuiteStagesWrapperTest.html" title="class in edu.sdsc.inca.util" target="classFrame">SuiteStagesWrapperTest</A> <BR> <A HREF="edu/sdsc/inca/util/SuiteWrapper.html" title="class in edu.sdsc.inca.util" target="classFrame">SuiteWrapper</A> <BR> <A HREF="edu/sdsc/inca/util/SuiteWrapperTest.html" title="class in edu.sdsc.inca.util" target="classFrame">SuiteWrapperTest</A> <BR> <A HREF="edu/sdsc/inca/protocol/VerifyProtocolVersion.html" title="class in edu.sdsc.inca.protocol" target="classFrame">VerifyProtocolVersion</A> <BR> <A HREF="edu/sdsc/inca/protocol/VerifyProtocolVersionTest.html" title="class in edu.sdsc.inca.protocol" target="classFrame">VerifyProtocolVersionTest</A> <BR> <A HREF="edu/sdsc/inca/util/Worker.html" title="class in edu.sdsc.inca.util" target="classFrame">Worker</A> <BR> <A HREF="edu/sdsc/inca/util/WorkItem.html" title="interface in edu.sdsc.inca.util" target="classFrame"><I>WorkItem</I></A> <BR> <A HREF="edu/sdsc/inca/util/WorkQueue.html" title="class in edu.sdsc.inca.util" target="classFrame">WorkQueue</A> <BR> <A HREF="edu/sdsc/inca/util/WorkQueueTest.html" title="class in edu.sdsc.inca.util" target="classFrame">WorkQueueTest</A> <BR> <A HREF="edu/sdsc/inca/util/XmlWrapper.html" title="class in edu.sdsc.inca.util" target="classFrame">XmlWrapper</A> <BR> <A HREF="edu/sdsc/inca/util/XmlWrapperTest.html" title="class in edu.sdsc.inca.util" target="classFrame">XmlWrapperTest</A> <BR> </FONT></TD> </TR> </TABLE> </BODY> </HTML>
IncaProject/IncaProject.github.io
releases/2.6/javawsdocs/allclasses-frame.html
HTML
mit
9,384
<!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> Orbis Engineering Field Services Ltd. - 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=1492233060630&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=33974&V_SEARCH.docsStart=33973&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&amp;estblmntNo=234567041301&amp;profileId=61&amp;_evId=bck&amp;lang=eng&amp;V_SEARCH.showStricts=false&amp;prtl=1&amp;_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&amp;rstBtn.x=" class="btn btn-link">New Search</a>&nbsp;|</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>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=33972&amp;V_DOCUMENT.docRank=33973&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492233093474&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=123456039805&amp;profileId=&amp;key.newSearchLabel=">Previous Company</a></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=33974&amp;V_DOCUMENT.docRank=33975&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492233093474&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567118766&amp;profileId=&amp;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> Orbis Engineering Field Services Ltd. </h2> <div class="row"> <div class="col-md-5"> <h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2> <p>Orbis Engineering Field Services Ltd.</p> <div class="mrgn-tp-md"></div> <p class="mrgn-bttm-0" ><a href="http://www.orbisengineering.net" target="_blank" title="Website URL">http://www.orbisengineering.net</a></p> <p><a href="mailto:[email protected]" title="[email protected]">[email protected]</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"> 300-9404 41 Ave NW<br/> EDMONTON, Alberta<br/> T6E 6G8 <br/> </address> <h2 class="h5 mrgn-bttm-0">Location Address:</h2> <address class="mrgn-bttm-md"> 300-9404 41 Ave NW<br/> EDMONTON, Alberta<br/> T6E 6G8 <br/> </address> <p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>: (780) 988-1455 </p> <p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>: (866) 886-7247</p> <p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>: (780) 988-0191</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> Orbis Engineering Field Services specializes in field engineering for a range of industries including power generation, utilities, mining and pipelines. Services include power system field services, engineering services, maintenance planning, project management, automation services, mechanical engineering support services, training services, and thermographic scanning. <br> <br>Orbis safety protocols are meticulous, staff is experienced, and the culture is one of support. Orbis&#39; ability to service remote and restricted areas has made them the preferred engineering firm for many clients. <br> <br>Orbis started in 2001 with its head office located in Edmonton, AB. Other office locations include Vancouver, BC; Calgary, AB; Saskatoon, SK; and Santiago, Chile. Orbis is 100+ employees strong, boasts low employee turnover consistently well below the industry average, has a high percentage of repeat customers, and maintains an excellent safety rating.<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> Amin Kassam </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--> General Manager </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Export Sales & Marketing, Domestic Sales & Marketing, Management Executive. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (780) 988-1455 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Facsimile: </strong> </div> <div class="col-md-7"> (780) 988-0191 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> [email protected] </div> </div> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Cody Zaitsoff </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--> Controller </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, Finance/Accounting, Management Executive, Export Sales & Marketing. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (780) 988-1455 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Facsimile: </strong> </div> <div class="col-md-7"> (780) 988-0191 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> [email protected] </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 &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 541330 - Engineering Services </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Services &nbsp; </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"> Electrical Engineering and Electrical Field Services<br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Field Services Equipment Servicing (batteries, cables, circuit breakers, MCC, power transformers, protective relays, substation switchgears) <br> Engineering Design for Transmission, Distribution &amp; Generation, Substations, Industrial Plants, and Protection &amp; Controls <br> Power System Studies and Power System Modelling <br> Engineering Site Services (Project Management, Construction Scheduling, Equipment Evaluations) <br> Automation Services (RTU, PLC, SCADA, HMI, Utility Substation Telecontrol Commissioning) <br> Planning Services (Maintenance Planning, Master Data Support for SAP, Ellipse, Maximo, Project Management)<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> Amin Kassam </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--> General Manager </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Export Sales & Marketing, Domestic Sales & Marketing, Management Executive. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (780) 988-1455 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Facsimile: </strong> </div> <div class="col-md-7"> (780) 988-0191 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> [email protected] </div> </div> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Cody Zaitsoff </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--> Controller </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, Finance/Accounting, Management Executive, Export Sales & Marketing. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (780) 988-1455 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Facsimile: </strong> </div> <div class="col-md-7"> (780) 988-0191 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> [email protected] </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 &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 541330 - Engineering Services </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Services &nbsp; </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"> Electrical Engineering and Electrical Field Services<br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Field Services Equipment Servicing (batteries, cables, circuit breakers, MCC, power transformers, protective relays, substation switchgears) <br> Engineering Design for Transmission, Distribution &amp; Generation, Substations, Industrial Plants, and Protection &amp; Controls <br> Power System Studies and Power System Modelling <br> Engineering Site Services (Project Management, Construction Scheduling, Equipment Evaluations) <br> Automation Services (RTU, PLC, SCADA, HMI, Utility Substation Telecontrol Commissioning) <br> Planning Services (Maintenance Planning, Master Data Support for SAP, Ellipse, Maximo, Project Management)<br> <br> </div> </div> </section> </details> </div> </div> <div class="row"> <div class="col-md-12 text-right"> Last Update Date 2016-02-05 </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&amp;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&amp;WT.js=No&amp;WT.tv=9.4.0&amp;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/234567160747.html
HTML
mit
42,602
<html> <head> <title>Jordie Lane'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>Jordie Lane's panel show appearances</h1> <p>Jordie Lane has appeared in <span class="total">1</span> episodes between 2009-2009. 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="1"></div><span class="year">2009</span></td> </tr> </table> </div> <ol class="episodes"> <li><strong>2009-11-04</strong> / <a href="../shows/spicks-and-specks.html">Spicks and Specks</a></li> </ol> </div> </body> </html>
slowe/panelshows
people/kg6vbm76.html
HTML
mit
1,003
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Login Page - Photon Admin Panel Theme</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0"> <link rel="shortcut icon" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/favicon.ico" /> <link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/iosicon.png" /> <!-- DEVELOPMENT LESS --> <!-- <link rel="stylesheet/less" href="css/photon.less" media="all" /> <link rel="stylesheet/less" href="css/photon-responsive.less" media="all" /> --> <!-- PRODUCTION CSS --> <link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/css/css_compiled/photon-min.css?v1.1" media="all" /> <link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/css/css_compiled/photon-min-part2.css?v1.1" media="all" /> <link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/css/css_compiled/photon-responsive-min.css?v1.1" media="all" /> <!--[if IE]> <link rel="stylesheet" type="text/css" href="css/css_compiled/ie-only-min.css?v1.1" /> <![endif]--> <!--[if lt IE 9]> <link rel="stylesheet" type="text/css" href="css/css_compiled/ie8-only-min.css?v1.1" /> <script type="text/javascript" src="js/plugins/excanvas.js"></script> <script type="text/javascript" src="js/plugins/html5shiv.js"></script> <script type="text/javascript" src="js/plugins/respond.min.js"></script> <script type="text/javascript" src="js/plugins/fixFontIcons.js"></script> <![endif]--> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/bootstrap/bootstrap.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/modernizr.custom.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.pnotify.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/less-1.3.1.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/xbreadcrumbs.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.maskedinput-1.3.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.autotab-1.1b.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/charCount.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.textareaCounter.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/elrte.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/elrte.en.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/select2.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery-picklist.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.validate.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/additional-methods.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.form.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.metadata.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.mockjax.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.uniform.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.tagsinput.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.rating.pack.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/farbtastic.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.timeentry.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.dataTables.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.jstree.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/dataTables.bootstrap.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.mousewheel.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.mCustomScrollbar.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.flot.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.flot.stack.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.flot.pie.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.flot.resize.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/raphael.2.1.0.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/justgage.1.0.1.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.qrcode.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.clock.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.countdown.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.jqtweet.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/jquery.cookie.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/bootstrap-fileupload.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/prettify/prettify.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/bootstrapSwitch.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/plugins/mfupload.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/js/common.js"></script> </head> <body class="body-login"> <div class="nav-fixed-topright" style="visibility: hidden"> <ul class="nav nav-user-menu"> <li class="user-sub-menu-container"> <a href="javascript:;"> <i class="user-icon"></i><span class="nav-user-selection">Theme Options</span><i class="icon-menu-arrow"></i> </a> <ul class="nav user-sub-menu"> <li class="light"> <a href="javascript:;"> <i class='icon-photon stop'></i>Light Version </a> </li> <li class="dark"> <a href="javascript:;"> <i class='icon-photon stop'></i>Dark Version </a> </li> </ul> </li> <li> <a href="javascript:;"> <i class="icon-photon mail"></i> </a> </li> <li> <a href="javascript:;"> <i class="icon-photon comment_alt2_stroke"></i> <div class="notification-count">12</div> </a> </li> </ul> </div> <script> $(function(){ setTimeout(function(){ $('.nav-fixed-topright').removeAttr('style'); }, 300); $(window).scroll(function(){ if($('.breadcrumb-container').length){ var scrollState = $(window).scrollTop(); if (scrollState > 0) $('.nav-fixed-topright').addClass('nav-released'); else $('.nav-fixed-topright').removeClass('nav-released') } }); $('.user-sub-menu-container').on('click', function(){ $(this).toggleClass('active-user-menu'); }); $('.user-sub-menu .light').on('click', function(){ if ($('body').is('.light-version')) return; $('body').addClass('light-version'); setTimeout(function() { $.cookie('themeColor', 'light', { expires: 7, path: '/' }); }, 500); }); $('.user-sub-menu .dark').on('click', function(){ if ($('body').is('.light-version')) { $('body').removeClass('light-version'); $.cookie('themeColor', 'dark', { expires: 7, path: '/' }); } }); }); </script> <div class="container-login"> <div class="form-centering-wrapper"> <div class="form-window-login"> <div class="form-window-login-logo"> <div class="login-logo"> <img src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/images/photon/[email protected]" alt="Photon UI"/> </div> <h2 class="login-title">Welcome to Photon UI!</h2> <div class="login-member">Not a Member?&nbsp;<a href="elrte.min.js.html#">Sign Up &#187;</a> <a href="elrte.min.js.html#" class="btn btn-facebook"><i class="icon-fb"></i>Login with Facebook<i class="icon-fb-arrow"></i></a> </div> <div class="login-or">Or</div> <div class="login-input-area"> <form method="POST" action="dashboard.php"> <span class="help-block">Login With Your Photon Account</span> <input type="text" name="email" placeholder="Email"> <input type="password" name="password" placeholder="Password"> <button type="submit" class="btn btn-large btn-success btn-login">Login</button> </form> <a href="elrte.min.js.html#" class="forgot-pass">Forgot Your Password?</a> </div> </div> </div> </div> </div> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-1936460-27']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </body> </html>
user-tony/photon-rails
lib/assets/images/photon/plugins/elrte/js/js/plugins/prettify/js/plugins/elrte.min.js.html
HTML
mit
14,532
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Brian Schrader - D242</title> <link rel="shortcut icon" href="/assets/images/favicon.ico"> <link rel="stylesheet" href="/assets/css/style.css"> <link rel="alternate" type="application/rss+xml" title="My Blog" href="/rss.xml"> <link rel="stylesheet" href="/assets/css/highlight.css"> </head> <body> <nav class="main-nav"> <a href="/"> <span class="arrow">←</span> Home </a> <a href="/about">About </a> <a class="cta" href="/feed.xml">RSS</a> </nav> <section id="wrapper" class=""> <article class="post"> <header> <!-- <h1>D242</h1> --> <h2 class="headline">March 30, 2016</h2> </header> <section id="post-body"> <p>and I&#39;m pretty confident that I would have noticed it if it did. I&#39;ve logged a <em>lot</em> of typing hours on my Mac laptops. #college</p> </section> </article> <footer id="post-meta" class="clearfix"> <a href="http://snippets.today/users/sonicrocketman"> <img class="avatar" src="http://www.gravatar.com/avatar/11b074a636e00292c98e3e60f7e16595?s=160" /> <div> <span class="dark">sonicrocketman</span> <span>Brian Schrader</span> </div> </a> <section id="sharing"> <a class="twitter" href="https://twitter.com/intent/tweet?text=http://sonicrocketman.snippets.xyz/2016/03/30/d242.html"><span class="icon-twitter"> Tweet</span></a> <a class="facebook" href="#" onclick=" window.open( 'https://www.facebook.com/sharer/sharer.php?u='+encodeURIComponent(location.href), 'facebook-share-dialog', 'width=626,height=436'); return false;"><span class="icon-facebook-rect"> Share</span> </a> </section> </footer> <!-- Disqus comments --> <!-- Archive post list --> <!-- <ul id="post-list" class="archive readmore"> <h3>Read more</h3> <li> <a href="/2016/09/13/70a7.html">I'm convinced he was a friendly plumbing spirit. I'll never forget you; you were here so briefly I'm not sure you even existed at all. <aside class="dates">Sep 13</aside></a> </li> <li> <a href="/2016/09/13/5e48.html">Plumber came today to fix a large leak. He came to the door smiling, was here 10 mins, fixed the issue, laughed joyously, and said goodbye. <aside class="dates">Sep 13</aside></a> </li> <li> <a href="/2016/09/13/1184.html">First impressions of iOS 10: All the text is HUGE. <aside class="dates">Sep 13</aside></a> </li> <li> <a href="/2016/09/13/4799.html">I guess the whole app wasn't pure white enough. Jony Ive wasn't happy. <aside class="dates">Sep 13</aside></a> </li> <li> <a href="/2016/09/13/ec93.html">Not sure why the new version of iTunes removed the custom, album cover based playlist background colors, but I'm sad they're gone. <aside class="dates">Sep 13</aside></a> </li> <li> <a href="/2016/09/12/e9e1.html">I love this effect on photos. [http://bit.ly/2cUuJgV](http://bit.ly/2cUuJgV) credit: @museofadventure <aside class="dates">Sep 12</aside></a> </li> <li> <a href="/2016/09/09/5e5c.html">Typos make quotes better. <aside class="dates">Sep 09</aside></a> </li> <li> <a href="/2016/09/09/8c20.html">"See how he pops and locks agains his will?" <aside class="dates">Sep 09</aside></a> </li> <li> <a href="/2016/09/08/75b3.html">Thanks to everyone who's been commenting or visiting the Adventurer's Codex site. Your response has been amazing. <aside class="dates">Sep 08</aside></a> </li> <li> <a href="/2016/09/07/ed5f.html">I'm thrilled to announce a project I've been working on for a while now: Announcing Adventurer's Codex, a D&D 5e players tool. [http://bit.ly/2c5BLg7](http://bit.ly/2c5BLg7) <aside class="dates">Sep 07</aside></a> </li> <li> <a href="/2016/08/25/ada7.html">🎶Adding email filters🎶 <aside class="dates">Aug 25</aside></a> </li> <li> <a href="/2016/08/19/4ccf.html">I need a break for a week. [http://bit.ly/2bxiGlS](http://bit.ly/2bxiGlS) <aside class="dates">Aug 19</aside></a> </li> <li> <a href="/2016/08/16/cbd2.html">Now this is a hack, but it is also a working hack. [http://bit.ly/2aXQKcB](http://bit.ly/2aXQKcB) <aside class="dates">Aug 16</aside></a> </li> <li> <a href="/2016/08/15/9691.html">Other than that though, it's super fun. #NoMansSky <aside class="dates">Aug 15</aside></a> </li> <li> <a href="/2016/08/15/024b.html">One thing about No Man's Sky: the lack of an intro in Minecraft was never really a plus either. <aside class="dates">Aug 15</aside></a> </li> <li> <a href="/2016/08/14/4d06.html">"Gigabuckets of anti-love" <aside class="dates">Aug 14</aside></a> </li> <li> <a href="/2016/08/12/8d24.html">Solving the real problems. [http://bit.ly/2aQNYFS](http://bit.ly/2aQNYFS) @museofadventure <aside class="dates">Aug 12</aside></a> </li> <li> <a href="/2016/08/12/892f.html">Let the Star Gazing begin! #persieds <aside class="dates">Aug 12</aside></a> </li> <li> <a href="/2016/08/11/5edf.html">I think I've reached peak tech irony (sorry HackerNews commenters). [http://bit.ly/2aPx4WW](http://bit.ly/2aPx4WW) <aside class="dates">Aug 11</aside></a> </li> <li> <a href="/2016/08/10/f342.html">making plans with @museofadventure [http://bit.ly/2aKFxMn](http://bit.ly/2aKFxMn) <aside class="dates">Aug 10</aside></a> </li> <li> <a href="/2016/08/09/1a7d.html">I'm so full of good food. 😌😴 <aside class="dates">Aug 09</aside></a> </li> <li> <a href="/2016/08/09/eebb.html">(Yes I just popped in a new fuze). Thanks internet. [http://bit.ly/2aHP19W](http://bit.ly/2aHP19W) <aside class="dates">Aug 09</aside></a> </li> <li> <a href="/2016/08/09/2b1d.html">I wouldn't have normally noticed until I didn't see the reflection while driving. This stopped me before it could be a problem. 👍 <aside class="dates">Aug 09</aside></a> </li> <li> <a href="/2016/08/09/1f90.html">Apparently my car won't go into gear (there's an override) if the brake light fuze goes out. That's actually pretty cool. <aside class="dates">Aug 09</aside></a> </li> <li> <a href="/2016/07/30/5968.html">"Minor Text Fixes" - Most hated words in 2016 <aside class="dates">Jul 30</aside></a> </li> <li> <a href="/2016/07/30/7520.html">There must be 80 people here sitting in a small plaza, in the shade playing Pokemon. All ages. <aside class="dates">Jul 30</aside></a> </li> <li> <a href="/2016/07/27/7087.html">"Completely empty flight tonight" - Attendant 👍😊😴 <aside class="dates">Jul 27</aside></a> </li> <li> <a href="/2016/07/27/357b.html">SJC➡️SAN✈️ <aside class="dates">Jul 27</aside></a> </li> <li> <a href="/2016/07/27/c31f.html">Writing up a pre-flight post... ready for home. <aside class="dates">Jul 27</aside></a> </li> <li> <a href="/2016/07/27/eb90.html">Pre-Flight cappuccino <aside class="dates">Jul 27</aside></a> </li> <li> <a href="/2016/07/26/6834.html">This vacation is 30% Pokemon Go. <aside class="dates">Jul 26</aside></a> </li> <li> <a href="/2016/07/24/cc0f.html">OH: "Feet is not a feeling." <aside class="dates">Jul 24</aside></a> </li> <li> <a href="/2016/07/24/8dcc.html">Only a little sunburned... <aside class="dates">Jul 24</aside></a> </li> <li> <a href="/2016/07/23/4662.html">More views. [http://bit.ly/2a6inwX](http://bit.ly/2a6inwX) <aside class="dates">Jul 23</aside></a> </li> <li> <a href="/2016/07/23/807d.html">Dear SF, please teach your birds not to crap on my head. K thanks. <aside class="dates">Jul 23</aside></a> </li> <li> <a href="/2016/07/23/88ad.html">TIL Davey Crockett rode into town on the backs of crocodiles. [http://bit.ly/2aiC3Bh](http://bit.ly/2aiC3Bh) <aside class="dates">Jul 23</aside></a> </li> <li> <a href="/2016/07/23/dc22.html">Feels too much like San Diego here. Not that that's bad, just that I was already in San Diego. <aside class="dates">Jul 23</aside></a> </li> <li> <a href="/2016/07/23/5918.html">You know San Francisco, without the cold and the fog you lose a lot of the mystique. <aside class="dates">Jul 23</aside></a> </li> <li> <a href="/2016/07/23/04bc.html">The audiophile section of the last episode of @atpfm was longer than my flight. Super cool stuff though. <aside class="dates">Jul 23</aside></a> </li> <li> <a href="/2016/07/23/7be0.html">Traveling with @MuseofAdventure 😆🌅⏳☕️🎶😞 <aside class="dates">Jul 23</aside></a> </li> <li> <a href="/2016/07/23/9b21.html">SAN➡️SJC ✈️ <aside class="dates">Jul 23</aside></a> </li> <li> <a href="/2016/07/22/65d3.html">Second wind: Go! <aside class="dates">Jul 22</aside></a> </li> <li> <a href="/2016/07/20/5f83.html">New café recently opened down the street. Good coffee, weak AC. ☕😊️🔥😞 <aside class="dates">Jul 20</aside></a> </li> <li> <a href="/2016/07/20/aa08.html">An interesting writeup about today's Stack Overflow outage. [http://bit.ly/29Wk53Z](http://bit.ly/29Wk53Z) <aside class="dates">Jul 20</aside></a> </li> <li> <a href="/2016/07/20/8ff7.html">Xcode doesn't support Swift refactoring so I'm over here writing scripts to grep through source files. Funnily enough, I don't really mind. <aside class="dates">Jul 20</aside></a> </li> <li> <a href="/2016/07/20/e7f5.html">Python people are usually sticklers for it, and consequently, I am now too. But Swift is making it really difficult. <aside class="dates">Jul 20</aside></a> </li> <li> <a href="/2016/07/20/1b4d.html">Does anyone out there even attempt to keep ~80 characters/line in Swift? <aside class="dates">Jul 20</aside></a> </li> <li> <a href="/2016/07/19/58a1.html">It's a two coffee morning. ☕️☕️ <aside class="dates">Jul 19</aside></a> </li> <li> <a href="/2016/07/15/c66c.html">Holy crap Turkey. <aside class="dates">Jul 15</aside></a> </li> <li> <a href="/2016/07/15/7f78.html">Out for a night of Pokemon hunting. <aside class="dates">Jul 15</aside></a> </li> <li> <a href="/2016/07/11/8989.html">Will it finally be cool to wear a Pokemon hat as an adult now? I've waited for that moment for years. <aside class="dates">Jul 11</aside></a> </li> <li> <a href="/2016/07/11/caa7.html">Its official. I'm now fully indoctrinated. I've had the server crash on me while catching Pokemon. <aside class="dates">Jul 11</aside></a> </li> <li> <a href="/2016/07/11/4fd0.html">I know I'm a bit late to the party, but I'm here now. <aside class="dates">Jul 11</aside></a> </li> <li> <a href="/2016/07/11/6e42.html">Whelp. It's happened. [http://bit.ly/29CEkYa](http://bit.ly/29CEkYa) <aside class="dates">Jul 11</aside></a> </li> <li> <a href="/2016/07/08/1377.html">What do you call global, shared-state objects: NSNotificationCenter.defaultCenter, UIApplication.sharedApplication, etc? I say services. <aside class="dates">Jul 08</aside></a> </li> <li> <a href="/2016/07/05/a427.html">View from the top. #prefireworks [http://bit.ly/29mryMc](http://bit.ly/29mryMc) <aside class="dates">Jul 05</aside></a> </li> <li> <a href="/2016/07/04/da5b.html">Linode, you're awesome. <aside class="dates">Jul 04</aside></a> </li> <li> <a href="/2016/07/04/b1c7.html">[notice] everything is fine. It's a non-crucial personal server. Thanks to the folks at Linode for detecting the hack and shutting it down. <aside class="dates">Jul 04</aside></a> </li> <li> <a href="/2016/07/04/29a6.html">Ladies and Gentlemen, I have been hacked. [http://bit.ly/29oAEdb](http://bit.ly/29oAEdb) <aside class="dates">Jul 04</aside></a> </li> <li> <a href="/2016/07/02/52e6.html">There's a local Dixieland brass band playing on the front steps of a historical hotel down the street from me. I love this neighborhood. <aside class="dates">Jul 02</aside></a> </li> <li> <a href="/2016/06/28/10f3.html">Python Programming Interview: A: "What are the steps to make a PB&J sandwich?" B: "from sandwich import PBJ; my_sammie = PBJ()" <aside class="dates">Jun 28</aside></a> </li> <li> <a href="/2016/06/28/894d.html">Remember when we used to print emails, web pages, etc cause we wanted the "real version"? <aside class="dates">Jun 28</aside></a> </li> <li> <a href="/2016/06/28/df60.html">I normally don't really care for server admin stuff, but doing first time setup for production servers is exciting. It's like passing a milestone. <aside class="dates">Jun 28</aside></a> </li> <li> <a href="/2016/06/28/3e87.html">The project is real now. <aside class="dates">Jun 28</aside></a> </li> <li> <a href="/2016/06/21/c355.html">Last night @museofadventure took some great pictures of the Strawberry Moon. [http://bit.ly/28LEDvI](http://bit.ly/28LEDvI) <aside class="dates">Jun 21</aside></a> </li> <li> <a href="/2016/06/21/b4ad.html">I climb mountain like mountain goat. Minus the stumbling of course. <aside class="dates">Jun 21</aside></a> </li> <li> <a href="/2016/06/21/001c.html">The moon is so bright and its light is so moon-beautiful. Moon is moon best. Moon. #moon <aside class="dates">Jun 21</aside></a> </li> <li> <a href="/2016/06/21/fa7c.html">Keep the streak! [http://bit.ly/28JOu4e](http://bit.ly/28JOu4e) <aside class="dates">Jun 21</aside></a> </li> <li> <a href="/2016/06/19/4caf.html">Oh sweet, merciful god I found shade. <aside class="dates">Jun 19</aside></a> </li> <li> <a href="/2016/06/18/0050.html">OH: "12PM is the noon?" <aside class="dates">Jun 18</aside></a> </li> <li> <a href="/2016/06/16/b513.html">A long, but overall successful morning of coding. Now, I has lunch! <aside class="dates">Jun 16</aside></a> </li> <li> <a href="/2016/06/08/405f.html">"This isn't a Request for Thoughts. It's a Request for Comments." <aside class="dates">Jun 08</aside></a> </li> <li> <a href="/2016/06/07/f785.html">That's what software engineers should aspire to create. <aside class="dates">Jun 07</aside></a> </li> <li> <a href="/2016/06/07/2672.html">Not only is BBEdit's software great, but releases are timely with OS updates, and their documentation is complete (as far as I can tell). <aside class="dates">Jun 07</aside></a> </li> <li> <a href="/2016/06/07/9c61.html">BBEdit is a fantastic example of mature, correct software. It doesn't look "modern", but it's extremely powerful, stable, and feature-rich. <aside class="dates">Jun 07</aside></a> </li> <li> <a href="/2016/06/04/c4c2.html">PDX ➡️SAN ✈️ <aside class="dates">Jun 04</aside></a> </li> <li> <a href="/2016/06/04/f368.html">I will definitely be back. And hopefully before #PyCon2017 <aside class="dates">Jun 04</aside></a> </li> <li> <a href="/2016/06/04/1a03.html">It's been fun Portland. But now I must leave you. <aside class="dates">Jun 04</aside></a> </li> <li> <a href="/2016/06/03/ba0c.html">I. Love. This. City. <aside class="dates">Jun 03</aside></a> </li> <li> <a href="/2016/06/03/bfde.html">Why did I have to travel all the way from San Diego for this? Best coffee shop idea I've seen. [http://www.revolucioncoffeehouse.com](http://www.revolucioncoffeehouse.com) <aside class="dates">Jun 03</aside></a> </li> <li> <a href="/2016/06/03/7992.html">Re Portland: there's a lot of beautiful architecture. So many old buildings and churches. <aside class="dates">Jun 03</aside></a> </li> <li> <a href="/2016/06/03/2d82.html">I'm a sucker for columns. [http://bit.ly/1PrZ0Sc](http://bit.ly/1PrZ0Sc) <aside class="dates">Jun 03</aside></a> </li> <li> <a href="/2016/06/03/c8eb.html">Sacajawea [http://bit.ly/20XJmhX](http://bit.ly/20XJmhX) <aside class="dates">Jun 03</aside></a> </li> <li> <a href="/2016/06/03/7d72.html">Biscuits for Breakfast. 😊 <aside class="dates">Jun 03</aside></a> </li> <li> <a href="/2016/06/02/06f9.html">Now this is what Portland is about. #coffee [http://bit.ly/1r4kGrN](http://bit.ly/1r4kGrN) <aside class="dates">Jun 02</aside></a> </li> <li> <a href="/2016/06/02/d4e8.html">Tired. #PyCon has beaten me. <aside class="dates">Jun 02</aside></a> </li> <li> <a href="/2016/06/02/e3b5.html">Usually. [http://bit.ly/1Uvzjim](http://bit.ly/1Uvzjim) <aside class="dates">Jun 02</aside></a> </li> <li> <a href="/2016/06/01/8554.html">best quote, "crap, crap, crap, crap, crap, crap, crap, crap, crap, crap, crap, crap, crap, crap, crap, crap, crap, crap, crap, crap, yes!" <aside class="dates">Jun 01</aside></a> </li> <li> <a href="/2016/06/01/63b1.html">Great talks, great people, but I'm exhausted. <aside class="dates">Jun 01</aside></a> </li> <li> <a href="/2016/05/31/7c82.html">I can't imagine nicer Portland weather. <aside class="dates">May 31</aside></a> </li> <li> <a href="/2016/05/31/3e48.html">A Pork Katsu Torta? Yes please! <aside class="dates">May 31</aside></a> </li> <li> <a href="/2016/05/31/080b.html">some awesome lightning talks #pycon2016 <aside class="dates">May 31</aside></a> </li> <li> <a href="/2016/05/30/2b10.html">Oh no. Other Mac apps are doing the whole "jump to the cursor on-click like iMessage does" thing. Please fix this Apple. <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/8a73.html">Automation > Process #pycon2016 <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/7ac3.html">All of the talks are closed captioned. I feel so bad for them, so much jargon. <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/91ff.html">Up next: "The Cobbler's Children have no Shoes." <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/6df5.html">Seriously, their apps are so ridiculously good. <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/844a.html">The one thing I miss most after leaving Twitter: @tweetbot. <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/193b.html">define your charaters (funtions) before they're used. #pycon2016 <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/b555.html">programming style as storytelling. great idea. <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/ffda.html">"Readability matters because you don't scale" #pycon2016 <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/9b78.html">"Software is made out of people...and their time." <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/daec.html">Everyone in the room has Slack, Twitter, and Github open. <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/46c5.html">recovering git branches... YES! <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/b03f.html">Git: Fear of losing work is a barrier to learning/experimentation #pycon2016 <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/bd57.html">so many good talks all at the same time... <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/d31c.html">All examples in Python3. #asitshouldbe #pycon2016 <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/fb8e.html">btw if you don't care about programming or Python, then you might want to mute #pycon2016 for the next few days. <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/8412.html">First session of the day: File descriptors, UNIX sockets and other POSIX wizardry. #pycon2016 <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/9c03.html">PyCon so far has been 5% technology and 95% inclusivity, community, diversity, and education. #pycon2016 <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/7325.html">It's time for PyCon: Day 1! <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/c00c.html">Free food! <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/1c59.html">Badged. [http://bit.ly/1Z7sLb3](http://bit.ly/1Z7sLb3) <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/3c82.html">Portland Lyft driver makes a Portlandia reference and neither of the dudes from San Diego got it. #auspiciousstart <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/30/0a2c.html">I'm in Portland! <aside class="dates">May 30</aside></a> </li> <li> <a href="/2016/05/29/0513.html">Got some time to wait in the terminal. Time for some Revolutions Podcast! [https://overcast.fm/](https://overcast.fm/) BFNrRhjmI <aside class="dates">May 29</aside></a> </li> <li> <a href="/2016/05/29/51ae.html">My activity graph makes cat ears. [http://bit.ly/20Q8R4S](http://bit.ly/20Q8R4S) <aside class="dates">May 29</aside></a> </li> <li> <a href="/2016/05/29/db5e.html">Thank you to whoever unplugged the 12-port, communal charging strip so they could plug in their iPad directly. We didn't need those. <aside class="dates">May 29</aside></a> </li> <li> <a href="/2016/05/29/7e3e.html">SAN➡️PDX✈️ <aside class="dates">May 29</aside></a> </li> <li> <a href="/2016/05/28/70b4.html">🐍 Prepping for PyCon! 🐍 <aside class="dates">May 28</aside></a> </li> <li> <a href="/2016/05/28/8c01.html">Me before entering a Twitter argument. [http://gph.is/1eRvd1P](http://gph.is/1eRvd1P) <aside class="dates">May 28</aside></a> </li> <li> <a href="/2016/05/26/dd52.html">Glad to see that this case ended how it should have. The consequences are huge. [http://bit.ly/1UgpGUC](http://bit.ly/1UgpGUC) <aside class="dates">May 26</aside></a> </li> <li> <a href="/2016/05/26/244f.html">This is my favorite thing this week. [http://bit.ly/1Ru1mKn](http://bit.ly/1Ru1mKn) <aside class="dates">May 26</aside></a> </li> <li> <a href="/2016/05/24/8975.html">Guns replaced with selfie sticks [http://bit.ly/25k2aia](http://bit.ly/25k2aia) <aside class="dates">May 24</aside></a> </li> <li> <a href="/2016/05/24/b0c8.html">Work, now with breakfast! Order now! <aside class="dates">May 24</aside></a> </li> <li> <a href="/2016/05/23/dd56.html">End of a long, productive day. Now that nourishment has been consumed, it's time to relax. 🤖 *beep* <aside class="dates">May 23</aside></a> </li> <li> <a href="/2016/05/21/5b9f.html">Well it will be in an hour, at least. <aside class="dates">May 21</aside></a> </li> <li> <a href="/2016/05/21/0757.html">What time is it? Band practice time! <aside class="dates">May 21</aside></a> </li> <li> <a href="/2016/05/21/5940.html">It's serious stuff. [http://bit.ly/1NDPYRl](http://bit.ly/1NDPYRl) <aside class="dates">May 21</aside></a> </li> <li> <a href="/2016/05/20/f009.html">Can we all agree that there are too many proprietary chat apps, and bluetooth dongles? <aside class="dates">May 20</aside></a> </li> <li> <a href="/2016/05/18/d39f.html">🎶Configuring Postgres🎶 <aside class="dates">May 18</aside></a> </li> <li> <a href="/2016/05/18/cfbc.html">For reference, this is the keyboard in question. [http://amzn.to/1TZK4sT](http://amzn.to/1TZK4sT) <aside class="dates">May 18</aside></a> </li> <li> <a href="/2016/05/18/4caf.html">Got a new keyboard today; not used to split layouts. This might be a good motivator for me to learn to type correctly. <aside class="dates">May 18</aside></a> </li> <li> <a href="/2016/05/18/1fc1.html">I'm really liking the iTunes update yesterday. What year is this? <aside class="dates">May 18</aside></a> </li> <li> <a href="/2016/05/17/7d11.html">Different topic: I'm really liking Swift. It's a little inconsistent at times (EAFP/LBYL) but it's really practical. [http://www.oranlooney.com/lbyl-vs-eafp/](http://www.oranlooney.com/lbyl-vs-eafp/) <aside class="dates">May 17</aside></a> </li> <li> <a href="/2016/05/17/4ba1.html">Not just for if you lock yourself out (which is **huge**) but if you want to go to your car and you left the keys at your desk or something. <aside class="dates">May 17</aside></a> </li> <li> <a href="/2016/05/17/d255.html">Best advice I've ever gotten: Put a copy of your car key in your wallet. <aside class="dates">May 17</aside></a> </li> <li> <a href="/2016/05/15/e8b3.html">And now, band practice. 🎶 <aside class="dates">May 15</aside></a> </li> <li> <a href="/2016/05/15/2f47.html">Tried to take a time-lapse while bike riding. Took a slow-mo instead: 5 minutes of 240 glorious frames per second. <aside class="dates">May 15</aside></a> </li> <li> <a href="/2016/05/10/eb26.html">Remember the old days? [http://bit.ly/1XjNBFp](http://bit.ly/1XjNBFp) <aside class="dates">May 10</aside></a> </li> <li> <a href="/2016/04/25/4dfe.html">I have Xcode open. Repeat: I have Xcode open. <aside class="dates">Apr 25</aside></a> </li> <li> <a href="/2016/04/17/7810.html">Surprisingly, its working well. <aside class="dates">Apr 17</aside></a> </li> <li> <a href="/2016/04/17/3d84.html">I don't know why I'm doing it, but I am. <aside class="dates">Apr 17</aside></a> </li> <li> <a href="/2016/04/17/cda7.html">Currently listening to music in iTunes, streamed from my webserver, via Icecast, from NiceCast, using VLC, streamed from my media server. <aside class="dates">Apr 17</aside></a> </li> <li> <a href="/2016/04/16/8c88.html">"Apple recovered [a tonne] of gold from broken iPhones last year" [http://cnnmon.ie/1WxNBkK](http://cnnmon.ie/1WxNBkK) <aside class="dates">Apr 16</aside></a> </li> <li> <a href="/2016/04/16/688e.html">With this coffee, I am become human. <aside class="dates">Apr 16</aside></a> </li> <li> <a href="/2016/04/12/8d5d.html">Actually, can we make "Relevant Rocky and Bullwinkle" a thing? <aside class="dates">Apr 12</aside></a> </li> <li> <a href="/2016/04/12/1e3e.html">Request: Plz upload all human knowledge to the internet. I couldn't find a relevant Rocky and Bullwinkle episode and my joke was lost. k thx <aside class="dates">Apr 12</aside></a> </li> <li> <a href="/2016/04/07/abfa.html">Filenames are hard. <aside class="dates">Apr 07</aside></a> </li> <li> <a href="/2016/04/06/8416.html">Yesterday was the first time in months that I've added a new contact on my Mac. Went to my iPhone this morning: it's not there. <aside class="dates">Apr 06</aside></a> </li> <li> <a href="/2016/04/06/6e76.html">Mr. Rogers Neighborhood [http://bit.ly/25L6ZPg](http://bit.ly/25L6ZPg) <aside class="dates">Apr 06</aside></a> </li> <li> <a href="/2016/04/06/af55.html">"Why is this place called the Cave of Hopelessness?" "Oh fear not lad, tis named for its discoverer: Reginald Hopelessness..." <aside class="dates">Apr 06</aside></a> </li> <li> <a href="/2016/04/06/0ff0.html">"Deep in the Geysers of Gygax" <aside class="dates">Apr 06</aside></a> </li> <li> <a href="/2016/04/06/f52e.html">Waves. [http://bit.ly/1MRqI9s](http://bit.ly/1MRqI9s) <aside class="dates">Apr 06</aside></a> </li> <li> <a href="/2016/04/05/5a2b.html">Current status [http://bit.ly/1q4VEc1](http://bit.ly/1q4VEc1) <aside class="dates">Apr 05</aside></a> </li> <li> <a href="/2016/04/05/6cc2.html">Apparently we depend on C++, Perl, and even Powershell. Here's our full report. [http://pastebin.com/c0UwdGBK](http://pastebin.com/c0UwdGBK) <aside class="dates">Apr 05</aside></a> </li> <li> <a href="/2016/04/05/9b99.html">For a side project: We've written 8,500 lines of code. That code depends on 1,012,723 lines of 3rd party code. /cc @caseyliss <aside class="dates">Apr 05</aside></a> </li> <li> <a href="/2016/04/04/7272.html">Yup. [http://www.listen-tome.com/wasted-hours/](http://www.listen-tome.com/wasted-hours/) <aside class="dates">Apr 04</aside></a> </li> <li> <a href="/2016/04/04/bdf1.html">Fog [http://bit.ly/1MOry76](http://bit.ly/1MOry76) <aside class="dates">Apr 04</aside></a> </li> <li> <a href="/2016/04/02/35f8.html">Got a guitar yesterday. New to me, needed some cleaning but I've taken care of that, and of course new strings. Can't wait to play today! <aside class="dates">Apr 02</aside></a> </li> <li> <a href="/2016/04/01/59c9.html">People like pictures. <aside class="dates">Apr 01</aside></a> </li> <li> <a href="/2016/04/01/081e.html">Knowing all that, I got extremely giddy just now because I converted some console log statements into an HTML report with a progress bar. <aside class="dates">Apr 01</aside></a> </li> <li> <a href="/2016/04/01/200f.html">Developers get frustrated when people react to small visual changes over large code changes. To people that's when something becomes real. <aside class="dates">Apr 01</aside></a> </li> <li> <a href="/2016/04/01/06ee.html">umm... why? [http://bit.ly/1N0zRr2](http://bit.ly/1N0zRr2) <aside class="dates">Apr 01</aside></a> </li> <li> <a href="/2016/03/30/a03a.html">*cough* [http://bit.ly/1WYCNKq](http://bit.ly/1WYCNKq) <aside class="dates">Mar 30</aside></a> </li> <li> <a href="/2016/03/30/1135.html">Captionbot describes itself. [http://bit.ly/1ZLmyC8](http://bit.ly/1ZLmyC8) <aside class="dates">Mar 30</aside></a> </li> <li> <a href="/2016/03/30/e7d8.html">I am a tap-to-click trackpad wizard. <aside class="dates">Mar 30</aside></a> </li> <li> <a href="/2016/03/30/d242.html"><p>and I&#39;m pretty confident that I would have noticed it if it did. I&#39;ve logged a <em>lot</em> of typing hours on my Mac laptops. #college</p> <aside class="dates">Mar 30</aside></a> </li> <li> <a href="/2016/03/30/efdf.html"><p>Not sure if I&#39;m imagining it, but when I&#39;m using a trackpad, I mouse with my left hand (my dominant hand) and I&#39;ve never had issues. </p> <aside class="dates">Mar 30</aside></a> </li> <li> <a href="/2016/03/30/8763.html"><p>My setup today. Using my laptops keyboard and trackpad. <a href="http://bit.ly/1omk7Zc">http://bit.ly/1omk7Zc</a></p> <aside class="dates">Mar 30</aside></a> </li> <li> <a href="/2016/03/30/09fa.html"><p>I&#39;m banishing you to the depths! <a href="http://bit.ly/1UCC2Jz">http://bit.ly/1UCC2Jz</a></p> <aside class="dates">Mar 30</aside></a> </li> <li> <a href="/2016/03/30/2e17.html"><p>Anyone with burgeoning RSI use a magic trackpad over a mouse? I never seem to have issues when I&#39;m using my laptop, only with a mouse.</p> <aside class="dates">Mar 30</aside></a> </li> <li> <a href="/2016/03/30/c45e.html"><p>My favorite kind of weather. <a href="http://bit.ly/1ThtPsN">http://bit.ly/1ThtPsN</a></p> <aside class="dates">Mar 30</aside></a> </li> <li> <a href="/2016/03/29/e589.html"><p>Why do I Git version non-code projects? Because I can easily look up when, where, what, and how past me changed something. It&#39;s extremely useful.</p> <aside class="dates">Mar 29</aside></a> </li> <li> <a href="/2016/03/29/3ac7.html"><p>I highly doubt they will. &quot;[this] raises questions about... whether it will inform Apple about these vulnerabilities&quot; <a href="http://bit.ly/22VVxxU">http://bit.ly/22VVxxU</a></p> <aside class="dates">Mar 29</aside></a> </li> <li> <a href="/2016/03/29/e784.html"><p>It&#39;s never a good time when the Finder says an empty directory uses 28GB. That&#39;s when the panic starts.</p> <aside class="dates">Mar 29</aside></a> </li> <li> <a href="/2016/03/29/1e47.html"><p>Looks like a Disk Utility First Aid check caught the issue. <em>phew</em> 😪</p> <aside class="dates">Mar 29</aside></a> </li> <li> <a href="/2016/03/29/499f.html"><p>Oh no... 😣 please HFS , don&#39;t be corrupted.</p> <aside class="dates">Mar 29</aside></a> </li> <li> <a href="/2016/03/29/c773.html"><p>It took me all day, but I&#39;m down to the last cup of this french press of coffee I made this morning.</p> <aside class="dates">Mar 29</aside></a> </li> <li> <a href="/2016/03/28/c670.html"><p>Months after it came out, my parents are finally seeing Star Wars. </p> <aside class="dates">Mar 28</aside></a> </li> <li> <a href="/2016/03/28/2b0d.html"><p>4 cups of coffee and I&#39;m still tired. </p> <aside class="dates">Mar 28</aside></a> </li> <li> <a href="/2016/03/26/362e.html"><p>Post-hike Perrier. </p> <aside class="dates">Mar 26</aside></a> </li> <li> <a href="/2016/03/26/69d7.html"><p>I need to turn up my filter on Hacker News. </p> <aside class="dates">Mar 26</aside></a> </li> <li> <a href="/2016/03/25/b811.html"><p>Most of the buildings are still there. &quot;Classic NYC street photos, from the 1930s and now&quot; <a href="http://bit.ly/1SlQ3ax">http://bit.ly/1SlQ3ax</a></p> <aside class="dates">Mar 25</aside></a> </li> <li> <a href="/2016/03/25/045d.html"><p>The actual help menu appears when you run the script with no arguments. </p> <aside class="dates">Mar 25</aside></a> </li> <li> <a href="/2016/03/25/37ca.html"><p>You know you&#39;re using some really special software when the --help option just prints out Perl code with no additional comments.</p> <aside class="dates">Mar 25</aside></a> </li> <li> <a href="/2016/03/24/d904.html"><p>Hell is PDFs for documentation. </p> <aside class="dates">Mar 24</aside></a> </li> <li> <a href="/2016/03/23/fafa.html"><p>Early coffeehouses in Oxford (~1700s) held talks on topics like politics, news, science, etc. Why don&#39;t we do that today? TED: Coffeehouse</p> <aside class="dates">Mar 23</aside></a> </li> <li> <a href="/2016/03/23/5102.html"><p>so close... </p> <aside class="dates">Mar 23</aside></a> </li> <li> <a href="/2016/03/22/606d.html"><p>Big Software</p> <aside class="dates">Mar 22</aside></a> </li> <li> <a href="/2016/03/22/4855.html"><p>When there&#39;s no more coffee, it&#39;s time to leave.</p> <aside class="dates">Mar 22</aside></a> </li> <li> <a href="/2016/03/22/e228.html"><p>HTML was designed for researchers to publish and link to each other&#39;s work. Yet it&#39;s 2016 and we&#39;re still using PDF. <a href="http://bit.ly/25jeT24">http://bit.ly/25jeT24</a></p> <aside class="dates">Mar 22</aside></a> </li> <li> <a href="/2016/03/21/8c7b.html"><p>Looking at the list of talks for PyCon: I&#39;m not past the first set of sessions and I can&#39;t decide which one to go to. #AGoodProblemToHave</p> <aside class="dates">Mar 21</aside></a> </li> <li> <a href="/2016/03/21/86c8.html"><p>aaaaaaaaand no new Macs.</p> <aside class="dates">Mar 21</aside></a> </li> <li> <a href="/2016/03/21/c4c8.html"><p>What the hell is a &quot;nit of light?&quot; </p> <aside class="dates">Mar 21</aside></a> </li> <li> <a href="/2016/03/21/a743.html"><p>Wow. Tim Cook starting off the keynote with the FBI debacle. </p> <aside class="dates">Mar 21</aside></a> </li> <li> <a href="/2016/03/21/2af5.html"><p>Apple event screen. <a href="http://bit.ly/1ZkLKz8">http://bit.ly/1ZkLKz8</a></p> <aside class="dates">Mar 21</aside></a> </li> <li> <a href="/2016/03/20/3924.html"><p>Prepping for band practice. 🎶😊🎶</p> <aside class="dates">Mar 20</aside></a> </li> <li> <a href="/2016/03/20/6014.html"><p>Setting up a new Wordpress installation is pretty easy as long as you haven&#39;t messed with your Apache PHP configuration. Then it&#39;s a nightmare. </p> <aside class="dates">Mar 20</aside></a> </li> <li> <a href="/2016/03/18/e46a.html"><p>so much want.</p> <aside class="dates">Mar 18</aside></a> </li> <li> <a href="/2016/03/18/c612.html"><p>TIL that you can design custom telecasters... (designed, not ordered) <a href="http://bit.ly/1WuxSAF">http://bit.ly/1WuxSAF</a></p> <aside class="dates">Mar 18</aside></a> </li> <li> <a href="/2016/03/17/5108.html"><p>Why is there no standard way of sharing music playlists? And if there is, why doesn&#39;t iTunes support it?</p> <aside class="dates">Mar 17</aside></a> </li> <li> <a href="/2016/03/17/2986.html"><p>Well, I skimmed that paper and looked at the graphs. That&#39;s about all I could understand. :P</p> <aside class="dates">Mar 17</aside></a> </li> <li> <a href="/2016/03/17/3c3f.html"><p>My reading for today: Generalized methods and solvers for noise removal from piecewise constant signals. We&#39;ll see how this goes. </p> <aside class="dates">Mar 17</aside></a> </li> <li> <a href="/2016/03/17/2672.html"><p>A good morning so far. <a href="http://bit.ly/1R6435L">http://bit.ly/1R6435L</a></p> <aside class="dates">Mar 17</aside></a> </li> <li> <a href="/2016/03/15/e0af.html"><p>Everyone needs this Giphy Alfred workflow. <a href="http://bit.ly/1Xt1K0D">http://bit.ly/1Xt1K0D</a></p> <aside class="dates">Mar 15</aside></a> </li> <li> <a href="/2016/03/15/81da.html"><p>Google&#39;s like, &quot;Platform specific interface guidelines? lolwut?&quot; <a href="http://bit.ly/1QTq2iA">http://bit.ly/1QTq2iA</a></p> <aside class="dates">Mar 15</aside></a> </li> <li> <a href="/2016/03/15/b25f.html"><p>That&#39;s probably the 10th time I&#39;ve posted that. It&#39;s not funny to most people, but it&#39;s funny to me.</p> <aside class="dates">Mar 15</aside></a> </li> <li> <a href="/2016/03/14/bf08.html"><p>Thanks @overcast! I&#39;ve wanted a dark mode forever (looks great too) and file upload is something I can&#39;t wait to use.</p> <aside class="dates">Mar 14</aside></a> </li> <li> <a href="/2016/03/11/6283.html"><p>A universal install script. <a href="http://xkcd.com/1654/">http://xkcd.com/1654/</a></p> <aside class="dates">Mar 11</aside></a> </li> <li> <a href="/2016/03/11/5723.html"><p>🎶Mocking all the things🎶</p> <aside class="dates">Mar 11</aside></a> </li> <li> <a href="/2016/03/08/035e.html"><p>Dat rain doe</p> <aside class="dates">Mar 08</aside></a> </li> <li> <a href="/2016/03/08/755d.html"><p>🌧🌧🌧🌧🌙🌧🌧🌧🌧</p> <aside class="dates">Mar 08</aside></a> </li> <li> <a href="/2016/03/05/c865.html"><p>but seriously I don&#39;t think you realize how much time you actually spend just browsing (the modern equivalent of flipping channels)</p> <aside class="dates">Mar 05</aside></a> </li> <li> <a href="/2016/03/05/3dea.html"><p>I recommend filtering HN through to an RSS feed. You&#39;ll spend less time searching and more time reading things that are important to you.</p> <aside class="dates">Mar 05</aside></a> </li> <li> <a href="/2016/03/05/a19d.html"><p>After adding automatic filtering to Hacker News, I&#39;ve realized how few of the posts I actually want to read. It&#39;s not a bad thing.</p> <aside class="dates">Mar 05</aside></a> </li> <li> <a href="/2016/03/04/2ff3.html"><p>I&#39;m exahusted. Want sleep.</p> <aside class="dates">Mar 04</aside></a> </li> <li> <a href="/2016/03/02/054c.html"><p>Project meeting time! 🕖🎉🍹</p> <aside class="dates">Mar 02</aside></a> </li> <li> <a href="/2016/03/01/c52d.html"><p>It&#39;s a stupidly beautiful day. </p> <aside class="dates">Mar 01</aside></a> </li> <li> <a href="/2016/03/01/6e2c.html"><p>My coffee was cold. I warmed it up. Now it is cold again. #cantwin #failwhale #suckstobeme #tuesdays</p> <aside class="dates">Mar 01</aside></a> </li> <li> <a href="/2016/03/01/ecbf.html"><p>Eggs, with tomatoes and mushrooms, on toast. <a href="http://bit.ly/1oMwP3R">http://bit.ly/1oMwP3R</a></p> <aside class="dates">Mar 01</aside></a> </li> <li> <a href="/2016/03/01/9b15.html"><p>Also coffee.</p> <aside class="dates">Mar 01</aside></a> </li> <li> <a href="/2016/03/01/70e6.html"><p>Always coffee.</p> <aside class="dates">Mar 01</aside></a> </li> <li> <a href="/2016/03/01/9d21.html"><p>“Infinite are the arguments of mages,” ― Ursula K. Le Guin, A Wizard of Earthsea</p> <aside class="dates">Mar 01</aside></a> </li> <li> <a href="/2016/02/28/a803.html"><p>Gonna play some Risk tonight!</p> <aside class="dates">Feb 28</aside></a> </li> <li> <a href="/2016/02/27/7672.html"><p>I don&#39;t know why, but I just remembered this tweet. <a href="https://twitter.com/rentzsch/status/602862585398992896">https://twitter.com/rentzsch/status/602862585398992896</a></p> <aside class="dates">Feb 27</aside></a> </li> <li> <a href="/2016/02/25/4dc9.html"><p>[Closed as Expected Behavior]</p> <aside class="dates">Feb 25</aside></a> </li> <li> <a href="/2016/02/25/029b.html"><p>Bug #1234 &quot;Computers are generally insecure. Please add more privacy protection.&quot; &lt;<Closed as Expected Behavior>&gt; </p> <aside class="dates">Feb 25</aside></a> </li> <li> <a href="/2016/02/25/e04d.html"><p>The modern web and software landscape has conditioned people to just accept that computers are insecure, and broken. </p> <aside class="dates">Feb 25</aside></a> </li> <li> <a href="/2016/02/25/5fb4.html"><p>From what I&#39;ve seen, most people just expect that all things can be broken into. That&#39;s the scary part. There&#39;s no expectation of privacy.</p> <aside class="dates">Feb 25</aside></a> </li> <li> <a href="/2016/02/25/d56a.html"><p>The idea that the data on an iPhone can&#39;t be read, even by Apple or the FBI, is shocking to most people. </p> <aside class="dates">Feb 25</aside></a> </li> <li> <a href="/2016/02/24/13c2.html"><p>YouTube&#39;s goal recently seems to be to remind everyone that it controls everything and there&#39;s nothing we can do.</p> <aside class="dates">Feb 24</aside></a> </li> <li> <a href="/2016/02/24/b6f9.html"><p>Team Four Star&#39;s YouTube channel was taken down with no notice. </p> <aside class="dates">Feb 24</aside></a> </li> <li> <a href="/2016/02/23/4dc2.html"><p>CI is a magical thing. Especially when it auto-deploys.</p> <aside class="dates">Feb 23</aside></a> </li> <li> <a href="/2016/02/23/c420.html"><p>The evolution of the web. <a href="http://fabianburghardt.de/webolution/">http://fabianburghardt.de/webolution/</a></p> <aside class="dates">Feb 23</aside></a> </li> <li> <a href="/2016/02/23/f2c3.html"><p>A perfect example of the UNIX philosophy on the web is Gravatar. It does one thing: profile images, and it does it well. </p> <aside class="dates">Feb 23</aside></a> </li> <li> <a href="/2016/02/23/4bcd.html"><p>Coffee ✅ Eggs on toast ✅ Read some articles before work [In Progress] Work [Next] Book of Mormon [Tonight]</p> <aside class="dates">Feb 23</aside></a> </li> <li> <a href="/2016/02/20/dc1e.html"><p>&quot;Roll for gypsies&quot;</p> <aside class="dates">Feb 20</aside></a> </li> <li> <a href="/2016/02/20/806f.html"><p>I&#39;m proud of this. &quot;Fatal Python error: Cannot recover from stack overflow.&quot; <a href="http://bit.ly/24g4bJf">http://bit.ly/24g4bJf</a></p> <aside class="dates">Feb 20</aside></a> </li> <li> <a href="/2016/02/18/41c2.html"><p>Is there really no &quot;equal sign&quot; emoji? </p> <aside class="dates">Feb 18</aside></a> </li> <li> <a href="/2016/02/18/839d.html"><p>☕️➕🌧➕🎶➡️😌</p> <aside class="dates">Feb 18</aside></a> </li> <li> <a href="/2016/02/10/9e2e.html"><p>Webpage size with Twitter widget: 200KB; without it: 16KB. That&#39;s 12x smaller.</p> <aside class="dates">Feb 10</aside></a> </li> <li> <a href="/2016/02/10/b9c8.html"><p>Had to wait for my solar powered keyboard to charge before I could start my day.</p> <aside class="dates">Feb 10</aside></a> </li> <li> <a href="/2016/02/07/53c3.html"><p>This lox bagel is the only thing I&#39;ve ever wanted right now.</p> <aside class="dates">Feb 07</aside></a> </li> <li> <a href="/2016/02/07/fa1c.html"><p>Not a LOX bagel; that&#39;s something else.</p> <aside class="dates">Feb 07</aside></a> </li> <li> <a href="/2016/02/07/189c.html"><p>Coffee, code, and a lox Bagel. #aperfectsunday</p> <aside class="dates">Feb 07</aside></a> </li> <li> <a href="/2016/02/06/3e91.html"><p>I didn&#39;t know Gravatar had a default image option for missing avatars. It even includes random monster, and pattern images. That&#39;s awesome!</p> <aside class="dates">Feb 06</aside></a> </li> <li> <a href="/2016/02/05/a241.html"><p>In San Diego we have the problem of the weather being &#39;too perfect&#39;. It&#39;s boring having such perfect weather with no variety. 😜</p> <aside class="dates">Feb 05</aside></a> </li> <li> <a href="/2016/02/05/da63.html"><p>So, if I were to use the offical clients for all the chat apps I use, I&#39;d have to have 5 seperate applications that do the same thing.</p> <aside class="dates">Feb 05</aside></a> </li> <li> <a href="/2016/02/05/6a33.html"><p>(aim for some friends, HipChat for work, Gitter for side projects, IRC for meetups, SMS/iMessage for everything else)</p> <aside class="dates">Feb 05</aside></a> </li> <li> <a href="/2016/02/05/4dfb.html"><p>I log onto Twitter to change my profile and this is my timeline... <a href="http://bit.ly/1PFcLux">http://bit.ly/1PFcLux</a></p> <aside class="dates">Feb 05</aside></a> </li> <li> <a href="/2016/02/05/5d53.html"><p>I mean, it&#39;s probably a lot more than typical users, but I feel like a modern OS should be able to handle that without stuttering animations.</p> <aside class="dates">Feb 05</aside></a> </li> <li> <a href="/2016/02/05/9125.html"><p>I have 7 virtual desktops with about 4-5 windows in each (and some even have tabs 👻). I don&#39;t feel like that&#39;s a lot.</p> <aside class="dates">Feb 05</aside></a> </li> <li> <a href="/2016/02/05/534d.html"><p>Sometimes, I feel like I&#39;m pushing the limits of my Mac by just having lots of windows open. (even on my 2014 rMBP, 16GB Memory)</p> <aside class="dates">Feb 05</aside></a> </li> <li> <a href="/2016/02/04/921f.html"><p>All code is simple, if designed properly; even the most complex tasks are simple if you break it down.</p> <aside class="dates">Feb 04</aside></a> </li> <li> <a href="/2016/02/04/5c78.html"><p>Developing Software isn&#39;t a test of skill, or cleverness; it&#39;s a test of your ability to properly organize things. </p> <aside class="dates">Feb 04</aside></a> </li> <li> <a href="/2016/02/02/5064.html"><p>Second round of coffee, go!</p> <aside class="dates">Feb 02</aside></a> </li> <li> <a href="/2016/02/02/5a89.html"><p>Sometimes I wonder if I should write my History and Programming blog posts on seperate sites. </p> <aside class="dates">Feb 02</aside></a> </li> <li> <a href="/2016/02/01/eae0.html"><p>I opened the Terminal and got this... wut? <a href="http://bit.ly/20C5cID">http://bit.ly/20C5cID</a></p> <aside class="dates">Feb 01</aside></a> </li> <li> <a href="/2016/02/01/c894.html"><p>&quot;...it&#39;s basically every crappy IT project...&quot;</p> <aside class="dates">Feb 01</aside></a> </li> <li> <a href="/2016/02/01/485c.html"><p>&quot;I hate The Lord of the Rings because it&#39;s too much like work.&quot; <a href="http://kottke.org/16/02/i-hate-the-lord-of-the-rings">http://kottke.org/16/02/i-hate-the-lord-of-the-rings</a></p> <aside class="dates">Feb 01</aside></a> </li> <li> <a href="/2016/02/01/cfd8.html"><p>&quot;Installing updates&quot;</p> <aside class="dates">Feb 01</aside></a> </li> <li> <a href="/2016/02/01/3602.html"><p>Gordon Ramsey-style eggs. 😋 <a href="http://bit.ly/1KlLay8">http://bit.ly/1KlLay8</a></p> <aside class="dates">Feb 01</aside></a> </li> <li> <a href="/2016/01/31/1552.html"><p>&quot;Beer is the space catnip&quot;</p> <aside class="dates">Jan 31</aside></a> </li> <li> <a href="/2016/01/30/d587.html"><p>&quot;Cap off a canyon with ice&quot; Bam! Instant building. </p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/2ab3.html"><p>&quot;Pork, pasta, and peanut butter.&quot;</p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/7e8f.html"><p>&quot;Hydroponics are key.&quot;</p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/d9a4.html"><p>Recycling in space. </p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/8210.html"><p>Found the first use of the .aero domain! masten.aero</p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/880a.html"><p>Asteroid mining and Masten #SpaceUpV <a href="https://db.tt/ARJoY71G">https://db.tt/ARJoY71G</a></p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/d315.html"><p>Thorium reactors and space pirates. #SpaceUpV</p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/6574.html"><p>MaaS: Mars as a service. </p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/0143.html"><p>We need Silicon Valley-esq titles for space companies.</p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/abb8.html"><p>&quot;Flags and Footprints model&quot; #SpaceUpV</p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/241c.html"><p>&quot;Sucker punch the satellite&quot; </p> <p>&quot;Spongebob or a catcher&#39;s mitt&quot; #SpaceUpV</p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/83e0.html"><p>&quot;Steampunk in space&quot; #SpaceUpV</p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/d475.html"><p><a href="https://db.tt/tJCerFsF">https://db.tt/tJCerFsF</a></p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/c07c.html"><p>Power satellites! <a href="https://db.tt/Rgncs4BE">https://db.tt/Rgncs4BE</a></p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/64b2.html"><p>Getting ready for talks!</p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/e90b.html"><h1>SpaceUpV</h1> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/5c2b.html"><p>There we go. Now it&#39;s official. </p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/30/2f79.html"><p>SpaceUp has started! <a href="https://db.tt/a24WdFrv">https://db.tt/a24WdFrv</a></p> <aside class="dates">Jan 30</aside></a> </li> <li> <a href="/2016/01/29/c8c5.html"><p>It&#39;s a nice dream, but it&#39;s unfortunately just that. </p> <aside class="dates">Jan 29</aside></a> </li> <li> <a href="/2016/01/29/2e0c.html"><p>The dream for scientists, analysts, and programmers is for all the world&#39;s data to be in 1 place, in 1 format, and have 1 naming convention.</p> <aside class="dates">Jan 29</aside></a> </li> <li> <a href="/2016/01/28/7445.html"><p>making graphs!</p> <aside class="dates">Jan 28</aside></a> </li> <li> <a href="/2016/01/28/5884.html"><p>Oatmeal cookies and coffee. Breakfast of champions.</p> <aside class="dates">Jan 28</aside></a> </li> <li> <a href="/2016/01/28/76e8.html"><p>I&#39;ll fix it tomorrow. #sleep</p> <aside class="dates">Jan 28</aside></a> </li> <li> <a href="/2016/01/28/e317.html"><p>I guess it&#39;s still to early to require automatic https for Let&#39;s Encrypt certificates. I&#39;m getting &quot;untrusted&quot; errors from some browsers.</p> <aside class="dates">Jan 28</aside></a> </li> <li> <a href="/2016/01/28/f5a6.html"><p>Fun fact: There are more people under 15 in India then there are in the U.S. period.</p> <aside class="dates">Jan 28</aside></a> </li> <li> <a href="/2016/01/27/31b0.html"><p>Anyone have any good resources for learning intermediate-advanced Statistics? </p> <aside class="dates">Jan 27</aside></a> </li> <li> <a href="/2016/01/27/c031.html"><p>Kinda wanna blog more, but I don&#39;t want to look at my computer anymore. 😪</p> <aside class="dates">Jan 27</aside></a> </li> <li> <a href="/2016/01/27/96bc.html"><p>🎉🎉 Open Source Project Meetup Night 🎉🎉</p> <aside class="dates">Jan 27</aside></a> </li> <li> <a href="/2016/01/27/489c.html"><p>It&#39;s easier to just delete some after a week. The impulse to read clickbait articles vanishes, and only the best articles remain.</p> <aside class="dates">Jan 27</aside></a> </li> <li> <a href="/2016/01/27/1ad2.html"><p>Finally caught up on all the articles I&#39;ve been hoarding for the last week. By that I mean I read 2 of them, and deleted 8.</p> <aside class="dates">Jan 27</aside></a> </li> <li> <a href="/2016/01/26/cc03.html"><p>Everything I needed to do today is done. Now, time to relax.</p> <aside class="dates">Jan 26</aside></a> </li> <li> <a href="/2016/01/25/65bb.html"><p>I love it when all my tests pass.</p> <aside class="dates">Jan 25</aside></a> </li> <li> <a href="/2016/01/25/346e.html"><p>I love that <a href="http://bit.ly/1WBUi3w">Dr. Drang</a> links to the actual bills. It makes them so much easier to find.</p> <aside class="dates">Jan 25</aside></a> </li> <li> <a href="/2016/01/25/e30d.html"><p>&quot;California and New York State legislatures to force smartphone manufacturers... to incorporate backdoors...&quot; http://bit.ly/1ZNIP0L</p> <aside class="dates">Jan 25</aside></a> </li> <li> <a href="/2016/01/21/e534.html"><p>I recently read <a href="http://www.amazon.com/gp/product/1621052036?redirect=true&amp;ref_=cm_cr_ryp_prd_ttl_sol_0">King Space Void</a> by my friend Anthony Trevino. It&#39;s a fun, bite-sized bit of bizzareness. You should check it out!</p> <aside class="dates">Jan 21</aside></a> </li> <li> <a href="/2016/01/21/c8dd.html"><p>That feeling when you want to have a server just to serve your clever 500 error jokes.</p> <aside class="dates">Jan 21</aside></a> </li> <li> <a href="/2016/01/21/8a41.html"><p>I think I rediscover this every 6 months, but a thermos of coffee is a great thing to bring with me in the morning.</p> <aside class="dates">Jan 21</aside></a> </li> <li> <a href="/2016/01/11/9d46.html"><p>Written Log: blog Video Log: vlog Audio Log: alog? aug? augh? ugh?</p> <aside class="dates">Jan 11</aside></a> </li> <li> <a href="/2016/01/11/68f0.html"><blockquote> <p>With hindsight, it seems bloody obvious the Sun and not the Earth is the center of the solar system. Occam&#39;s razor and all that.</p> </blockquote> <p><img src="http://also.kottke.org/misc/images/helio-vs-geo.gif" alt="Heliocentrism vs geocentrism"></p> <aside class="dates">Jan 11</aside></a> </li> <li> <a href="/2016/01/11/7c56.html"><p>.@kjaymiller No, Peach is just a new version of the same thing. For now I&#39;ve got my own microblog. Twitter is becoming just chat for me.</p> <aside class="dates">Jan 11</aside></a> </li> <li> <a href="/2016/01/11/6689.html"><p>PSA: Never remove the Logitech adapter from your Mac, not even for 2 minutes. You&#39;ll forget to put it back, and you&#39;ll be sad at work.</p> <aside class="dates">Jan 11</aside></a> </li> <li> <a href="/2016/01/11/1ee6.html"><p>As of today, I won&#39;t really be posting to Twitter anymore. I&#39;ll still reply, and DM, but all of my normal tweets will be auto-posted from my Microblog. <a href="http://sonicrocketman.snippets.xyz">http://sonicrocketman.snippets.xyz</a></p> <aside class="dates">Jan 11</aside></a> </li> <li> <a href="/2016/01/11/0e9f.html"><p>Posting to Hacker News is so hit or miss.</p> <aside class="dates">Jan 11</aside></a> </li> <li> <a href="/2016/01/11/b54d.html"><p><a href="http://brianschrader.com/archive/breaking-up-is-hard-to-do/">Breaking up is hard to do (A breakup letter to Twitter)</a></p> <aside class="dates">Jan 11</aside></a> </li> <li> <a href="/2016/01/10/334d.html"><p>Coffee. It&#39;s the good stuff. </p> <aside class="dates">Jan 10</aside></a> </li> <li> <a href="/2015/10/20/1554.html"><p>I have not seen the new Star Wars Trailer.</p> <aside class="dates">Oct 20</aside></a> </li> <li> <a href="/2015/09/24/82fb.html"><p>Today has been a whirlwind of a day. </p> <aside class="dates">Sep 24</aside></a> </li> <li> <a href="/2015/09/24/2ea6.html"><p>Got some new data in today. Time to start digging.</p> <aside class="dates">Sep 24</aside></a> </li> <li> <a href="/2015/09/23/c59f.html"><p>Though, since I&#39;m not a biologist, I probably won&#39;t be able to tell.</p> <aside class="dates">Sep 23</aside></a> </li> <li> <a href="/2015/09/23/f021.html"><p>Got this DNA analysis going. Hopefully it leads to something interesting.</p> <aside class="dates">Sep 23</aside></a> </li> <li> <a href="/2015/09/23/d6af.html"><p>Hello world and all who inhabit it!</p> <aside class="dates">Sep 23</aside></a> </li> </ul> --> </section> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="/assets/js/main.js"></script> <script src="/assets/js/highlight.js"></script> <script>hljs.initHighlightingOnLoad();</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-XXXXXXXX-X', 'auto'); ga('send', 'pageview'); </script> </body> </html>
Sonictherocketman/mirror.microblog
_site/2016/03/30/d242.html
HTML
mit
71,097
<span class="error-message d"> The email addresses you have provided do not match </span>
dudelmeister/rave
app/views/includes/rave/errors/error-message-d.html
HTML
mit
91
<!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, shrink-to-fit=no, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <title>Dashboard - El Rey Jesus</title> <!-- Bootstrap Core CSS --> <link href="css/bootstrap.min.css" rel="stylesheet"> <!-- Simple Side Bar CSS --> <link href="css/simple-sidebar.css" rel="stylesheet"> <!-- Font Awesome CSS --> <link rel="stylesheet" href="css/font-awesome.min.css"> <!-- Web Ration CSS --> <link href="css/app.css" rel="stylesheet"> <link href="css/dashboard.css" rel="stylesheet"> <!-- Sweet Alert 2 --> <link href="https://cdn.jsdelivr.net/sweetalert2/6.4.2/sweetalert2.min.css" rel="stylesheet"> <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css?family=Roboto:400,500" rel="stylesheet"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div id="wrapper" class="toggled"> <div class="main_logo_container"> <img src="img/logo-icon.png" class="img-responsive main_logo_icon" id="logo"> </div> <!-- sidebar-menu-wrapper --> <div id="sidebar-wrapper" class="hide_scroll"> <ul class="nav sidebar-nav nav-stacked" id="accordion"> <!-- Toggle Menu Button --> <li> <a href="#menu-toggle" id="menu-toggle"><i class="fa fa-bars menu_icon" aria-hidden="true"></i><span class="font_white">NAVAGACÍON</span><i class="fa fa-angle-left custom font_white" aria-hidden="true"></i></a> </li> <!-- Toggle Menu Button --> <!-- Menu Items - elementos de menú --> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#firstLink" id="userProfile"><i class="fa fa-user-o primary_menu_icon" aria-hidden="true"></i><span class="font_white">Julien Cousin</span></a></li> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#secondLink"><i class="fa fa-users primary_menu_icon" aria-hidden="true"></i>Membresa [Lider]<i class="fa fa-angle-down" aria-hidden="true"></i></a> <ul id="secondLink" class="collapse"> <li class="sub_menu"><a href="#" class="sub_menu_link" title="Sub Menu ExpSub Menu Exp, Sub Menu Exp">Sub Menu Exp, Sub Menu Exp</a></li> </ul> </li> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#exitLink" id="exit"><i class="fa fa-power-off primary_menu_icon" aria-hidden="true"></i>Exit</a></li> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#contactosLink"><i class="fa fa-users primary_menu_icon" aria-hidden="true"></i>Contactos<i class="fa fa-angle-down" aria-hidden="true"></i></a> <ul id="contactosLink" class="collapse"> <li class="sub_menu"><a href="#" class="sub_menu_link" title="Sub Menu ExpSub Menu Exp, Sub Menu Exp">Sub Menu Exp, Sub Menu Exp</a></li> </ul> </li> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#3Link"><i class="fa fa-cogs primary_menu_icon" aria-hidden="true"></i>Discipulados<i class="fa fa-angle-down" aria-hidden="true"></i></a> <ul id="3Link" class="collapse"> <li class="sub_menu"><a href="#" class="sub_menu_link">Mis discípulos</a></li> <li class="sub_menu"><a href="#" class="sub_menu_link">Mentores y Discípulos</a></li> <li class="sub_menu"><a href="#" class="sub_menu_link">Renuniones de discípulos</a></li> </ul> </li> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#4Link"><i class="fa fa-home primary_menu_icon" aria-hidden="true"></i>Casa De Paz<i class="fa fa-angle-down" aria-hidden="true"></i></a> <ul id="4Link" class="collapse"> <li class="sub_menu"><a href="#" class="sub_menu_link" title="Sub Menu ExpSub Menu Exp, Sub Menu Exp">Sub Menu Exp, Sub Menu Exp</a></li> </ul> </li> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#5Link" title="Categoría de lotes, lotes,, redes, cosechas"><i class="fa fa-map-marker primary_menu_icon" aria-hidden="true"></i>Categoría de lotes, lotes,, redes, cosechas<i class="fa fa-angle-down" aria-hidden="true"></i></a> <ul id="5Link" class="collapse"> <li class="sub_menu"><a href="#" class="sub_menu_link" title="Sub Menu ExpSub Menu Exp, Sub Menu Exp">Sub Menu Exp, Sub Menu Exp</a></li> </ul> </li> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#6Link" title="Escuelas, Escuelas,EscuelasEscuelas,Escuelas"><i class="fa fa-graduation-cap primary_menu_icon" aria-hidden="true"></i>Escuelas, Escuelas Escuelas<i class="fa fa-angle-down" aria-hidden="true"></i></a> <ul id="6Link" class="collapse"> <li class="sub_menu"><a href="#" class="sub_menu_link" title="Sub Menu ExpSub Menu Exp, Sub Menu Exp">Sub Menu Exp, SubSubS...</a></li> </ul> </li> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#7Link" title="ERJ-Definiciones, ERJ-Definiciones, ERJ-Definiciones"><i class="fa fa-book primary_menu_icon" aria-hidden="true"></i>ERJ-Definiciones, ERJ-Definiciones, ERJ-Definiciones<i class="fa fa-angle-down" aria-hidden="true"></i></a> <ul id="7Link" class="collapse"> <li class="sub_menu"><a href="#" class="sub_menu_link" title="Sub Menu ExpSub Menu Exp, Sub Menu Exp">Sub Menu Exp, Sub Menu Exp</a></li> </ul> </li> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#5Link"><i class="fa fa-map-marker primary_menu_icon" aria-hidden="true"></i>Lotes<i class="fa fa-angle-down" aria-hidden="true"></i></a> <ul id="5Link" class="collapse"> <li class="sub_menu"><a href="#" class="sub_menu_link" title="Sub Menu ExpSub Menu Exp, Sub Menu Exp">Sub Menu Exp, Sub Menu Exp</a></li> </ul> </li> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#6Link"><i class="fa fa-graduation-cap primary_menu_icon" aria-hidden="true"></i>Escuelas<i class="fa fa-angle-down" aria-hidden="true"></i></a> <ul id="6Link" class="collapse"> <li class="sub_menu"><a href="#" class="sub_menu_link" title="Sub Menu ExpSub Menu Exp, Sub Menu Exp">Sub Menu Exp, Sub Menu Exp</a></li> </ul> </li> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#7Link"><i class="fa fa-book primary_menu_icon" aria-hidden="true"></i>ERJ-Definiciones<i class="fa fa-angle-down" aria-hidden="true"></i></a> <ul id="7Link" class="collapse"> <li class="sub_menu"><a href="#" class="sub_menu_link" title="Sub Menu ExpSub Menu Exp, Sub Menu Exp">Sub Menu Exp, Sub Menu Exp</a></li> </ul> </li> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#5Link"><i class="fa fa-map-marker primary_menu_icon" aria-hidden="true"></i>Lotes<i class="fa fa-angle-down" aria-hidden="true"></i></a> <ul id="5Link" class="collapse"> <li class="sub_menu"><a href="#" class="sub_menu_link" title="Sub Menu ExpSub Menu Exp, Sub Menu Exp">Sub Menu Exp, Sub Menu Exp</a></li> </ul> </li> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#6Link"><i class="fa fa-graduation-cap primary_menu_icon" aria-hidden="true"></i>Escuelas<i class="fa fa-angle-down" aria-hidden="true"></i></a> <ul id="6Link" class="collapse"> <li class="sub_menu"><a href="#" class="sub_menu_link" title="Sub Menu ExpSub Menu Exp, Sub Menu Exp">Sub Menu Exp, Sub Menu Exp</a></li> </ul> </li> <li class="panel_menu menu_link_item"><a class="main_menu_link" data-toggle="collapse" data-parent="#accordion" href="#7Link"><i class="fa fa-book primary_menu_icon" aria-hidden="true"></i>ERJ-Definiciones<i class="fa fa-angle-down" aria-hidden="true"></i></a> <ul id="7Link" class="collapse"> <li class="sub_menu"><a href="#" class="sub_menu_link" title="Sub Menu ExpSub Menu Exp, Sub Menu Exp">Sub Menu Exp, Sub Menu Exp</a></li> </ul> </li> </ul> </div> <!-- sidebar-menu-wrapper --> <!-- Page Content --> <div id="page-content-wrapper"> <div class="container-fluid"> <!-- top bar (search area) --> <div class="row" id="top_bar"> <div class="col-xs-12 col-lg-4"> <p class="font_white">My Dashboard</p> </div> <div class="col-xs-12 col-lg-4"> <!-- Search Bar --> <form action="#" method="post"> <div class="input-group full_width"> <input type="text" class="form-control" aria-label="Search Field" placeholder="Busca..."> <span class="input-group-addon"><i class="fa fa-search" aria-hidden="true"></i></span> </div> </form> <!-- End Search Bar --> </div> <div class="col-xs-12 col-lg-4 small_viewport_section"> <!-- <p class="font_white">My Dashboard</p> --> </div> </div> <!-- end top bar (search area) --> <!-- main area --> <div class="row col-xs-12" id="main_body"> <!-- User Data / Fab button --> <div class="fab_area"> <div class="col-lg-4"> <span>Dashboard</span><br> <span class="user_name">Julien Cousin</span><br> <span class="user_id">4684548786</span> </div> <div class="col-lg-8 text-right"> <div class="btn-group custom"> <div class="dropdown"> <button type="button" class="btn btn-primary dropdown-toggle dropdown_fab" type="button" data-toggle="dropdown"> <i class="fa fa-plus" aria-hidden="true"></i> </button> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#" class="text-right">My Dashboard <span class="fa fa-circle"></span></a></li> <li><a href="#" class="text-right">Send Email <span class="fa fa-envelope"></span></a></li> <li><a href="#" class="text-right">Events <span class="fa fa-bell"></span></a></li> <li><a href="#" class="text-right">Limits <span class="fa fa-heart"></span></a></li> <li><a href="#" class="text-right">Responsibilities <span class="fa fa-times"></span></a></li> </ul> </div> </div> </div> </div> <!-- End User Data / Fab button --> <div class="col-xs-12"> <!-- Table and Tabs --> <ul class="nav nav-tabs personal_info_section"> <li class="active"> <a data-toggle="tab" href="#evengelismo">Evengelismo</a> <div class="progressCircleGreen" style="position:absolute;top:-7px;left:2px;"></div> </li> <li> <a data-toggle="tab" href="#afirmacion">Afirmacion</a> </li> <li> <a data-toggle="tab" href="#cpaz">Casa de Paz</a> <div class="progressCircleYellow" style="position:absolute;top:-7px;left:2px;"></div> </li> <li> <a data-toggle="tab" href="#mentores">Mentores</a> <div class="progressCircleRed" style="position:absolute;top:-7px;left:2px;"></div> </li> </ul> <!-- EndTable and Tabs --> <!-- Tab Content --> <div id="dashboardCharts" class="tab-content"> <div id="evengelismo" class="tab-pane fade in active"> <div class="personal_info personal_info_section"> <div class="panel-body"> <div class="row"> <div class="col-xs-12 col-md-4" style="border-right: 1px solid #f2f2f2"> <!-- Current (Main) Chart --> <canvas class="chart_1" id="dashChartCurrent"></canvas> <!-- End Current (Main) Chart --> <div class="text-center"> <strong>Current Totals + Targets</strong> <hr> <!-- Chart Year Buttons --> <button class="graph_button_years" data-chart="dashChart1">1 Year</button> <button class="graph_button_years" data-chart="dashChart2">5 Year</button> <button class="graph_button_years" data-chart="dashChart3">10 Year</button> <!-- Chart Year Buttons --> <hr> </div> <div class="chart_container"> <canvas class="" id="dashChart1"></canvas> <canvas class="hide" id="dashChart2"></canvas> <canvas class="hide" id="dashChart3"></canvas> </div> <div class="text-center"> <hr> <strong>Historical Total + Targets</strong> </div> </div> <div class="col-xs-11 col-md-8" style="border-right: 1px solid #f2f2f2"> <div class="table-responsive"> <table class="table table-bordered table-hover table-striped"> <thead> <tr> <th colspan="5"><input type="text" class="form-control" aria-label="Search Field" placeholder="Busca..."></th> </tr> <tr> <th></th> <th>Nombre</th> <th>Email</th> <th>Teléfono celular</th> <th><div class="text-right"> <button title="Email" class="btn btn-primary" id="email_1" name="email_1" type="submit" value="Aplicar"><span class="fa fa-envelope"></span> Send All</button> <button title="Email" class="btn btn-primary" id="clear_1" name="email_1" type="submit" value="Aplicar"><span class="fa fa-times"></span> Clear All</button> </th> </tr> </thead> <tbody> <tr> <td><div class="progressCircleRed"></div></td> <td>Frankie Torres</td> <td>[email protected]</td> <td>973-234-4812</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye" aria-hidden="true"></i> <i class="fa fa-envelope disabled" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleRed"></div></td> <td>Daniela Navarro</td> <td>[email protected]</td> <td>407-393-7629</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye disabled" aria-hidden="true"></i> <i class="fa fa-envelope disabled" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleRed"></div></td> <td>Daniela Valeri</td> <td>[email protected]</td> <td>115-841-64177906</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye" aria-hidden="true"></i> <i class="fa fa-envelope" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleGreen"></div></td> <td>Maria Adelina</td> <td>[email protected]</td> <td>786-738-3255</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye" aria-hidden="true"></i> <i class="fa fa-envelope" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleGreen"></div></td> <td>Maria Fernanda</td> <td>[email protected]</td> <td>854-764-76</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye" aria-hidden="true"></i> <i class="fa fa-envelope" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleRed"></div></td> <td>Tayda Oshi</td> <td>[email protected]</td> <td>770-899-9566</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye" aria-hidden="true"></i> <i class="fa fa-envelope" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleRed"></div></td> <td>Sabrina Jean</td> <td>[email protected]</td> <td>786-630-9345</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye" aria-hidden="true"></i> <i class="fa fa-envelope" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleGreen"></div></td> <td>Gloria Yolanda</td> <td>[email protected]</td> <td>786-316-8049</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye disabled" aria-hidden="true"></i> <i class="fa fa-envelope disabled" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleRed"></div></td> <td>Cira Rodriguez</td> <td>[email protected]</td> <td>786-478-5680</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye disabled" aria-hidden="true"></i> <i class="fa fa-envelope" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleRed"></div></td> <td>Frankie Torres</td> <td>[email protected]</td> <td>973-234-4812</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye" aria-hidden="true"></i> <i class="fa fa-envelope disabled" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleRed"></div></td> <td>Daniela Navarro</td> <td>[email protected]</td> <td>407-393-7629</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye disabled" aria-hidden="true"></i> <i class="fa fa-envelope disabled" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleRed"></div></td> <td>Daniela Valeri</td> <td>[email protected]</td> <td>115-841-64177906</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye" aria-hidden="true"></i> <i class="fa fa-envelope" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleGreen"></div></td> <td>Maria Adelina</td> <td>[email protected]</td> <td>786-738-3255</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye" aria-hidden="true"></i> <i class="fa fa-envelope" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleGreen"></div></td> <td>Maria Fernanda</td> <td>[email protected]</td> <td>854-764-76</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye" aria-hidden="true"></i> <i class="fa fa-envelope" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleRed"></div></td> <td>Tayda Oshi</td> <td>[email protected]</td> <td>770-899-9566</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye" aria-hidden="true"></i> <i class="fa fa-envelope" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleRed"></div></td> <td>Sabrina Jean</td> <td>[email protected]</td> <td>786-630-9345</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye" aria-hidden="true"></i> <i class="fa fa-envelope" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleGreen"></div></td> <td>Gloria Yolanda</td> <td>[email protected]</td> <td>786-316-8049</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye disabled" aria-hidden="true"></i> <i class="fa fa-envelope disabled" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> <tr> <td><div class="progressCircleRed"></div></td> <td>Cira Rodriguez</td> <td>[email protected]</td> <td>786-478-5680</td> <td class="text-right"> <div class="quick_actions_container display_inline"> <i class="fa fa-eye disabled" aria-hidden="true"></i> <i class="fa fa-envelope" aria-hidden="true"></i> </div> <div class="btn-group custom"> <div class="dropdown"> <span class="btn dropdown-toggle dropdown_fab btn_table_extra" data-toggle="dropdown"> <i class="fa fa-ellipsis-v" aria-hidden="true"></i> </span> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </td> </tr> </tbody> </table> </div> <div class="table-responsive hide"> <p>Hidden Table</p> </div> <hr> </div> <!-- <div class="col-xs-11 col-md-8 hide" style="border-right: 1px solid #f2f2f2"> <div class="table-responsive"> <p>Hidden Table</p> </div> <hr> </div> --> </div> </div> </div> </div> <!-- <div id="afirmacion" class="tab-pane fade in"> <div class="personal_info personal_info_section"> <div class="panel-body"> <div class="row"> <div class="col-xs-12 col-md-4" style="border-right: 1px solid #f2f2f2"> <canvas class="chart_3" id="dashChart3"></canvas> </div> <div class="col-xs-11 col-md-8" style="border-right: 1px solid #f2f2f2"> <div> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </div> <hr> <div class="text-right"> <button title="Email" class="btn btn-primary" id="email_3" name="email_3" type="submit" value="Aplicar"><span class="fa fa-envelope"></span> Send Email</button> </div> </div> <div class="col-xs-12 col-md-1 text-right"> <div class="btn-group custom"> <div class="dropdown"> <button type="button" class="btn btn-circle btn-primary dropdown-toggle dropdown_fab" type="button" data-toggle="dropdown"> <i class="fa fa-plus" aria-hidden="true"></i> </button> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#" class="text-right">My Dashboard <span class="fa fa-circle"></span></a></li> <li><a href="#" class="text-right">Send Email <span class="fa fa-envelope"></span></a></li> <li><a href="#" class="text-right">Events <span class="fa fa-bell"></span></a></li> <li><a href="#" class="text-right">Limits <span class="fa fa-heart"></span></a></li> <li><a href="#" class="text-right">Responsibilities <span class="fa fa-times"></span></a></li> </ul> </div> </div> </div> </div> <hr> <div class="row"> <div class="col-xs-12 col-md-4" style="border-right: 1px solid #f2f2f2"> <canvas class="chart_4" id="dashChart4"></canvas> </div> <div class="col-xs-11 col-md-8" style="border-right: 1px solid #f2f2f2"> <div> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </div> <hr> <div class="text-right"> <button title="Email" class="btn btn-primary" id="email_4" name="email_4" type="submit" value="Aplicar"><span class="fa fa-envelope"></span> Send Email</button> </div> </div> <div class="col-xs-12 col-md-1 text-right"> <div class="btn-group custom"> <div class="dropdown"> <button type="button" class="btn btn-circle btn-primary dropdown-toggle dropdown_fab" type="button" data-toggle="dropdown"> <i class="fa fa-plus" aria-hidden="true"></i> </button> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#">Ver detalles de la persona</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Todas las Vistas</a></li> <li><a href="#">Pre-register</a></li> <li><a href="#">Asignar responsable</a></li> </ul> </div> </div> </div> </div> </div> </div> </div> <div id="cpaz" class="tab-pane fade in">8 aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </div> <hr> <div class="text-right"> <button title="Email" class="btn btn-primary" id="email_6" name="email_6" type="submit" value="Aplicar"><span class="fa fa-envelope"></span> Send Email</button> </div> </div> <div class="col-xs-12 col-md-1 text-right"> <div class="btn-group custom"> <div class="dropdown"> <button type="button" class="btn btn-circle btn-primary dropdown-toggle dropdown_fab" type="button" data-toggle="dropdown"> <i class="fa fa-plus" aria-hidden="true"></i> </button> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#" class="text-right">My Dashboard <span class="fa fa-circle"></span></a></li> <li><a href="#" class="text-right">Send Email <span class="fa fa-envelope"></span></a></li> <li><a href="#" class="text-right">Events <span class="fa fa-bell"></span></a></li> <li><a href="#" class="text-right">Limits <span class="fa fa-heart"></span></a></li> <li><a href="#" class="text-right">Responsibilities <span class="fa fa-times"></span></a></li> </ul> </div> </div> </div> </div> </div> </div> </div> <div id="mentores" class="tab-pane fade in">8" style="border-right: 1px solid #f2f2f2"> <div> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </div> <hr> <div class="text-right"> <button title="Email" class="btn btn-primary" id="email_7" name="email_7" type="submit" value="Aplicar"><span class="fa fa-envelope"></span> Send Email</button> </div> </div> <div class="col-xs-12 col-md-1 text-right"> <div class="btn-group custom"> <div class="dropdown"> <button type="button" class="btn btn-circle btn-primary dropdown-toggle dropdown_fab" type="button" data-toggle="dropdown"> <i class="fa fa-plus" aria-hidden="true"></i> </button> <ul class="dropdown-menu dropdown-menu-right"> <li><a href="#" class="text-right">My Dashboard <span class="fa fa-circle"></span></a></li> <li><a href="#" class="text-right">Send Email <span class="fa fa-envelope"></span></a></li> <li><a href="#" class="text-right">Events <span class="fa fa-bell"></span></a></li> <li><a href="#" class="text-right">Limits <span class="fa fa-heart"></span></a></li> <li><a href="#" class="text-right">Responsibilities <span class="fa fa-times"></span></a></li> </ul> </div> </div> </div> </div> </div> </div> </div> --> </div> <!-- End Tab Content --> </div> <!-- end main area --> </div> </div> <!-- /#page-content-wrapper --> </div> <!-- /#wrapper --> <!-- jQuery --> <script src="js/jquery.min.js"></script> <!-- Bootstrap Core JavaScript --> <script src="js/bootstrap.min.js"></script> <script src="js/collapse.js"></script> <!-- Chart.js --> <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.1.4/Chart.bundle.min.js"></script> <script src="js/customChartJS.js"></script> <!-- VueJS (Reactive JS) --> <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.1.10/vue.min.js"></script> <script src="js/dashboard.js"></script> <!-- sweetAlert2.js --> <script src="https://cdn.jsdelivr.net/sweetalert2/6.4.2/sweetalert2.min.js"></script> <!-- Web Ration CSS --> <script src="js/mini-menu.js"></script> <script src="js/show-hide.js"></script> </body> </html>
jumprope-design/jumprope-design.github.io
design/dashboard-with-graphs/graph3.html
HTML
mit
81,775
<!DOCTYPE html> <html> <head> <link href="css/awsdocs.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="js/jquery.min.js"></script> <script type="text/javascript" src="js/awsdocs.min.js"></script> <meta charset="utf-8"> </head> <body> <div id="content" style="padding: 10px 30px;"> <h1 class="topictitle" id="aws-properties-ses-receiptrule-workmailaction">Amazon Simple Email Service ReceiptRule WorkmailAction</h1><p>The <code class="code">WorkmailAction</code> property type includes an action in an Amazon SES receipt rule that calls Amazon WorkMail and, optionally, publishes a notification to Amazon SNS. </p><p>You will typically not use this action directly because Amazon WorkMail adds the rule automatically during its setup procedure. </p><p>For information using a receipt rule to call Amazon WorkMail, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/url-ses-dev;receiving-email-action-workmail.html" target="_blank">WorkMail Action</a> in the <em>Amazon Simple Email Service Developer Guide</em>. </p><p> <code class="code">WorkmailAction</code> is a property of the <a href="aws-properties-ses-receiptrule-action.html">Amazon Simple Email Service ReceiptRule Action</a> property type. </p><h2 id="aws-properties-ses-receiptrule-workmailaction-syntax">Syntax</h2><p>To declare this entity in your AWS CloudFormation template, use the following syntax:</p><div id="JSON" name="JSON" class="section langfilter"> <h3 id="aws-properties-ses-receiptrule-workmailaction-syntax.json">JSON</h3> <pre class="programlisting"><div class="code-btn-container"><div class="btn-copy-code" title="Copy"></div><div class="btn-dark-theme" title="Dark theme" title-dark="Dark theme" title-light="Light theme"></div></div><code class="nohighlight">{ &quot;<a href="aws-properties-ses-receiptrule-workmailaction.html#cfn-ses-receiptrule-workmailaction-topicarn">TopicArn</a>&quot; : <em class="replaceable"><code>String</code></em>, &quot;<a href="aws-properties-ses-receiptrule-workmailaction.html#cfn-ses-receiptrule-workmailaction-organizationarn">OrganizationArn</a>&quot; : <em class="replaceable"><code>String</code></em> }</code></pre> </div><div id="YAML" name="YAML" class="section langfilter"> <h3 id="aws-properties-ses-receiptrule-workmailaction-syntax.yaml">YAML</h3> <pre class="programlisting"><div class="code-btn-container"><div class="btn-copy-code" title="Copy"></div><div class="btn-dark-theme" title="Dark theme" title-dark="Dark theme" title-light="Light theme"></div></div><code class="nohighlight"> <a href="aws-properties-ses-receiptrule-workmailaction.html#cfn-ses-receiptrule-workmailaction-topicarn">TopicArn</a>: <em class="replaceable"><code>String</code></em> <a href="aws-properties-ses-receiptrule-workmailaction.html#cfn-ses-receiptrule-workmailaction-organizationarn">OrganizationArn</a>: <em class="replaceable"><code>String</code></em></code></pre> </div><h2 id="aws-properties-ses-receiptrule-workmailaction-properties">Properties</h2><div class="variablelist"> <dl> <dt><a id="cfn-ses-receiptrule-workmailaction-organizationarn"></a><span class="term"><code class="code">OrganizationArn</code></span></dt> <dd> <p>The ARN of the Amazon WorkMail organization. An example of an Amazon WorkMail organization ARN is <code class="code">arn:aws:workmail:us-west-2:123456789012:organization/m-68755160c4cb4e29a2b2f8fb58f359d7</code>. For information about Amazon WorkMail organizations, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/url-wm-admin;organizations_overview.html" target="_blank">Working with Organizations</a> in the <em>Amazon WorkMail Administrator Guide</em>. </p> <p> <em>Required</em>: Yes </p> <p> <em>Type</em>: String </p> <p> <em>Update requires</em>: <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt">No interruption</a> </p> </dd> <dt><a id="cfn-ses-receiptrule-workmailaction-topicarn"></a><span class="term"><code class="code">TopicArn</code></span></dt> <dd> <p>The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the WorkMail action is called. An example of an Amazon SNS topic ARN is <code class="code">arn:aws:sns:us-west-2:123456789012:MyTopic</code>. </p> <p> <em>Required</em>: No </p> <p> <em>Type</em>: String </p> <p> <em>Update requires</em>: <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt">No interruption</a> </p> </dd> </dl> </div><h2 id="aws-properties-ses-receiptrule-workmailaction-seealso">See Also</h2><div class="itemizedlist"> <ul class="itemizedlist" type="disc"> <li class="listitem"> <p><a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/url-ses-dev;receiving-email-receipt-rules.html" target="_blank">Creating Receipt Rules for Amazon SES Email Receiving</a> in the <em>Amazon Simple Email Service Developer Guide</em></p> </li> <li class="listitem"> <p><a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/url-ses-dev;receiving-email-action-workmail.html" target="_blank">WorkMail Action</a> in the <em>Amazon Simple Email Service Developer Guide</em></p> </li> <li class="listitem"> <p><a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/url-ses-api;API_WorkmailAction.html" target="_blank">WorkmailAction</a> in the <em>Amazon Simple Email Service API Reference</em></p> </li> </ul> </div></div> </body> </html>
pdhodgkinson/AWSCloudFormationTemplateReference-dash-docset
AWS_CloudFormation_Template_Reference.docset/Contents/Resources/Documents/aws-properties-ses-receiptrule-workmailaction.html
HTML
mit
8,096
<!DOCTYPE html> <!--[if lt IE 7]> <html lang="en" ng-app="lovevApp" ng-strict-di class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if IE 7]> <html lang="en" ng-app="lovevApp" ng-strict-di class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html lang="en" ng-app="lovevApp" ng-strict-di class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html lang="en" ng-app="lovevApp" ng-strict-di class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>My AngularJS App</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- <link rel="stylesheet" href="libs/html5-boilerplate/css/normalize.css"> <link rel="stylesheet" href="libs/html5-boilerplate/css/main.css"> <link rel="stylesheet" href="app.css"> <script src="libs/html5-boilerplate/js/vendor/modernizr-2.6.2.min.js"></script> --> </head> <body> <!-- <ul class="menu"> <li><a href="#/view1">view1</a></li> <li><a href="#/view2">view2</a></li> </ul> --> <!--[if lt IE 7]> <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <![endif]--> <div> {{"userInfo : " + userInfo.nickName}} <button ng-click="logout()">logout</button> <img src="/ImageCaptchaServlet.servlet"> <input ng-model="veriCode"> <button ng-click="loginByPassword({msisdn:'13916207620',password:'eclipse35',veriCode:'',keep:'1'})"> loginByPassword </button> <button ng-click="loginByAccessCode()">loginByAccessCode</button> </div> <div ng-view></div> <div>Angular seed app: v<span app-version></span></div> <!-- In production use: <script src="//ajax.googleapis.com/ajax/libs/angularjs/x.x.x/angular.min.js"></script> --> <script src="libs/angular/angular.js"></script> <script src="libs/angular-route/angular-route.js"></script> <script src="app.js"></script> <!-- <script src="view1/view1.js"></script> <script src="view2/view2.js"></script> <script src="components/version/version.js"></script> <script src="components/version/version-directive.js"></script> <script src="components/version/interpolate-filter.js"></script> --> <script src="components/user/user.js"></script> </body> </html>
lovev/lovev
app/index.html
HTML
mit
2,366
<!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.13"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>KlusterKite: KlusterKite.API.Provider.Resolvers.EnumResolver&lt; T &gt; 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); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">KlusterKite &#160;<span id="projectnumber">0.0.0</span> </div> <div id="projectbrief">A framework to create scalable and redundant services based on awesome Akka.Net project.</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('class_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_enum_resolver.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> &#124; <a href="#properties">Properties</a> &#124; <a href="class_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_enum_resolver-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">KlusterKite.API.Provider.Resolvers.EnumResolver&lt; T &gt; Class Template Reference</div> </div> </div><!--header--> <div class="contents"> <p>Resolves a enum value <a href="class_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_enum_resolver.html#details">More...</a></p> <div class="dynheader"> Inheritance diagram for KlusterKite.API.Provider.Resolvers.EnumResolver&lt; T &gt;:</div> <div class="dyncontent"> <div class="center"> <img src="class_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_enum_resolver.png" usemap="#KlusterKite.API.Provider.Resolvers.EnumResolver_3C_20T_20_3E_map" alt=""/> <map id="KlusterKite.API.Provider.Resolvers.EnumResolver_3C_20T_20_3E_map" name="KlusterKite.API.Provider.Resolvers.EnumResolver_3C_20T_20_3E_map"> <area href="interface_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_i_resolver.html" title="Resolves api requests for an object " alt="KlusterKite.API.Provider.Resolvers.IResolver" shape="rect" coords="0,0,325,24"/> </map> </div></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:a1f73d097173c5fe77fd23d2c4c40f98e"><td class="memItemLeft" align="right" valign="top">Task&lt; JToken &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_enum_resolver.html#a1f73d097173c5fe77fd23d2c4c40f98e">ResolveQuery</a> (object source, <a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_client_1_1_api_request.html">ApiRequest</a> request, <a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_client_1_1_api_field.html">ApiField</a> apiField, <a class="el" href="class_kluster_kite_1_1_security_1_1_attributes_1_1_request_context.html">RequestContext</a> context, JsonSerializer argumentsSerializer, Action&lt; Exception &gt; onErrorCallback)</td></tr> <tr class="memdesc:a1f73d097173c5fe77fd23d2c4c40f98e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Resolves <a class="el" href="namespace_kluster_kite_1_1_a_p_i.html">API</a> request to object <a href="#a1f73d097173c5fe77fd23d2c4c40f98e">More...</a><br /></td></tr> <tr class="separator:a1f73d097173c5fe77fd23d2c4c40f98e"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac49206179cd68f1d214dfbb05b1ac619"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_client_1_1_api_type.html">ApiType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_enum_resolver.html#ac49206179cd68f1d214dfbb05b1ac619">GetElementType</a> ()</td></tr> <tr class="memdesc:ac49206179cd68f1d214dfbb05b1ac619"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the resolved api type of resolved element <a href="#ac49206179cd68f1d214dfbb05b1ac619">More...</a><br /></td></tr> <tr class="separator:ac49206179cd68f1d214dfbb05b1ac619"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:acf1a076ed6e0b16a15bd84cf2b408f74"><td class="memItemLeft" align="right" valign="top">IEnumerable&lt; <a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_client_1_1_api_field.html">ApiField</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_enum_resolver.html#acf1a076ed6e0b16a15bd84cf2b408f74">GetTypeArguments</a> ()</td></tr> <tr class="memdesc:acf1a076ed6e0b16a15bd84cf2b408f74"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the list of arguments that are supported by resolver itself (not the original object method arguments) <a href="#acf1a076ed6e0b16a15bd84cf2b408f74">More...</a><br /></td></tr> <tr class="separator:acf1a076ed6e0b16a15bd84cf2b408f74"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> Properties</h2></td></tr> <tr class="memitem:af4dcf4dff79c36f08e5e5183724e3d9c"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_client_1_1_api_type.html">ApiType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_enum_resolver.html#af4dcf4dff79c36f08e5e5183724e3d9c">GeneratedType</a><code> [get]</code></td></tr> <tr class="memdesc:af4dcf4dff79c36f08e5e5183724e3d9c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the generated api type for typed argument <a href="#af4dcf4dff79c36f08e5e5183724e3d9c">More...</a><br /></td></tr> <tr class="separator:af4dcf4dff79c36f08e5e5183724e3d9c"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>Resolves a enum value </p> <dl class="tparams"><dt>Template Parameters</dt><dd> <table class="tparams"> <tr><td class="paramname">T</td><td>The type of enum</td></tr> </table> </dd> </dl> <p class="definition">Definition at line <a class="el" href="_enum_resolver_8cs_source.html#l00032">32</a> of file <a class="el" href="_enum_resolver_8cs_source.html">EnumResolver.cs</a>.</p> </div><h2 class="groupheader">Member Function Documentation</h2> <a id="ac49206179cd68f1d214dfbb05b1ac619"></a> <h2 class="memtitle"><span class="permalink"><a href="#ac49206179cd68f1d214dfbb05b1ac619">&#9670;&nbsp;</a></span>GetElementType()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_client_1_1_api_type.html">ApiType</a> <a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_enum_resolver.html">KlusterKite.API.Provider.Resolvers.EnumResolver</a>&lt; T &gt;.GetElementType </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Gets the resolved api type of resolved element </p> <p>Implements <a class="el" href="interface_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_i_resolver.html#aee7c7ca5cbce746a88d7f0abc64098d7">KlusterKite.API.Provider.Resolvers.IResolver</a>.</p> <p class="definition">Definition at line <a class="el" href="_enum_resolver_8cs_source.html#l00079">79</a> of file <a class="el" href="_enum_resolver_8cs_source.html">EnumResolver.cs</a>.</p> </div> </div> <a id="acf1a076ed6e0b16a15bd84cf2b408f74"></a> <h2 class="memtitle"><span class="permalink"><a href="#acf1a076ed6e0b16a15bd84cf2b408f74">&#9670;&nbsp;</a></span>GetTypeArguments()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">IEnumerable&lt;<a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_client_1_1_api_field.html">ApiField</a>&gt; <a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_enum_resolver.html">KlusterKite.API.Provider.Resolvers.EnumResolver</a>&lt; T &gt;.GetTypeArguments </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Gets the list of arguments that are supported by resolver itself (not the original object method arguments) </p> <p>Implements <a class="el" href="interface_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_i_resolver.html#ad161ea5a909149028e60d0683dfb591d">KlusterKite.API.Provider.Resolvers.IResolver</a>.</p> <p class="definition">Definition at line <a class="el" href="_enum_resolver_8cs_source.html#l00085">85</a> of file <a class="el" href="_enum_resolver_8cs_source.html">EnumResolver.cs</a>.</p> </div> </div> <a id="a1f73d097173c5fe77fd23d2c4c40f98e"></a> <h2 class="memtitle"><span class="permalink"><a href="#a1f73d097173c5fe77fd23d2c4c40f98e">&#9670;&nbsp;</a></span>ResolveQuery()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">Task&lt;JToken&gt; <a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_enum_resolver.html">KlusterKite.API.Provider.Resolvers.EnumResolver</a>&lt; T &gt;.ResolveQuery </td> <td>(</td> <td class="paramtype">object&#160;</td> <td class="paramname"><em>source</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_client_1_1_api_request.html">ApiRequest</a>&#160;</td> <td class="paramname"><em>request</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_client_1_1_api_field.html">ApiField</a>&#160;</td> <td class="paramname"><em>apiField</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="class_kluster_kite_1_1_security_1_1_attributes_1_1_request_context.html">RequestContext</a>&#160;</td> <td class="paramname"><em>context</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">JsonSerializer&#160;</td> <td class="paramname"><em>argumentsSerializer</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">Action&lt; Exception &gt;&#160;</td> <td class="paramname"><em>onErrorCallback</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Resolves <a class="el" href="namespace_kluster_kite_1_1_a_p_i.html">API</a> request to object </p> <p>Implements <a class="el" href="interface_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_i_resolver.html#a14caed5e2f15a4dda78ac0dfdae75ef7">KlusterKite.API.Provider.Resolvers.IResolver</a>.</p> <p class="definition">Definition at line <a class="el" href="_enum_resolver_8cs_source.html#l00072">72</a> of file <a class="el" href="_enum_resolver_8cs_source.html">EnumResolver.cs</a>.</p> </div> </div> <h2 class="groupheader">Property Documentation</h2> <a id="af4dcf4dff79c36f08e5e5183724e3d9c"></a> <h2 class="memtitle"><span class="permalink"><a href="#af4dcf4dff79c36f08e5e5183724e3d9c">&#9670;&nbsp;</a></span>GeneratedType</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname"><a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_client_1_1_api_type.html">ApiType</a> <a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_enum_resolver.html">KlusterKite.API.Provider.Resolvers.EnumResolver</a>&lt; T &gt;.GeneratedType</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">static</span><span class="mlabel">get</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Gets the generated api type for typed argument </p> <p class="definition">Definition at line <a class="el" href="_enum_resolver_8cs_source.html#l00069">69</a> of file <a class="el" href="_enum_resolver_8cs_source.html">EnumResolver.cs</a>.</p> </div> </div> <hr/>The documentation for this class was generated from the following file:<ul> <li>KlusterKite.API/KlusterKite.API.Provider/Resolvers/<a class="el" href="_enum_resolver_8cs_source.html">EnumResolver.cs</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="namespace_kluster_kite.html">KlusterKite</a></li><li class="navelem"><a class="el" href="namespace_kluster_kite_1_1_a_p_i.html">API</a></li><li class="navelem"><a class="el" href="namespace_kluster_kite_1_1_a_p_i_1_1_provider.html">Provider</a></li><li class="navelem"><a class="el" href="namespace_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers.html">Resolvers</a></li><li class="navelem"><a class="el" href="class_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_enum_resolver.html">EnumResolver</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.13 </li> </ul> </div> </body> </html>
KlusterKite/KlusterKite
Docs/Doxygen/html/class_kluster_kite_1_1_a_p_i_1_1_provider_1_1_resolvers_1_1_enum_resolver.html
HTML
mit
16,292
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>scripts/SuccessiveMelodicIntervals.js</title> <link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/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="icon" href="../assets/favicon.ico"> <script src="http://yui.yahooapis.com/combo?3.9.1/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="../assets/css/logo.png" title="" width="117" height="52"></h1> </div> <div class="yui3-u-1-4 version"> <em>API Docs for: </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/MusicSnippet.html">MusicSnippet</a></li> <li><a href="../classes/Note.html">Note</a></li> <li><a href="../classes/QuestionGenerator.html">QuestionGenerator</a></li> <li><a href="../classes/SuccessiveMelodicIntervals.html">SuccessiveMelodicIntervals</a></li> </ul> <ul id="api-modules" class="apis modules"> </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: scripts/SuccessiveMelodicIntervals.js</h1> <div class="file"> <pre class="code prettyprint linenums"> /** * Generates a series of four random twelve-tone notes. * @class SuccessiveMelodicIntervals * @constructor */ function SuccessiveMelodicIntervals(numNotes) { const DEFAULT_LENGTH = 4; var length; if (numNotes == null || numNotes &lt; 2 || numNotes &gt; 11) { length = DEFAULT_LENGTH; } else { length = numNotes; } var g = Math.random(); var notes = generateMelody(); // var answers = calculateAnswers(); /** * @method getAnswers * @return {String[]} intervals */ this.getAnswers = function() { var answers = [] for (var i = 0; i &lt; notes.length - 1; i++) { answers.push(notes[i].getInterval(notes[i+1])); } return answers; } /** * Returns the notes as Strings * @method getNotes * @return {String[]} notes */ this.getNotes = function() { var notes1 = []; for (var i = 0; i &lt; notes.length; i++) { notes1.push(notes[i].toString()); } return notes1; } /** * Generates a 4-note 12-tone melody using backtracking. * @method generateMelody * @return {Note[]} notes */ function generateMelody() { var paletteIndices = []; for (var k = 0; k &lt; length; k++) { paletteIndices.push(0); } var melody = []; var i = 0; while (melody[length - 1] == null) { var palette; if (i == 0) { melody.push(getStartingNote()); // console.log(melody[i].toString()); i++; continue; } else palette = getPalette(melody[i-1], i); for (var j = paletteIndices[i]; j &lt; palette.length; j++) { melody.push(palette[j]); // Check if valid if (validateSMI(melody)) { // console.log(melody[i].toString()); // // console.log(&quot;valid &quot; + i); // It worked! // Update palette of indices in case we need to backtrack later. paletteIndices[i] = j + 1; break; } else { // console.log(&quot;invalid &quot; + i); // if didn&#x27;t work melody.pop(); // continue iterating until we find something that works } } if (melody[i] == null) { // We made it through the whole palette and nothing worked if (i == 0) { // If no starting notes worked, nothing will // Will never happen in the SMI domain // Still need to write safe code. break; } // Clean palette index array paletteIndices[i] = 0; // Prepare index i--; // Remove the previous element because it does not lead us anywhere // Won&#x27;t happen in this domain. Again, just writing safe code. melody.pop(); } else { // Move on to the next note! i++; } } return melody; } /** * Create a palette of notes to try based on previous note. * @method getPalette * @param {Integer} melody current index * @return {Note[]} palette */ function getPalette(previousNote, i) { var palette = []; // document.write(&quot;&lt;br&gt;palette:&lt;br&gt;&quot;); var lowestnote = new Note(&quot;G&quot;, 3); var highestnote = new Note(&quot;F&quot;, 5); var direction = true; for (var j = -6; j &lt; 7; j++) { var notetoadd = previousNote.getNextNote(j, direction); if (notetoadd == null) continue; var lowcomp = lowestnote.compareTo(notetoadd); var highcomp = highestnote.compareTo(notetoadd); var ord = ordinal(notetoadd.getNotename()); if (isNaN(lowcomp) || isNaN(highcomp) || lowcomp &gt;= 0 || highcomp &lt;= 0 || ord &lt; 9 || ord &gt; 25) { // Do not add notes that are out of bounds. // Do not use double sharps, double flats or weird spellings. } else { palette.push(notetoadd); } if (j == 6 &amp;&amp; direction) { // Now add all notes in the descending direction. j = -7; direction = false; } } return shuffleNotes(palette, g * i); } /** * Picks a random starting note. Use notes 9 through 25 (Gb—A#) * @method getStartingPalette * @return {Note} palette */ function getStartingNote() { var rand = Math.floor((Math.random() * 16) + 9); var notename = NOTES[rand]; return new Note(notename, 4); } /** * Seeded shuffle. * @param shuffleNotes * @param {Note[]} notes to shuffle * @param {Integer} seed * @return {Note[]} shuffled notes */ function shuffleNotes(notes, seed) { Math.seedrandom(seed); var shuffled = []; var strikeList = []; while (shuffled.length &lt; notes.length) { var rand = Math.floor(Math.random() * notes.length); if (strikeList.indexOf(rand) == -1) { // We have not used this number yet! Add to shuffled list shuffled.push(notes[rand]); // Strike out this number strikeList.push(rand); } else { // We have already used this number. Keep going! } } return shuffled; } } </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>
kbarber-ups/Capstone
out/files/scripts_SuccessiveMelodicIntervals.js.html
HTML
mit
9,170
<!DOCTYPE html> <html> <head> <meta charset='UTF-8'> <title>Coffeescript-UI Documentation</title> <script src='javascript/application.js'></script> <script src='javascript/search.js'></script> <link rel='stylesheet' href='stylesheets/application.css' type='text/css'> </head> <body class='list'> <div class='list' id='content'> <h1 class='full_list_header'>Method List</h1> <nav> <a target='_self' href='class_list.html'> Classes </a> <a target='_self' href='file_list.html'> Files </a> <a target='_self' href='method_list.html'> Methods </a> </nav> <div id='search'> Search: <input type='text'> </div> <ul> <li> <a href='class/CUI/dom.html#$element-static' target='main' title='$element'> .$element </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/util.html#$elementIsInDOM-static' target='main' title='$elementIsInDOM'> .$elementIsInDOM </a> <small> (CUI.util) </small> </li> <li> <a href='file/base/Deferred/when.coffee.html#CUI-' target='main' title='CUI'> ~CUI </a> <small> (base&#47;Deferred&#47;when.coffee) </small> </li> <li> <a href='file/elements/ConfirmationChoice/Alert.coffee.html#CUI-' target='main' title='CUI'> ~CUI </a> <small> (elements&#47;ConfirmationChoice&#47;Alert.coffee) </small> </li> <li> <a href='file/elements/ConfirmationChoice/Confirm.coffee.html#CUI-' target='main' title='CUI'> ~CUI </a> <small> (elements&#47;ConfirmationChoice&#47;Confirm.coffee) </small> </li> <li> <a href='file/elements/ConfirmationChoice/ConfirmationChoice.coffee.html#CUI-' target='main' title='CUI'> ~CUI </a> <small> (elements&#47;ConfirmationChoice&#47;ConfirmationChoice.coffee) </small> </li> <li> <a href='file/elements/ConfirmationChoice/Prompt.coffee.html#CUI-' target='main' title='CUI'> ~CUI </a> <small> (elements&#47;ConfirmationChoice&#47;Prompt.coffee) </small> </li> <li> <a href='file/elements/ConfirmationChoice/Spinner.coffee.html#CUI-' target='main' title='CUI'> ~CUI </a> <small> (elements&#47;ConfirmationChoice&#47;Spinner.coffee) </small> </li> <li> <a href='file/elements/ConfirmationChoice/Toaster.coffee.html#CUI-' target='main' title='CUI'> ~CUI </a> <small> (elements&#47;ConfirmationChoice&#47;Toaster.coffee) </small> </li> <li> <a href='file/base/Deferred/decide.coffee.html#CUI-' target='main' title='CUI'> ~CUI </a> <small> (base&#47;Deferred&#47;decide.coffee) </small> </li> <li> <a href='file/base/Deferred/when.coffee.html#CUI-' target='main' title='CUI'> ~CUI </a> <small> (base&#47;Deferred&#47;when.coffee) </small> </li> <li> <a href='file/elements/ConfirmationChoice/Alert.coffee.html#CUI-' target='main' title='CUI'> ~CUI </a> <small> (elements&#47;ConfirmationChoice&#47;Alert.coffee) </small> </li> <li> <a href='file/base/Deferred/when.coffee.html#CUI-' target='main' title='CUI'> ~CUI </a> <small> (base&#47;Deferred&#47;when.coffee) </small> </li> <li> <a href='file/base/util.coffee.html#RegExp-' target='main' title='RegExp'> ~RegExp </a> <small> (base&#47;util.coffee) </small> </li> <li> <a href='file/base/util.coffee.html#String-' target='main' title='String'> ~String </a> <small> (base&#47;util.coffee) </small> </li> <li> <a href='file/base/util.coffee.html#String-' target='main' title='String'> ~String </a> <small> (base&#47;util.coffee) </small> </li> <li> <a href='file/base/util.coffee.html#String-' target='main' title='String'> ~String </a> <small> (base&#47;util.coffee) </small> </li> <li> <a href='class/CUI/DateTime.html#UNUSEDgetTimezoneData-dynamic' target='main' title='UNUSEDgetTimezoneData'> #UNUSEDgetTimezoneData </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/ListViewTree.html#__actionOnNode-dynamic' target='main' title='__actionOnNode'> #__actionOnNode </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#__actionRecursively-dynamic' target='main' title='__actionRecursively'> #__actionRecursively </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ItemList.html#__activateItemByIndex-dynamic' target='main' title='__activateItemByIndex'> #__activateItemByIndex </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/Map.html#__addCustomOption-dynamic' target='main' title='__addCustomOption'> #__addCustomOption </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/GoogleMap.html#__addCustomOption-dynamic' target='main' title='__addCustomOption'> #__addCustomOption </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/ListView.html#__addDebugControl-dynamic' target='main' title='__addDebugControl'> #__addDebugControl </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Modal.html#__addHeaderButton-dynamic' target='main' title='__addHeaderButton'> #__addHeaderButton </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/Map.html#__addMarkerToMap-dynamic' target='main' title='__addMarkerToMap'> #__addMarkerToMap </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/GoogleMap.html#__addMarkerToMap-dynamic' target='main' title='__addMarkerToMap'> #__addMarkerToMap </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/LeafletMap.html#__addMarkerToMap-dynamic' target='main' title='__addMarkerToMap'> #__addMarkerToMap </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/ListView.html#__addRow-dynamic' target='main' title='__addRow'> #__addRow </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#__addRows-dynamic' target='main' title='__addRows'> #__addRows </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#__addRowsOddEvenClasses-dynamic' target='main' title='__addRowsOddEvenClasses'> #__addRowsOddEvenClasses </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/NumberInput.html#__addSeparator-dynamic' target='main' title='__addSeparator'> #__addSeparator </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/NumberInput.html#__addSymbol-dynamic' target='main' title='__addSymbol'> #__addSymbol </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/Map.html#__afterMarkerCreated-dynamic' target='main' title='__afterMarkerCreated'> #__afterMarkerCreated </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/LeafletMap.html#__afterMarkerCreated-dynamic' target='main' title='__afterMarkerCreated'> #__afterMarkerCreated </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/Layout.html#__all-static' target='main' title='__all'> .__all </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/dom.html#__append-static' target='main' title='__append'> .__append </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/ListView.html#__appendCells-dynamic' target='main' title='__appendCells'> #__appendCells </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Template.html#__appendContent-static' target='main' title='__appendContent'> .__appendContent </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/DataForm.html#__appendNewRow-dynamic' target='main' title='__appendNewRow'> #__appendNewRow </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#__appendNode-dynamic' target='main' title='__appendNode'> #__appendNode </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/DataForm.html#__appendRow-dynamic' target='main' title='__appendRow'> #__appendRow </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/DOMElement.html#__assertDOMElement-dynamic' target='main' title='__assertDOMElement'> #__assertDOMElement </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/DOMElement.html#__assertTemplateElement-dynamic' target='main' title='__assertTemplateElement'> #__assertTemplateElement </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/Map.html#__bindOnClickMapEvent-dynamic' target='main' title='__bindOnClickMapEvent'> #__bindOnClickMapEvent </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/LeafletMap.html#__bindOnClickMapEvent-dynamic' target='main' title='__bindOnClickMapEvent'> #__bindOnClickMapEvent </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/GoogleMap.html#__bindOnClickMapEvent-dynamic' target='main' title='__bindOnClickMapEvent'> #__bindOnClickMapEvent </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/MapInput.html#__buildIconPopoverContent-dynamic' target='main' title='__buildIconPopoverContent'> #__buildIconPopoverContent </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/GoogleMap.html#__buildMap-dynamic' target='main' title='__buildMap'> #__buildMap </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/MapInput.html#__buildMap-dynamic' target='main' title='__buildMap'> #__buildMap </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/Map.html#__buildMap-dynamic' target='main' title='__buildMap'> #__buildMap </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/LeafletMap.html#__buildMap-dynamic' target='main' title='__buildMap'> #__buildMap </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/Map.html#__buildMarker-dynamic' target='main' title='__buildMarker'> #__buildMarker </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/LeafletMap.html#__buildMarker-dynamic' target='main' title='__buildMarker'> #__buildMarker </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/GoogleMap.html#__buildMarker-dynamic' target='main' title='__buildMarker'> #__buildMarker </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/MultiOutput.html#__buildTemplateForKey-dynamic' target='main' title='__buildTemplateForKey'> #__buildTemplateForKey </a> <small> (CUI.MultiOutput) </small> </li> <li> <a href='class/CUI/Layout.html#__callAutoButtonbar-dynamic' target='main' title='__callAutoButtonbar'> #__callAutoButtonbar </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/Button.html#__callOnGroup-dynamic' target='main' title='__callOnGroup'> #__callOnGroup </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI.html#__callTimeoutChangeCallbacks-static' target='main' title='__callTimeoutChangeCallbacks'> .__callTimeoutChangeCallbacks </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/Deferred.html#__callback-dynamic' target='main' title='__callback'> #__callback </a> <small> (CUI.Deferred) </small> </li> <li> <a href='class/CUI/DateTimeInputBlock.html#__changeBlock-dynamic' target='main' title='__changeBlock'> #__changeBlock </a> <small> (CUI.DateTimeInputBlock) </small> </li> <li> <a href='class/CUI/NumberInputBlock.html#__changeBlock-dynamic' target='main' title='__changeBlock'> #__changeBlock </a> <small> (CUI.NumberInputBlock) </small> </li> <li> <a href='class/CUI/NumberInput.html#__checkInput-dynamic' target='main' title='__checkInput'> #__checkInput </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/MapInput.html#__checkInput-dynamic' target='main' title='__checkInput'> #__checkInput </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/EmailInput.html#__checkInput-dynamic' target='main' title='__checkInput'> #__checkInput </a> <small> (CUI.EmailInput) </small> </li> <li> <a href='class/CUI/DateTime.html#__checkInput-dynamic' target='main' title='__checkInput'> #__checkInput </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/Input.html#__checkInputInternal-dynamic' target='main' title='__checkInputInternal'> #__checkInputInternal </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Input.html#__checkInputRegexp-dynamic' target='main' title='__checkInputRegexp'> #__checkInputRegexp </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Prompt.html#__checkOkBtn-dynamic' target='main' title='__checkOkBtn'> #__checkOkBtn </a> <small> (CUI.Prompt) </small> </li> <li> <a href='class/CUI/Tabs.html#__checkOverflowButton-dynamic' target='main' title='__checkOverflowButton'> #__checkOverflowButton </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/ProgressMeter.html#__checkState-dynamic' target='main' title='__checkState'> #__checkState </a> <small> (CUI.ProgressMeter) </small> </li> <li> <a href='class/CUI/Buttonbar.html#__checkVisibility-dynamic' target='main' title='__checkVisibility'> #__checkVisibility </a> <small> (CUI.Buttonbar) </small> </li> <li> <a href='class/CUI/Draggable.html#__cleanup-dynamic' target='main' title='__cleanup'> #__cleanup </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/DateTime.html#__clearOverwriteMonthAndYear-dynamic' target='main' title='__clearOverwriteMonthAndYear'> #__clearOverwriteMonthAndYear </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI.html#__clearStorage-static' target='main' title='__clearStorage'> .__clearStorage </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/Panel.html#__close-dynamic' target='main' title='__close'> #__close </a> <small> (CUI.Panel) </small> </li> <li> <a href='class/CUI/FormPopover.html#__closePopover-dynamic' target='main' title='__closePopover'> #__closePopover </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/FormModal.html#__closePopover-dynamic' target='main' title='__closePopover'> #__closePopover </a> <small> (CUI.FormModal) </small> </li> <li> <a href='class/CUI/Input.html#__createElement-dynamic' target='main' title='__createElement'> #__createElement </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Password.html#__createElement-dynamic' target='main' title='__createElement'> #__createElement </a> <small> (CUI.Password) </small> </li> <li> <a href='class/CUI/SimpleForm.html#__createFields-dynamic' target='main' title='__createFields'> #__createFields </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/ListView.html#__debugCall-dynamic' target='main' title='__debugCall'> #__debugCall </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#__debugRect-dynamic' target='main' title='__debugRect'> #__debugRect </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#__deferRow-dynamic' target='main' title='__deferRow'> #__deferRow </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ItemList.html#__deselectPreActivated-dynamic' target='main' title='__deselectPreActivated'> #__deselectPreActivated </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/DataFieldProxy.html#__detach-dynamic' target='main' title='__detach'> #__detach </a> <small> (CUI.DataFieldProxy) </small> </li> <li> <a href='class/CUI/Map.html#__disableEnableZoomButtons-dynamic' target='main' title='__disableEnableZoomButtons'> #__disableEnableZoomButtons </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Tabs.html#__doLayout-dynamic' target='main' title='__doLayout'> #__doLayout </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/ListView.html#__doLayout-dynamic' target='main' title='__doLayout'> #__doLayout </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/DocumentBrowser.html#__doSearch-dynamic' target='main' title='__doSearch'> #__doSearch </a> <small> (CUI.DocumentBrowser) </small> </li> <li> <a href='class/CUI/XHR.html#__download_abort-dynamic' target='main' title='__download_abort'> #__download_abort </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/XHR.html#__download_loadend-dynamic' target='main' title='__download_loadend'> #__download_loadend </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/XHR.html#__download_progress-dynamic' target='main' title='__download_progress'> #__download_progress </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/XHR.html#__download_readyStateChange-dynamic' target='main' title='__download_readyStateChange'> #__download_readyStateChange </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/XHR.html#__download_timeout-dynamic' target='main' title='__download_timeout'> #__download_timeout </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/Sortable.html#__end_drag-dynamic' target='main' title='__end_drag'> #__end_drag </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/FileReaderFile.html#__event_abort-dynamic' target='main' title='__event_abort'> #__event_abort </a> <small> (CUI.FileReaderFile) </small> </li> <li> <a href='class/CUI/FileReaderFile.html#__event_error-dynamic' target='main' title='__event_error'> #__event_error </a> <small> (CUI.FileReaderFile) </small> </li> <li> <a href='class/CUI/FileReaderFile.html#__event_load-dynamic' target='main' title='__event_load'> #__event_load </a> <small> (CUI.FileReaderFile) </small> </li> <li> <a href='class/CUI/FileReaderFile.html#__event_loadStart-dynamic' target='main' title='__event_loadStart'> #__event_loadStart </a> <small> (CUI.FileReaderFile) </small> </li> <li> <a href='class/CUI/FileReaderFile.html#__event_loadend-dynamic' target='main' title='__event_loadend'> #__event_loadend </a> <small> (CUI.FileReaderFile) </small> </li> <li> <a href='class/CUI/FileReaderFile.html#__event_progress-dynamic' target='main' title='__event_progress'> #__event_progress </a> <small> (CUI.FileReaderFile) </small> </li> <li> <a href='class/CUI/Sortable.html#__findClosestSon-dynamic' target='main' title='__findClosestSon'> #__findClosestSon </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/DataForm.html#__findRowInfo-dynamic' target='main' title='__findRowInfo'> #__findRowInfo </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/Draggable.html#__finish_drag-dynamic' target='main' title='__finish_drag'> #__finish_drag </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/Input.html#__focusShadowInput-dynamic' target='main' title='__focusShadowInput'> #__focusShadowInput </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Events.html#__getActiveListeners-static' target='main' title='__getActiveListeners'> .__getActiveListeners </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/Button.html#__getButtons-dynamic' target='main' title='__getButtons'> #__getButtons </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/CSSLoader.html#__getCSSNodes-dynamic' target='main' title='__getCSSNodes'> #__getCSSNodes </a> <small> (CUI.CSSLoader) </small> </li> <li> <a href='class/CUI/Element.html#__getCheckMap-dynamic' target='main' title='__getCheckMap'> #__getCheckMap </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/Options.html#__getCheckboxByValue-dynamic' target='main' title='__getCheckboxByValue'> #__getCheckboxByValue </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/ListView.html#__getColClass-dynamic' target='main' title='__getColClass'> #__getColClass </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#__getColWidth-dynamic' target='main' title='__getColWidth'> #__getColWidth </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#__getColsFromAndTo-dynamic' target='main' title='__getColsFromAndTo'> #__getColsFromAndTo </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/MapInput.html#__getFormattedPosition-dynamic' target='main' title='__getFormattedPosition'> #__getFormattedPosition </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/Map.html#__getFullscreenButtonOpts-dynamic' target='main' title='__getFullscreenButtonOpts'> #__getFullscreenButtonOpts </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Button.html#__getIcon-dynamic' target='main' title='__getIcon'> #__getIcon </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/DateTime.html#__getInputBlocks-dynamic' target='main' title='__getInputBlocks'> #__getInputBlocks </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/Input.html#__getInputBlocks-dynamic' target='main' title='__getInputBlocks'> #__getInputBlocks </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/ItemList.html#__getItemByIndex-dynamic' target='main' title='__getItemByIndex'> #__getItemByIndex </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/ItemList.html#__getItems-dynamic' target='main' title='__getItems'> #__getItems </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/Events.html#__getListenersForNode-static' target='main' title='__getListenersForNode'> .__getListenersForNode </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/Map.html#__getMapClassName-dynamic' target='main' title='__getMapClassName'> #__getMapClassName </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/LeafletMap.html#__getMapClassName-dynamic' target='main' title='__getMapClassName'> #__getMapClassName </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/GoogleMap.html#__getMapClassName-dynamic' target='main' title='__getMapClassName'> #__getMapClassName </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/Map.html#__getMarkerOptions-dynamic' target='main' title='__getMarkerOptions'> #__getMarkerOptions </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Select.html#__getOptionByValue-dynamic' target='main' title='__getOptionByValue'> #__getOptionByValue </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/Layer.html#__getOriginalElement-dynamic' target='main' title='__getOriginalElement'> #__getOriginalElement </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/MapInput.html#__getPosition-dynamic' target='main' title='__getPosition'> #__getPosition </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/MapInput.html#__getPositionForDisplay-dynamic' target='main' title='__getPositionForDisplay'> #__getPositionForDisplay </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/ListView.html#__getQuadrants-dynamic' target='main' title='__getQuadrants'> #__getQuadrants </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ConfirmationChoice.html#__getResolveValue-dynamic' target='main' title='__getResolveValue'> #__getResolveValue </a> <small> (CUI.ConfirmationChoice) </small> </li> <li> <a href='class/CUI/ListView.html#__getScrolling-dynamic' target='main' title='__getScrolling'> #__getScrolling </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/FlexHandle.html#__getSize-dynamic' target='main' title='__getSize'> #__getSize </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/FlexHandle.html#__getState-dynamic' target='main' title='__getState'> #__getState </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI.html#__getStorage-static' target='main' title='__getStorage'> .__getStorage </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/Button.html#__getTemplateName-dynamic' target='main' title='__getTemplateName'> #__getTemplateName </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI.html#__getTimeoutById-static' target='main' title='__getTimeoutById'> .__getTimeoutById </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/ListView.html#__getValue-dynamic' target='main' title='__getValue'> #__getValue </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Map.html#__getZoomButtons-dynamic' target='main' title='__getZoomButtons'> #__getZoomButtons </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Listener.html#__handleDOMEventInternal-dynamic' target='main' title='__handleDOMEventInternal'> #__handleDOMEventInternal </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/ObjectDumper.html#__hasOnlyPlainValues-dynamic' target='main' title='__hasOnlyPlainValues'> #__hasOnlyPlainValues </a> <small> (CUI.ObjectDumper) </small> </li> <li> <a href='class/CUI/MultiOutput.html#__hideShowElements-dynamic' target='main' title='__hideShowElements'> #__hideShowElements </a> <small> (CUI.MultiOutput) </small> </li> <li> <a href='class/CUI/Layout.html#__init-dynamic' target='main' title='__init'> #__init </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/Events.html#__init-static' target='main' title='__init'> .__init </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/SimplePane.html#__init-dynamic' target='main' title='__init'> #__init </a> <small> (CUI.SimplePane) </small> </li> <li> <a href='class/CUI/BorderLayout.html#__init-dynamic' target='main' title='__init'> #__init </a> <small> (CUI.BorderLayout) </small> </li> <li> <a href='class/CUI/Pane.html#__init-dynamic' target='main' title='__init'> #__init </a> <small> (CUI.Pane) </small> </li> <li> <a href='class/CUI/ItemList.html#__initActiveIdx-dynamic' target='main' title='__initActiveIdx'> #__initActiveIdx </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/Input.html#__initContentSize-dynamic' target='main' title='__initContentSize'> #__initContentSize </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DataField.html#__initDisabled-dynamic' target='main' title='__initDisabled'> #__initDisabled </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/MultiInput.html#__initInputs-dynamic' target='main' title='__initInputs'> #__initInputs </a> <small> (CUI.MultiInput) </small> </li> <li> <a href='class/CUI/KeyboardEvent.html#__initKeyboardListener-static' target='main' title='__initKeyboardListener'> .__initKeyboardListener </a> <small> (CUI.KeyboardEvent) </small> </li> <li> <a href='class/CUI/MapInput.html#__initMap-dynamic' target='main' title='__initMap'> #__initMap </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/Layout.html#__initPane-dynamic' target='main' title='__initPane'> #__initPane </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/Input.html#__initShadowInput-dynamic' target='main' title='__initShadowInput'> #__initShadowInput </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Button.html#__initTooltip-dynamic' target='main' title='__initTooltip'> #__initTooltip </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/SimpleForm.html#__initUndo-dynamic' target='main' title='__initUndo'> #__initUndo </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/FlexHandle.html#__isAlive-dynamic' target='main' title='__isAlive'> #__isAlive </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/ListView.html#__isMaximizedCol-dynamic' target='main' title='__isMaximizedCol'> #__isMaximizedCol </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Draggable.html#__killTimeout-dynamic' target='main' title='__killTimeout'> #__killTimeout </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/LeafletMap.html#__loadCSS-dynamic' target='main' title='__loadCSS'> #__loadCSS </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/Select.html#__loadOptions-dynamic' target='main' title='__loadOptions'> #__loadOptions </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#__makeList-dynamic' target='main' title='__makeList'> #__makeList </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI/Tabs.html#__measureAndSetBodyWidth-dynamic' target='main' title='__measureAndSetBodyWidth'> #__measureAndSetBodyWidth </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/Deferred.html#__notify-dynamic' target='main' title='__notify'> #__notify </a> <small> (CUI.Deferred) </small> </li> <li> <a href='class/CUI/FileUploadButton.html#__onClick-dynamic' target='main' title='__onClick'> #__onClick </a> <small> (CUI.FileUploadButton) </small> </li> <li> <a href='class/CUI/Map.html#__onMarkerClick-dynamic' target='main' title='__onMarkerClick'> #__onMarkerClick </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Map.html#__onMoveEnd-dynamic' target='main' title='__onMoveEnd'> #__onMoveEnd </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Map.html#__onReady-dynamic' target='main' title='__onReady'> #__onReady </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Panel.html#__open-dynamic' target='main' title='__open'> #__open </a> <small> (CUI.Panel) </small> </li> <li> <a href='class/CUI/MapInput.html#__openIconPopover-dynamic' target='main' title='__openIconPopover'> #__openIconPopover </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/MapInput.html#__openMapPopover-dynamic' target='main' title='__openMapPopover'> #__openMapPopover </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/FormPopover.html#__openPopover-dynamic' target='main' title='__openPopover'> #__openPopover </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/Input.html#__overwriteBlocks-dynamic' target='main' title='__overwriteBlocks'> #__overwriteBlocks </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DateTime.html#__parseFormat-dynamic' target='main' title='__parseFormat'> #__parseFormat </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/StickyHeaderControl.html#__positionControl-dynamic' target='main' title='__positionControl'> #__positionControl </a> <small> (CUI.StickyHeaderControl) </small> </li> <li> <a href='class/CUI/ItemList.html#__preActivateItemByIndex-dynamic' target='main' title='__preActivateItemByIndex'> #__preActivateItemByIndex </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/XHR.html#__progress-dynamic' target='main' title='__progress'> #__progress </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/Buttonbar.html#__proxy-dynamic' target='main' title='__proxy'> #__proxy </a> <small> (CUI.Buttonbar) </small> </li> <li> <a href='class/CUI/Deferred.html#__register-dynamic' target='main' title='__register'> #__register </a> <small> (CUI.Deferred) </small> </li> <li> <a href='class/CUI/Listener.html#__registerDOMEvent-dynamic' target='main' title='__registerDOMEvent'> #__registerDOMEvent </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/XHR.html#__registerEvents-dynamic' target='main' title='__registerEvents'> #__registerEvents </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/Events.html#__registerListener-static' target='main' title='__registerListener'> .__registerListener </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/Deferred.html#__reject-dynamic' target='main' title='__reject'> #__reject </a> <small> (CUI.Deferred) </small> </li> <li> <a href='class/CUI/Input.html#__removeContentSize-dynamic' target='main' title='__removeContentSize'> #__removeContentSize </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Layer.html#__removeDebugDivs-dynamic' target='main' title='__removeDebugDivs'> #__removeDebugDivs </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/DataForm.html#__removeEmptyRows-dynamic' target='main' title='__removeEmptyRows'> #__removeEmptyRows </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/Map.html#__removeMarker-dynamic' target='main' title='__removeMarker'> #__removeMarker </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/LeafletMap.html#__removeMarker-dynamic' target='main' title='__removeMarker'> #__removeMarker </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/GoogleMap.html#__removeMarker-dynamic' target='main' title='__removeMarker'> #__removeMarker </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/DataForm.html#__removeRow-dynamic' target='main' title='__removeRow'> #__removeRow </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/Input.html#__removeShadowInput-dynamic' target='main' title='__removeShadowInput'> #__removeShadowInput </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI.html#__removeTimeout-static' target='main' title='__removeTimeout'> .__removeTimeout </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/FormPopover.html#__renderDisplay-dynamic' target='main' title='__renderDisplay'> #__renderDisplay </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/ListView.html#__resetCellDims-dynamic' target='main' title='__resetCellDims'> #__resetCellDims </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#__resetCellStyle-dynamic' target='main' title='__resetCellStyle'> #__resetCellStyle </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#__resetColWidth-dynamic' target='main' title='__resetColWidth'> #__resetColWidth </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#__resetRowDim-dynamic' target='main' title='__resetRowDim'> #__resetRowDim </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/FlexHandle.html#__resize-dynamic' target='main' title='__resize'> #__resize </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Deferred.html#__resolve-dynamic' target='main' title='__resolve'> #__resolve </a> <small> (CUI.Deferred) </small> </li> <li> <a href='class/CUI/Modal.html#__runOnAllButtons-dynamic' target='main' title='__runOnAllButtons'> #__runOnAllButtons </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/ListViewTree.html#__runTrigger-dynamic' target='main' title='__runTrigger'> #__runTrigger </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/ListView.html#__scheduleLayout-dynamic' target='main' title='__scheduleLayout'> #__scheduleLayout </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Tabs.html#__setActiveMarker-dynamic' target='main' title='__setActiveMarker'> #__setActiveMarker </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/SimpleForm.html#__setClassOnField-dynamic' target='main' title='__setClassOnField'> #__setClassOnField </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/ListViewColResize.html#__setColWidth-dynamic' target='main' title='__setColWidth'> #__setColWidth </a> <small> (CUI.ListViewColResize) </small> </li> <li> <a href='class/CUI/Input.html#__setContentSize-dynamic' target='main' title='__setContentSize'> #__setContentSize </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Input.html#__setCursor-dynamic' target='main' title='__setCursor'> #__setCursor </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Options.html#__setDataOnOptions-dynamic' target='main' title='__setDataOnOptions'> #__setDataOnOptions </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/Layer.html#__setElement-dynamic' target='main' title='__setElement'> #__setElement </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Button.html#__setIconState-dynamic' target='main' title='__setIconState'> #__setIconState </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Event.html#__setListener-dynamic' target='main' title='__setListener'> #__setListener </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/ListView.html#__setMargins-dynamic' target='main' title='__setMargins'> #__setMargins </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Event.html#__setPhase-dynamic' target='main' title='__setPhase'> #__setPhase </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/SimpleForm.html#__setRowVisibility-dynamic' target='main' title='__setRowVisibility'> #__setRowVisibility </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/ListView.html#__setScrolling-dynamic' target='main' title='__setScrolling'> #__setScrolling </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/FlexHandle.html#__setSize-dynamic' target='main' title='__setSize'> #__setSize </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/FlexHandle.html#__setState-dynamic' target='main' title='__setState'> #__setState </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Button.html#__setState-dynamic' target='main' title='__setState'> #__setState </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/XHR.html#__setStatus-dynamic' target='main' title='__setStatus'> #__setStatus </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI.html#__setStorage-static' target='main' title='__setStorage'> .__setStorage </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/Button.html#__setTextState-dynamic' target='main' title='__setTextState'> #__setTextState </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Buttonbar.html#__setVisibilityClasses-dynamic' target='main' title='__setVisibilityClasses'> #__setVisibilityClasses </a> <small> (CUI.Buttonbar) </small> </li> <li> <a href='class/CUI/Input.html#__shadowInput-dynamic' target='main' title='__shadowInput'> #__shadowInput </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Draggable.html#__startDrag-dynamic' target='main' title='__startDrag'> #__startDrag </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI.html#__startTimeout-static' target='main' title='__startTimeout'> .__startTimeout </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/DataForm.html#__storeValue-dynamic' target='main' title='__storeValue'> #__storeValue </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/ListView.html#__syncScrolling-dynamic' target='main' title='__syncScrolling'> #__syncScrolling </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/FormPopover.html#__triggerDataChanged-dynamic' target='main' title='__triggerDataChanged'> #__triggerDataChanged </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/Input.html#__unfocusShadowInput-dynamic' target='main' title='__unfocusShadowInput'> #__unfocusShadowInput </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DataForm.html#__updateButtons-dynamic' target='main' title='__updateButtons'> #__updateButtons </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/DataForm.html#__updateEmptyInRows-dynamic' target='main' title='__updateEmptyInRows'> #__updateEmptyInRows </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/LeafletMap.html#__updateGroupsPolylines-dynamic' target='main' title='__updateGroupsPolylines'> #__updateGroupsPolylines </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/MapInput.html#__updateIconOptions-dynamic' target='main' title='__updateIconOptions'> #__updateIconOptions </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/Layer.html#__updateLayerStackCounter-dynamic' target='main' title='__updateLayerStackCounter'> #__updateLayerStackCounter </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/DataForm.html#__updateView-dynamic' target='main' title='__updateView'> #__updateView </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/XHR.html#__upload_progress-dynamic' target='main' title='__upload_progress'> #__upload_progress </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/dom.html#a-static' target='main' title='a'> .a </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/XHR.html#abort-dynamic' target='main' title='abort'> #abort </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/FileReaderFile.html#abort-dynamic' target='main' title='abort'> #abort </a> <small> (CUI.FileReaderFile) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#abort-dynamic' target='main' title='abort'> #abort </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#abortLoading-dynamic' target='main' title='abortLoading'> #abortLoading </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Droppable.html#accept-dynamic' target='main' title='accept'> #accept </a> <small> (CUI.Droppable) </small> </li> <li> <a href='class/CUI/Tab.html#activate-dynamic' target='main' title='activate'> #activate </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/Tabs.html#activate-dynamic' target='main' title='activate'> #activate </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/Button.html#activate-dynamic' target='main' title='activate'> #activate </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/ItemList.html#activatePreSelectedItem-dynamic' target='main' title='activatePreSelectedItem'> #activatePreSelectedItem </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/Buttonbar.html#addButton-dynamic' target='main' title='addButton'> #addButton </a> <small> (CUI.Buttonbar) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#addChild-dynamic' target='main' title='addChild'> #addChild </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#addClass-dynamic' target='main' title='addClass'> #addClass </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/DOMElement.html#addClass-dynamic' target='main' title='addClass'> #addClass </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/ListViewRow.html#addClass-dynamic' target='main' title='addClass'> #addClass </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/dom.html#addClass-static' target='main' title='addClass'> .addClass </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Template.html#addClass-dynamic' target='main' title='addClass'> #addClass </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/ListViewColumnRightFill.html#addClass-dynamic' target='main' title='addClass'> #addClass </a> <small> (CUI.ListViewColumnRightFill) </small> </li> <li> <a href='class/CUI/SimpleForm.html#addClassToField-dynamic' target='main' title='addClassToField'> #addClassToField </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/ListViewRow.html#addColumn-dynamic' target='main' title='addColumn'> #addColumn </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/FlexHandle.html#addLabel-dynamic' target='main' title='addLabel'> #addLabel </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Map.html#addMarker-dynamic' target='main' title='addMarker'> #addMarker </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Map.html#addMarkers-dynamic' target='main' title='addMarkers'> #addMarkers </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/DocumentBrowser.SearchMatch.html#addMatch-dynamic' target='main' title='addMatch'> #addMatch </a> <small> (CUI.DocumentBrowser.SearchMatch) </small> </li> <li> <a href='class/CUI/ListViewTree.html#addNode-dynamic' target='main' title='addNode'> #addNode </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#addNode-dynamic' target='main' title='addNode'> #addNode </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Element.html#addOpt-dynamic' target='main' title='addOpt'> #addOpt </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/Element.html#addOpts-dynamic' target='main' title='addOpts'> #addOpts </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/DataTable.html#addRow-dynamic' target='main' title='addRow'> #addRow </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/Table.html#addRow-dynamic' target='main' title='addRow'> #addRow </a> <small> (CUI.Table) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#addSelectedClass-dynamic' target='main' title='addSelectedClass'> #addSelectedClass </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/StickyHeaderControl.html#addStickyHeader-dynamic' target='main' title='addStickyHeader'> #addStickyHeader </a> <small> (CUI.StickyHeaderControl) </small> </li> <li> <a href='class/CUI/Tabs.html#addTab-dynamic' target='main' title='addTab'> #addTab </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/DocumentBrowser.html#addWords-dynamic' target='main' title='addWords'> #addWords </a> <small> (CUI.DocumentBrowser) </small> </li> <li> <a href='class/CUI/ListViewRow.html#addedToListView-dynamic' target='main' title='addedToListView'> #addedToListView </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/DataTableNode.html#addedToListView-dynamic' target='main' title='addedToListView'> #addedToListView </a> <small> (CUI.DataTableNode) </small> </li> <li> <a href='class/CUI/util.html#alert_dump-static' target='main' title='alert_dump'> .alert_dump </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/Layout.html#all-static' target='main' title='all'> .all </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/ListViewTreeRowMove.html#allowRowMove-dynamic' target='main' title='allowRowMove'> #allowRowMove </a> <small> (CUI.ListViewTreeRowMove) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#allowRowMove-dynamic' target='main' title='allowRowMove'> #allowRowMove </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Event.html#altKey-dynamic' target='main' title='altKey'> #altKey </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Deferred.html#always-dynamic' target='main' title='always'> #always </a> <small> (CUI.Deferred) </small> </li> <li> <a href='class/CUI/Promise.html#always-dynamic' target='main' title='always'> #always </a> <small> (CUI.Promise) </small> </li> <li> <a href='class/CUI/DOMElement.html#append-dynamic' target='main' title='append'> #append </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/dom.html#append-static' target='main' title='append'> .append </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Modal.html#append-dynamic' target='main' title='append'> #append </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/SimplePane.html#append-dynamic' target='main' title='append'> #append </a> <small> (CUI.SimplePane) </small> </li> <li> <a href='class/CUI/Template.html#append-dynamic' target='main' title='append'> #append </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/Layout.html#append-dynamic' target='main' title='append'> #append </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/Tab.html#appendContent-dynamic' target='main' title='appendContent'> #appendContent </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/Panel.html#appendContent-dynamic' target='main' title='appendContent'> #appendContent </a> <small> (CUI.Panel) </small> </li> <li> <a href='class/CUI/Block.html#appendContent-dynamic' target='main' title='appendContent'> #appendContent </a> <small> (CUI.Block) </small> </li> <li> <a href='class/CUI/ListView.html#appendDeferredRows-dynamic' target='main' title='appendDeferredRows'> #appendDeferredRows </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#appendRow-dynamic' target='main' title='appendRow'> #appendRow </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#appendRows-dynamic' target='main' title='appendRows'> #appendRows </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#appendSibling-dynamic' target='main' title='appendSibling'> #appendSibling </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI.html#appendToUrl-static' target='main' title='appendToUrl'> .appendToUrl </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/util.html#assert-static' target='main' title='assert'> .assert </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/util.html#assertImplements-static' target='main' title='assertImplements'> .assertImplements </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/util.html#assertInstanceOf-static' target='main' title='assertInstanceOf'> .assertInstanceOf </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/util.html#atou-static' target='main' title='atou'> .atou </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/dom.html#audio-static' target='main' title='audio'> .audio </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Layer.html#autoSize-dynamic' target='main' title='autoSize'> #autoSize </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/dom.html#b-static' target='main' title='b'> .b </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Draggable.html#before_drag-dynamic' target='main' title='before_drag'> #before_drag </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/Resizable.html#before_drag-dynamic' target='main' title='before_drag'> #before_drag </a> <small> (CUI.Resizable) </small> </li> <li> <a href='class/CUI/Movable.html#before_drag-dynamic' target='main' title='before_drag'> #before_drag </a> <small> (CUI.Movable) </small> </li> <li> <a href='class/CUI/InputBlock.html#calcSizes-dynamic' target='main' title='calcSizes'> #calcSizes </a> <small> (CUI.InputBlock) </small> </li> <li> <a href='class/CUI/FormPopover.html#callOnFields-dynamic' target='main' title='callOnFields'> #callOnFields </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/DataField.html#callOnOthers-dynamic' target='main' title='callOnOthers'> #callOnOthers </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/ConfirmationChoice.html#cancel-dynamic' target='main' title='cancel'> #cancel </a> <small> (CUI.ConfirmationChoice) </small> </li> <li> <a href='class/CUI.html#chainedCall-static' target='main' title='chainedCall'> .chainedCall </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/FileUpload.html#checkBatchDone-dynamic' target='main' title='checkBatchDone'> #checkBatchDone </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/Input.html#checkBlocks-dynamic' target='main' title='checkBlocks'> #checkBlocks </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DataField.html#checkChanged-dynamic' target='main' title='checkChanged'> #checkChanged </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Input.html#checkInput-dynamic' target='main' title='checkInput'> #checkInput </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/NumberInput.html#checkInput-dynamic' target='main' title='checkInput'> #checkInput </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#checkList-dynamic' target='main' title='checkList'> #checkList </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI/Label.html#checkOverflowSize-dynamic' target='main' title='checkOverflowSize'> #checkOverflowSize </a> <small> (CUI.Label) </small> </li> <li> <a href='class/CUI/Input.html#checkSelectionChange-dynamic' target='main' title='checkSelectionChange'> #checkSelectionChange </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Output.html#checkValue-dynamic' target='main' title='checkValue'> #checkValue </a> <small> (CUI.Output) </small> </li> <li> <a href='class/CUI/Options.html#checkValue-dynamic' target='main' title='checkValue'> #checkValue </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/Input.html#checkValue-dynamic' target='main' title='checkValue'> #checkValue </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/NumberInput.html#checkValue-dynamic' target='main' title='checkValue'> #checkValue </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/Checkbox.html#checkValue-dynamic' target='main' title='checkValue'> #checkValue </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/Select.html#checkValue-dynamic' target='main' title='checkValue'> #checkValue </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/Slider.html#checkValue-dynamic' target='main' title='checkValue'> #checkValue </a> <small> (CUI.Slider) </small> </li> <li> <a href='class/CUI/DataField.html#checkValue-dynamic' target='main' title='checkValue'> #checkValue </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#check_deselect-dynamic' target='main' title='check_deselect'> #check_deselect </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/dom.html#children-static' target='main' title='children'> .children </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI.html#chunkWork-static' target='main' title='chunkWork'> .chunkWork </a> <small> (CUI) </small> </li> <li> <a href='class/CUI.html#chunkWorkOLD-static' target='main' title='chunkWorkOLD'> .chunkWorkOLD </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/ListViewRowMove.html#cleanup_drag-dynamic' target='main' title='cleanup_drag'> #cleanup_drag </a> <small> (CUI.ListViewRowMove) </small> </li> <li> <a href='class/CUI/Lasso.html#cleanup_drag-dynamic' target='main' title='cleanup_drag'> #cleanup_drag </a> <small> (CUI.Lasso) </small> </li> <li> <a href='class/CUI/Draggable.html#cleanup_drag-dynamic' target='main' title='cleanup_drag'> #cleanup_drag </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/Sortable.html#cleanup_drag-dynamic' target='main' title='cleanup_drag'> #cleanup_drag </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/FileUpload.html#clear-dynamic' target='main' title='clear'> #clear </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/Console.html#clear-dynamic' target='main' title='clear'> #clear </a> <small> (CUI.Console) </small> </li> <li> <a href='class/CUI.html#clearInterval-static' target='main' title='clearInterval'> .clearInterval </a> <small> (CUI) </small> </li> <li> <a href='class/CUI.html#clearLocalStorage-static' target='main' title='clearLocalStorage'> .clearLocalStorage </a> <small> (CUI) </small> </li> <li> <a href='class/CUI.html#clearSessionStorage-static' target='main' title='clearSessionStorage'> .clearSessionStorage </a> <small> (CUI) </small> </li> <li> <a href='class/CUI.html#clearTimeout-static' target='main' title='clearTimeout'> .clearTimeout </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/Layer.html#clearTimeout-dynamic' target='main' title='clearTimeout'> #clearTimeout </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Event.html#clientX-dynamic' target='main' title='clientX'> #clientX </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Event.html#clientY-dynamic' target='main' title='clientY'> #clientY </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/FlexHandle.html#close-dynamic' target='main' title='close'> #close </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#close-dynamic' target='main' title='close'> #close </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Panel.html#close-dynamic' target='main' title='close'> #close </a> <small> (CUI.Panel) </small> </li> <li> <a href='class/CUI/DateTime.html#closePopover-dynamic' target='main' title='closePopover'> #closePopover </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/FormPopover.html#closePopover-dynamic' target='main' title='closePopover'> #closePopover </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#closeRecursively-dynamic' target='main' title='closeRecursively'> #closeRecursively </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/dom.html#closest-static' target='main' title='closest'> .closest </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#closestUntil-static' target='main' title='closestUntil'> .closestUntil </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/util.html#compareIndex-static' target='main' title='compareIndex'> .compareIndex </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/DataFieldInput.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.DataFieldInput) </small> </li> <li> <a href='class/CUI/MultiInput.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.MultiInput) </small> </li> <li> <a href='class/CUI/Event.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/DigiDisplay.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.DigiDisplay) </small> </li> <li> <a href='class/CUI/MultiInputControl.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.MultiInputControl) </small> </li> <li> <a href='class/CUI/IconMarker.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.IconMarker) </small> </li> <li> <a href='class/CUI/FormButton.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.FormButton) </small> </li> <li> <a href='class/CUI/Block.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Block) </small> </li> <li> <a href='class/CUI/Test.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Test) </small> </li> <li> <a href='class/CUI/FormModal.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.FormModal) </small> </li> <li> <a href='class/CUI/FileUpload.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/ObjectDumper.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.ObjectDumper) </small> </li> <li> <a href='class/CUI/Layout.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/Tooltip.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/Button.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Template.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/FormPopover.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/Options.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/ListView.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/MultilineLabel.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.MultilineLabel) </small> </li> <li> <a href='class/CUI/Layer.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Tab.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/Input.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Label.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Label) </small> </li> <li> <a href='class/CUI/EmptyLabel.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.EmptyLabel) </small> </li> <li> <a href='class/CUI/Map.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Icon.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Icon) </small> </li> <li> <a href='class/CUI/LayerPane.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.LayerPane) </small> </li> <li> <a href='class/CUI/ButtonHref.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.ButtonHref) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/DataField.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Table.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Table) </small> </li> <li> <a href='class/CUI/LeafletMap.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/Buttonbar.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Buttonbar) </small> </li> <li> <a href='class/CUI/StickyHeaderControl.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.StickyHeaderControl) </small> </li> <li> <a href='class/CUI/MapInput.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/GoogleMap.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/DragDropSelect.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.DragDropSelect) </small> </li> <li> <a href='class/CUI/StickyHeader.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.StickyHeader) </small> </li> <li> <a href='class/CUI/Checkbox.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/Promise.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Promise) </small> </li> <li> <a href='class/CUI/FileUploadButton.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.FileUploadButton) </small> </li> <li> <a href='class/CUI/Element.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/DateTime.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/Menu.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Menu) </small> </li> <li> <a href='class/CUI/Deferred.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Deferred) </small> </li> <li> <a href='class/CUI/Modal.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/Console.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Console) </small> </li> <li> <a href='class/CUI/ConfirmationChoice.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.ConfirmationChoice) </small> </li> <li> <a href='class/CUI/Panel.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Panel) </small> </li> <li> <a href='class/CUI/Dummy.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.Dummy) </small> </li> <li> <a href='class/CUI/ListViewTree.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/ConfirmationDialog.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.ConfirmationDialog) </small> </li> <li> <a href='class/CUI/WaitBlock.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.WaitBlock) </small> </li> <li> <a href='class/CUI/FlexHandle.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/ProgressMeter.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.ProgressMeter) </small> </li> <li> <a href='class/CUI/InputBlock.html#constructor-dynamic' target='main' title='constructor'> #constructor </a> <small> (CUI.InputBlock) </small> </li> <li> <a href='class/CUI/MultiInputControl.html#copy-dynamic' target='main' title='copy'> #copy </a> <small> (CUI.MultiInputControl) </small> </li> <li> <a href='class/CUI/Element.html#copy-dynamic' target='main' title='copy'> #copy </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/Icon.html#copy-dynamic' target='main' title='copy'> #copy </a> <small> (CUI.Icon) </small> </li> <li> <a href='class/CUI/util.html#copyObject-static' target='main' title='copyObject'> .copyObject </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/NumberInput.html#correctValueForInput-dynamic' target='main' title='correctValueForInput'> #correctValueForInput </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/Input.html#correctValueForInput-dynamic' target='main' title='correctValueForInput'> #correctValueForInput </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI.html#countTimeouts-static' target='main' title='countTimeouts'> .countTimeouts </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/Event.html#createFromDOMEvent-static' target='main' title='createFromDOMEvent'> .createFromDOMEvent </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/DigiDisplay.html#createMarkup-dynamic' target='main' title='createMarkup'> #createMarkup </a> <small> (CUI.DigiDisplay) </small> </li> <li> <a href='class/CUI/Event.html#ctrlKey-dynamic' target='main' title='ctrlKey'> #ctrlKey </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/dom.html#data-static' target='main' title='data'> .data </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Button.html#deactivate-dynamic' target='main' title='deactivate'> #deactivate </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Tab.html#deactivate-dynamic' target='main' title='deactivate'> #deactivate </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/DataField.html#debug-dynamic' target='main' title='debug'> #debug </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/CSVData.html#debug-dynamic' target='main' title='debug'> #debug </a> <small> (CUI.CSVData) </small> </li> <li> <a href='class/CUI/DataTable.html#debug-dynamic' target='main' title='debug'> #debug </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/dom.html#debugRect-static' target='main' title='debugRect'> .debugRect </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI.html#decodeURIComponentNicely-static' target='main' title='decodeURIComponentNicely'> .decodeURIComponentNicely </a> <small> (CUI) </small> </li> <li> <a href='class/CUI.html#decodeUrlData-static' target='main' title='decodeUrlData'> .decodeUrlData </a> <small> (CUI) </small> </li> <li> <a href='class/CUI.html#decodeUrlDataArray-static' target='main' title='decodeUrlDataArray'> .decodeUrlDataArray </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/DateTimeInputBlock.html#decrementBlock-dynamic' target='main' title='decrementBlock'> #decrementBlock </a> <small> (CUI.DateTimeInputBlock) </small> </li> <li> <a href='class/CUI/NumberInputBlock.html#decrementBlock-dynamic' target='main' title='decrementBlock'> #decrementBlock </a> <small> (CUI.NumberInputBlock) </small> </li> <li> <a href='class/CUI/InputBlock.html#decrementBlock-dynamic' target='main' title='decrementBlock'> #decrementBlock </a> <small> (CUI.InputBlock) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#dequeue-dynamic' target='main' title='dequeue'> #dequeue </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/ListViewRow.html#deselect-dynamic' target='main' title='deselect'> #deselect </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#deselect-dynamic' target='main' title='deselect'> #deselect </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewColResize.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.ListViewColResize) </small> </li> <li> <a href='class/CUI/Button.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/ItemList.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/DataField.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Label.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Label) </small> </li> <li> <a href='class/CUI/DataFieldProxy.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.DataFieldProxy) </small> </li> <li> <a href='class/CUI/ConfirmationChoice.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.ConfirmationChoice) </small> </li> <li> <a href='class/CUI/LeafletMap.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/GoogleMap.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/SimpleForm.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/Template.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/WaitBlock.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.WaitBlock) </small> </li> <li> <a href='class/CUI/ListView.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/FormPopover.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/Tab.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/Lasso.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Lasso) </small> </li> <li> <a href='class/CUI/FileUpload.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/Checkbox.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/MultiOutput.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.MultiOutput) </small> </li> <li> <a href='class/CUI/Map.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Listener.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/Menu.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Menu) </small> </li> <li> <a href='class/CUI/DragDropSelect.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.DragDropSelect) </small> </li> <li> <a href='class/CUI/SimplePane.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.SimplePane) </small> </li> <li> <a href='class/CUI/Tooltip.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/DragDropSelect.html#destroy-static' target='main' title='destroy'> .destroy </a> <small> (CUI.DragDropSelect) </small> </li> <li> <a href='class/CUI/DateTime.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/StickyHeaderControl.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.StickyHeaderControl) </small> </li> <li> <a href='class/CUI/Layout.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/LayerPane.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.LayerPane) </small> </li> <li> <a href='class/CUI/Draggable.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/FormModal.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.FormModal) </small> </li> <li> <a href='class/CUI/Layer.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Element.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/Input.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DOMElement.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/FlexHandle.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Droppable.html#destroy-dynamic' target='main' title='destroy'> #destroy </a> <small> (CUI.Droppable) </small> </li> <li> <a href='class/CUI/FormModal.html#disable-dynamic' target='main' title='disable'> #disable </a> <small> (CUI.FormModal) </small> </li> <li> <a href='class/CUI/Button.html#disable-dynamic' target='main' title='disable'> #disable </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/DataField.html#disable-dynamic' target='main' title='disable'> #disable </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/FormPopover.html#disable-dynamic' target='main' title='disable'> #disable </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/MultiInput.html#disable-dynamic' target='main' title='disable'> #disable </a> <small> (CUI.MultiInput) </small> </li> <li> <a href='class/CUI/DataTable.html#disable-dynamic' target='main' title='disable'> #disable </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/Tab.html#disable-dynamic' target='main' title='disable'> #disable </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/Buttonbar.html#disable-dynamic' target='main' title='disable'> #disable </a> <small> (CUI.Buttonbar) </small> </li> <li> <a href='class/CUI/Checkbox.html#disable-dynamic' target='main' title='disable'> #disable </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/Input.html#disable-dynamic' target='main' title='disable'> #disable </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Select.html#disable-dynamic' target='main' title='disable'> #disable </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/Modal.html#disableAllButtons-dynamic' target='main' title='disableAllButtons'> #disableAllButtons </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/Select.html#disableOption-dynamic' target='main' title='disableOption'> #disableOption </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/Options.html#disableOption-dynamic' target='main' title='disableOption'> #disableOption </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/Event.html#dispatch-dynamic' target='main' title='dispatch'> #dispatch </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/DateTime.html#display-static' target='main' title='display'> .display </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/DigiDisplay.html#display-dynamic' target='main' title='display'> #display </a> <small> (CUI.DigiDisplay) </small> </li> <li> <a href='class/CUI/SimpleForm.html#displayValue-dynamic' target='main' title='displayValue'> #displayValue </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/Options.html#displayValue-dynamic' target='main' title='displayValue'> #displayValue </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/Slider.html#displayValue-dynamic' target='main' title='displayValue'> #displayValue </a> <small> (CUI.Slider) </small> </li> <li> <a href='class/CUI/OutputContent.html#displayValue-dynamic' target='main' title='displayValue'> #displayValue </a> <small> (CUI.OutputContent) </small> </li> <li> <a href='class/CUI/Checkbox.html#displayValue-dynamic' target='main' title='displayValue'> #displayValue </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/MultiInput.html#displayValue-dynamic' target='main' title='displayValue'> #displayValue </a> <small> (CUI.MultiInput) </small> </li> <li> <a href='class/CUI/Input.html#displayValue-dynamic' target='main' title='displayValue'> #displayValue </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DataForm.html#displayValue-dynamic' target='main' title='displayValue'> #displayValue </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/Output.html#displayValue-dynamic' target='main' title='displayValue'> #displayValue </a> <small> (CUI.Output) </small> </li> <li> <a href='class/CUI/DataField.html#displayValue-dynamic' target='main' title='displayValue'> #displayValue </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/FormPopover.html#displayValue-dynamic' target='main' title='displayValue'> #displayValue </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/Select.html#displayValue-dynamic' target='main' title='displayValue'> #displayValue </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/DataTable.html#displayValue-dynamic' target='main' title='displayValue'> #displayValue </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/dom.html#div-static' target='main' title='div'> .div </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Layer.html#doCancel-dynamic' target='main' title='doCancel'> #doCancel </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Modal.html#doCancel-dynamic' target='main' title='doCancel'> #doCancel </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/ListViewColResize.html#do_drag-dynamic' target='main' title='do_drag'> #do_drag </a> <small> (CUI.ListViewColResize) </small> </li> <li> <a href='class/CUI/Lasso.html#do_drag-dynamic' target='main' title='do_drag'> #do_drag </a> <small> (CUI.Lasso) </small> </li> <li> <a href='class/CUI/Resizable.html#do_drag-dynamic' target='main' title='do_drag'> #do_drag </a> <small> (CUI.Resizable) </small> </li> <li> <a href='class/CUI/Movable.html#do_drag-dynamic' target='main' title='do_drag'> #do_drag </a> <small> (CUI.Movable) </small> </li> <li> <a href='class/CUI/ListViewRowMove.html#do_drag-dynamic' target='main' title='do_drag'> #do_drag </a> <small> (CUI.ListViewRowMove) </small> </li> <li> <a href='class/CUI/Sortable.html#do_drag-dynamic' target='main' title='do_drag'> #do_drag </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/Dragscroll.html#do_drag-dynamic' target='main' title='do_drag'> #do_drag </a> <small> (CUI.Dragscroll) </small> </li> <li> <a href='class/CUI/Draggable.html#do_drag-dynamic' target='main' title='do_drag'> #do_drag </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/Deferred.html#done-dynamic' target='main' title='done'> #done </a> <small> (CUI.Deferred) </small> </li> <li> <a href='class/CUI/Promise.html#done-dynamic' target='main' title='done'> #done </a> <small> (CUI.Promise) </small> </li> <li> <a href='class/CUI.html#downloadData-static' target='main' title='downloadData'> .downloadData </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/DateTime.html#drawDate-dynamic' target='main' title='drawDate'> #drawDate </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/DateTime.html#drawMonthTable-dynamic' target='main' title='drawMonthTable'> #drawMonthTable </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/DateTime.html#drawYearMonthsSelect-dynamic' target='main' title='drawYearMonthsSelect'> #drawYearMonthsSelect </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#dump-dynamic' target='main' title='dump'> #dump </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Event.html#dump-dynamic' target='main' title='dump'> #dump </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Events.html#dump-static' target='main' title='dump'> .dump </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/KeyboardEvent.html#dump-dynamic' target='main' title='dump'> #dump </a> <small> (CUI.KeyboardEvent) </small> </li> <li> <a href='class/CUI/util.html#dump-static' target='main' title='dump'> .dump </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/WheelEvent.html#dump-dynamic' target='main' title='dump'> #dump </a> <small> (CUI.WheelEvent) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#dumpString-dynamic' target='main' title='dumpString'> #dumpString </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Events.html#dumpTopLevel-static' target='main' title='dumpTopLevel'> .dumpTopLevel </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/dom.html#element-static' target='main' title='element'> .element </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/util.html#elementGetPosition-static' target='main' title='elementGetPosition'> .elementGetPosition </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/dom.html#elementsUntil-static' target='main' title='elementsUntil'> .elementsUntil </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#empty-static' target='main' title='empty'> .empty </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/SimplePane.html#empty-dynamic' target='main' title='empty'> #empty </a> <small> (CUI.SimplePane) </small> </li> <li> <a href='class/CUI/DOMElement.html#empty-dynamic' target='main' title='empty'> #empty </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/Template.html#empty-dynamic' target='main' title='empty'> #empty </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/Modal.html#empty-dynamic' target='main' title='empty'> #empty </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/FormPopover.html#enable-dynamic' target='main' title='enable'> #enable </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/MultiInput.html#enable-dynamic' target='main' title='enable'> #enable </a> <small> (CUI.MultiInput) </small> </li> <li> <a href='class/CUI/Button.html#enable-dynamic' target='main' title='enable'> #enable </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Buttonbar.html#enable-dynamic' target='main' title='enable'> #enable </a> <small> (CUI.Buttonbar) </small> </li> <li> <a href='class/CUI/Input.html#enable-dynamic' target='main' title='enable'> #enable </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Select.html#enable-dynamic' target='main' title='enable'> #enable </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/DataTable.html#enable-dynamic' target='main' title='enable'> #enable </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/Checkbox.html#enable-dynamic' target='main' title='enable'> #enable </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/FormModal.html#enable-dynamic' target='main' title='enable'> #enable </a> <small> (CUI.FormModal) </small> </li> <li> <a href='class/CUI/Tab.html#enable-dynamic' target='main' title='enable'> #enable </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/DataField.html#enable-dynamic' target='main' title='enable'> #enable </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Modal.html#enableAllButtons-dynamic' target='main' title='enableAllButtons'> #enableAllButtons </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/Select.html#enableOption-dynamic' target='main' title='enableOption'> #enableOption </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/Options.html#enableOption-dynamic' target='main' title='enableOption'> #enableOption </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#encloseSelection-dynamic' target='main' title='encloseSelection'> #encloseSelection </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI.html#encodeURIComponentNicely-static' target='main' title='encodeURIComponentNicely'> .encodeURIComponentNicely </a> <small> (CUI) </small> </li> <li> <a href='class/CUI.html#encodeUrlData-static' target='main' title='encodeUrlData'> .encodeUrlData </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/Pane.html#endFillScreen-dynamic' target='main' title='endFillScreen'> #endFillScreen </a> <small> (CUI.Pane) </small> </li> <li> <a href='class/CUI/ListViewColResize.html#end_drag-dynamic' target='main' title='end_drag'> #end_drag </a> <small> (CUI.ListViewColResize) </small> </li> <li> <a href='class/CUI/Lasso.html#end_drag-dynamic' target='main' title='end_drag'> #end_drag </a> <small> (CUI.Lasso) </small> </li> <li> <a href='class/CUI/Sortable.html#end_drag-dynamic' target='main' title='end_drag'> #end_drag </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/Draggable.html#end_drag-dynamic' target='main' title='end_drag'> #end_drag </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/ListViewRowMove.html#end_drag-dynamic' target='main' title='end_drag'> #end_drag </a> <small> (CUI.ListViewRowMove) </small> </li> <li> <a href='class/CUI/Input.html#enterInput-dynamic' target='main' title='enterInput'> #enterInput </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Test.html#eq-dynamic' target='main' title='eq'> #eq </a> <small> (CUI.Test) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#escape-static' target='main' title='escape'> .escape </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI.html#escapeAttribute-static' target='main' title='escapeAttribute'> .escapeAttribute </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/util.html#escapeRegExp-static' target='main' title='escapeRegExp'> .escapeRegExp </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI.html#evalCode-static' target='main' title='evalCode'> .evalCode </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/dom.html#exitFullscreen-static' target='main' title='exitFullscreen'> .exitFullscreen </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Promise.html#fail-dynamic' target='main' title='fail'> #fail </a> <small> (CUI.Promise) </small> </li> <li> <a href='class/CUI/Deferred.html#fail-dynamic' target='main' title='fail'> #fail </a> <small> (CUI.Deferred) </small> </li> <li> <a href='class/CUI/Tooltip.html#fillContent-dynamic' target='main' title='fillContent'> #fillContent </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#filter-dynamic' target='main' title='filter'> #filter </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#find-dynamic' target='main' title='find'> #find </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/dom.html#find-static' target='main' title='find'> .find </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Input.html#findBlock-dynamic' target='main' title='findBlock'> #findBlock </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/dom.html#findElement-static' target='main' title='findElement'> .findElement </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#findElements-static' target='main' title='findElements'> .findElements </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/util.html#findInArray-static' target='main' title='findInArray'> .findInArray </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/dom.html#findNextElement-static' target='main' title='findNextElement'> .findNextElement </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#findNextSiblings-static' target='main' title='findNextSiblings'> .findNextSiblings </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#findNextVisibleElement-static' target='main' title='findNextVisibleElement'> .findNextVisibleElement </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#findPreviousElement-static' target='main' title='findPreviousElement'> .findPreviousElement </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#findPreviousSiblings-static' target='main' title='findPreviousSiblings'> .findPreviousSiblings </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#findPreviousVisibleElement-static' target='main' title='findPreviousVisibleElement'> .findPreviousVisibleElement </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#findTextInNodes-static' target='main' title='findTextInNodes'> .findTextInNodes </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#firstElementChild-static' target='main' title='firstElementChild'> .firstElementChild </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/MultiInput.html#focus-dynamic' target='main' title='focus'> #focus </a> <small> (CUI.MultiInput) </small> </li> <li> <a href='class/CUI/Input.html#focus-dynamic' target='main' title='focus'> #focus </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Tooltip.html#focusOnHide-dynamic' target='main' title='focusOnHide'> #focusOnHide </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/Layer.html#focusOnHide-dynamic' target='main' title='focusOnHide'> #focusOnHide </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Layer.html#focusOnShow-dynamic' target='main' title='focusOnShow'> #focusOnShow </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Tooltip.html#focusOnShow-dynamic' target='main' title='focusOnShow'> #focusOnShow </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/Modal.html#focusOnShow-dynamic' target='main' title='focusOnShow'> #focusOnShow </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/Popover.html#forceFocusOnShow-dynamic' target='main' title='forceFocusOnShow'> #forceFocusOnShow </a> <small> (CUI.Popover) </small> </li> <li> <a href='class/CUI/Layer.html#forceFocusOnShow-dynamic' target='main' title='forceFocusOnShow'> #forceFocusOnShow </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Modal.html#forceFocusOnShow-dynamic' target='main' title='forceFocusOnShow'> #forceFocusOnShow </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/SimplePane.html#forceFooter-dynamic' target='main' title='forceFooter'> #forceFooter </a> <small> (CUI.SimplePane) </small> </li> <li> <a href='class/CUI/Tabs.html#forceFooter-dynamic' target='main' title='forceFooter'> #forceFooter </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/Tabs.html#forceHeader-dynamic' target='main' title='forceHeader'> #forceHeader </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/SimplePane.html#forceHeader-dynamic' target='main' title='forceHeader'> #forceHeader </a> <small> (CUI.SimplePane) </small> </li> <li> <a href='class/CUI/DateTime.html#format-dynamic' target='main' title='format'> #format </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/NumberInput.html#format-static' target='main' title='format'> .format </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/DateTime.html#format-static' target='main' title='format'> .format </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/util.html#formatCoordinates-static' target='main' title='formatCoordinates'> .formatCoordinates </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/DateTime.html#formatMoment-static' target='main' title='formatMoment'> .formatMoment </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/DateTime.html#formatMomentWithBc-static' target='main' title='formatMomentWithBc'> .formatMomentWithBc </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/NumberInput.html#formatValueForDisplay-dynamic' target='main' title='formatValueForDisplay'> #formatValueForDisplay </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/dom.html#fullscreenElement-static' target='main' title='fullscreenElement'> .fullscreenElement </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#fullscreenEnabled-static' target='main' title='fullscreenEnabled'> .fullscreenEnabled </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/DOMElement.html#get-dynamic' target='main' title='get'> #get </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/Template.html#get-dynamic' target='main' title='get'> #get </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/CSSLoader.html#getActiveCSS-dynamic' target='main' title='getActiveCSS'> #getActiveCSS </a> <small> (CUI.CSSLoader) </small> </li> <li> <a href='class/CUI/ItemList.html#getActiveIdx-dynamic' target='main' title='getActiveIdx'> #getActiveIdx </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/Tabs.html#getActiveTab-dynamic' target='main' title='getActiveTab'> #getActiveTab </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/DataField.html#getAllDataFields-dynamic' target='main' title='getAllDataFields'> #getAllDataFields </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/XHR.html#getAllResponseHeaders-dynamic' target='main' title='getAllResponseHeaders'> #getAllResponseHeaders </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/IconMarker.html#getAnchor-dynamic' target='main' title='getAnchor'> #getAnchor </a> <small> (CUI.IconMarker) </small> </li> <li> <a href='class/CUI/DataField.html#getArrayFromOpt-dynamic' target='main' title='getArrayFromOpt'> #getArrayFromOpt </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/dom.html#getAttribute-static' target='main' title='getAttribute'> .getAttribute </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#getAttrs-dynamic' target='main' title='getAttrs'> #getAttrs </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#getBatch-dynamic' target='main' title='getBatch'> #getBatch </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/Tab.html#getBody-dynamic' target='main' title='getBody'> #getBody </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/ItemList.html#getBody-dynamic' target='main' title='getBody'> #getBody </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/ListView.html#getBottom-dynamic' target='main' title='getBottom'> #getBottom </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/dom.html#getBoxSizing-static' target='main' title='getBoxSizing'> .getBoxSizing </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Checkbox.html#getButton-dynamic' target='main' title='getButton'> #getButton </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/FormPopover.html#getButton-dynamic' target='main' title='getButton'> #getButton </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/Menu.html#getButton-dynamic' target='main' title='getButton'> #getButton </a> <small> (CUI.Menu) </small> </li> <li> <a href='class/CUI/Event.html#getButton-dynamic' target='main' title='getButton'> #getButton </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Tab.html#getButton-dynamic' target='main' title='getButton'> #getButton </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/Checkbox.html#getButtonOpts-dynamic' target='main' title='getButtonOpts'> #getButtonOpts </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/FormButton.html#getButtonOpts-dynamic' target='main' title='getButtonOpts'> #getButtonOpts </a> <small> (CUI.FormButton) </small> </li> <li> <a href='class/CUI/Select.html#getButtonOpts-dynamic' target='main' title='getButtonOpts'> #getButtonOpts </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/Layout.html#getButtonbar-dynamic' target='main' title='getButtonbar'> #getButtonbar </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/ConfirmationDialog.html#getButtons-dynamic' target='main' title='getButtons'> #getButtons </a> <small> (CUI.ConfirmationDialog) </small> </li> <li> <a href='class/CUI/dom.html#getCSSFloatValue-static' target='main' title='getCSSFloatValue'> .getCSSFloatValue </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/ListView.html#getCellByTarget-dynamic' target='main' title='getCellByTarget'> #getCellByTarget </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#getCellGridRect-dynamic' target='main' title='getCellGridRect'> #getCellGridRect </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Map.html#getCenter-dynamic' target='main' title='getCenter'> #getCenter </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Button.html#getCenter-dynamic' target='main' title='getCenter'> #getCenter </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/LeafletMap.html#getCenter-dynamic' target='main' title='getCenter'> #getCenter </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/DataField.html#getChangedMarker-dynamic' target='main' title='getChangedMarker'> #getChangedMarker </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DataField.html#getCheckChangedValue-dynamic' target='main' title='getCheckChangedValue'> #getCheckChangedValue </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/SimpleForm.html#getCheckbox-dynamic' target='main' title='getCheckbox'> #getCheckbox </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/FormButton.html#getCheckboxClass-dynamic' target='main' title='getCheckboxClass'> #getCheckboxClass </a> <small> (CUI.FormButton) </small> </li> <li> <a href='class/CUI/Select.html#getCheckboxClass-dynamic' target='main' title='getCheckboxClass'> #getCheckboxClass </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/Checkbox.html#getCheckboxClass-dynamic' target='main' title='getCheckboxClass'> #getCheckboxClass </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#getChildIdx-dynamic' target='main' title='getChildIdx'> #getChildIdx </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ObjectDumperNode.html#getChildren-dynamic' target='main' title='getChildren'> #getChildren </a> <small> (CUI.ObjectDumperNode) </small> </li> <li> <a href='class/CUI/ListViewRow.html#getClass-dynamic' target='main' title='getClass'> #getClass </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/Sortable.html#getClass-dynamic' target='main' title='getClass'> #getClass </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/Draggable.html#getClass-dynamic' target='main' title='getClass'> #getClass </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#getClass-dynamic' target='main' title='getClass'> #getClass </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/DragDropSelect.html#getClass-dynamic' target='main' title='getClass'> #getClass </a> <small> (CUI.DragDropSelect) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#getClass-dynamic' target='main' title='getClass'> #getClass </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/ObjectDumperNode.html#getClass-dynamic' target='main' title='getClass'> #getClass </a> <small> (CUI.ObjectDumperNode) </small> </li> <li> <a href='class/CUI/Draggable.html#getCloneSourceForHelper-dynamic' target='main' title='getCloneSourceForHelper'> #getCloneSourceForHelper </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/Sortable.html#getCloneSourceForHelper-dynamic' target='main' title='getCloneSourceForHelper'> #getCloneSourceForHelper </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/ListView.html#getColIdx-dynamic' target='main' title='getColIdx'> #getColIdx </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#getColWidth-dynamic' target='main' title='getColWidth'> #getColWidth </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#getColdef-dynamic' target='main' title='getColdef'> #getColdef </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#getColsCount-dynamic' target='main' title='getColsCount'> #getColsCount </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#getColspan-dynamic' target='main' title='getColspan'> #getColspan </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#getColspan-dynamic' target='main' title='getColspan'> #getColspan </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#getColumnIdx-dynamic' target='main' title='getColumnIdx'> #getColumnIdx </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/ListViewRow.html#getColumns-dynamic' target='main' title='getColumns'> #getColumns </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/dom.html#getComputedStyle-static' target='main' title='getComputedStyle'> .getComputedStyle </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Block.html#getContent-dynamic' target='main' title='getContent'> #getContent </a> <small> (CUI.Block) </small> </li> <li> <a href='class/CUI/util.html#getCoordinatesFromEvent-static' target='main' title='getCoordinatesFromEvent'> .getCoordinatesFromEvent </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/DragoverScrollEvent.html#getCount-dynamic' target='main' title='getCount'> #getCount </a> <small> (CUI.DragoverScrollEvent) </small> </li> <li> <a href='class/CUI/DateTime.html#getCurrentFormat-dynamic' target='main' title='getCurrentFormat'> #getCurrentFormat </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/DateTime.html#getCurrentFormatDisplay-dynamic' target='main' title='getCurrentFormatDisplay'> #getCurrentFormatDisplay </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/Event.html#getCurrentTarget-dynamic' target='main' title='getCurrentTarget'> #getCurrentTarget </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Draggable.html#getCursor-dynamic' target='main' title='getCursor'> #getCursor </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/Lasso.html#getCursor-dynamic' target='main' title='getCursor'> #getCursor </a> <small> (CUI.Lasso) </small> </li> <li> <a href='class/CUI/Input.html#getCursorBlocks-dynamic' target='main' title='getCursorBlocks'> #getCursorBlocks </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DOMElement.html#getDOMElementClasses-dynamic' target='main' title='getDOMElementClasses'> #getDOMElementClasses </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/ListViewRow.html#getDOMNodes-dynamic' target='main' title='getDOMNodes'> #getDOMNodes </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/DataTableNode.html#getData-dynamic' target='main' title='getData'> #getData </a> <small> (CUI.DataTableNode) </small> </li> <li> <a href='class/CUI/DataField.html#getData-dynamic' target='main' title='getData'> #getData </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#getData-dynamic' target='main' title='getData'> #getData </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/ObjectDumperNode.html#getData-dynamic' target='main' title='getData'> #getData </a> <small> (CUI.ObjectDumperNode) </small> </li> <li> <a href='class/CUI/DataField.html#getDataFields-dynamic' target='main' title='getDataFields'> #getDataFields </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DataTableNode.html#getDataRowIdx-dynamic' target='main' title='getDataRowIdx'> #getDataRowIdx </a> <small> (CUI.DataTableNode) </small> </li> <li> <a href='class/CUI/DataTableNode.html#getDataTable-dynamic' target='main' title='getDataTable'> #getDataTable </a> <small> (CUI.DataTableNode) </small> </li> <li> <a href='class/CUI/DateTime.html#getDateTimeDrawer-dynamic' target='main' title='getDateTimeDrawer'> #getDateTimeDrawer </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/Event.html#getDebug-dynamic' target='main' title='getDebug'> #getDebug </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/MapInput.html#getDefaultDisplayFormat-static' target='main' title='getDefaultDisplayFormat'> .getDefaultDisplayFormat </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/Checkbox.html#getDefaultValue-dynamic' target='main' title='getDefaultValue'> #getDefaultValue </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/Options.html#getDefaultValue-dynamic' target='main' title='getDefaultValue'> #getDefaultValue </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/Input.html#getDefaultValue-dynamic' target='main' title='getDefaultValue'> #getDefaultValue </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DataField.html#getDefaultValue-dynamic' target='main' title='getDefaultValue'> #getDefaultValue </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DataTable.html#getDefaultValue-dynamic' target='main' title='getDefaultValue'> #getDefaultValue </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/Select.html#getDefaultValue-dynamic' target='main' title='getDefaultValue'> #getDefaultValue </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/NumberInput.html#getDefaultValue-dynamic' target='main' title='getDefaultValue'> #getDefaultValue </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/Slider.html#getDefaultValue-dynamic' target='main' title='getDefaultValue'> #getDefaultValue </a> <small> (CUI.Slider) </small> </li> <li> <a href='class/CUI/Listener.html#getDepthFromLastMatchedEvent-dynamic' target='main' title='getDepthFromLastMatchedEvent'> #getDepthFromLastMatchedEvent </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/DateTime.html#getDigiDisplay-dynamic' target='main' title='getDigiDisplay'> #getDigiDisplay </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/dom.html#getDimension-static' target='main' title='getDimension'> .getDimension </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#getDimensions-static' target='main' title='getDimensions'> .getDimensions </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/ListView.html#getDisplayColIdx-dynamic' target='main' title='getDisplayColIdx'> #getDisplayColIdx </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewRow.html#getDisplayRowIdx-dynamic' target='main' title='getDisplayRowIdx'> #getDisplayRowIdx </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/ListView.html#getDisplayRowIdx-dynamic' target='main' title='getDisplayRowIdx'> #getDisplayRowIdx </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Template.html#getElMap-dynamic' target='main' title='getElMap'> #getElMap </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/Layer.html#getElement-dynamic' target='main' title='getElement'> #getElement </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Event.html#getElement-dynamic' target='main' title='getElement'> #getElement </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#getElement-dynamic' target='main' title='getElement'> #getElement </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/Input.html#getElement-dynamic' target='main' title='getElement'> #getElement </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Element.html#getElementClass-dynamic' target='main' title='getElementClass'> #getElementClass </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/DOMElement.html#getElementForLayer-dynamic' target='main' title='getElementForLayer'> #getElementForLayer </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/Button.html#getElementForLayer-dynamic' target='main' title='getElementForLayer'> #getElementForLayer </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Layer.html#getElementOpenClass-dynamic' target='main' title='getElementOpenClass'> #getElementOpenClass </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Tooltip.html#getElementOpenClass-dynamic' target='main' title='getElementOpenClass'> #getElementOpenClass </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#getError-dynamic' target='main' title='getError'> #getError </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#getErrorXHR-dynamic' target='main' title='getErrorXHR'> #getErrorXHR </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/Events.html#getEventType-static' target='main' title='getEventType'> .getEventType </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/Events.html#getEventTypeAliases-static' target='main' title='getEventTypeAliases'> .getEventTypeAliases </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#getFather-dynamic' target='main' title='getFather'> #getFather </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/SimpleForm.html#getFieldByIdx-dynamic' target='main' title='getFieldByIdx'> #getFieldByIdx </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/DataTableNode.html#getFieldByIdx-dynamic' target='main' title='getFieldByIdx'> #getFieldByIdx </a> <small> (CUI.DataTableNode) </small> </li> <li> <a href='class/CUI/DataTable.html#getFieldList-dynamic' target='main' title='getFieldList'> #getFieldList </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/DataTable.html#getFieldOpts-dynamic' target='main' title='getFieldOpts'> #getFieldOpts </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/DataForm.html#getFieldOpts-dynamic' target='main' title='getFieldOpts'> #getFieldOpts </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/DataTableNode.html#getFields-dynamic' target='main' title='getFields'> #getFields </a> <small> (CUI.DataTableNode) </small> </li> <li> <a href='class/CUI/FormPopover.html#getFields-dynamic' target='main' title='getFields'> #getFields </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/SimpleForm.html#getFields-dynamic' target='main' title='getFields'> #getFields </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/DataFieldProxy.html#getFields-dynamic' target='main' title='getFields'> #getFields </a> <small> (CUI.DataFieldProxy) </small> </li> <li> <a href='class/CUI/DataTableNode.html#getFieldsByName-dynamic' target='main' title='getFieldsByName'> #getFieldsByName </a> <small> (CUI.DataTableNode) </small> </li> <li> <a href='class/CUI/SimpleForm.html#getFieldsByName-dynamic' target='main' title='getFieldsByName'> #getFieldsByName </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/DataTable.html#getFieldsByName-dynamic' target='main' title='getFieldsByName'> #getFieldsByName </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#getFile-dynamic' target='main' title='getFile'> #getFile </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#getFileUpload-dynamic' target='main' title='getFileUpload'> #getFileUpload </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/FileUpload.html#getFiles-dynamic' target='main' title='getFiles'> #getFiles </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/Pane.html#getFillScreenState-dynamic' target='main' title='getFillScreenState'> #getFillScreenState </a> <small> (CUI.Pane) </small> </li> <li> <a href='class/CUI/Template.html#getFlexHandle-dynamic' target='main' title='getFlexHandle'> #getFlexHandle </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/DOMElement.html#getFlexHandle-dynamic' target='main' title='getFlexHandle'> #getFlexHandle </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/Template.html#getFlexHandles-dynamic' target='main' title='getFlexHandles'> #getFlexHandles </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/util.html#getFloat-static' target='main' title='getFloat'> .getFloat </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/DataTable.html#getFooter-dynamic' target='main' title='getFooter'> #getFooter </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/DataForm.html#getForm-dynamic' target='main' title='getForm'> #getForm </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/DataField.html#getForm-dynamic' target='main' title='getForm'> #getForm </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DataField.html#getFormDepth-dynamic' target='main' title='getFormDepth'> #getFormDepth </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DataField.html#getFormPath-dynamic' target='main' title='getFormPath'> #getFormPath </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/ListView.html#getGrid-dynamic' target='main' title='getGrid'> #getGrid </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/DataFieldInput.html#getGroup-dynamic' target='main' title='getGroup'> #getGroup </a> <small> (CUI.DataFieldInput) </small> </li> <li> <a href='class/CUI/Label.html#getGroup-dynamic' target='main' title='getGroup'> #getGroup </a> <small> (CUI.Label) </small> </li> <li> <a href='class/CUI/Button.html#getGroup-dynamic' target='main' title='getGroup'> #getGroup </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/XHR.html#getGroup-dynamic' target='main' title='getGroup'> #getGroup </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/Button.html#getGroupButtons-dynamic' target='main' title='getGroupButtons'> #getGroupButtons </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Slider.html#getHandle-dynamic' target='main' title='getHandle'> #getHandle </a> <small> (CUI.Slider) </small> </li> <li> <a href='class/CUI/FlexHandle.html#getHandle-dynamic' target='main' title='getHandle'> #getHandle </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Block.html#getHeader-dynamic' target='main' title='getHeader'> #getHeader </a> <small> (CUI.Block) </small> </li> <li> <a href='class/CUI/DocumentBrowser.SearchMatch.html#getHighlighted-dynamic' target='main' title='getHighlighted'> #getHighlighted </a> <small> (CUI.DocumentBrowser.SearchMatch) </small> </li> <li> <a href='class/CUI/Button.html#getIcon-dynamic' target='main' title='getIcon'> #getIcon </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Button.html#getIconRight-dynamic' target='main' title='getIconRight'> #getIconRight </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#getImage-dynamic' target='main' title='getImage'> #getImage </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/FileUpload.html#getInfo-dynamic' target='main' title='getInfo'> #getInfo </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#getInfo-dynamic' target='main' title='getInfo'> #getInfo </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/Event.html#getInfo-dynamic' target='main' title='getInfo'> #getInfo </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/ObjectDumperNode.html#getInfoFromData-dynamic' target='main' title='getInfoFromData'> #getInfoFromData </a> <small> (CUI.ObjectDumperNode) </small> </li> <li> <a href='class/CUI/GoogleMap.html#getInfoWindow-static' target='main' title='getInfoWindow'> .getInfoWindow </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/DataField.html#getInitValue-dynamic' target='main' title='getInitValue'> #getInitValue </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Input.html#getInputBlocks-dynamic' target='main' title='getInputBlocks'> #getInputBlocks </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Input.html#getInputState-dynamic' target='main' title='getInputState'> #getInputState </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Listener.html#getInstance-dynamic' target='main' title='getInstance'> #getInstance </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/DragDropSelect.html#getInstance-static' target='main' title='getInstance'> .getInstance </a> <small> (CUI.DragDropSelect) </small> </li> <li> <a href='class/CUI/util.html#getInt-static' target='main' title='getInt'> .getInt </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/util.html#getIntOrString-static' target='main' title='getIntOrString'> .getIntOrString </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/ItemList.html#getItemByValue-dynamic' target='main' title='getItemByValue'> #getItemByValue </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/Menu.html#getItemList-dynamic' target='main' title='getItemList'> #getItemList </a> <small> (CUI.Menu) </small> </li> <li> <a href='class/CUI/ItemList.html#getItems-dynamic' target='main' title='getItems'> #getItems </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/KeyboardEvent.html#getKeyboard-dynamic' target='main' title='getKeyboard'> #getKeyboard </a> <small> (CUI.KeyboardEvent) </small> </li> <li> <a href='class/CUI/KeyboardEvent.html#getKeyboardKey-dynamic' target='main' title='getKeyboardKey'> #getKeyboardKey </a> <small> (CUI.KeyboardEvent) </small> </li> <li> <a href='class/CUI/MultiInputControl.html#getKeys-dynamic' target='main' title='getKeys'> #getKeys </a> <small> (CUI.MultiInputControl) </small> </li> <li> <a href='class/CUI/FlexHandle.html#getLabel-dynamic' target='main' title='getLabel'> #getLabel </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/DataField.html#getLabel-dynamic' target='main' title='getLabel'> #getLabel </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DataField.html#getLastValue-dynamic' target='main' title='getLastValue'> #getLastValue </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Layer.html#getLayer-dynamic' target='main' title='getLayer'> #getLayer </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Layer.html#getLayerRoot-dynamic' target='main' title='getLayerRoot'> #getLayerRoot </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Layout.html#getLayout-dynamic' target='main' title='getLayout'> #getLayout </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/Form.html#getLayout-dynamic' target='main' title='getLayout'> #getLayout </a> <small> (CUI.Form) </small> </li> <li> <a href='class/CUI/StickyHeader.html#getLevel-dynamic' target='main' title='getLevel'> #getLevel </a> <small> (CUI.StickyHeader) </small> </li> <li> <a href='class/CUI/Movable.html#getLimitRect-dynamic' target='main' title='getLimitRect'> #getLimitRect </a> <small> (CUI.Movable) </small> </li> <li> <a href='class/CUI/ListViewRow.html#getListView-dynamic' target='main' title='getListView'> #getListView </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/ListView.html#getListViewClass-dynamic' target='main' title='getListViewClass'> #getListViewClass </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#getListViewRow-dynamic' target='main' title='getListViewRow'> #getListViewRow </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#getLoading-dynamic' target='main' title='getLoading'> #getLoading </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI.html#getLocalStorage-static' target='main' title='getLocalStorage'> .getLocalStorage </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/SimpleForm.html#getLog-dynamic' target='main' title='getLog'> #getLog </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/ListView.html#getManualColWidth-dynamic' target='main' title='getManualColWidth'> #getManualColWidth </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/VerticalLayout.html#getMapPrefix-dynamic' target='main' title='getMapPrefix'> #getMapPrefix </a> <small> (CUI.VerticalLayout) </small> </li> <li> <a href='class/CUI/HorizontalLayout.html#getMapPrefix-dynamic' target='main' title='getMapPrefix'> #getMapPrefix </a> <small> (CUI.HorizontalLayout) </small> </li> <li> <a href='class/CUI/Layout.html#getMapPrefix-dynamic' target='main' title='getMapPrefix'> #getMapPrefix </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/Input.html#getMarkedBlock-dynamic' target='main' title='getMarkedBlock'> #getMarkedBlock </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DocumentBrowser.SearchMatch.html#getMatches-dynamic' target='main' title='getMatches'> #getMatches </a> <small> (CUI.DocumentBrowser.SearchMatch) </small> </li> <li> <a href='class/CUI/CSVData.html#getMaxColumnCount-dynamic' target='main' title='getMaxColumnCount'> #getMaxColumnCount </a> <small> (CUI.CSVData) </small> </li> <li> <a href='class/CUI/Button.html#getMenu-dynamic' target='main' title='getMenu'> #getMenu </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Button.html#getMenuRootButton-dynamic' target='main' title='getMenuRootButton'> #getMenuRootButton </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/ProgressMeter.html#getMeter-dynamic' target='main' title='getMeter'> #getMeter </a> <small> (CUI.ProgressMeter) </small> </li> <li> <a href='class/CUI/Event.html#getModifiers-dynamic' target='main' title='getModifiers'> #getModifiers </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#getName-dynamic' target='main' title='getName'> #getName </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/BorderLayout.html#getName-dynamic' target='main' title='getName'> #getName </a> <small> (CUI.BorderLayout) </small> </li> <li> <a href='class/CUI/HorizontalLayout.html#getName-dynamic' target='main' title='getName'> #getName </a> <small> (CUI.HorizontalLayout) </small> </li> <li> <a href='class/CUI/DataField.html#getName-dynamic' target='main' title='getName'> #getName </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/FlexHandle.html#getName-dynamic' target='main' title='getName'> #getName </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/VerticalLayout.html#getName-dynamic' target='main' title='getName'> #getName </a> <small> (CUI.VerticalLayout) </small> </li> <li> <a href='class/CUI/Layout.html#getName-dynamic' target='main' title='getName'> #getName </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/SimpleForm.html#getNameOpt-dynamic' target='main' title='getNameOpt'> #getNameOpt </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/DataField.html#getNameOpt-dynamic' target='main' title='getNameOpt'> #getNameOpt </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Event.html#getNativeEvent-dynamic' target='main' title='getNativeEvent'> #getNativeEvent </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Event.html#getNode-dynamic' target='main' title='getNode'> #getNode </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/dom.html#getNode-static' target='main' title='getNode'> .getNode </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Listener.html#getNode-dynamic' target='main' title='getNode'> #getNode </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#getNodeId-dynamic' target='main' title='getNodeId'> #getNodeId </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewTree.html#getNodesForMove-dynamic' target='main' title='getNodesForMove'> #getNodesForMove </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/ObjectDumperNode.html#getNodesFromData-dynamic' target='main' title='getNodesFromData'> #getNodesFromData </a> <small> (CUI.ObjectDumperNode) </small> </li> <li> <a href='class/CUI/util.html#getObjectClass-static' target='main' title='getObjectClass'> .getObjectClass </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#getOpenChildNodes-dynamic' target='main' title='getOpenChildNodes'> #getOpenChildNodes </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Element.html#getOpt-dynamic' target='main' title='getOpt'> #getOpt </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/Element.html#getOptKeys-static' target='main' title='getOptKeys'> .getOptKeys </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/Checkbox.html#getOptValue-dynamic' target='main' title='getOptValue'> #getOptValue </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/Checkbox.html#getOptValueUnchecked-dynamic' target='main' title='getOptValueUnchecked'> #getOptValueUnchecked </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/Options.html#getOptions-dynamic' target='main' title='getOptions'> #getOptions </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/Select.html#getOptions-dynamic' target='main' title='getOptions'> #getOptions </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/Element.html#getOpts-dynamic' target='main' title='getOpts'> #getOpts </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/DragoverScrollEvent.html#getOriginalEvent-dynamic' target='main' title='getOriginalEvent'> #getOriginalEvent </a> <small> (CUI.DragoverScrollEvent) </small> </li> <li> <a href='class/CUI/DataField.html#getOtherField-dynamic' target='main' title='getOtherField'> #getOtherField </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/LayerPane.html#getPane-dynamic' target='main' title='getPane'> #getPane </a> <small> (CUI.LayerPane) </small> </li> <li> <a href='class/CUI/FlexHandle.html#getPane-dynamic' target='main' title='getPane'> #getPane </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/SimplePane.html#getPaneAndKey-dynamic' target='main' title='getPaneAndKey'> #getPaneAndKey </a> <small> (CUI.SimplePane) </small> </li> <li> <a href='class/CUI/HorizontalLayout.html#getPanes-dynamic' target='main' title='getPanes'> #getPanes </a> <small> (CUI.HorizontalLayout) </small> </li> <li> <a href='class/CUI/VerticalLayout.html#getPanes-dynamic' target='main' title='getPanes'> #getPanes </a> <small> (CUI.VerticalLayout) </small> </li> <li> <a href='class/CUI/BorderLayout.html#getPanes-dynamic' target='main' title='getPanes'> #getPanes </a> <small> (CUI.BorderLayout) </small> </li> <li> <a href='class/CUI/Layout.html#getPanes-dynamic' target='main' title='getPanes'> #getPanes </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/Toolbar.html#getPanes-dynamic' target='main' title='getPanes'> #getPanes </a> <small> (CUI.Toolbar) </small> </li> <li> <a href='class/CUI.html#getParameterByName-static' target='main' title='getParameterByName'> .getParameterByName </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/SimpleForm.html#getParentData-dynamic' target='main' title='getParentData'> #getParentData </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#getPath-dynamic' target='main' title='getPath'> #getPath </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI.html#getPathToScript-static' target='main' title='getPathToScript'> .getPathToScript </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#getPercent-dynamic' target='main' title='getPercent'> #getPercent </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/Event.html#getPhase-dynamic' target='main' title='getPhase'> #getPhase </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Input.html#getPlaceholder-dynamic' target='main' title='getPlaceholder'> #getPlaceholder </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Event.html#getPointTarget-dynamic' target='main' title='getPointTarget'> #getPointTarget </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/FormPopover.html#getPopover-dynamic' target='main' title='getPopover'> #getPopover </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/FormModal.html#getPopoverOpts-dynamic' target='main' title='getPopoverOpts'> #getPopoverOpts </a> <small> (CUI.FormModal) </small> </li> <li> <a href='class/CUI/FormPopover.html#getPopoverOpts-dynamic' target='main' title='getPopoverOpts'> #getPopoverOpts </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/MultiInputControl.html#getPreferredKey-dynamic' target='main' title='getPreferredKey'> #getPreferredKey </a> <small> (CUI.MultiInputControl) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#getPreview-dynamic' target='main' title='getPreview'> #getPreview </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#getProgress-dynamic' target='main' title='getProgress'> #getProgress </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#getPromise-dynamic' target='main' title='getPromise'> #getPromise </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/Button.html#getRadioButtons-dynamic' target='main' title='getRadioButtons'> #getRadioButtons </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Input.html#getRangeFromCursor-dynamic' target='main' title='getRangeFromCursor'> #getRangeFromCursor </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/dom.html#getRect-static' target='main' title='getRect'> .getRect </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/DocumentBrowser.SearchQuery.html#getRegExps-dynamic' target='main' title='getRegExps'> #getRegExps </a> <small> (CUI.DocumentBrowser.SearchQuery) </small> </li> <li> <a href='class/CUI/dom.html#getRelativeOffset-static' target='main' title='getRelativeOffset'> .getRelativeOffset </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#getRelativePosition-static' target='main' title='getRelativePosition'> .getRelativePosition </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Resizable.html#getResizePos-dynamic' target='main' title='getResizePos'> #getResizePos </a> <small> (CUI.Resizable) </small> </li> <li> <a href='class/CUI/XHR.html#getResponseHeader-dynamic' target='main' title='getResponseHeader'> #getResponseHeader </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/XHR.html#getResponseHeaders-dynamic' target='main' title='getResponseHeaders'> #getResponseHeaders </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/FileReaderFile.html#getResult-dynamic' target='main' title='getResult'> #getResult </a> <small> (CUI.FileReaderFile) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#getRoot-dynamic' target='main' title='getRoot'> #getRoot </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewTree.html#getRootChildren-dynamic' target='main' title='getRootChildren'> #getRootChildren </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/DataField.html#getRootForm-dynamic' target='main' title='getRootForm'> #getRootForm </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DocumentBrowser.html#getRootNode-dynamic' target='main' title='getRootNode'> #getRootNode </a> <small> (CUI.DocumentBrowser) </small> </li> <li> <a href='class/CUI/ListView.html#getRow-dynamic' target='main' title='getRow'> #getRow </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/CSVData.html#getRow-dynamic' target='main' title='getRow'> #getRow </a> <small> (CUI.CSVData) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#getRow-dynamic' target='main' title='getRow'> #getRow </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/ListView.html#getRowGridRect-dynamic' target='main' title='getRowGridRect'> #getRowGridRect </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#getRowHeight-dynamic' target='main' title='getRowHeight'> #getRowHeight </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewRow.html#getRowIdx-dynamic' target='main' title='getRowIdx'> #getRowIdx </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/ListView.html#getRowIdx-dynamic' target='main' title='getRowIdx'> #getRowIdx </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewTree.html#getRowMoveTool-dynamic' target='main' title='getRowMoveTool'> #getRowMoveTool </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/ListView.html#getRowMoveTool-dynamic' target='main' title='getRowMoveTool'> #getRowMoveTool </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/CSVData.html#getRows-dynamic' target='main' title='getRows'> #getRows </a> <small> (CUI.CSVData) </small> </li> <li> <a href='class/CUI/CSVData.html#getRowsCount-dynamic' target='main' title='getRowsCount'> #getRowsCount </a> <small> (CUI.CSVData) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#getRowsToMove-dynamic' target='main' title='getRowsToMove'> #getRowsToMove </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListView.html#getScrollingContainer-dynamic' target='main' title='getScrollingContainer'> #getScrollingContainer </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/DocumentBrowser.SearchQuery.html#getSearch-dynamic' target='main' title='getSearch'> #getSearch </a> <small> (CUI.DocumentBrowser.SearchQuery) </small> </li> <li> <a href='class/CUI/Map.html#getSelectedMarkerPosition-dynamic' target='main' title='getSelectedMarkerPosition'> #getSelectedMarkerPosition </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/GoogleMap.html#getSelectedMarkerPosition-dynamic' target='main' title='getSelectedMarkerPosition'> #getSelectedMarkerPosition </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/LeafletMap.html#getSelectedMarkerPosition-dynamic' target='main' title='getSelectedMarkerPosition'> #getSelectedMarkerPosition </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/ListViewTree.html#getSelectedNode-dynamic' target='main' title='getSelectedNode'> #getSelectedNode </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#getSelectedNode-dynamic' target='main' title='getSelectedNode'> #getSelectedNode </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#getSelectedNodeKey-dynamic' target='main' title='getSelectedNodeKey'> #getSelectedNodeKey </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListView.html#getSelectedRows-dynamic' target='main' title='getSelectedRows'> #getSelectedRows </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Input.html#getSelection-dynamic' target='main' title='getSelection'> #getSelection </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI.html#getSessionStorage-static' target='main' title='getSessionStorage'> .getSessionStorage </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/Element.html#getSetOpt-dynamic' target='main' title='getSetOpt'> #getSetOpt </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/IconMarker.html#getSize-dynamic' target='main' title='getSize'> #getSize </a> <small> (CUI.IconMarker) </small> </li> <li> <a href='class/CUI/Sortable.html#getSortTarget-dynamic' target='main' title='getSortTarget'> #getSortTarget </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/ProgressMeter.html#getState-dynamic' target='main' title='getState'> #getState </a> <small> (CUI.ProgressMeter) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#getStatus-dynamic' target='main' title='getStatus'> #getStatus </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/FlexHandle.html#getStretchButton-static' target='main' title='getStretchButton'> .getStretchButton </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/InputBlock.html#getString-dynamic' target='main' title='getString'> #getString </a> <small> (CUI.InputBlock) </small> </li> <li> <a href='class/CUI/DocumentBrowser.SearchMatch.html#getString-dynamic' target='main' title='getString'> #getString </a> <small> (CUI.DocumentBrowser.SearchMatch) </small> </li> <li> <a href='class/CUI/Layout.html#getSupportedPanes-dynamic' target='main' title='getSupportedPanes'> #getSupportedPanes </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/HorizontalList.html#getSupportedPanes-dynamic' target='main' title='getSupportedPanes'> #getSupportedPanes </a> <small> (CUI.HorizontalList) </small> </li> <li> <a href='class/CUI/VerticalList.html#getSupportedPanes-dynamic' target='main' title='getSupportedPanes'> #getSupportedPanes </a> <small> (CUI.VerticalList) </small> </li> <li> <a href='class/CUI/VerticalLayout.html#getSupportedPanes-dynamic' target='main' title='getSupportedPanes'> #getSupportedPanes </a> <small> (CUI.VerticalLayout) </small> </li> <li> <a href='class/CUI/HorizontalLayout.html#getSupportedPanes-dynamic' target='main' title='getSupportedPanes'> #getSupportedPanes </a> <small> (CUI.HorizontalLayout) </small> </li> <li> <a href='class/CUI/BorderLayout.html#getSupportedPanes-dynamic' target='main' title='getSupportedPanes'> #getSupportedPanes </a> <small> (CUI.BorderLayout) </small> </li> <li> <a href='class/CUI/Tabs.html#getTab-dynamic' target='main' title='getTab'> #getTab </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/SimpleForm.html#getTable-dynamic' target='main' title='getTable'> #getTable </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/SimpleForm.html#getTableContainer-dynamic' target='main' title='getTableContainer'> #getTableContainer </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/Form.html#getTableContainer-dynamic' target='main' title='getTableContainer'> #getTableContainer </a> <small> (CUI.Form) </small> </li> <li> <a href='class/CUI/Event.html#getTarget-dynamic' target='main' title='getTarget'> #getTarget </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/MultiInputInput.html#getTemplate-dynamic' target='main' title='getTemplate'> #getTemplate </a> <small> (CUI.MultiInputInput) </small> </li> <li> <a href='class/CUI/Slider.html#getTemplate-dynamic' target='main' title='getTemplate'> #getTemplate </a> <small> (CUI.Slider) </small> </li> <li> <a href='class/CUI/DateTime.html#getTemplate-dynamic' target='main' title='getTemplate'> #getTemplate </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/MapInput.html#getTemplate-dynamic' target='main' title='getTemplate'> #getTemplate </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/Layer.html#getTemplate-dynamic' target='main' title='getTemplate'> #getTemplate </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Options.html#getTemplate-dynamic' target='main' title='getTemplate'> #getTemplate </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/DataField.html#getTemplate-dynamic' target='main' title='getTemplate'> #getTemplate </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DateTime.html#getTemplateKeyForRender-dynamic' target='main' title='getTemplateKeyForRender'> #getTemplateKeyForRender </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#getTemplateKeyForRender-dynamic' target='main' title='getTemplateKeyForRender'> #getTemplateKeyForRender </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI/Input.html#getTemplateKeyForRender-dynamic' target='main' title='getTemplateKeyForRender'> #getTemplateKeyForRender </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/MultiInputInput.html#getTemplateKeyForRender-dynamic' target='main' title='getTemplateKeyForRender'> #getTemplateKeyForRender </a> <small> (CUI.MultiInputInput) </small> </li> <li> <a href='class/CUI/MapInput.html#getTemplateKeyForRender-dynamic' target='main' title='getTemplateKeyForRender'> #getTemplateKeyForRender </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/Layout.html#getTemplateMap-dynamic' target='main' title='getTemplateMap'> #getTemplateMap </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/BorderLayout.html#getTemplateMap-dynamic' target='main' title='getTemplateMap'> #getTemplateMap </a> <small> (CUI.BorderLayout) </small> </li> <li> <a href='class/CUI/WaitBlock.html#getTemplateName-dynamic' target='main' title='getTemplateName'> #getTemplateName </a> <small> (CUI.WaitBlock) </small> </li> <li> <a href='class/CUI/FileUploadButton.html#getTemplateName-dynamic' target='main' title='getTemplateName'> #getTemplateName </a> <small> (CUI.FileUploadButton) </small> </li> <li> <a href='class/CUI/Button.html#getTemplateName-dynamic' target='main' title='getTemplateName'> #getTemplateName </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/ButtonHref.html#getTemplateName-dynamic' target='main' title='getTemplateName'> #getTemplateName </a> <small> (CUI.ButtonHref) </small> </li> <li> <a href='class/CUI/Block.html#getTemplateName-dynamic' target='main' title='getTemplateName'> #getTemplateName </a> <small> (CUI.Block) </small> </li> <li> <a href='class/CUI/Label.html#getText-dynamic' target='main' title='getText'> #getText </a> <small> (CUI.Label) </small> </li> <li> <a href='class/CUI/Tab.html#getText-dynamic' target='main' title='getText'> #getText </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/Button.html#getText-dynamic' target='main' title='getText'> #getText </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/DateTime.html#getTimezoneOpts-dynamic' target='main' title='getTimezoneOpts'> #getTimezoneOpts </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/Pane.html#getToggleFillScreenButton-static' target='main' title='getToggleFillScreenButton'> .getToggleFillScreenButton </a> <small> (CUI.Pane) </small> </li> <li> <a href='class/CUI/Button.html#getTooltip-dynamic' target='main' title='getTooltip'> #getTooltip </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/ListView.html#getTop-dynamic' target='main' title='getTop'> #getTop </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#getTree-dynamic' target='main' title='getTree'> #getTree </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Event.html#getType-dynamic' target='main' title='getType'> #getType </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Listener.html#getTypes-dynamic' target='main' title='getTypes'> #getTypes </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/DataField.html#getUndo-dynamic' target='main' title='getUndo'> #getUndo </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Promise.html#getUniqueId-dynamic' target='main' title='getUniqueId'> #getUniqueId </a> <small> (CUI.Promise) </small> </li> <li> <a href='class/CUI/Deferred.html#getUniqueId-dynamic' target='main' title='getUniqueId'> #getUniqueId </a> <small> (CUI.Deferred) </small> </li> <li> <a href='class/CUI/Dummy.html#getUniqueId-dynamic' target='main' title='getUniqueId'> #getUniqueId </a> <small> (CUI.Dummy) </small> </li> <li> <a href='class/CUI/Element.html#getUniqueId-dynamic' target='main' title='getUniqueId'> #getUniqueId </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/DataField.html#getUniqueIdForLabel-dynamic' target='main' title='getUniqueIdForLabel'> #getUniqueIdForLabel </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Input.html#getUniqueIdForLabel-dynamic' target='main' title='getUniqueIdForLabel'> #getUniqueIdForLabel </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/MultiInput.html#getUniqueIdForLabel-dynamic' target='main' title='getUniqueIdForLabel'> #getUniqueIdForLabel </a> <small> (CUI.MultiInput) </small> </li> <li> <a href='class/CUI/FileReader.html#getUploadFileClass-dynamic' target='main' title='getUploadFileClass'> #getUploadFileClass </a> <small> (CUI.FileReader) </small> </li> <li> <a href='class/CUI/FileUpload.html#getUploadFileClass-dynamic' target='main' title='getUploadFileClass'> #getUploadFileClass </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/FileUpload.html#getUrl-dynamic' target='main' title='getUrl'> #getUrl </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/MultiInputControl.html#getUserControlOptions-dynamic' target='main' title='getUserControlOptions'> #getUserControlOptions </a> <small> (CUI.MultiInputControl) </small> </li> <li> <a href='class/CUI/Select.html#getValue-dynamic' target='main' title='getValue'> #getValue </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/SimpleForm.html#getValue-dynamic' target='main' title='getValue'> #getValue </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/Input.html#getValue-dynamic' target='main' title='getValue'> #getValue </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Slider.html#getValue-dynamic' target='main' title='getValue'> #getValue </a> <small> (CUI.Slider) </small> </li> <li> <a href='class/CUI/Prompt.html#getValue-dynamic' target='main' title='getValue'> #getValue </a> <small> (CUI.Prompt) </small> </li> <li> <a href='class/CUI/Button.html#getValue-dynamic' target='main' title='getValue'> #getValue </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/DataField.html#getValue-dynamic' target='main' title='getValue'> #getValue </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Output.html#getValue-dynamic' target='main' title='getValue'> #getValue </a> <small> (CUI.Output) </small> </li> <li> <a href='class/CUI/OutputContent.html#getValue-dynamic' target='main' title='getValue'> #getValue </a> <small> (CUI.OutputContent) </small> </li> <li> <a href='class/CUI/NumberInput.html#getValue-dynamic' target='main' title='getValue'> #getValue </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/DateTime.html#getValueForDisplay-dynamic' target='main' title='getValueForDisplay'> #getValueForDisplay </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/NumberInput.html#getValueForDisplay-dynamic' target='main' title='getValueForDisplay'> #getValueForDisplay </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/Input.html#getValueForDisplay-dynamic' target='main' title='getValueForDisplay'> #getValueForDisplay </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/MapInput.html#getValueForDisplay-dynamic' target='main' title='getValueForDisplay'> #getValueForDisplay </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/Input.html#getValueForInput-dynamic' target='main' title='getValueForInput'> #getValueForInput </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DateTime.html#getValueForInput-dynamic' target='main' title='getValueForInput'> #getValueForInput </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/MapInput.html#getValueForInput-dynamic' target='main' title='getValueForInput'> #getValueForInput </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/NumberInput.html#getValueForInput-dynamic' target='main' title='getValueForInput'> #getValueForInput </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/MapInput.html#getValueForStore-dynamic' target='main' title='getValueForStore'> #getValueForStore </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/NumberInput.html#getValueForStore-dynamic' target='main' title='getValueForStore'> #getValueForStore </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/Input.html#getValueForStore-dynamic' target='main' title='getValueForStore'> #getValueForStore </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/XHR.html#getXHR-dynamic' target='main' title='getXHR'> #getXHR </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/LeafletMap.html#getZoom-dynamic' target='main' title='getZoom'> #getZoom </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/Map.html#getZoom-dynamic' target='main' title='getZoom'> #getZoom </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/GoogleMap.html#getZoom-dynamic' target='main' title='getZoom'> #getZoom </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/ListViewRowMove.html#get_axis-dynamic' target='main' title='get_axis'> #get_axis </a> <small> (CUI.ListViewRowMove) </small> </li> <li> <a href='class/CUI/Draggable.html#get_axis-dynamic' target='main' title='get_axis'> #get_axis </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/ListViewColResize.html#get_axis-dynamic' target='main' title='get_axis'> #get_axis </a> <small> (CUI.ListViewColResize) </small> </li> <li> <a href='class/CUI/Sortable.html#get_child_number-dynamic' target='main' title='get_child_number'> #get_child_number </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/ListViewColResize.html#get_cursor-dynamic' target='main' title='get_cursor'> #get_cursor </a> <small> (CUI.ListViewColResize) </small> </li> <li> <a href='class/CUI/ListViewColResize.html#get_helper-dynamic' target='main' title='get_helper'> #get_helper </a> <small> (CUI.ListViewColResize) </small> </li> <li> <a href='class/CUI/ListViewRowMove.html#get_helper-dynamic' target='main' title='get_helper'> #get_helper </a> <small> (CUI.ListViewRowMove) </small> </li> <li> <a href='class/CUI/Draggable.html#get_helper-dynamic' target='main' title='get_helper'> #get_helper </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/ListViewRowMove.html#get_helper_contain_element-dynamic' target='main' title='get_helper_contain_element'> #get_helper_contain_element </a> <small> (CUI.ListViewRowMove) </small> </li> <li> <a href='class/CUI/Draggable.html#get_helper_contain_element-dynamic' target='main' title='get_helper_contain_element'> #get_helper_contain_element </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/ListViewColResize.html#get_helper_pos-dynamic' target='main' title='get_helper_pos'> #get_helper_pos </a> <small> (CUI.ListViewColResize) </small> </li> <li> <a href='class/CUI/Draggable.html#get_helper_pos-dynamic' target='main' title='get_helper_pos'> #get_helper_pos </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/Draggable.html#get_init_helper_pos-dynamic' target='main' title='get_init_helper_pos'> #get_init_helper_pos </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/ListViewRowMove.html#get_init_helper_pos-dynamic' target='main' title='get_init_helper_pos'> #get_init_helper_pos </a> <small> (CUI.ListViewRowMove) </small> </li> <li> <a href='class/CUI/ListViewTreeRowMove.html#get_init_helper_pos-dynamic' target='main' title='get_init_helper_pos'> #get_init_helper_pos </a> <small> (CUI.ListViewTreeRowMove) </small> </li> <li> <a href='class/CUI/ListViewColResize.html#get_init_helper_pos-dynamic' target='main' title='get_init_helper_pos'> #get_init_helper_pos </a> <small> (CUI.ListViewColResize) </small> </li> <li> <a href='class/CUI/Lasso.html#get_lassoed_elements-dynamic' target='main' title='get_lassoed_elements'> #get_lassoed_elements </a> <small> (CUI.Lasso) </small> </li> <li> <a href='class/CUI/ListViewDraggable.html#get_marker-dynamic' target='main' title='get_marker'> #get_marker </a> <small> (CUI.ListViewDraggable) </small> </li> <li> <a href='class/CUI/CSVData.html#giveAllRowsSameNumberOfColumns-dynamic' target='main' title='giveAllRowsSameNumberOfColumns'> #giveAllRowsSameNumberOfColumns </a> <small> (CUI.CSVData) </small> </li> <li> <a href='class/CUI/DataField.html#goto-dynamic' target='main' title='goto'> #goto </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/dom.html#h1-static' target='main' title='h1'> .h1 </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#h2-static' target='main' title='h2'> .h2 </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#h3-static' target='main' title='h3'> .h3 </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#h4-static' target='main' title='h4'> .h4 </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#h5-static' target='main' title='h5'> .h5 </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#h6-static' target='main' title='h6'> .h6 </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Listener.html#handleEvent-dynamic' target='main' title='handleEvent'> #handleEvent </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/Input.html#handleSelectionChange-dynamic' target='main' title='handleSelectionChange'> #handleSelectionChange </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#handleSelectionChange-dynamic' target='main' title='handleSelectionChange'> #handleSelectionChange </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI/Template.html#has-dynamic' target='main' title='has'> #has </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/dom.html#hasAnimatedClone-static' target='main' title='hasAnimatedClone'> .hasAnimatedClone </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#hasAttribute-static' target='main' title='hasAttribute'> .hasAttribute </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/FormModal.html#hasChanges-dynamic' target='main' title='hasChanges'> #hasChanges </a> <small> (CUI.FormModal) </small> </li> <li> <a href='class/CUI/dom.html#hasClass-static' target='main' title='hasClass'> .hasClass </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Template.html#hasClass-dynamic' target='main' title='hasClass'> #hasClass </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/DOMElement.html#hasClass-dynamic' target='main' title='hasClass'> #hasClass </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/SimpleForm.html#hasContentForAppend-dynamic' target='main' title='hasContentForAppend'> #hasContentForAppend </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/FormPopover.html#hasContentForAppend-dynamic' target='main' title='hasContentForAppend'> #hasContentForAppend </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/DataField.html#hasData-dynamic' target='main' title='hasData'> #hasData </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/SimpleForm.html#hasData-dynamic' target='main' title='hasData'> #hasData </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/Events.html#hasEventType-static' target='main' title='hasEventType'> .hasEventType </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/HorizontalLayout.html#hasFlexHandles-dynamic' target='main' title='hasFlexHandles'> #hasFlexHandles </a> <small> (CUI.HorizontalLayout) </small> </li> <li> <a href='class/CUI/VerticalLayout.html#hasFlexHandles-dynamic' target='main' title='hasFlexHandles'> #hasFlexHandles </a> <small> (CUI.VerticalLayout) </small> </li> <li> <a href='class/CUI/Toolbar.html#hasFlexHandles-dynamic' target='main' title='hasFlexHandles'> #hasFlexHandles </a> <small> (CUI.Toolbar) </small> </li> <li> <a href='class/CUI/Layout.html#hasFlexHandles-dynamic' target='main' title='hasFlexHandles'> #hasFlexHandles </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/Pane.html#hasFooter-dynamic' target='main' title='hasFooter'> #hasFooter </a> <small> (CUI.Pane) </small> </li> <li> <a href='class/CUI/SimplePane.html#hasFooter-dynamic' target='main' title='hasFooter'> #hasFooter </a> <small> (CUI.SimplePane) </small> </li> <li> <a href='class/CUI/SimplePane.html#hasHeader-dynamic' target='main' title='hasHeader'> #hasHeader </a> <small> (CUI.SimplePane) </small> </li> <li> <a href='class/CUI/Pane.html#hasHeader-dynamic' target='main' title='hasHeader'> #hasHeader </a> <small> (CUI.Pane) </small> </li> <li> <a href='class/CUI/ItemList.html#hasItems-dynamic' target='main' title='hasItems'> #hasItems </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/Menu.html#hasItems-dynamic' target='main' title='hasItems'> #hasItems </a> <small> (CUI.Menu) </small> </li> <li> <a href='class/CUI/Button.html#hasLeft-dynamic' target='main' title='hasLeft'> #hasLeft </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Button.html#hasMenu-dynamic' target='main' title='hasMenu'> #hasMenu </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Event.html#hasModifierKey-dynamic' target='main' title='hasModifierKey'> #hasModifierKey </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/ListView.html#hasMovableRows-dynamic' target='main' title='hasMovableRows'> #hasMovableRows </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Element.html#hasOpt-dynamic' target='main' title='hasOpt'> #hasOpt </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/ListView.html#hasResizableColumns-dynamic' target='main' title='hasResizableColumns'> #hasResizableColumns </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#hasSelectableRows-dynamic' target='main' title='hasSelectableRows'> #hasSelectableRows </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Element.html#hasSetOpt-dynamic' target='main' title='hasSetOpt'> #hasSetOpt </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/Input.html#hasShadowFocus-dynamic' target='main' title='hasShadowFocus'> #hasShadowFocus </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Tabs.html#hasTab-dynamic' target='main' title='hasTab'> #hasTab </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/MultiInputControl.html#hasUserControl-dynamic' target='main' title='hasUserControl'> #hasUserControl </a> <small> (CUI.MultiInputControl) </small> </li> <li> <a href='class/CUI/SimpleForm.html#hasUserData-dynamic' target='main' title='hasUserData'> #hasUserData </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/DataField.html#hasUserData-dynamic' target='main' title='hasUserData'> #hasUserData </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DataForm.html#hasUserData-dynamic' target='main' title='hasUserData'> #hasUserData </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/Input.html#hasUserInput-dynamic' target='main' title='hasUserInput'> #hasUserInput </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/dom.html#height-static' target='main' title='height'> .height </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Modal.html#hide-dynamic' target='main' title='hide'> #hide </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/Tab.html#hide-dynamic' target='main' title='hide'> #hide </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/DOMElement.html#hide-dynamic' target='main' title='hide'> #hide </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/WaitBlock.html#hide-dynamic' target='main' title='hide'> #hide </a> <small> (CUI.WaitBlock) </small> </li> <li> <a href='class/CUI/Icon.html#hide-dynamic' target='main' title='hide'> #hide </a> <small> (CUI.Icon) </small> </li> <li> <a href='class/CUI/Template.html#hide-dynamic' target='main' title='hide'> #hide </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/Tooltip.html#hide-dynamic' target='main' title='hide'> #hide </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/FlexHandle.html#hide-dynamic' target='main' title='hide'> #hide </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Button.html#hide-dynamic' target='main' title='hide'> #hide </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/FormPopover.html#hide-dynamic' target='main' title='hide'> #hide </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/DataField.html#hide-dynamic' target='main' title='hide'> #hide </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Menu.html#hide-dynamic' target='main' title='hide'> #hide </a> <small> (CUI.Menu) </small> </li> <li> <a href='class/CUI/Layer.html#hide-dynamic' target='main' title='hide'> #hide </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Menu.html#hideAll-dynamic' target='main' title='hideAll'> #hideAll </a> <small> (CUI.Menu) </small> </li> <li> <a href='class/CUI/dom.html#hideElement-static' target='main' title='hideElement'> .hideElement </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/GoogleMap.html#hideMarkers-dynamic' target='main' title='hideMarkers'> #hideMarkers </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/Map.html#hideMarkers-dynamic' target='main' title='hideMarkers'> #hideMarkers </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/LeafletMap.html#hideMarkers-dynamic' target='main' title='hideMarkers'> #hideMarkers </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/Password.html#hidePassword-dynamic' target='main' title='hidePassword'> #hidePassword </a> <small> (CUI.Password) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#hideSpinner-dynamic' target='main' title='hideSpinner'> #hideSpinner </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Tooltip.html#hideTimeout-dynamic' target='main' title='hideTimeout'> #hideTimeout </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/Layer.html#hideTimeout-dynamic' target='main' title='hideTimeout'> #hideTimeout </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/ListView.html#hideWaitBlock-dynamic' target='main' title='hideWaitBlock'> #hideWaitBlock </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/dom.html#htmlToNodes-static' target='main' title='htmlToNodes'> .htmlToNodes </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#i-static' target='main' title='i'> .i </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/util.html#idxInArray-static' target='main' title='idxInArray'> .idxInArray </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/Events.html#ignore-static' target='main' title='ignore'> .ignore </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/dom.html#img-static' target='main' title='img'> .img </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/util.html#inArray-static' target='main' title='inArray'> .inArray </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI.html#inArray-static' target='main' title='inArray'> .inArray </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/DateTime.html#incAMPM-dynamic' target='main' title='incAMPM'> #incAMPM </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/Input.html#incNumberBounds-dynamic' target='main' title='incNumberBounds'> #incNumberBounds </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DateTimeInputBlock.html#incrementBlock-dynamic' target='main' title='incrementBlock'> #incrementBlock </a> <small> (CUI.DateTimeInputBlock) </small> </li> <li> <a href='class/CUI/NumberInputBlock.html#incrementBlock-dynamic' target='main' title='incrementBlock'> #incrementBlock </a> <small> (CUI.NumberInputBlock) </small> </li> <li> <a href='class/CUI/InputBlock.html#incrementBlock-dynamic' target='main' title='incrementBlock'> #incrementBlock </a> <small> (CUI.InputBlock) </small> </li> <li> <a href='class/CUI/Draggable.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/Select.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/FlexHandle.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/DataField.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/SimpleForm.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/Lasso.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.Lasso) </small> </li> <li> <a href='class/CUI/Layout.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/DataForm.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/FormPopover.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/Output.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.Output) </small> </li> <li> <a href='class/CUI/PaneHeader.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.PaneHeader) </small> </li> <li> <a href='class/CUI/Toolbar.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.Toolbar) </small> </li> <li> <a href='class/CUI/DataTable.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/PaneToolbar.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.PaneToolbar) </small> </li> <li> <a href='class/CUI/ConfirmationChoice.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.ConfirmationChoice) </small> </li> <li> <a href='class/CUI/Tabs.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/PaneFooter.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.PaneFooter) </small> </li> <li> <a href='class/CUI/Options.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/ConfirmationDialog.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.ConfirmationDialog) </small> </li> <li> <a href='class/CUI/ItemList.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/DragDropSelect.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.DragDropSelect) </small> </li> <li> <a href='class/CUI/Droppable.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.Droppable) </small> </li> <li> <a href='class/CUI/Resizable.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.Resizable) </small> </li> <li> <a href='class/CUI/DateTime.html#init-dynamic' target='main' title='init'> #init </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/dom.html#initAnimatedClone-static' target='main' title='initAnimatedClone'> .initAnimatedClone </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Tab.html#initButton-dynamic' target='main' title='initButton'> #initButton </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#initChildren-dynamic' target='main' title='initChildren'> #initChildren </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Input.html#initCursor-dynamic' target='main' title='initCursor'> #initCursor </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DataFieldProxy.html#initData-dynamic' target='main' title='initData'> #initData </a> <small> (CUI.DataFieldProxy) </small> </li> <li> <a href='class/CUI/DataField.html#initData-dynamic' target='main' title='initData'> #initData </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DateTime.html#initDateTimePicker-dynamic' target='main' title='initDateTimePicker'> #initDateTimePicker </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/Layout.html#initDefaultPanes-dynamic' target='main' title='initDefaultPanes'> #initDefaultPanes </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/Slider.html#initDimensions-dynamic' target='main' title='initDimensions'> #initDimensions </a> <small> (CUI.Slider) </small> </li> <li> <a href='class/CUI/FileUpload.html#initDropZone-dynamic' target='main' title='initDropZone'> #initDropZone </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/SimpleForm.html#initFields-dynamic' target='main' title='initFields'> #initFields </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/FileUpload.html#initFilePicker-dynamic' target='main' title='initFilePicker'> #initFilePicker </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/Template.html#initFlexHandles-dynamic' target='main' title='initFlexHandles'> #initFlexHandles </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/DateTime.html#initFormat-dynamic' target='main' title='initFormat'> #initFormat </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/Form.html#initLayout-dynamic' target='main' title='initLayout'> #initLayout </a> <small> (CUI.Form) </small> </li> <li> <a href='class/CUI/SimpleForm.html#initLayout-dynamic' target='main' title='initLayout'> #initLayout </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/ObjectDumper.html#initListView-dynamic' target='main' title='initListView'> #initListView </a> <small> (CUI.ObjectDumper) </small> </li> <li> <a href='class/CUI/ListViewTree.html#initListView-dynamic' target='main' title='initListView'> #initListView </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/ListView.html#initListView-dynamic' target='main' title='initListView'> #initListView </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/StickyHeaderControl.html#initNewStickyHeaders-dynamic' target='main' title='initNewStickyHeaders'> #initNewStickyHeaders </a> <small> (CUI.StickyHeaderControl) </small> </li> <li> <a href='class/CUI/FormPopover.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/IconMarker.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.IconMarker) </small> </li> <li> <a href='class/CUI/CSVData.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.CSVData) </small> </li> <li> <a href='class/CUI/Block.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Block) </small> </li> <li> <a href='class/CUI/FileUploadButton.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.FileUploadButton) </small> </li> <li> <a href='class/CUI/Template.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/Popover.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Popover) </small> </li> <li> <a href='class/CUI/DocumentBrowser.NodeMatch.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DocumentBrowser.NodeMatch) </small> </li> <li> <a href='class/CUI/Menu.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Menu) </small> </li> <li> <a href='class/CUI/Draggable.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/Output.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Output) </small> </li> <li> <a href='class/CUI/Tooltip.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/DragoverScrollEvent.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DragoverScrollEvent) </small> </li> <li> <a href='class/CUI/Button.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Dragscroll.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Dragscroll) </small> </li> <li> <a href='class/CUI/Toolbar.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Toolbar) </small> </li> <li> <a href='class/CUI/MapInput.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/ListView.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/WaitBlock.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.WaitBlock) </small> </li> <li> <a href='class/CUI/Modal.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/DocumentBrowser.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DocumentBrowser) </small> </li> <li> <a href='class/CUI/DigiDisplay.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DigiDisplay) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/Pane.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Pane) </small> </li> <li> <a href='class/CUI/DateTimeInputBlock.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DateTimeInputBlock) </small> </li> <li> <a href='class/CUI/MultilineLabel.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.MultilineLabel) </small> </li> <li> <a href='class/CUI/ProgressMeter.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ProgressMeter) </small> </li> <li> <a href='class/CUI/Event.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/SimpleForm.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/Droppable.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Droppable) </small> </li> <li> <a href='class/CUI/Select.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/HorizontalList.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.HorizontalList) </small> </li> <li> <a href='class/CUI/Console.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Console) </small> </li> <li> <a href='class/CUI/ListViewTreeRowMove.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ListViewTreeRowMove) </small> </li> <li> <a href='class/CUI/EmailInput.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.EmailInput) </small> </li> <li> <a href='class/CUI/Listener.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/XHR.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/Icon.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Icon) </small> </li> <li> <a href='class/CUI/Input.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Options.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/Label.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Label) </small> </li> <li> <a href='class/CUI/Tabs.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/ListViewTree.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/DOMElement.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/Map.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Slider.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Slider) </small> </li> <li> <a href='class/CUI/ListViewRowMove.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ListViewRowMove) </small> </li> <li> <a href='class/CUI/ListViewDraggable.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ListViewDraggable) </small> </li> <li> <a href='class/CUI/Element.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/ButtonHref.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ButtonHref) </small> </li> <li> <a href='class/CUI/TouchEvent.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.TouchEvent) </small> </li> <li> <a href='class/CUI/MultiInput.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.MultiInput) </small> </li> <li> <a href='class/CUI/FlexHandle.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Buttonbar.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Buttonbar) </small> </li> <li> <a href='class/CUI/Layer.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Lasso.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Lasso) </small> </li> <li> <a href='class/CUI/ListViewColResize.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ListViewColResize) </small> </li> <li> <a href='class/CUI/Sortable.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/VerticalList.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.VerticalList) </small> </li> <li> <a href='class/CUI/Tab.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/LayerPane.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.LayerPane) </small> </li> <li> <a href='class/CUI/DateTime.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/ItemList.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/MultiInputControl.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.MultiInputControl) </small> </li> <li> <a href='class/CUI/DataFieldProxy.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DataFieldProxy) </small> </li> <li> <a href='class/CUI/FileUpload.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/OutputContent.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.OutputContent) </small> </li> <li> <a href='class/CUI/Resizable.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Resizable) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/FileReaderFile.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.FileReaderFile) </small> </li> <li> <a href='class/CUI/DataTableNode.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DataTableNode) </small> </li> <li> <a href='class/CUI/Checkbox.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/Table.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Table) </small> </li> <li> <a href='class/CUI/Panel.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Panel) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI/FormButton.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.FormButton) </small> </li> <li> <a href='class/CUI/DataField.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DataTable.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/Alert.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Alert) </small> </li> <li> <a href='class/CUI/MultiOutput.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.MultiOutput) </small> </li> <li> <a href='class/CUI/ListViewTreeHeaderNode.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ListViewTreeHeaderNode) </small> </li> <li> <a href='class/CUI/Confirm.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Confirm) </small> </li> <li> <a href='class/CUI/ListViewHeaderColumn.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ListViewHeaderColumn) </small> </li> <li> <a href='class/CUI/FormModal.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.FormModal) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewRow.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/DataForm.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/ConfirmationChoice.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ConfirmationChoice) </small> </li> <li> <a href='class/CUI/SimplePane.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.SimplePane) </small> </li> <li> <a href='class/CUI/ObjectDumperNode.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ObjectDumperNode) </small> </li> <li> <a href='class/CUI/StickyHeaderControl.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.StickyHeaderControl) </small> </li> <li> <a href='class/CUI/DataFieldInput.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DataFieldInput) </small> </li> <li> <a href='class/CUI/FileReader.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.FileReader) </small> </li> <li> <a href='class/CUI/Layout.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/ConfirmationDialog.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ConfirmationDialog) </small> </li> <li> <a href='class/CUI/DragDropSelect.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DragDropSelect) </small> </li> <li> <a href='class/CUI/DocumentBrowser.SearchQuery.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DocumentBrowser.SearchQuery) </small> </li> <li> <a href='class/CUI/MouseEvent.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.MouseEvent) </small> </li> <li> <a href='class/CUI/NumberInput.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/Toaster.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Toaster) </small> </li> <li> <a href='class/CUI/Prompt.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Prompt) </small> </li> <li> <a href='class/CUI/DocumentBrowser.SearchMatch.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.DocumentBrowser.SearchMatch) </small> </li> <li> <a href='class/CUI/Spinner.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Spinner) </small> </li> <li> <a href='class/CUI/InputBlock.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.InputBlock) </small> </li> <li> <a href='class/CUI/StickyHeader.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.StickyHeader) </small> </li> <li> <a href='class/CUI/Movable.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.Movable) </small> </li> <li> <a href='class/CUI/ObjectDumper.html#initOpts-dynamic' target='main' title='initOpts'> #initOpts </a> <small> (CUI.ObjectDumper) </small> </li> <li> <a href='class/CUI/FormPopover.html#initPopover-dynamic' target='main' title='initPopover'> #initPopover </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/FormModal.html#initPopover-dynamic' target='main' title='initPopover'> #initPopover </a> <small> (CUI.FormModal) </small> </li> <li> <a href='class/CUI/DataField.html#initTemplate-dynamic' target='main' title='initTemplate'> #initTemplate </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#initTemplate-dynamic' target='main' title='initTemplate'> #initTemplate </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI/FormPopover.html#initTemplate-dynamic' target='main' title='initTemplate'> #initTemplate </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/Form.html#initTemplate-dynamic' target='main' title='initTemplate'> #initTemplate </a> <small> (CUI.Form) </small> </li> <li> <a href='class/CUI/DataField.html#initValue-dynamic' target='main' title='initValue'> #initValue </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/MapInput.html#initValue-dynamic' target='main' title='initValue'> #initValue </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/DateTime.html#initValue-dynamic' target='main' title='initValue'> #initValue </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/MultiInput.html#initValue-dynamic' target='main' title='initValue'> #initValue </a> <small> (CUI.MultiInput) </small> </li> <li> <a href='class/CUI/Sortable.html#init_drag-dynamic' target='main' title='init_drag'> #init_drag </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/Draggable.html#init_drag-dynamic' target='main' title='init_drag'> #init_drag </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/Resizable.html#init_drag-dynamic' target='main' title='init_drag'> #init_drag </a> <small> (CUI.Resizable) </small> </li> <li> <a href='class/CUI/Movable.html#init_drag-dynamic' target='main' title='init_drag'> #init_drag </a> <small> (CUI.Movable) </small> </li> <li> <a href='class/CUI/ListViewRowMove.html#init_helper-dynamic' target='main' title='init_helper'> #init_helper </a> <small> (CUI.ListViewRowMove) </small> </li> <li> <a href='class/CUI/Draggable.html#init_helper-dynamic' target='main' title='init_helper'> #init_helper </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/dom.html#insertAfter-static' target='main' title='insertAfter'> .insertAfter </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#insertBefore-static' target='main' title='insertBefore'> .insertBefore </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#insertChildAtPosition-static' target='main' title='insertChildAtPosition'> .insertChildAtPosition </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/ListView.html#insertRowAfter-dynamic' target='main' title='insertRowAfter'> #insertRowAfter </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#insertRowAt-dynamic' target='main' title='insertRowAt'> #insertRowAt </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#insertRowBefore-dynamic' target='main' title='insertRowBefore'> #insertRowBefore </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Droppable.html#insideSaveZone-dynamic' target='main' title='insideSaveZone'> #insideSaveZone </a> <small> (CUI.Droppable) </small> </li> <li> <a href='class/CUI/dom.html#is-static' target='main' title='is'> .is </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Tab.html#isActive-dynamic' target='main' title='isActive'> #isActive </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/Button.html#isActive-dynamic' target='main' title='isActive'> #isActive </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/ListViewRow.html#isAddedToListView-dynamic' target='main' title='isAddedToListView'> #isAddedToListView </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI.html#isArray-static' target='main' title='isArray'> .isArray </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/util.html#isArray-static' target='main' title='isArray'> .isArray </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/Menu.html#isAutoCloseAfterClick-dynamic' target='main' title='isAutoCloseAfterClick'> #isAutoCloseAfterClick </a> <small> (CUI.Menu) </small> </li> <li> <a href='class/CUI/util.html#isBoolean-static' target='main' title='isBoolean'> .isBoolean </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/dom.html#isBorderBox-static' target='main' title='isBorderBox'> .isBorderBox </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Event.html#isBubble-dynamic' target='main' title='isBubble'> #isBubble </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Listener.html#isCapture-dynamic' target='main' title='isCapture'> #isCapture </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/DataField.html#isChanged-dynamic' target='main' title='isChanged'> #isChanged </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/SimpleForm.html#isChanged-dynamic' target='main' title='isChanged'> #isChanged </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/FormPopover.html#isChanged-dynamic' target='main' title='isChanged'> #isChanged </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/Checkbox.html#isChanged-dynamic' target='main' title='isChanged'> #isChanged </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/FlexHandle.html#isClosed-dynamic' target='main' title='isClosed'> #isClosed </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Panel.html#isClosed-dynamic' target='main' title='isClosed'> #isClosed </a> <small> (CUI.Panel) </small> </li> <li> <a href='class/CUI/util.html#isContent-static' target='main' title='isContent'> .isContent </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/dom.html#isContentBox-static' target='main' title='isContentBox'> .isContentBox </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/DataField.html#isDataField-dynamic' target='main' title='isDataField'> #isDataField </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/SimpleForm.html#isDataField-dynamic' target='main' title='isDataField'> #isDataField </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/Event.html#isDefaultPrevented-dynamic' target='main' title='isDefaultPrevented'> #isDefaultPrevented </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/util.html#isDeferred-static' target='main' title='isDeferred'> .isDeferred </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/Element.html#isDestroyed-dynamic' target='main' title='isDestroyed'> #isDestroyed </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/DOMElement.html#isDestroyed-dynamic' target='main' title='isDestroyed'> #isDestroyed </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/Select.html#isDisabled-dynamic' target='main' title='isDisabled'> #isDisabled </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/Button.html#isDisabled-dynamic' target='main' title='isDisabled'> #isDisabled </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/DataField.html#isDisabled-dynamic' target='main' title='isDisabled'> #isDisabled </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/FileUpload.html#isDone-dynamic' target='main' title='isDone'> #isDone </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#isDone-dynamic' target='main' title='isDone'> #isDone </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/util.html#isElement-static' target='main' title='isElement'> .isElement </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/Template.html#isEmpty-dynamic' target='main' title='isEmpty'> #isEmpty </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/util.html#isEmpty-static' target='main' title='isEmpty'> .isEmpty </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI.html#isEmptyObject-static' target='main' title='isEmptyObject'> .isEmptyObject </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/util.html#isEmptyObject-static' target='main' title='isEmptyObject'> .isEmptyObject </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/MultiInputControl.html#isEnabled-dynamic' target='main' title='isEnabled'> #isEnabled </a> <small> (CUI.MultiInputControl) </small> </li> <li> <a href='class/CUI/Button.html#isEnabled-dynamic' target='main' title='isEnabled'> #isEnabled </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/util.html#isEqual-static' target='main' title='isEqual'> .isEqual </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/Event.html#isExcludeSelf-dynamic' target='main' title='isExcludeSelf'> #isExcludeSelf </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/util.html#isFalse-static' target='main' title='isFalse'> .isFalse </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/util.html#isFloat-static' target='main' title='isFloat'> .isFloat </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/dom.html#isFullscreen-static' target='main' title='isFullscreen'> .isFullscreen </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/util.html#isFunction-static' target='main' title='isFunction'> .isFunction </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI.html#isFunction-static' target='main' title='isFunction'> .isFunction </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/FlexHandle.html#isHidden-dynamic' target='main' title='isHidden'> #isHidden </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Button.html#isHidden-dynamic' target='main' title='isHidden'> #isHidden </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/DataField.html#isHidden-dynamic' target='main' title='isHidden'> #isHidden </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Event.html#isImmediatePropagationStopped-dynamic' target='main' title='isImmediatePropagationStopped'> #isImmediatePropagationStopped </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/StickyHeaderControl.html#isInDOM-dynamic' target='main' title='isInDOM'> #isInDOM </a> <small> (CUI.StickyHeaderControl) </small> </li> <li> <a href='class/CUI/dom.html#isInDOM-static' target='main' title='isInDOM'> .isInDOM </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Event.html#isInDOM-dynamic' target='main' title='isInDOM'> #isInDOM </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/ListView.html#isInactive-dynamic' target='main' title='isInactive'> #isInactive </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/util.html#isInteger-static' target='main' title='isInteger'> .isInteger </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/Layer.html#isKeyboardCancellable-dynamic' target='main' title='isKeyboardCancellable'> #isKeyboardCancellable </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Alert.html#isKeyboardCancellable-dynamic' target='main' title='isKeyboardCancellable'> #isKeyboardCancellable </a> <small> (CUI.Alert) </small> </li> <li> <a href='class/CUI/Modal.html#isKeyboardCancellable-dynamic' target='main' title='isKeyboardCancellable'> #isKeyboardCancellable </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#isLeaf-dynamic' target='main' title='isLeaf'> #isLeaf </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ObjectDumperNode.html#isLeaf-dynamic' target='main' title='isLeaf'> #isLeaf </a> <small> (CUI.ObjectDumperNode) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#isLoading-dynamic' target='main' title='isLoading'> #isLoading </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI.html#isMap-static' target='main' title='isMap'> .isMap </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/util.html#isMap-static' target='main' title='isMap'> .isMap </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/ListViewRow.html#isMovable-dynamic' target='main' title='isMovable'> #isMovable </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/ListViewTree.html#isNoHierarchy-dynamic' target='main' title='isNoHierarchy'> #isNoHierarchy </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/dom.html#isNode-static' target='main' title='isNode'> .isNode </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/util.html#isNull-static' target='main' title='isNull'> .isNull </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/util.html#isNumber-static' target='main' title='isNumber'> .isNumber </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/Listener.html#isOnlyOnce-dynamic' target='main' title='isOnlyOnce'> #isOnlyOnce </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#isOpen-dynamic' target='main' title='isOpen'> #isOpen </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/FlexHandle.html#isOpen-dynamic' target='main' title='isOpen'> #isOpen </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Panel.html#isOpen-dynamic' target='main' title='isOpen'> #isOpen </a> <small> (CUI.Panel) </small> </li> <li> <a href='class/CUI.html#isPlainObject-static' target='main' title='isPlainObject'> .isPlainObject </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/util.html#isPlainObject-static' target='main' title='isPlainObject'> .isPlainObject </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/util.html#isPosInt-static' target='main' title='isPosInt'> .isPosInt </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/dom.html#isPositioned-static' target='main' title='isPositioned'> .isPositioned </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/util.html#isPromise-static' target='main' title='isPromise'> .isPromise </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/Event.html#isPropagationStopped-dynamic' target='main' title='isPropagationStopped'> #isPropagationStopped </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/FileUpload.html#isQueuing-dynamic' target='main' title='isQueuing'> #isQueuing </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#isRendered-dynamic' target='main' title='isRendered'> #isRendered </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/DataField.html#isRendered-dynamic' target='main' title='isRendered'> #isRendered </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Input.html#isRequired-dynamic' target='main' title='isRequired'> #isRequired </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DataFieldInput.html#isResizable-dynamic' target='main' title='isResizable'> #isResizable </a> <small> (CUI.DataFieldInput) </small> </li> <li> <a href='class/CUI/DataField.html#isResizable-dynamic' target='main' title='isResizable'> #isResizable </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#isRoot-dynamic' target='main' title='isRoot'> #isRoot </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewHeaderRow.html#isSelectable-dynamic' target='main' title='isSelectable'> #isSelectable </a> <small> (CUI.ListViewHeaderRow) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#isSelectable-dynamic' target='main' title='isSelectable'> #isSelectable </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewRow.html#isSelectable-dynamic' target='main' title='isSelectable'> #isSelectable </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/ListViewTree.html#isSelectable-dynamic' target='main' title='isSelectable'> #isSelectable </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#isSelected-dynamic' target='main' title='isSelected'> #isSelected </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewRow.html#isSelected-dynamic' target='main' title='isSelected'> #isSelected </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/WaitBlock.html#isShown-dynamic' target='main' title='isShown'> #isShown </a> <small> (CUI.WaitBlock) </small> </li> <li> <a href='class/CUI/Button.html#isShown-dynamic' target='main' title='isShown'> #isShown </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Layer.html#isShown-dynamic' target='main' title='isShown'> #isShown </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/DataField.html#isShown-dynamic' target='main' title='isShown'> #isShown </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/FlexHandle.html#isShown-dynamic' target='main' title='isShown'> #isShown </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Event.html#isSink-dynamic' target='main' title='isSink'> #isSink </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/FlexHandle.html#isStretched-dynamic' target='main' title='isStretched'> #isStretched </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI.html#isString-static' target='main' title='isString'> .isString </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/util.html#isString-static' target='main' title='isString'> .isString </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/XHR.html#isSuccess-dynamic' target='main' title='isSuccess'> #isSuccess </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI.html#isTimeoutRunning-static' target='main' title='isTimeoutRunning'> .isTimeoutRunning </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/util.html#isTrue-static' target='main' title='isTrue'> .isTrue </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/util.html#isUndef-static' target='main' title='isUndef'> .isUndef </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#isUploading-dynamic' target='main' title='isUploading'> #isUploading </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/FileUpload.html#isUploading-dynamic' target='main' title='isUploading'> #isUploading </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/Map.html#isValidLatitude-static' target='main' title='isValidLatitude'> .isValidLatitude </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Map.html#isValidLongitude-static' target='main' title='isValidLongitude'> .isValidLongitude </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Map.html#isValidPosition-static' target='main' title='isValidPosition'> .isValidPosition </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/dom.html#isVisible-static' target='main' title='isVisible'> .isVisible </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/KeyboardEvent.html#key-dynamic' target='main' title='key'> #key </a> <small> (CUI.KeyboardEvent) </small> </li> <li> <a href='class/CUI/Event.html#keyCode-dynamic' target='main' title='keyCode'> #keyCode </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Table.html#keyValueRowsFromMap-static' target='main' title='keyValueRowsFromMap'> .keyValueRowsFromMap </a> <small> (CUI.Table) </small> </li> <li> <a href='class/CUI/dom.html#label-static' target='main' title='label'> .label </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#lastElementChild-static' target='main' title='lastElementChild'> .lastElementChild </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/ListView.html#layoutIsStopped-dynamic' target='main' title='layoutIsStopped'> #layoutIsStopped </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Input.html#leaveInput-dynamic' target='main' title='leaveInput'> #leaveInput </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#level-dynamic' target='main' title='level'> #level </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/dom.html#li-static' target='main' title='li'> .li </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Movable.html#limitRect-dynamic' target='main' title='limitRect'> #limitRect </a> <small> (CUI.Movable) </small> </li> <li> <a href='class/CUI/Draggable.html#limitRect-static' target='main' title='limitRect'> .limitRect </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/Events.html#listen-static' target='main' title='listen'> .listen </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/Template.html#load-static' target='main' title='load'> .load </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/CSSLoader.html#load-dynamic' target='main' title='load'> #load </a> <small> (CUI.CSSLoader) </small> </li> <li> <a href='class/CUI/DocumentBrowser.html#load-dynamic' target='main' title='load'> #load </a> <small> (CUI.DocumentBrowser) </small> </li> <li> <a href='class/CUI/Tab.html#loadContent-dynamic' target='main' title='loadContent'> #loadContent </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/Panel.html#loadContent-dynamic' target='main' title='loadContent'> #loadContent </a> <small> (CUI.Panel) </small> </li> <li> <a href='class/CUI/DocumentBrowser.html#loadContent-dynamic' target='main' title='loadContent'> #loadContent </a> <small> (CUI.DocumentBrowser) </small> </li> <li> <a href='class/CUI/DocumentBrowser.html#loadEmpty-dynamic' target='main' title='loadEmpty'> #loadEmpty </a> <small> (CUI.DocumentBrowser) </small> </li> <li> <a href='class/CUI/Template.html#loadFile-static' target='main' title='loadFile'> .loadFile </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/DocumentBrowser.html#loadLocation-dynamic' target='main' title='loadLocation'> #loadLocation </a> <small> (CUI.DocumentBrowser) </small> </li> <li> <a href='class/CUI/Template.html#loadTemplateFile-static' target='main' title='loadTemplateFile'> .loadTemplateFile </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/Template.html#loadTemplateText-static' target='main' title='loadTemplateText'> .loadTemplateText </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/Template.html#loadText-static' target='main' title='loadText'> .loadText </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/Console.html#log-dynamic' target='main' title='log'> #log </a> <small> (CUI.Console) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#makeOrderedList-dynamic' target='main' title='makeOrderedList'> #makeOrderedList </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#makeUnorderedList-dynamic' target='main' title='makeUnorderedList'> #makeUnorderedList </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI/Input.html#markBlock-dynamic' target='main' title='markBlock'> #markBlock </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DateTime.html#markDay-dynamic' target='main' title='markDay'> #markDay </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/DocumentBrowser.html#marked-dynamic' target='main' title='marked'> #marked </a> <small> (CUI.DocumentBrowser) </small> </li> <li> <a href='class/CUI/DocumentBrowser.NodeMatch.html#marked-dynamic' target='main' title='marked'> #marked </a> <small> (CUI.DocumentBrowser.NodeMatch) </small> </li> <li> <a href='class/CUI/DocumentBrowser.SearchQuery.html#match-dynamic' target='main' title='match'> #match </a> <small> (CUI.DocumentBrowser.SearchQuery) </small> </li> <li> <a href='class/CUI/dom.html#matchSelector-static' target='main' title='matchSelector'> .matchSelector </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#matches-static' target='main' title='matches'> .matches </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Listener.html#matchesEvent-dynamic' target='main' title='matchesEvent'> #matchesEvent </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/Listener.html#matchesFilter-dynamic' target='main' title='matchesFilter'> #matchesFilter </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/Layout.html#maximizeAddClasses-dynamic' target='main' title='maximizeAddClasses'> #maximizeAddClasses </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/DataField.html#maximizeAddClasses-dynamic' target='main' title='maximizeAddClasses'> #maximizeAddClasses </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Layout.html#maximizeReadOpts-dynamic' target='main' title='maximizeReadOpts'> #maximizeReadOpts </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/Button.html#menuSetActiveIdx-dynamic' target='main' title='menuSetActiveIdx'> #menuSetActiveIdx </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/util.html#mergeMap-static' target='main' title='mergeMap'> .mergeMap </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI.html#mergeMap-static' target='main' title='mergeMap'> .mergeMap </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/Element.html#mergeOpt-dynamic' target='main' title='mergeOpt'> #mergeOpt </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/Element.html#mergeOpts-dynamic' target='main' title='mergeOpts'> #mergeOpts </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/Event.html#metaKey-dynamic' target='main' title='metaKey'> #metaKey </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Input.html#moveCursor-dynamic' target='main' title='moveCursor'> #moveCursor </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/util.html#moveInArray-static' target='main' title='moveInArray'> .moveInArray </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/ListView.html#moveInOrderArray-dynamic' target='main' title='moveInOrderArray'> #moveInOrderArray </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#moveNodeAfter-dynamic' target='main' title='moveNodeAfter'> #moveNodeAfter </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#moveNodeBefore-dynamic' target='main' title='moveNodeBefore'> #moveNodeBefore </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewTree.html#moveRow-dynamic' target='main' title='moveRow'> #moveRow </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/ListView.html#moveRow-dynamic' target='main' title='moveRow'> #moveRow </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#moveToNewFather-dynamic' target='main' title='moveToNewFather'> #moveToNewFather </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Sortable.html#move_element-dynamic' target='main' title='move_element'> #move_element </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/DataField.html#new-static' target='main' title='new'> .new </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Select.html#newSelectOrOutput-static' target='main' title='newSelectOrOutput'> .newSelectOrOutput </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/dom.html#nextElementSibling-static' target='main' title='nextElementSibling'> .nextElementSibling </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Button.html#onClickAction-dynamic' target='main' title='onClickAction'> #onClickAction </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Spinner.html#open-dynamic' target='main' title='open'> #open </a> <small> (CUI.Spinner) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#open-dynamic' target='main' title='open'> #open </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/FlexHandle.html#open-dynamic' target='main' title='open'> #open </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Panel.html#open-dynamic' target='main' title='open'> #open </a> <small> (CUI.Panel) </small> </li> <li> <a href='class/CUI/ConfirmationChoice.html#open-dynamic' target='main' title='open'> #open </a> <small> (CUI.ConfirmationChoice) </small> </li> <li> <a href='class/CUI/Prompt.html#open-dynamic' target='main' title='open'> #open </a> <small> (CUI.Prompt) </small> </li> <li> <a href='class/CUI/Toaster.html#open-dynamic' target='main' title='open'> #open </a> <small> (CUI.Toaster) </small> </li> <li> <a href='class/CUI/DateTime.html#openPopover-dynamic' target='main' title='openPopover'> #openPopover </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#openRecursively-dynamic' target='main' title='openRecursively'> #openRecursively </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewTree.html#openTreeNodeByRowDisplayIndex-dynamic' target='main' title='openTreeNodeByRowDisplayIndex'> #openTreeNodeByRowDisplayIndex </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#openUpwards-dynamic' target='main' title='openUpwards'> #openUpwards </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/dom.html#p-static' target='main' title='p'> .p </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Event.html#pageX-dynamic' target='main' title='pageX'> #pageX </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Event.html#pageY-dynamic' target='main' title='pageY'> #pageY </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/dom.html#parent-static' target='main' title='parent'> .parent </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#parents-static' target='main' title='parents'> .parents </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#parentsScrollable-static' target='main' title='parentsScrollable'> .parentsScrollable </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#parentsUntil-static' target='main' title='parentsUntil'> .parentsUntil </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/CSVData.html#parse-dynamic' target='main' title='parse'> #parse </a> <small> (CUI.CSVData) </small> </li> <li> <a href='class/CUI/DateTime.html#parse-dynamic' target='main' title='parse'> #parse </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/util.html#parseCoordinates-static' target='main' title='parseCoordinates'> .parseCoordinates </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI.html#parseLocation-static' target='main' title='parseLocation'> .parseLocation </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/DateTime.html#parseValue-dynamic' target='main' title='parseValue'> #parseValue </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/Layer.html#position-dynamic' target='main' title='position'> #position </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/StickyHeaderControl.html#position-dynamic' target='main' title='position'> #position </a> <small> (CUI.StickyHeaderControl) </small> </li> <li> <a href='class/CUI/Draggable.html#position_helper-dynamic' target='main' title='position_helper'> #position_helper </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/dom.html#pre-static' target='main' title='pre'> .pre </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/ItemList.html#preActivateNextItem-dynamic' target='main' title='preActivateNextItem'> #preActivateNextItem </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/ItemList.html#preActivatePreviousItem-dynamic' target='main' title='preActivatePreviousItem'> #preActivatePreviousItem </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/ItemList.html#preSelectByKeyword-dynamic' target='main' title='preSelectByKeyword'> #preSelectByKeyword </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/dom.html#prepareSetDimensions-static' target='main' title='prepareSetDimensions'> .prepareSetDimensions </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/DOMElement.html#prepend-dynamic' target='main' title='prepend'> #prepend </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/dom.html#prepend-static' target='main' title='prepend'> .prepend </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Template.html#prepend-dynamic' target='main' title='prepend'> #prepend </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/Buttonbar.html#prependButton-dynamic' target='main' title='prependButton'> #prependButton </a> <small> (CUI.Buttonbar) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#prependChild-dynamic' target='main' title='prependChild'> #prependChild </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewRow.html#prependColumn-dynamic' target='main' title='prependColumn'> #prependColumn </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/ListViewTree.html#prependNode-dynamic' target='main' title='prependNode'> #prependNode </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/ListView.html#prependRow-dynamic' target='main' title='prependRow'> #prependRow </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#prependSibling-dynamic' target='main' title='prependSibling'> #prependSibling </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Event.html#preventDefault-dynamic' target='main' title='preventDefault'> #preventDefault </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Input.html#preventInvalidInput-dynamic' target='main' title='preventInvalidInput'> #preventInvalidInput </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Tooltip.html#preventOverflow-dynamic' target='main' title='preventOverflow'> #preventOverflow </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/dom.html#previousElementSibling-static' target='main' title='previousElementSibling'> .previousElementSibling </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#printElement-static' target='main' title='printElement'> .printElement </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Promise.html#progress-dynamic' target='main' title='progress'> #progress </a> <small> (CUI.Promise) </small> </li> <li> <a href='class/CUI/Deferred.html#progress-dynamic' target='main' title='progress'> #progress </a> <small> (CUI.Deferred) </small> </li> <li> <a href='class/CUI/Deferred.html#promise-dynamic' target='main' title='promise'> #promise </a> <small> (CUI.Deferred) </small> </li> <li> <a href='class/CUI/Element.html#proxy-dynamic' target='main' title='proxy'> #proxy </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI.html#proxyMethods-static' target='main' title='proxyMethods'> .proxyMethods </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/util.html#pushOntoArray-static' target='main' title='pushOntoArray'> .pushOntoArray </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#queue-dynamic' target='main' title='queue'> #queue </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/FileUpload.html#queueFiles-dynamic' target='main' title='queueFiles'> #queueFiles </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/CSVData.html#quote-static' target='main' title='quote'> .quote </a> <small> (CUI.CSVData) </small> </li> <li> <a href='class/CUI/DocumentBrowser.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.DocumentBrowser) </small> </li> <li> <a href='class/CUI/SimplePane.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.SimplePane) </small> </li> <li> <a href='class/CUI/DataTableNode.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.DataTableNode) </small> </li> <li> <a href='class/CUI/MultiOutput.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.MultiOutput) </small> </li> <li> <a href='class/CUI/Table.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Table) </small> </li> <li> <a href='class/CUI/Toaster.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Toaster) </small> </li> <li> <a href='class/CUI/Resizable.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Resizable) </small> </li> <li> <a href='class/CUI/DragDropSelect.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.DragDropSelect) </small> </li> <li> <a href='class/CUI/Movable.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Movable) </small> </li> <li> <a href='class/CUI/CSSLoader.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.CSSLoader) </small> </li> <li> <a href='class/CUI/CSVData.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.CSVData) </small> </li> <li> <a href='class/CUI/WaitBlock.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.WaitBlock) </small> </li> <li> <a href='class/CUI/Prompt.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Prompt) </small> </li> <li> <a href='class/CUI/ObjectDumper.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ObjectDumper) </small> </li> <li> <a href='class/CUI/DateTime.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/MapInput.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/Sortable.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/NumberInput.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/Listener.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/Pane.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Pane) </small> </li> <li> <a href='class/CUI/ConfirmationChoice.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ConfirmationChoice) </small> </li> <li> <a href='class/CUI/ObjectDumperNode.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ObjectDumperNode) </small> </li> <li> <a href='class/CUI/ListViewColResize.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ListViewColResize) </small> </li> <li> <a href='class/CUI/SimpleForm.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/VerticalList.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.VerticalList) </small> </li> <li> <a href='class/CUI/MultiInput.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.MultiInput) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/DataTable.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/Draggable.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/Confirm.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Confirm) </small> </li> <li> <a href='class/CUI/Alert.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Alert) </small> </li> <li> <a href='class/CUI/Lasso.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Lasso) </small> </li> <li> <a href='class/CUI/FileUpload.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/DataField.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/ConfirmationDialog.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ConfirmationDialog) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI/ListViewDraggable.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ListViewDraggable) </small> </li> <li> <a href='class/CUI/FileReader.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.FileReader) </small> </li> <li> <a href='class/CUI/ItemList.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/ListViewRowMove.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ListViewRowMove) </small> </li> <li> <a href='class/CUI/DataFieldProxy.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.DataFieldProxy) </small> </li> <li> <a href='class/CUI/Element.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/Panel.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Panel) </small> </li> <li> <a href='class/CUI/Layout.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/Slider.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Slider) </small> </li> <li> <a href='class/CUI/Input.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/XHR.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/ButtonHref.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ButtonHref) </small> </li> <li> <a href='class/CUI/FileUploadButton.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.FileUploadButton) </small> </li> <li> <a href='class/CUI/EmailInput.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.EmailInput) </small> </li> <li> <a href='class/CUI/ListViewHeaderColumn.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ListViewHeaderColumn) </small> </li> <li> <a href='class/CUI/ListViewTree.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/Element.html#readOpts-static' target='main' title='readOpts'> .readOpts </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/ListViewRow.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/DocumentBrowser.SearchQuery.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.DocumentBrowser.SearchQuery) </small> </li> <li> <a href='class/CUI/EmptyLabel.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.EmptyLabel) </small> </li> <li> <a href='class/CUI/Label.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Label) </small> </li> <li> <a href='class/CUI/DocumentBrowser.SearchMatch.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.DocumentBrowser.SearchMatch) </small> </li> <li> <a href='class/CUI/HorizontalList.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.HorizontalList) </small> </li> <li> <a href='class/CUI/Options.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/Block.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Block) </small> </li> <li> <a href='class/CUI/Modal.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/DataForm.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/Output.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Output) </small> </li> <li> <a href='class/CUI/Event.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/FormPopover.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/Popover.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Popover) </small> </li> <li> <a href='class/CUI/Button.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Droppable.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Droppable) </small> </li> <li> <a href='class/CUI/ListView.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Dragscroll.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Dragscroll) </small> </li> <li> <a href='class/CUI/Tooltip.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/Menu.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.Menu) </small> </li> <li> <a href='class/CUI/FlexHandle.html#readOpts-dynamic' target='main' title='readOpts'> #readOpts </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Element.html#readOptsFromAttr-dynamic' target='main' title='readOptsFromAttr'> #readOptsFromAttr </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI.html#ready-static' target='main' title='ready'> .ready </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/XHR.html#readyState-dynamic' target='main' title='readyState'> #readyState </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/SimpleForm.html#redo-dynamic' target='main' title='redo'> #redo </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/DataField.html#redo-dynamic' target='main' title='redo'> #redo </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DateTime.html#regexpMatcher-dynamic' target='main' title='regexpMatcher'> #regexpMatcher </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/Test.html#register-static' target='main' title='register'> .register </a> <small> (CUI.Test) </small> </li> <li> <a href='class/CUI/DOMElement.html#registerDOMElement-dynamic' target='main' title='registerDOMElement'> #registerDOMElement </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/Events.html#registerEvent-static' target='main' title='registerEvent'> .registerEvent </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/DataField.html#registerLabel-dynamic' target='main' title='registerLabel'> #registerLabel </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Checkbox.html#registerLabel-dynamic' target='main' title='registerLabel'> #registerLabel </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/Select.html#registerLabel-dynamic' target='main' title='registerLabel'> #registerLabel </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/DOMElement.html#registerTemplate-dynamic' target='main' title='registerTemplate'> #registerTemplate </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI.html#registerTimeoutChangeCallback-static' target='main' title='registerTimeoutChangeCallback'> .registerTimeoutChangeCallback </a> <small> (CUI) </small> </li> <li> <a href='class/CUI.html#rejectedPromise-static' target='main' title='rejectedPromise'> .rejectedPromise </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/SimpleForm.html#reload-dynamic' target='main' title='reload'> #reload </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#reload-dynamic' target='main' title='reload'> #reload </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/DataField.html#reload-dynamic' target='main' title='reload'> #reload </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DataTableNode.html#reload-dynamic' target='main' title='reload'> #reload </a> <small> (CUI.DataTableNode) </small> </li> <li> <a href='class/CUI/Select.html#reload-dynamic' target='main' title='reload'> #reload </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/ListViewRow.html#remove-dynamic' target='main' title='remove'> #remove </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#remove-dynamic' target='main' title='remove'> #remove </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#remove-dynamic' target='main' title='remove'> #remove </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/DataField.html#remove-dynamic' target='main' title='remove'> #remove </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Input.html#remove-dynamic' target='main' title='remove'> #remove </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DataFieldProxy.html#remove-dynamic' target='main' title='remove'> #remove </a> <small> (CUI.DataFieldProxy) </small> </li> <li> <a href='class/CUI/DataTableNode.html#remove-dynamic' target='main' title='remove'> #remove </a> <small> (CUI.DataTableNode) </small> </li> <li> <a href='class/CUI/SimpleForm.html#remove-dynamic' target='main' title='remove'> #remove </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/dom.html#remove-static' target='main' title='remove'> .remove </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/ListView.html#removeAllRows-dynamic' target='main' title='removeAllRows'> #removeAllRows </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/dom.html#removeAnimatedClone-static' target='main' title='removeAnimatedClone'> .removeAnimatedClone </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#removeAttribute-static' target='main' title='removeAttribute'> .removeAttribute </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Buttonbar.html#removeButtons-dynamic' target='main' title='removeButtons'> #removeButtons </a> <small> (CUI.Buttonbar) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#removeChild-dynamic' target='main' title='removeChild'> #removeChild </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/dom.html#removeChildren-static' target='main' title='removeChildren'> .removeChildren </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/DOMElement.html#removeClass-dynamic' target='main' title='removeClass'> #removeClass </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/ListViewColumnRightFill.html#removeClass-dynamic' target='main' title='removeClass'> #removeClass </a> <small> (CUI.ListViewColumnRightFill) </small> </li> <li> <a href='class/CUI/Template.html#removeClass-dynamic' target='main' title='removeClass'> #removeClass </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/dom.html#removeClass-static' target='main' title='removeClass'> .removeClass </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/ListViewRow.html#removeClass-dynamic' target='main' title='removeClass'> #removeClass </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#removeClass-dynamic' target='main' title='removeClass'> #removeClass </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/SimpleForm.html#removeClassFromField-dynamic' target='main' title='removeClassFromField'> #removeClassFromField </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/ListViewRow.html#removeColumns-dynamic' target='main' title='removeColumns'> #removeColumns </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/dom.html#removeData-static' target='main' title='removeData'> .removeData </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/ListView.html#removeDeferredRow-dynamic' target='main' title='removeDeferredRow'> #removeDeferredRow </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Template.html#removeEmptySlots-dynamic' target='main' title='removeEmptySlots'> #removeEmptySlots </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/FileUpload.html#removeFile-dynamic' target='main' title='removeFile'> #removeFile </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/util.html#removeFromArray-static' target='main' title='removeFromArray'> .removeFromArray </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#removeFromDOM-dynamic' target='main' title='removeFromDOM'> #removeFromDOM </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Droppable.html#removeHelper-dynamic' target='main' title='removeHelper'> #removeHelper </a> <small> (CUI.Droppable) </small> </li> <li> <a href='class/CUI/Map.html#removeMarker-dynamic' target='main' title='removeMarker'> #removeMarker </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Map.html#removeMarkers-dynamic' target='main' title='removeMarkers'> #removeMarkers </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Element.html#removeOpt-dynamic' target='main' title='removeOpt'> #removeOpt </a> <small> (CUI.Element) </small> </li> <li> <a href='class/CUI/ListView.html#removeRow-dynamic' target='main' title='removeRow'> #removeRow </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#removeSelectedClass-dynamic' target='main' title='removeSelectedClass'> #removeSelectedClass </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/LeafletMap.html#removeSelectedMarker-dynamic' target='main' title='removeSelectedMarker'> #removeSelectedMarker </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/GoogleMap.html#removeSelectedMarker-dynamic' target='main' title='removeSelectedMarker'> #removeSelectedMarker </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/Map.html#removeSelectedMarker-dynamic' target='main' title='removeSelectedMarker'> #removeSelectedMarker </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Slider.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.Slider) </small> </li> <li> <a href='class/CUI/OutputContent.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.OutputContent) </small> </li> <li> <a href='class/CUI/ListViewColumnEmpty.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.ListViewColumnEmpty) </small> </li> <li> <a href='class/CUI/ListViewTree.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/Options.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/IconMarker.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.IconMarker) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI/ListViewColumnRightFill.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.ListViewColumnRightFill) </small> </li> <li> <a href='class/CUI/DocumentBrowser.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.DocumentBrowser) </small> </li> <li> <a href='class/CUI/Output.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.Output) </small> </li> <li> <a href='class/CUI/DataForm.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/ItemList.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/FormButton.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.FormButton) </small> </li> <li> <a href='class/CUI/DataTable.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/ListViewHeaderColumn.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.ListViewHeaderColumn) </small> </li> <li> <a href='class/CUI/SimpleForm.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/MultiOutput.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.MultiOutput) </small> </li> <li> <a href='class/CUI/DataField.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/ListViewTreeHeaderNode.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.ListViewTreeHeaderNode) </small> </li> <li> <a href='class/CUI/ListViewColumnRowMoveHandle.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.ListViewColumnRowMoveHandle) </small> </li> <li> <a href='class/CUI/DocumentBrowser.NodeMatch.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.DocumentBrowser.NodeMatch) </small> </li> <li> <a href='class/CUI/Input.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/DateTime.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/MultiInput.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.MultiInput) </small> </li> <li> <a href='class/CUI/FormPopover.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/ListView.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Checkbox.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.Checkbox) </small> </li> <li> <a href='class/CUI/MapInput.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.MapInput) </small> </li> <li> <a href='class/CUI/DataFieldProxy.html#render-dynamic' target='main' title='render'> #render </a> <small> (CUI.DataFieldProxy) </small> </li> <li> <a href='class/CUI/SimpleForm.html#renderAsBlock-dynamic' target='main' title='renderAsBlock'> #renderAsBlock </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/FormPopover.html#renderAsBlock-dynamic' target='main' title='renderAsBlock'> #renderAsBlock </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/DataForm.html#renderAsBlock-dynamic' target='main' title='renderAsBlock'> #renderAsBlock </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/DataField.html#renderAsBlock-dynamic' target='main' title='renderAsBlock'> #renderAsBlock </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#renderContent-dynamic' target='main' title='renderContent'> #renderContent </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ObjectDumperNode.html#renderContent-dynamic' target='main' title='renderContent'> #renderContent </a> <small> (CUI.ObjectDumperNode) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#renderHTML-dynamic' target='main' title='renderHTML'> #renderHTML </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI/DocumentBrowser.html#renderHref-dynamic' target='main' title='renderHref'> #renderHref </a> <small> (CUI.DocumentBrowser) </small> </li> <li> <a href='class/CUI/SimpleForm.html#renderTable-dynamic' target='main' title='renderTable'> #renderTable </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/FormPopover.html#renderTable-dynamic' target='main' title='renderTable'> #renderTable </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/SimplePane.html#replace-dynamic' target='main' title='replace'> #replace </a> <small> (CUI.SimplePane) </small> </li> <li> <a href='class/CUI/Template.html#replace-dynamic' target='main' title='replace'> #replace </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/Modal.html#replace-dynamic' target='main' title='replace'> #replace </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/dom.html#replace-static' target='main' title='replace'> .replace </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Layout.html#replace-dynamic' target='main' title='replace'> #replace </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/DOMElement.html#replace-dynamic' target='main' title='replace'> #replace </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/ListView.html#replaceRow-dynamic' target='main' title='replaceRow'> #replaceRow </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#replaceSelf-dynamic' target='main' title='replaceSelf'> #replaceSelf </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/dom.html#replaceWith-static' target='main' title='replaceWith'> .replaceWith </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#requestFullscreen-static' target='main' title='requestFullscreen'> .requestFullscreen </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Listener.html#require-static' target='main' title='require'> .require </a> <small> (CUI.Listener) </small> </li> <li> <a href='class/CUI/Event.html#require-static' target='main' title='require'> .require </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/DataField.html#reset-dynamic' target='main' title='reset'> #reset </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/ListView.html#resetColWidth-dynamic' target='main' title='resetColWidth'> #resetColWidth </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/FileUpload.html#resetDropZones-dynamic' target='main' title='resetDropZones'> #resetDropZones </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/Tooltip.html#resetLayer-dynamic' target='main' title='resetLayer'> #resetLayer </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/Droppable.html#resetMargin-dynamic' target='main' title='resetMargin'> #resetMargin </a> <small> (CUI.Droppable) </small> </li> <li> <a href='class/CUI/FlexHandle.html#resetSize-dynamic' target='main' title='resetSize'> #resetSize </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/FormPopover.html#resetTableAndFields-dynamic' target='main' title='resetTableAndFields'> #resetTableAndFields </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI.html#resetTimeout-static' target='main' title='resetTimeout'> .resetTimeout </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/LeafletMap.html#resize-dynamic' target='main' title='resize'> #resize </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/Map.html#resize-dynamic' target='main' title='resize'> #resize </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/GoogleMap.html#resize-dynamic' target='main' title='resize'> #resize </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI.html#resolvedPromise-static' target='main' title='resolvedPromise'> .resolvedPromise </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/XHR.html#response-dynamic' target='main' title='response'> #response </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/FormModal.html#revertData-dynamic' target='main' title='revertData'> #revertData </a> <small> (CUI.FormModal) </small> </li> <li> <a href='class/CUI/util.html#revertMap-static' target='main' title='revertMap'> .revertMap </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI.html#revertMap-static' target='main' title='revertMap'> .revertMap </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/ListView.html#rowAddClass-dynamic' target='main' title='rowAddClass'> #rowAddClass </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/DataForm.html#rowHasUserData-dynamic' target='main' title='rowHasUserData'> #rowHasUserData </a> <small> (CUI.DataForm) </small> </li> <li> <a href='class/CUI/ListView.html#rowRemoveClass-dynamic' target='main' title='rowRemoveClass'> #rowRemoveClass </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Test.Test_MoveInArray.html#run-dynamic' target='main' title='run'> #run </a> <small> (CUI.Test.Test_MoveInArray) </small> </li> <li> <a href='class/CUI/Test_Promise.html#run-dynamic' target='main' title='run'> #run </a> <small> (CUI.Test_Promise) </small> </li> <li> <a href='class/CUI/Test.html#run-static' target='main' title='run'> .run </a> <small> (CUI.Test) </small> </li> <li> <a href='class/CUI/Test.html#run-dynamic' target='main' title='run'> #run </a> <small> (CUI.Test) </small> </li> <li> <a href='class/CUI/FileReader.html#save-static' target='main' title='save'> .save </a> <small> (CUI.FileReader) </small> </li> <li> <a href='class/CUI.html#scheduleCallback-static' target='main' title='scheduleCallback'> .scheduleCallback </a> <small> (CUI) </small> </li> <li> <a href='class/CUI.html#scheduleCallbackCancel-static' target='main' title='scheduleCallbackCancel'> .scheduleCallbackCancel </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/dom.html#scrollIntoView-static' target='main' title='scrollIntoView'> .scrollIntoView </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/ListViewRow.html#scrollIntoView-dynamic' target='main' title='scrollIntoView'> #scrollIntoView </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/ListViewRow.html#select-dynamic' target='main' title='select'> #select </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#select-dynamic' target='main' title='select'> #select </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Input.html#selectAll-dynamic' target='main' title='selectAll'> #selectAll </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/ListView.html#selectRow-dynamic' target='main' title='selectRow'> #selectRow </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#selectRowByDisplayIdx-dynamic' target='main' title='selectRowByDisplayIdx'> #selectRowByDisplayIdx </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListView.html#selectRowById-dynamic' target='main' title='selectRowById'> #selectRowById </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Layout.html#setAbsolute-static' target='main' title='setAbsolute'> .setAbsolute </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/Layout.html#setAbsolute-dynamic' target='main' title='setAbsolute'> #setAbsolute </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/dom.html#setAbsolutePosition-static' target='main' title='setAbsolutePosition'> .setAbsolutePosition </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Button.html#setActive-dynamic' target='main' title='setActive'> #setActive </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/ItemList.html#setActiveIdx-dynamic' target='main' title='setActiveIdx'> #setActiveIdx </a> <small> (CUI.ItemList) </small> </li> <li> <a href='class/CUI/DOMElement.html#setAria-dynamic' target='main' title='setAria'> #setAria </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/dom.html#setAria-static' target='main' title='setAria'> .setAria </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#setAttribute-static' target='main' title='setAttribute'> .setAttribute </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#setAttributeMap-static' target='main' title='setAttributeMap'> .setAttributeMap </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Layer.html#setBackdropContent-dynamic' target='main' title='setBackdropContent'> #setBackdropContent </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Map.html#setButtonBar-dynamic' target='main' title='setButtonBar'> #setButtonBar </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/GoogleMap.html#setCenter-dynamic' target='main' title='setCenter'> #setCenter </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/Map.html#setCenter-dynamic' target='main' title='setCenter'> #setCenter </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/LeafletMap.html#setCenter-dynamic' target='main' title='setCenter'> #setCenter </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/DataField.html#setCheckChangedValue-dynamic' target='main' title='setCheckChangedValue'> #setCheckChangedValue </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DataFieldProxy.html#setCheckChangedValue-dynamic' target='main' title='setCheckChangedValue'> #setCheckChangedValue </a> <small> (CUI.DataFieldProxy) </small> </li> <li> <a href='class/CUI/dom.html#setClass-static' target='main' title='setClass'> .setClass </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/ListViewRow.html#setClass-dynamic' target='main' title='setClass'> #setClass </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/dom.html#setClassOnMousemove-static' target='main' title='setClassOnMousemove'> .setClassOnMousemove </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/DateTime.html#setClock-dynamic' target='main' title='setClock'> #setClock </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/ListView.html#setColWidth-dynamic' target='main' title='setColWidth'> #setColWidth </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#setColspan-dynamic' target='main' title='setColspan'> #setColspan </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#setColspan-dynamic' target='main' title='setColspan'> #setColspan </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/ListViewRow.html#setColumn-dynamic' target='main' title='setColumn'> #setColumn </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#setColumnIdx-dynamic' target='main' title='setColumnIdx'> #setColumnIdx </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/Label.html#setContent-dynamic' target='main' title='setContent'> #setContent </a> <small> (CUI.Label) </small> </li> <li> <a href='class/CUI/Panel.html#setContent-dynamic' target='main' title='setContent'> #setContent </a> <small> (CUI.Panel) </small> </li> <li> <a href='class/CUI/OutputContent.html#setContent-dynamic' target='main' title='setContent'> #setContent </a> <small> (CUI.OutputContent) </small> </li> <li> <a href='class/CUI/Modal.html#setContent-dynamic' target='main' title='setContent'> #setContent </a> <small> (CUI.Modal) </small> </li> <li> <a href='class/CUI/Tab.html#setContent-dynamic' target='main' title='setContent'> #setContent </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/Block.html#setContent-dynamic' target='main' title='setContent'> #setContent </a> <small> (CUI.Block) </small> </li> <li> <a href='class/CUI/Input.html#setContentSize-dynamic' target='main' title='setContentSize'> #setContentSize </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Event.html#setCurrentTarget-dynamic' target='main' title='setCurrentTarget'> #setCurrentTarget </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/DateTime.html#setCursor-dynamic' target='main' title='setCursor'> #setCursor </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/MultiInput.html#setData-dynamic' target='main' title='setData'> #setData </a> <small> (CUI.MultiInput) </small> </li> <li> <a href='class/CUI/SimpleForm.html#setData-dynamic' target='main' title='setData'> #setData </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/Select.html#setData-dynamic' target='main' title='setData'> #setData </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/FormModal.html#setData-dynamic' target='main' title='setData'> #setData </a> <small> (CUI.FormModal) </small> </li> <li> <a href='class/CUI/Options.html#setData-dynamic' target='main' title='setData'> #setData </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/ObjectDumperNode.html#setData-dynamic' target='main' title='setData'> #setData </a> <small> (CUI.ObjectDumperNode) </small> </li> <li> <a href='class/CUI/DataField.html#setData-dynamic' target='main' title='setData'> #setData </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/MultiInput.html#setDataOnInputs-dynamic' target='main' title='setDataOnInputs'> #setDataOnInputs </a> <small> (CUI.MultiInput) </small> </li> <li> <a href='class/CUI/DataField.html#setDataOnOthers-dynamic' target='main' title='setDataOnOthers'> #setDataOnOthers </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/FormPopover.html#setDataOnOthers-dynamic' target='main' title='setDataOnOthers'> #setDataOnOthers </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/DateTime.html#setDigiClock-dynamic' target='main' title='setDigiClock'> #setDigiClock </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/dom.html#setDimension-static' target='main' title='setDimension'> .setDimension </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#setDimensions-static' target='main' title='setDimensions'> .setDimensions </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/FileUpload.html#setDropClassByEvent-static' target='main' title='setDropClassByEvent'> .setDropClassByEvent </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/Tooltip.html#setElement-dynamic' target='main' title='setElement'> #setElement </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/ListViewColumnRightFill.html#setElement-dynamic' target='main' title='setElement'> #setElement </a> <small> (CUI.ListViewColumnRightFill) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#setElement-dynamic' target='main' title='setElement'> #setElement </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/ListViewColumnRowMoveHandle.html#setElement-dynamic' target='main' title='setElement'> #setElement </a> <small> (CUI.ListViewColumnRowMoveHandle) </small> </li> <li> <a href='class/CUI/ListViewHeaderColumn.html#setElement-dynamic' target='main' title='setElement'> #setElement </a> <small> (CUI.ListViewHeaderColumn) </small> </li> <li> <a href='class/CUI/Movable.html#setElementCss-dynamic' target='main' title='setElementCss'> #setElementCss </a> <small> (CUI.Movable) </small> </li> <li> <a href='class/CUI/Button.html#setEnabled-dynamic' target='main' title='setEnabled'> #setEnabled </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#setFather-dynamic' target='main' title='setFather'> #setFather </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Tabs.html#setFooterLeft-dynamic' target='main' title='setFooterLeft'> #setFooterLeft </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/Tabs.html#setFooterRight-dynamic' target='main' title='setFooterRight'> #setFooterRight </a> <small> (CUI.Tabs) </small> </li> <li> <a href='class/CUI/DataField.html#setForm-dynamic' target='main' title='setForm'> #setForm </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DataField.html#setFormDepth-dynamic' target='main' title='setFormDepth'> #setFormDepth </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Button.html#setGroup-dynamic' target='main' title='setGroup'> #setGroup </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Block.html#setHeader-dynamic' target='main' title='setHeader'> #setHeader </a> <small> (CUI.Block) </small> </li> <li> <a href='class/CUI/ButtonHref.html#setHref-dynamic' target='main' title='setHref'> #setHref </a> <small> (CUI.ButtonHref) </small> </li> <li> <a href='class/CUI/Button.html#setIcon-dynamic' target='main' title='setIcon'> #setIcon </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Block.html#setIcon-dynamic' target='main' title='setIcon'> #setIcon </a> <small> (CUI.Block) </small> </li> <li> <a href='class/CUI/Label.html#setIcon-dynamic' target='main' title='setIcon'> #setIcon </a> <small> (CUI.Label) </small> </li> <li> <a href='class/CUI/Button.html#setIconRight-dynamic' target='main' title='setIconRight'> #setIconRight </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/ListView.html#setInactive-dynamic' target='main' title='setInactive'> #setInactive </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/DateTime.html#setInputFormat-dynamic' target='main' title='setInputFormat'> #setInputFormat </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/DateTime.html#setInputFromMoment-dynamic' target='main' title='setInputFromMoment'> #setInputFromMoment </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/Input.html#setInputHint-dynamic' target='main' title='setInputHint'> #setInputHint </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/MultiInput.html#setInputVisibility-dynamic' target='main' title='setInputVisibility'> #setInputVisibility </a> <small> (CUI.MultiInput) </small> </li> <li> <a href='class/CUI.html#setInterval-static' target='main' title='setInterval'> .setInterval </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/Input.html#setInvalidHint-dynamic' target='main' title='setInvalidHint'> #setInvalidHint </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Menu.html#setItemList-dynamic' target='main' title='setItemList'> #setItemList </a> <small> (CUI.Menu) </small> </li> <li> <a href='class/CUI/MultiInputControl.html#setKeys-dynamic' target='main' title='setKeys'> #setKeys </a> <small> (CUI.MultiInputControl) </small> </li> <li> <a href='class/CUI/ListViewRow.html#setListView-dynamic' target='main' title='setListView'> #setListView </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI.html#setLocalStorage-static' target='main' title='setLocalStorage'> .setLocalStorage </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/DateTime.html#setLocale-static' target='main' title='setLocale'> .setLocale </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/NumberInput.html#setMax-dynamic' target='main' title='setMax'> #setMax </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/NumberInput.html#setMin-dynamic' target='main' title='setMin'> #setMin </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/DateTime.html#setMomentFromInput-dynamic' target='main' title='setMomentFromInput'> #setMomentFromInput </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/Event.html#setNativeEvent-dynamic' target='main' title='setNativeEvent'> #setNativeEvent </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/MouseEvent.html#setNativeEvent-dynamic' target='main' title='setNativeEvent'> #setNativeEvent </a> <small> (CUI.MouseEvent) </small> </li> <li> <a href='class/CUI/TouchEvent.html#setNativeEvent-dynamic' target='main' title='setNativeEvent'> #setNativeEvent </a> <small> (CUI.TouchEvent) </small> </li> <li> <a href='class/CUI/LayerPane.html#setPane-dynamic' target='main' title='setPane'> #setPane </a> <small> (CUI.LayerPane) </small> </li> <li> <a href='class/CUI/ConfirmationDialog.html#setPane-dynamic' target='main' title='setPane'> #setPane </a> <small> (CUI.ConfirmationDialog) </small> </li> <li> <a href='class/CUI/Input.html#setPlaceholder-dynamic' target='main' title='setPlaceholder'> #setPlaceholder </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/MultiInputControl.html#setPreferredKey-dynamic' target='main' title='setPreferredKey'> #setPreferredKey </a> <small> (CUI.MultiInputControl) </small> </li> <li> <a href='class/CUI/DateTime.html#setPrintClock-dynamic' target='main' title='setPrintClock'> #setPrintClock </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/ListViewColumn.html#setRow-dynamic' target='main' title='setRow'> #setRow </a> <small> (CUI.ListViewColumn) </small> </li> <li> <a href='class/CUI/ListViewRow.html#setRowIdx-dynamic' target='main' title='setRowIdx'> #setRowIdx </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/ListViewRow.html#setSelectable-dynamic' target='main' title='setSelectable'> #setSelectable </a> <small> (CUI.ListViewRow) </small> </li> <li> <a href='class/CUI/GoogleMap.html#setSelectedMarkerPosition-dynamic' target='main' title='setSelectedMarkerPosition'> #setSelectedMarkerPosition </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/LeafletMap.html#setSelectedMarkerPosition-dynamic' target='main' title='setSelectedMarkerPosition'> #setSelectedMarkerPosition </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/Map.html#setSelectedMarkerPosition-dynamic' target='main' title='setSelectedMarkerPosition'> #setSelectedMarkerPosition </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#setSelectedNode-dynamic' target='main' title='setSelectedNode'> #setSelectedNode </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Input.html#setSelection-dynamic' target='main' title='setSelection'> #setSelection </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI.html#setSessionStorage-static' target='main' title='setSessionStorage'> .setSessionStorage </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/Button.html#setSize-dynamic' target='main' title='setSize'> #setSize </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Input.html#setSpellcheck-dynamic' target='main' title='setSpellcheck'> #setSpellcheck </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/ProgressMeter.html#setState-dynamic' target='main' title='setState'> #setState </a> <small> (CUI.ProgressMeter) </small> </li> <li> <a href='class/CUI/InputBlock.html#setString-dynamic' target='main' title='setString'> #setString </a> <small> (CUI.InputBlock) </small> </li> <li> <a href='class/CUI/dom.html#setStyle-static' target='main' title='setStyle'> .setStyle </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#setStyleOne-static' target='main' title='setStyleOne'> .setStyleOne </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#setStylePx-static' target='main' title='setStylePx'> .setStylePx </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Event.html#setTarget-dynamic' target='main' title='setTarget'> #setTarget </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Output.html#setText-dynamic' target='main' title='setText'> #setText </a> <small> (CUI.Output) </small> </li> <li> <a href='class/CUI/ConfirmationDialog.html#setText-dynamic' target='main' title='setText'> #setText </a> <small> (CUI.ConfirmationDialog) </small> </li> <li> <a href='class/CUI/Button.html#setText-dynamic' target='main' title='setText'> #setText </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Block.html#setText-dynamic' target='main' title='setText'> #setText </a> <small> (CUI.Block) </small> </li> <li> <a href='class/CUI/Label.html#setText-dynamic' target='main' title='setText'> #setText </a> <small> (CUI.Label) </small> </li> <li> <a href='class/CUI/Label.html#setTextMaxChars-dynamic' target='main' title='setTextMaxChars'> #setTextMaxChars </a> <small> (CUI.Label) </small> </li> <li> <a href='class/CUI/Button.html#setTextMaxChars-dynamic' target='main' title='setTextMaxChars'> #setTextMaxChars </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI.html#setTimeout-static' target='main' title='setTimeout'> .setTimeout </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/DateTime.html#setTimezone-dynamic' target='main' title='setTimezone'> #setTimezone </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#setTree-dynamic' target='main' title='setTree'> #setTree </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/FileUpload.html#setUrl-dynamic' target='main' title='setUrl'> #setUrl </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/Input.html#setValidHint-dynamic' target='main' title='setValidHint'> #setValidHint </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/NumberInput.html#setValue-dynamic' target='main' title='setValue'> #setValue </a> <small> (CUI.NumberInput) </small> </li> <li> <a href='class/CUI/Slider.html#setValue-dynamic' target='main' title='setValue'> #setValue </a> <small> (CUI.Slider) </small> </li> <li> <a href='class/CUI/Options.html#setValue-dynamic' target='main' title='setValue'> #setValue </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/Input.html#setValue-dynamic' target='main' title='setValue'> #setValue </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/DataField.html#setValue-dynamic' target='main' title='setValue'> #setValue </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/Layer.html#setVisible-dynamic' target='main' title='setVisible'> #setVisible </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/GoogleMap.html#setZoom-dynamic' target='main' title='setZoom'> #setZoom </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/LeafletMap.html#setZoom-dynamic' target='main' title='setZoom'> #setZoom </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/Map.html#setZoom-dynamic' target='main' title='setZoom'> #setZoom </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Event.html#shiftKey-dynamic' target='main' title='shiftKey'> #shiftKey </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/WaitBlock.html#show-dynamic' target='main' title='show'> #show </a> <small> (CUI.WaitBlock) </small> </li> <li> <a href='class/CUI/DOMElement.html#show-dynamic' target='main' title='show'> #show </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/Tab.html#show-dynamic' target='main' title='show'> #show </a> <small> (CUI.Tab) </small> </li> <li> <a href='class/CUI/Layer.html#show-dynamic' target='main' title='show'> #show </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/Tooltip.html#show-dynamic' target='main' title='show'> #show </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/DataField.html#show-dynamic' target='main' title='show'> #show </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/FlexHandle.html#show-dynamic' target='main' title='show'> #show </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Icon.html#show-dynamic' target='main' title='show'> #show </a> <small> (CUI.Icon) </small> </li> <li> <a href='class/CUI/Menu.html#show-dynamic' target='main' title='show'> #show </a> <small> (CUI.Menu) </small> </li> <li> <a href='class/CUI/Template.html#show-dynamic' target='main' title='show'> #show </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/Button.html#show-dynamic' target='main' title='show'> #show </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/ConfirmationChoice.html#show-dynamic' target='main' title='show'> #show </a> <small> (CUI.ConfirmationChoice) </small> </li> <li> <a href='class/CUI/Input.html#showCursor-dynamic' target='main' title='showCursor'> #showCursor </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/dom.html#showElement-static' target='main' title='showElement'> .showElement </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/ListViewRowMove.html#showHorizontalTargetMarker-dynamic' target='main' title='showHorizontalTargetMarker'> #showHorizontalTargetMarker </a> <small> (CUI.ListViewRowMove) </small> </li> <li> <a href='class/CUI/ListViewTreeRowMove.html#showHorizontalTargetMarker-dynamic' target='main' title='showHorizontalTargetMarker'> #showHorizontalTargetMarker </a> <small> (CUI.ListViewTreeRowMove) </small> </li> <li> <a href='class/CUI/ListViewRowMove.html#showHorizontalTargetMarkerSetTarget-dynamic' target='main' title='showHorizontalTargetMarkerSetTarget'> #showHorizontalTargetMarkerSetTarget </a> <small> (CUI.ListViewRowMove) </small> </li> <li> <a href='class/CUI/LeafletMap.html#showMarkers-dynamic' target='main' title='showMarkers'> #showMarkers </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/GoogleMap.html#showMarkers-dynamic' target='main' title='showMarkers'> #showMarkers </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/Map.html#showMarkers-dynamic' target='main' title='showMarkers'> #showMarkers </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Password.html#showPassword-dynamic' target='main' title='showPassword'> #showPassword </a> <small> (CUI.Password) </small> </li> <li> <a href='class/CUI/DocumentBrowser.html#showSearch-dynamic' target='main' title='showSearch'> #showSearch </a> <small> (CUI.DocumentBrowser) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#showSpinner-dynamic' target='main' title='showSpinner'> #showSpinner </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/Tooltip.html#showTimeout-dynamic' target='main' title='showTimeout'> #showTimeout </a> <small> (CUI.Tooltip) </small> </li> <li> <a href='class/CUI/Layer.html#showTimeout-dynamic' target='main' title='showTimeout'> #showTimeout </a> <small> (CUI.Layer) </small> </li> <li> <a href='class/CUI/MultiInputControl.html#showUserControl-dynamic' target='main' title='showUserControl'> #showUserControl </a> <small> (CUI.MultiInputControl) </small> </li> <li> <a href='class/CUI/ListView.html#showWaitBlock-dynamic' target='main' title='showWaitBlock'> #showWaitBlock </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#sort-dynamic' target='main' title='sort'> #sort </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/dom.html#source-static' target='main' title='source'> .source </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#space-static' target='main' title='space'> .space </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#span-static' target='main' title='span'> .span </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/DataField.html#start-dynamic' target='main' title='start'> #start </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI.html#start-static' target='main' title='start'> .start </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/XHR.html#start-dynamic' target='main' title='start'> #start </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/Pane.html#startFillScreen-dynamic' target='main' title='startFillScreen'> #startFillScreen </a> <small> (CUI.Pane) </small> </li> <li> <a href='class/CUI/ListView.html#startLayout-dynamic' target='main' title='startLayout'> #startLayout </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Button.html#startSpinner-dynamic' target='main' title='startSpinner'> #startSpinner </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI.html#startWebdriverTest-static' target='main' title='startWebdriverTest'> .startWebdriverTest </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/Sortable.html#start_drag-dynamic' target='main' title='start_drag'> #start_drag </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/ListViewColResize.html#start_drag-dynamic' target='main' title='start_drag'> #start_drag </a> <small> (CUI.ListViewColResize) </small> </li> <li> <a href='class/CUI/Lasso.html#start_drag-dynamic' target='main' title='start_drag'> #start_drag </a> <small> (CUI.Lasso) </small> </li> <li> <a href='class/CUI/Draggable.html#start_drag-dynamic' target='main' title='start_drag'> #start_drag </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/Resizable.html#start_drag-dynamic' target='main' title='start_drag'> #start_drag </a> <small> (CUI.Resizable) </small> </li> <li> <a href='class/CUI/Movable.html#start_drag-dynamic' target='main' title='start_drag'> #start_drag </a> <small> (CUI.Movable) </small> </li> <li> <a href='class/CUI/Dragscroll.html#start_drag-dynamic' target='main' title='start_drag'> #start_drag </a> <small> (CUI.Dragscroll) </small> </li> <li> <a href='class/CUI/Promise.html#state-dynamic' target='main' title='state'> #state </a> <small> (CUI.Promise) </small> </li> <li> <a href='class/CUI/Deferred.html#state-dynamic' target='main' title='state'> #state </a> <small> (CUI.Deferred) </small> </li> <li> <a href='class/CUI/XHR.html#status-dynamic' target='main' title='status'> #status </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/XHR.html#statusText-dynamic' target='main' title='statusText'> #statusText </a> <small> (CUI.XHR) </small> </li> <li> <a href='class/CUI/Event.html#stop-dynamic' target='main' title='stop'> #stop </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/Event.html#stopImmediatePropagation-dynamic' target='main' title='stopImmediatePropagation'> #stopImmediatePropagation </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/ListView.html#stopLayout-dynamic' target='main' title='stopLayout'> #stopLayout </a> <small> (CUI.ListView) </small> </li> <li> <a href='class/CUI/Event.html#stopPropagation-dynamic' target='main' title='stopPropagation'> #stopPropagation </a> <small> (CUI.Event) </small> </li> <li> <a href='class/CUI/FileUpload.html#stopQueuing-dynamic' target='main' title='stopQueuing'> #stopQueuing </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/Button.html#stopSpinner-dynamic' target='main' title='stopSpinner'> #stopSpinner </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/Draggable.html#stop_drag-dynamic' target='main' title='stop_drag'> #stop_drag </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/ListViewColResize.html#stop_drag-dynamic' target='main' title='stop_drag'> #stop_drag </a> <small> (CUI.ListViewColResize) </small> </li> <li> <a href='class/CUI/Lasso.html#stop_drag-dynamic' target='main' title='stop_drag'> #stop_drag </a> <small> (CUI.Lasso) </small> </li> <li> <a href='class/CUI/Sortable.html#stop_drag-dynamic' target='main' title='stop_drag'> #stop_drag </a> <small> (CUI.Sortable) </small> </li> <li> <a href='class/CUI/FlexHandle.html#storeState-dynamic' target='main' title='storeState'> #storeState </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/Input.html#storeValue-dynamic' target='main' title='storeValue'> #storeValue </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/Select.html#storeValue-dynamic' target='main' title='storeValue'> #storeValue </a> <small> (CUI.Select) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#storeValue-dynamic' target='main' title='storeValue'> #storeValue </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI/DataField.html#storeValue-dynamic' target='main' title='storeValue'> #storeValue </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DateTime.html#storeValue-dynamic' target='main' title='storeValue'> #storeValue </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/Options.html#storeValue-dynamic' target='main' title='storeValue'> #storeValue </a> <small> (CUI.Options) </small> </li> <li> <a href='class/CUI/FlexHandle.html#stretch-dynamic' target='main' title='stretch'> #stretch </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI.html#stringMapReplace-static' target='main' title='stringMapReplace'> .stringMapReplace </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/util.html#stringMapReplace-static' target='main' title='stringMapReplace'> .stringMapReplace </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/Draggable.html#supportTouch-dynamic' target='main' title='supportTouch'> #supportTouch </a> <small> (CUI.Draggable) </small> </li> <li> <a href='class/CUI/Dragscroll.html#supportTouch-dynamic' target='main' title='supportTouch'> #supportTouch </a> <small> (CUI.Dragscroll) </small> </li> <li> <a href='class/CUI/dom.html#syncAnimatedClone-static' target='main' title='syncAnimatedClone'> .syncAnimatedClone </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Droppable.html#syncDropHelper-dynamic' target='main' title='syncDropHelper'> #syncDropHelper </a> <small> (CUI.Droppable) </small> </li> <li> <a href='class/CUI/Droppable.html#syncTargetHelper-dynamic' target='main' title='syncTargetHelper'> #syncTargetHelper </a> <small> (CUI.Droppable) </small> </li> <li> <a href='class/CUI/dom.html#table-static' target='main' title='table'> .table </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#table_one_row-static' target='main' title='table_one_row'> .table_one_row </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#td-static' target='main' title='td'> .td </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Test.html#test-dynamic' target='main' title='test'> #test </a> <small> (CUI.Test) </small> </li> <li> <a href='class/CUI/Template.html#text-dynamic' target='main' title='text'> #text </a> <small> (CUI.Template) </small> </li> <li> <a href='class/CUI/dom.html#text-static' target='main' title='text'> .text </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/DOMElement.html#text-dynamic' target='main' title='text'> #text </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/dom.html#textEmpty-static' target='main' title='textEmpty'> .textEmpty </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#th-static' target='main' title='th'> .th </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/util.html#toCamel-static' target='main' title='toCamel'> .toCamel </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/util.html#toClass-static' target='main' title='toClass'> .toClass </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/util.html#toDash-static' target='main' title='toDash'> .toDash </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/util.html#toDot-static' target='main' title='toDot'> .toDot </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/IconMarker.html#toHtml-dynamic' target='main' title='toHtml'> #toHtml </a> <small> (CUI.IconMarker) </small> </li> <li> <a href='class/CUI/util.html#toHtml-static' target='main' title='toHtml'> .toHtml </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/DateTime.html#toMoment-static' target='main' title='toMoment'> .toMoment </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/InputBlock.html#toString-dynamic' target='main' title='toString'> #toString </a> <small> (CUI.InputBlock) </small> </li> <li> <a href='class/CUI/DataField.html#toString-dynamic' target='main' title='toString'> #toString </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/CSVData.html#toText-dynamic' target='main' title='toText'> #toText </a> <small> (CUI.CSVData) </small> </li> <li> <a href='class/CUI/Button.html#toggle-dynamic' target='main' title='toggle'> #toggle </a> <small> (CUI.Button) </small> </li> <li> <a href='class/CUI/dom.html#toggleClass-static' target='main' title='toggleClass'> .toggleClass </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Pane.html#toggleFillScreen-dynamic' target='main' title='toggleFillScreen'> #toggleFillScreen </a> <small> (CUI.Pane) </small> </li> <li> <a href='class/CUI/ListViewTree.html#toggleNode-dynamic' target='main' title='toggleNode'> #toggleNode </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/dom.html#tr-static' target='main' title='tr'> .tr </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#tr_one_row-static' target='main' title='tr_one_row'> .tr_one_row </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Events.html#trigger-static' target='main' title='trigger'> .trigger </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/FormPopover.html#triggerDataChanged-dynamic' target='main' title='triggerDataChanged'> #triggerDataChanged </a> <small> (CUI.FormPopover) </small> </li> <li> <a href='class/CUI/DataField.html#triggerDataChanged-dynamic' target='main' title='triggerDataChanged'> #triggerDataChanged </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/ListViewTree.html#triggerNodeDeselect-dynamic' target='main' title='triggerNodeDeselect'> #triggerNodeDeselect </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/ListViewTree.html#triggerNodeSelect-dynamic' target='main' title='triggerNodeSelect'> #triggerNodeSelect </a> <small> (CUI.ListViewTree) </small> </li> <li> <a href='class/CUI/dom.html#ul-static' target='main' title='ul'> .ul </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/SimpleForm.html#undo-dynamic' target='main' title='undo'> #undo </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/DataField.html#undo-dynamic' target='main' title='undo'> #undo </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DOMElement.html#unregisterDOMElement-dynamic' target='main' title='unregisterDOMElement'> #unregisterDOMElement </a> <small> (CUI.DOMElement) </small> </li> <li> <a href='class/CUI/Events.html#unregisterListener-static' target='main' title='unregisterListener'> .unregisterListener </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/SimpleForm.html#unregisterTableListeners-dynamic' target='main' title='unregisterTableListeners'> #unregisterTableListeners </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/Layout.html#unsetAbsolute-dynamic' target='main' title='unsetAbsolute'> #unsetAbsolute </a> <small> (CUI.Layout) </small> </li> <li> <a href='class/CUI/FlexHandle.html#unstretch-dynamic' target='main' title='unstretch'> #unstretch </a> <small> (CUI.FlexHandle) </small> </li> <li> <a href='class/CUI/ListViewTreeNode.html#update-dynamic' target='main' title='update'> #update </a> <small> (CUI.ListViewTreeNode) </small> </li> <li> <a href='class/CUI/DataTable.html#updateButtons-dynamic' target='main' title='updateButtons'> #updateButtons </a> <small> (CUI.DataTable) </small> </li> <li> <a href='class/CUI/DateTime.html#updateCalendar-dynamic' target='main' title='updateCalendar'> #updateCalendar </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/DataField.html#updateData-dynamic' target='main' title='updateData'> #updateData </a> <small> (CUI.DataField) </small> </li> <li> <a href='class/CUI/DateTime.html#updateDateTimePicker-dynamic' target='main' title='updateDateTimePicker'> #updateDateTimePicker </a> <small> (CUI.DateTime) </small> </li> <li> <a href='class/CUI/SimpleForm.html#updateHint-dynamic' target='main' title='updateHint'> #updateHint </a> <small> (CUI.SimpleForm) </small> </li> <li> <a href='class/CUI/Input.html#updateInputState-dynamic' target='main' title='updateInputState'> #updateInputState </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/MarkdownInput.html#updatePreview-dynamic' target='main' title='updatePreview'> #updatePreview </a> <small> (CUI.MarkdownInput) </small> </li> <li> <a href='class/CUI/Map.html#updateSelectedMarkerOptions-dynamic' target='main' title='updateSelectedMarkerOptions'> #updateSelectedMarkerOptions </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Input.html#updateSelection-dynamic' target='main' title='updateSelection'> #updateSelection </a> <small> (CUI.Input) </small> </li> <li> <a href='class/CUI/ConfirmationDialog.html#updateText-dynamic' target='main' title='updateText'> #updateText </a> <small> (CUI.ConfirmationDialog) </small> </li> <li> <a href='class/CUI/FileUploadFile.html#upload-dynamic' target='main' title='upload'> #upload </a> <small> (CUI.FileUploadFile) </small> </li> <li> <a href='class/CUI/FileReaderFile.html#upload-dynamic' target='main' title='upload'> #upload </a> <small> (CUI.FileReaderFile) </small> </li> <li> <a href='class/CUI/FileUpload.html#uploadFile-dynamic' target='main' title='uploadFile'> #uploadFile </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI/FileReader.html#uploadFile-dynamic' target='main' title='uploadFile'> #uploadFile </a> <small> (CUI.FileReader) </small> </li> <li> <a href='class/CUI/FileUpload.html#uploadNextFiles-dynamic' target='main' title='uploadNextFiles'> #uploadNextFiles </a> <small> (CUI.FileUpload) </small> </li> <li> <a href='class/CUI.html#utf8ArrayBufferToString-static' target='main' title='utf8ArrayBufferToString'> .utf8ArrayBufferToString </a> <small> (CUI) </small> </li> <li> <a href='class/CUI/util.html#utoa-static' target='main' title='utoa'> .utoa </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/dom.html#video-static' target='main' title='video'> .video </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/Events.html#wait-static' target='main' title='wait'> .wait </a> <small> (CUI.Events) </small> </li> <li> <a href='class/CUI/dom.html#waitForDOMInsert-static' target='main' title='waitForDOMInsert'> .waitForDOMInsert </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/dom.html#waitForDOMRemove-static' target='main' title='waitForDOMRemove'> .waitForDOMRemove </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/WheelEvent.html#wheelDeltaY-dynamic' target='main' title='wheelDeltaY'> #wheelDeltaY </a> <small> (CUI.WheelEvent) </small> </li> <li> <a href='class/CUI/dom.html#width-static' target='main' title='width'> .width </a> <small> (CUI.dom) </small> </li> <li> <a href='class/CUI/util.html#xor-static' target='main' title='xor'> .xor </a> <small> (CUI.util) </small> </li> <li> <a href='class/CUI/LeafletMap.html#zoomIn-dynamic' target='main' title='zoomIn'> #zoomIn </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/GoogleMap.html#zoomIn-dynamic' target='main' title='zoomIn'> #zoomIn </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/Map.html#zoomIn-dynamic' target='main' title='zoomIn'> #zoomIn </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/Map.html#zoomOut-dynamic' target='main' title='zoomOut'> #zoomOut </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/LeafletMap.html#zoomOut-dynamic' target='main' title='zoomOut'> #zoomOut </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/GoogleMap.html#zoomOut-dynamic' target='main' title='zoomOut'> #zoomOut </a> <small> (CUI.GoogleMap) </small> </li> <li> <a href='class/CUI/Map.html#zoomToFitAllMarkers-dynamic' target='main' title='zoomToFitAllMarkers'> #zoomToFitAllMarkers </a> <small> (CUI.Map) </small> </li> <li> <a href='class/CUI/LeafletMap.html#zoomToFitAllMarkers-dynamic' target='main' title='zoomToFitAllMarkers'> #zoomToFitAllMarkers </a> <small> (CUI.LeafletMap) </small> </li> <li> <a href='class/CUI/GoogleMap.html#zoomToFitAllMarkers-dynamic' target='main' title='zoomToFitAllMarkers'> #zoomToFitAllMarkers </a> <small> (CUI.GoogleMap) </small> </li> </ul> </div> </body> </html>
programmfabrik/coffeescript-ui
doc/method_list.html
HTML
mit
451,802
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=emulateIE7" /> <title>Coverage for remixvr/user/models.py: 100%</title> <link rel="stylesheet" href="style.css" type="text/css"> <script type="text/javascript" src="jquery.min.js"></script> <script type="text/javascript" src="jquery.hotkeys.js"></script> <script type="text/javascript" src="jquery.isonscreen.js"></script> <script type="text/javascript" src="coverage_html.js"></script> <script type="text/javascript"> jQuery(document).ready(coverage.pyfile_ready); </script> </head> <body class="pyfile"> <div id="header"> <div class="content"> <h1>Coverage for <b>remixvr/user/models.py</b> : <span class="pc_cov">100%</span> </h1> <img id="keyboard_icon" src="keybd_closed.png" alt="Show keyboard shortcuts" /> <h2 class="stats"> 27 statements &nbsp; <span class="run hide_run shortkey_r button_toggle_run">27 run</span> <span class="mis shortkey_m button_toggle_mis">0 missing</span> <span class="exc shortkey_x button_toggle_exc">0 excluded</span> <span class="par run hide_run shortkey_p button_toggle_par">0 partial</span> </h2> </div> </div> <div class="help_panel"> <img id="panel_icon" src="keybd_open.png" alt="Hide keyboard shortcuts" /> <p class="legend">Hot-keys on this page</p> <div> <p class="keyhelp"> <span class="key">r</span> <span class="key">m</span> <span class="key">x</span> <span class="key">p</span> &nbsp; toggle line displays </p> <p class="keyhelp"> <span class="key">j</span> <span class="key">k</span> &nbsp; next/prev highlighted chunk </p> <p class="keyhelp"> <span class="key">0</span> &nbsp; (zero) top of page </p> <p class="keyhelp"> <span class="key">1</span> &nbsp; (one) first highlighted chunk </p> </div> </div> <div id="source"> <table> <tr> <td class="linenos"> <p id="n1" class="pln"><a href="#n1">1</a></p> <p id="n2" class="stm run hide_run"><a href="#n2">2</a></p> <p id="n3" class="stm run hide_run"><a href="#n3">3</a></p> <p id="n4" class="pln"><a href="#n4">4</a></p> <p id="n5" class="stm run hide_run"><a href="#n5">5</a></p> <p id="n6" class="pln"><a href="#n6">6</a></p> <p id="n7" class="stm run hide_run"><a href="#n7">7</a></p> <p id="n8" class="stm run hide_run"><a href="#n8">8</a></p> <p id="n9" class="pln"><a href="#n9">9</a></p> <p id="n10" class="pln"><a href="#n10">10</a></p> <p id="n11" class="stm run hide_run"><a href="#n11">11</a></p> <p id="n12" class="pln"><a href="#n12">12</a></p> <p id="n13" class="stm run hide_run"><a href="#n13">13</a></p> <p id="n14" class="stm run hide_run"><a href="#n14">14</a></p> <p id="n15" class="stm run hide_run"><a href="#n15">15</a></p> <p id="n16" class="stm run hide_run"><a href="#n16">16</a></p> <p id="n17" class="stm run hide_run"><a href="#n17">17</a></p> <p id="n18" class="stm run hide_run"><a href="#n18">18</a></p> <p id="n19" class="stm run hide_run"><a href="#n19">19</a></p> <p id="n20" class="stm run hide_run"><a href="#n20">20</a></p> <p id="n21" class="pln"><a href="#n21">21</a></p> <p id="n22" class="stm run hide_run"><a href="#n22">22</a></p> <p id="n23" class="pln"><a href="#n23">23</a></p> <p id="n24" class="stm run hide_run"><a href="#n24">24</a></p> <p id="n25" class="stm run hide_run"><a href="#n25">25</a></p> <p id="n26" class="stm run hide_run"><a href="#n26">26</a></p> <p id="n27" class="pln"><a href="#n27">27</a></p> <p id="n28" class="stm run hide_run"><a href="#n28">28</a></p> <p id="n29" class="pln"><a href="#n29">29</a></p> <p id="n30" class="stm run hide_run"><a href="#n30">30</a></p> <p id="n31" class="pln"><a href="#n31">31</a></p> <p id="n32" class="stm run hide_run"><a href="#n32">32</a></p> <p id="n33" class="pln"><a href="#n33">33</a></p> <p id="n34" class="stm run hide_run"><a href="#n34">34</a></p> <p id="n35" class="pln"><a href="#n35">35</a></p> <p id="n36" class="stm run hide_run"><a href="#n36">36</a></p> <p id="n37" class="pln"><a href="#n37">37</a></p> <p id="n38" class="stm run hide_run"><a href="#n38">38</a></p> <p id="n39" class="pln"><a href="#n39">39</a></p> <p id="n40" class="stm run hide_run"><a href="#n40">40</a></p> <p id="n41" class="pln"><a href="#n41">41</a></p> <p id="n42" class="stm run hide_run"><a href="#n42">42</a></p> <p id="n43" class="pln"><a href="#n43">43</a></p> <p id="n44" class="stm run hide_run"><a href="#n44">44</a></p> </td> <td class="text"> <p id="t1" class="pln"><span class="com"># -*- coding: utf-8 -*-</span><span class="strut">&nbsp;</span></p> <p id="t2" class="stm run hide_run"><span class="str">"""User models."""</span><span class="strut">&nbsp;</span></p> <p id="t3" class="stm run hide_run"><span class="key">import</span> <span class="nam">datetime</span> <span class="key">as</span> <span class="nam">dt</span><span class="strut">&nbsp;</span></p> <p id="t4" class="pln"><span class="strut">&nbsp;</span></p> <p id="t5" class="stm run hide_run"><span class="key">from</span> <span class="nam">flask_jwt</span> <span class="key">import</span> <span class="nam">_default_jwt_encode_handler</span><span class="strut">&nbsp;</span></p> <p id="t6" class="pln"><span class="strut">&nbsp;</span></p> <p id="t7" class="stm run hide_run"><span class="key">from</span> <span class="nam">remixvr</span><span class="op">.</span><span class="nam">database</span> <span class="key">import</span> <span class="nam">Column</span><span class="op">,</span> <span class="nam">Model</span><span class="op">,</span> <span class="nam">SurrogatePK</span><span class="op">,</span> <span class="nam">db</span><span class="strut">&nbsp;</span></p> <p id="t8" class="stm run hide_run"><span class="key">from</span> <span class="nam">remixvr</span><span class="op">.</span><span class="nam">extensions</span> <span class="key">import</span> <span class="nam">bcrypt</span><span class="strut">&nbsp;</span></p> <p id="t9" class="pln"><span class="strut">&nbsp;</span></p> <p id="t10" class="pln"><span class="strut">&nbsp;</span></p> <p id="t11" class="stm run hide_run"><span class="key">class</span> <span class="nam">User</span><span class="op">(</span><span class="nam">SurrogatePK</span><span class="op">,</span> <span class="nam">Model</span><span class="op">)</span><span class="op">:</span><span class="strut">&nbsp;</span></p> <p id="t12" class="pln"><span class="strut">&nbsp;</span></p> <p id="t13" class="stm run hide_run"> <span class="nam">__tablename__</span> <span class="op">=</span> <span class="str">'users'</span><span class="strut">&nbsp;</span></p> <p id="t14" class="stm run hide_run"> <span class="nam">username</span> <span class="op">=</span> <span class="nam">Column</span><span class="op">(</span><span class="nam">db</span><span class="op">.</span><span class="nam">String</span><span class="op">(</span><span class="num">80</span><span class="op">)</span><span class="op">,</span> <span class="nam">unique</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">nullable</span><span class="op">=</span><span class="key">False</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t15" class="stm run hide_run"> <span class="nam">email</span> <span class="op">=</span> <span class="nam">Column</span><span class="op">(</span><span class="nam">db</span><span class="op">.</span><span class="nam">String</span><span class="op">(</span><span class="num">100</span><span class="op">)</span><span class="op">,</span> <span class="nam">unique</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">nullable</span><span class="op">=</span><span class="key">False</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t16" class="stm run hide_run"> <span class="nam">password</span> <span class="op">=</span> <span class="nam">Column</span><span class="op">(</span><span class="nam">db</span><span class="op">.</span><span class="nam">Binary</span><span class="op">(</span><span class="num">128</span><span class="op">)</span><span class="op">,</span> <span class="nam">nullable</span><span class="op">=</span><span class="key">True</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t17" class="stm run hide_run"> <span class="nam">created_at</span> <span class="op">=</span> <span class="nam">Column</span><span class="op">(</span><span class="nam">db</span><span class="op">.</span><span class="nam">DateTime</span><span class="op">,</span> <span class="nam">nullable</span><span class="op">=</span><span class="key">False</span><span class="op">,</span> <span class="nam">default</span><span class="op">=</span><span class="nam">dt</span><span class="op">.</span><span class="nam">datetime</span><span class="op">.</span><span class="nam">utcnow</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t18" class="stm run hide_run"> <span class="nam">updated_at</span> <span class="op">=</span> <span class="nam">Column</span><span class="op">(</span><span class="nam">db</span><span class="op">.</span><span class="nam">DateTime</span><span class="op">,</span> <span class="nam">nullable</span><span class="op">=</span><span class="key">False</span><span class="op">,</span> <span class="nam">default</span><span class="op">=</span><span class="nam">dt</span><span class="op">.</span><span class="nam">datetime</span><span class="op">.</span><span class="nam">utcnow</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t19" class="stm run hide_run"> <span class="nam">bio</span> <span class="op">=</span> <span class="nam">Column</span><span class="op">(</span><span class="nam">db</span><span class="op">.</span><span class="nam">String</span><span class="op">(</span><span class="num">300</span><span class="op">)</span><span class="op">,</span> <span class="nam">nullable</span><span class="op">=</span><span class="key">True</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t20" class="stm run hide_run"> <span class="nam">image</span> <span class="op">=</span> <span class="nam">Column</span><span class="op">(</span><span class="nam">db</span><span class="op">.</span><span class="nam">String</span><span class="op">(</span><span class="num">120</span><span class="op">)</span><span class="op">,</span> <span class="nam">nullable</span><span class="op">=</span><span class="key">True</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t21" class="pln"><span class="strut">&nbsp;</span></p> <p id="t22" class="stm run hide_run"> <span class="key">def</span> <span class="nam">__init__</span><span class="op">(</span><span class="nam">self</span><span class="op">,</span> <span class="nam">username</span><span class="op">,</span> <span class="nam">email</span><span class="op">,</span> <span class="nam">password</span><span class="op">=</span><span class="key">None</span><span class="op">,</span> <span class="op">**</span><span class="nam">kwargs</span><span class="op">)</span><span class="op">:</span><span class="strut">&nbsp;</span></p> <p id="t23" class="pln"> <span class="str">"""Create instance."""</span><span class="strut">&nbsp;</span></p> <p id="t24" class="stm run hide_run"> <span class="nam">db</span><span class="op">.</span><span class="nam">Model</span><span class="op">.</span><span class="nam">__init__</span><span class="op">(</span><span class="nam">self</span><span class="op">,</span> <span class="nam">username</span><span class="op">=</span><span class="nam">username</span><span class="op">,</span> <span class="nam">email</span><span class="op">=</span><span class="nam">email</span><span class="op">,</span> <span class="op">**</span><span class="nam">kwargs</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t25" class="stm run hide_run"> <span class="key">if</span> <span class="nam">password</span><span class="op">:</span><span class="strut">&nbsp;</span></p> <p id="t26" class="stm run hide_run"> <span class="nam">self</span><span class="op">.</span><span class="nam">set_password</span><span class="op">(</span><span class="nam">password</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t27" class="pln"> <span class="key">else</span><span class="op">:</span><span class="strut">&nbsp;</span></p> <p id="t28" class="stm run hide_run"> <span class="nam">self</span><span class="op">.</span><span class="nam">password</span> <span class="op">=</span> <span class="key">None</span><span class="strut">&nbsp;</span></p> <p id="t29" class="pln"><span class="strut">&nbsp;</span></p> <p id="t30" class="stm run hide_run"> <span class="key">def</span> <span class="nam">set_password</span><span class="op">(</span><span class="nam">self</span><span class="op">,</span> <span class="nam">password</span><span class="op">)</span><span class="op">:</span><span class="strut">&nbsp;</span></p> <p id="t31" class="pln"> <span class="str">"""Set password."""</span><span class="strut">&nbsp;</span></p> <p id="t32" class="stm run hide_run"> <span class="nam">self</span><span class="op">.</span><span class="nam">password</span> <span class="op">=</span> <span class="nam">bcrypt</span><span class="op">.</span><span class="nam">generate_password_hash</span><span class="op">(</span><span class="nam">password</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t33" class="pln"><span class="strut">&nbsp;</span></p> <p id="t34" class="stm run hide_run"> <span class="key">def</span> <span class="nam">check_password</span><span class="op">(</span><span class="nam">self</span><span class="op">,</span> <span class="nam">value</span><span class="op">)</span><span class="op">:</span><span class="strut">&nbsp;</span></p> <p id="t35" class="pln"> <span class="str">"""Check password."""</span><span class="strut">&nbsp;</span></p> <p id="t36" class="stm run hide_run"> <span class="key">return</span> <span class="nam">bcrypt</span><span class="op">.</span><span class="nam">check_password_hash</span><span class="op">(</span><span class="nam">self</span><span class="op">.</span><span class="nam">password</span><span class="op">,</span> <span class="nam">value</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t37" class="pln"><span class="strut">&nbsp;</span></p> <p id="t38" class="stm run hide_run"> <span class="op">@</span><span class="nam">property</span><span class="strut">&nbsp;</span></p> <p id="t39" class="pln"> <span class="key">def</span> <span class="nam">token</span><span class="op">(</span><span class="nam">self</span><span class="op">)</span><span class="op">:</span><span class="strut">&nbsp;</span></p> <p id="t40" class="stm run hide_run"> <span class="key">return</span> <span class="nam">_default_jwt_encode_handler</span><span class="op">(</span><span class="nam">self</span><span class="op">)</span><span class="op">.</span><span class="nam">decode</span><span class="op">(</span><span class="str">'utf-8'</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t41" class="pln"><span class="strut">&nbsp;</span></p> <p id="t42" class="stm run hide_run"> <span class="key">def</span> <span class="nam">__repr__</span><span class="op">(</span><span class="nam">self</span><span class="op">)</span><span class="op">:</span><span class="strut">&nbsp;</span></p> <p id="t43" class="pln"> <span class="str">"""Represent instance as a unique string."""</span><span class="strut">&nbsp;</span></p> <p id="t44" class="stm run hide_run"> <span class="key">return</span> <span class="str">'&lt;User({username!r})>'</span><span class="op">.</span><span class="nam">format</span><span class="op">(</span><span class="nam">username</span><span class="op">=</span><span class="nam">self</span><span class="op">.</span><span class="nam">username</span><span class="op">)</span><span class="strut">&nbsp;</span></p> </td> </tr> </table> </div> <div id="footer"> <div class="content"> <p> <a class="nav" href="index.html">&#xab; index</a> &nbsp; &nbsp; <a class="nav" href="https://coverage.readthedocs.io">coverage.py v4.5.1</a>, created at 2018-10-12 21:32 </p> </div> </div> </body> </html>
viewportvr/daysinvr
backend/htmlcov/remixvr_user_models_py.html
HTML
mit
16,792
<!DOCTYPE html> <html> <head> <title>Gyro Master</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=10.0, user-scalable=yes"> <meta name="author" content="tetha" /> <script type='text/javascript' src='the.js'></script> <link rel="stylesheet" type="text/css" href="css/3d.css"> <link rel="stylesheet" type="text/css" href="css/reset.css"> </head> <body> <div></div> <p>lindaサーバーURL: <select data-bind="options: availableServers, value: serverUrl, optionsCaption: '-選択してください-'"></select></p> <button id="start">START</button> <div id="data"> <!-- <p>tiltLR: <span data-bind="text: tiltLR"></span></p> <p>tiltFB: <span data-bind="text: tiltFB"></span></p> --> </div> <table> <thead> <tr> <th>handle</th><th>gX</th><th>gY</th><th>gZ</th> </tr> </thead> <tbody data-bind="foreach: workers"> <tr> <td data-bind="text: handleName"></td> <td data-bind="text: gX"></td> <td data-bind="text: gY"></td> <td data-bind="text: gZ"></td> </tr> </tbody> </table> <ul id="output-list"></ul> <script type='text/javascript'> require(['app'], function (amber) { amber.initialize({ //used for all new packages in IDE 'transport.defaultAmdNamespace': "amber-lindaclient" }); require(["amber-ide-starter-dialog"], function (dlg) { dlg.start(); }); amber.globals.LindaGyroMaster._start(); }); </script> </body> </html>
tty-hayashi/LindaClientDemo
gyroMaster.html
HTML
mit
1,713
<a name='other w/ per justification'><h1>other w/ per justification</h1></a> <table border="1" class="dataframe"> <thead> <tr style="text-align: right;"> <th></th> <th>reverting_id</th> <th>reverting_user_text</th> <th>rev_user_text</th> <th>reverting_comment</th> <th>diff</th> </tr> </thead> <tbody> <tr> <th>29532</th> <td>10183151</td> <td>JAnDbot</td> <td>TXiKiBoT</td> <td>機器人 移除: [[he:Parts Per Million (כבול)]]</td> <td>--- \n<br/>+++ \n<br/>@@ -25,7 +25,6 @@\n<br/> [[es:Partes por millón]]<br/> [[fi:Ppm]]<br/> [[fr:Partie par million]]<br/>-[[he:Parts Per Million (כבול)]]<br/> [[hu:Ezreléknél kisebb részek]]<br/> [[it:Parti per milione]]<br/> [[ja:Ppm]]</td> </tr> <tr> <th>31771</th> <td>13495008</td> <td>SieBot</td> <td>Sz-iwbot</td> <td>機器人 新增: [[es:Anexo:Los 500 mejores álbumes de todos los tiempos según Rolling Stone]]</td> <td>--- \n<br/>+++ \n<br/>@@ -2019,6 +2019,7 @@\n<br/> [[cs:Rolling Stone - 500 nejlepších alb všech dob]]<br/> [[de:500 beste Alben aller Zeiten (Rolling Stone)]]<br/> [[en:The 500 Greatest Albums of All Time]]<br/>+[[es:Anexo:Los 500 mejores álbumes de todos los tiempos según Rolling Stone]]<br/> [[et:Rolling Stone'i kõigi aegade 500 parema albumi loend]]<br/> [[fi:500 Greatest Albums of All Time]]<br/> [[fr:Les 500 plus grands albums de tous les temps selon Rolling Stone]]</td> </tr> <tr> <th>32083</th> <td>15638911</td> <td>WikitanvirBot</td> <td>Xqbot</td> <td>r2.7.1) (機器人 修改: [[it:Convocazioni per il campionato mondiale di calcio 2010]]</td> <td>--- \n<br/>+++ \n<br/>@@ -213,7 +213,7 @@\n<br/> [[fr:Effectifs de la Coupe du monde de football 2010]]<br/> [[hu:2010-es labdarúgó-világbajnokság (keretek)]]<br/> [[id:Skuat Piala Dunia FIFA 2010]]<br/>-[[it:Convocazioni per la fase finale del campionato mondiale di calcio 2010]]<br/>+[[it:Convocazioni per il campionato mondiale di calcio 2010]]<br/> [[ja:2010 FIFAワールドカップ参加チーム]]<br/> [[ko:2010년 FIFA 월드컵 선수 명단]]<br/> [[lt:Sąrašas:XIX pasaulio futbolo čempionato komandų sudėtys]]</td> </tr> <tr> <th>33295</th> <td>18606712</td> <td>Ripchip Bot</td> <td>WikitanvirBot</td> <td>r2.7.1) (機器人 移除: [[lt:Pay per click]]</td> <td>--- \n<br/>+++ \n<br/>@@ -98,7 +98,6 @@\n<br/> [[ja:クリック報酬型広告]]<br/> [[kn:ಪೇ-ಪರ್‌-ಕ್ಲಿಕ್‌]]<br/> [[ko:클릭당 지불]]<br/>-[[lt:Pay per click]]<br/> [[ms:Bayar per klik]]<br/> [[nl:Pay-per-click]]<br/> [[no:Betalt søkemotorannonsering]]</td> </tr> <tr> <th>33296</th> <td>18606879</td> <td>WikitanvirBot</td> <td>Ripchip Bot</td> <td>r2.7.1) (機器人 移除: [[lt:Pay per click]]</td> <td>--- \n<br/>+++ \n<br/>@@ -98,7 +98,6 @@\n<br/> [[ja:クリック報酬型広告]]<br/> [[kn:ಪೇ-ಪರ್‌-ಕ್ಲಿಕ್‌]]<br/> [[ko:클릭당 지불]]<br/>-[[lt:Pay per click]]<br/> [[ms:Bayar per klik]]<br/> [[nl:Pay-per-click]]<br/> [[no:Betalt søkemotorannonsering]]</td> </tr> <tr> <th>38248</th> <td>15958535</td> <td>ChuispastonBot</td> <td>MystBot</td> <td>r2.7.1) (機器人 移除: [[it:Forze armate per Stato]]</td> <td>--- \n<br/>+++ \n<br/>@@ -254,4 +254,3 @@\n<br/> <br/> [[en:List of militaries by country]]<br/> [[fr:Armées nationales]]<br/>-[[it:Forze armate per Stato]]</td> </tr> </tbody> </table>
halfak/are-the-bots-really-fighting
analysis/sample_tables/zh/ns0/zh_ns0_sample_other_w__per_justification.html
HTML
mit
3,630
<!DOCTYPE html> <html> <head> <meta charset='UTF-8'> <title>CoffeeScript API Documentation</title> <script src='../javascript/application.js'></script> <script src='../javascript/search.js'></script> <link rel='stylesheet' href='../stylesheets/application.css' type='text/css'> </head> <body> <div id='base' data-path='../'></div> <div id='header'> <div id='menu'> <a href='../extra/README.md.html' title='Tack_cordova'> Tack_cordova </a> &raquo; <a href='../alphabetical_index.html' title='Index'> Index </a> &raquo; <span class='title'>ApplicationLayout</span> </div> </div> <div id='content'> <h1> Class: ApplicationLayout </h1> <table class='box'> <tr> <td>Defined in:</td> <td>app&#47;coffee&#47;application&#47;views&#47;layout.coffee</td> </tr> <tr> <td>Inherits:</td> <td> Marionette.LayoutView </td> </tr> </table> <h2>Overview</h2> <div class='docstring'> <p>ApplicationLayout class definition Defines a Marionette.LayoutView to manage top-level application regions</p> </div> <div class='tags'> </div> <h2>Variables Summary</h2> <dl class='constants'> <dt id='el-variable'> el = </dt> <dd> <pre><code class='coffeescript'>&#39;body&#39;</code></pre> </dd> <dt id='template-variable'> template = </dt> <dd> <pre><code class='coffeescript'>false</code></pre> </dd> <dt id='regions-variable'> regions = </dt> <dd> <pre><code class='coffeescript'>{ headerRegion: &#39;[data-region=header]&#39;, flashRegion: &#39;[data-region=flash]&#39;, sidebarRegion: &#39;[data-region=sidebar]&#39;, modalRegion: { selector: &#39;[data-region=modal]&#39;, regionClass: require(&#39;..&#47;regions&#47;modalRegion&#39;) }, mainRegion: { selector: &#39;[data-region=main]&#39;, regionClass: require(&#39;..&#47;regions&#47;animatedRegion&#39;), inAnimation: &#39;fadeInUp&#39;, outAnimation: &#39;fadeOutDown&#39; } }</code></pre> </dd> </dl> </div> <div id='footer'> By <a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'> Codo </a> 2.1.2 &#10034; Press H to see the keyboard shortcuts &#10034; <a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a> &#10034; <a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a> </div> <iframe id='search_frame'></iframe> <div id='fuzzySearch'> <input type='text'> <ol></ol> </div> <div id='help'> <p> Quickly fuzzy find classes, mixins, methods, file: </p> <ul> <li> <span>T</span> Open fuzzy finder dialog </li> </ul> <p> Control the navigation frame: </p> <ul> <li> <span>L</span> Toggle list view </li> <li> <span>C</span> Show class list </li> <li> <span>I</span> Show mixin list </li> <li> <span>F</span> Show file list </li> <li> <span>M</span> Show method list </li> <li> <span>E</span> Show extras list </li> </ul> <p> You can focus and blur the search input: </p> <ul> <li> <span>S</span> Focus search input </li> <li> <span>Esc</span> Blur search input </li> </ul> </div> </body> </html>
TackRPI/tack_cordova
docs/class/ApplicationLayout.html
HTML
mit
3,500
<!DOCTYPE html> <html xmlns:msxsl="urn:schemas-microsoft-com:xslt"> <head> <meta content="en-us" http-equiv="Content-Language" /> <meta content="text/html; charset=utf-16" http-equiv="Content-Type" /> <title _locid="PortabilityAnalysis0">.NET Portability Report</title> <style> /* Body style, for the entire document */ body { background: #F3F3F4; color: #1E1E1F; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; padding: 0; margin: 0; } /* Header1 style, used for the main title */ h1 { padding: 10px 0px 10px 10px; font-size: 21pt; background-color: #E2E2E2; border-bottom: 1px #C1C1C2 solid; color: #201F20; margin: 0; font-weight: normal; } /* Header2 style, used for "Overview" and other sections */ h2 { font-size: 18pt; font-weight: normal; padding: 15px 0 5px 0; margin: 0; } /* Header3 style, used for sub-sections, such as project name */ h3 { font-weight: normal; font-size: 15pt; margin: 0; padding: 15px 0 5px 0; background-color: transparent; } h4 { font-weight: normal; font-size: 12pt; margin: 0; padding: 0 0 0 0; background-color: transparent; } /* Color all hyperlinks one color */ a { color: #1382CE; } /* Paragraph text (for longer informational messages) */ p { font-size: 10pt; } /* Table styles */ table { border-spacing: 0 0; border-collapse: collapse; font-size: 10pt; } table th { background: #E7E7E8; text-align: left; text-decoration: none; font-weight: normal; padding: 3px 6px 3px 6px; } table td { vertical-align: top; padding: 3px 6px 5px 5px; margin: 0px; border: 1px solid #E7E7E8; background: #F7F7F8; } .NoBreakingChanges { color: darkgreen; font-weight:bold; } .FewBreakingChanges { color: orange; font-weight:bold; } .ManyBreakingChanges { color: red; font-weight:bold; } .BreakDetails { margin-left: 30px; } .CompatMessage { font-style: italic; font-size: 10pt; } .GoodMessage { color: darkgreen; } /* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */ .localLink { color: #1E1E1F; background: #EEEEED; text-decoration: none; } .localLink:hover { color: #1382CE; background: #FFFF99; text-decoration: none; } /* Center text, used in the over views cells that contain message level counts */ .textCentered { text-align: center; } /* The message cells in message tables should take up all avaliable space */ .messageCell { width: 100%; } /* Padding around the content after the h1 */ #content { padding: 0px 12px 12px 12px; } /* The overview table expands to width, with a max width of 97% */ #overview table { width: auto; max-width: 75%; } /* The messages tables are always 97% width */ #messages table { width: 97%; } /* All Icons */ .IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded { min-width: 18px; min-height: 18px; background-repeat: no-repeat; background-position: center; } /* Success icon encoded */ .IconSuccessEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==); } /* Information icon encoded */ .IconInfoEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=); } /* Warning icon encoded */ .IconWarningEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==); } /* Error icon encoded */ .IconErrorEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=); } </style> </head> <body> <h1 _locid="PortabilityReport">.NET Portability Report</h1> <div id="content"> <div id="submissionId" style="font-size:8pt;"> <p> <i> Submission Id&nbsp; abbf5083-0d7f-4e1b-bc6e-e29bdde4d80f </i> </p> </div> <h2 _locid="SummaryTitle"> <a name="Portability Summary"></a>Portability Summary </h2> <div id="summary"> <table> <tbody> <tr> <th>Assembly</th> <th>ASP.NET 5,Version=v1.0</th> <th>Windows,Version=v8.1</th> <th>.NET Framework,Version=v4.6</th> <th>Windows Phone,Version=v8.1</th> </tr> <tr> <td><strong><a href="#Eleven41.Extensions">Eleven41.Extensions</a></strong></td> <td class="text-center">100.00 %</td> <td class="text-center">100.00 %</td> <td class="text-center">100.00 %</td> <td class="text-center">100.00 %</td> </tr> </tbody> </table> </div> <div id="details"> </div> </div> </body> </html>
kuhlenh/port-to-core
Reports/el/eleven41.extensions.1.2.0/Eleven41.Extensions-net35-client.html
HTML
mit
9,653
<!DOCTYPE html> <html> <head> <title>Missile Command</title> <script src="cocos2d.js"></script> <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" /> </head> <body> <canvas id="GC"></canvas> </body> </html>
jucimarjr/html5games
cocos2d/MissileCommand/index.html
HTML
mit
340
<!DOCTYPE html> <html lang="en"> <head> <!-- start: Meta --> <meta charset="utf-8" /> <title>Better.com</title> <meta name="description" content="Better.com" /> <meta name="keywords" content="Better.com" /> <meta name="author" content="" /> <!-- end: Meta --> <!-- start: Mobile Specific --> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> <!-- end: Mobile Specific --> <!-- start: Facebook Open Graph --> <meta property="og:title" content="" /> <meta property="og:description" content="" /> <meta property="og:type" content="" /> <meta property="og:url" content="" /> <meta property="og:image" content="" /> <!-- end: Facebook Open Graph --> <!-- start: CSS --> <link href="css/bootstrap/bootstrap.css" rel="stylesheet" type="text/css" /> <link href="css/bootstrap/bootstrap-responsive.css" rel="stylesheet" type="text/css" /> <link href="css/style.css" rel="stylesheet" type="text/css" /> <link href="css/layerslider.css" rel="stylesheet" type="text/css" /> <!--[if lt IE 9 ]> <link href="css/styleIE.css" rel="stylesheet"> <![endif]--> <!--[if IE 9 ]> <link href="css/styleIE9.css" rel="stylesheet"> <![endif]--> <!-- end: CSS --> <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head> <body> <!--start: Header --> <header> <!--start: Container --> <div class="container"> <!--start: Navigation --> <div class="navbar navbar-inverse"> <div class="navbar-inner"> <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">Better.com</a> <div class="nav-collapse collapse"> <ul class="nav"> <li class="active"><a href="index.html">首页</a></li> <li><a href="album.html">相册</a></li> <li><a href="diaries.html">日志</a></li> <li><a href="wiki.html">Wiki</a></li> </ul> </div> <div class="nav pull-right"> <ul class="nav"> <li><a href="login.html">登陆</a></li> <li><a href="register.html">注册</a></li> </ul> </div> </div> </div> <!--end: Navigation --> </div> <!--end: Container--> </header> <!--end: Header--> <!--start: Container --> <div class="container"> <!-- start: Page Title --> <div class="row-fluid"> <div id="page-title" class="span4 offset4"> <h2>找回密码</h2> </div> </div> <!-- end: Page Title --> <!--start: Wrapper--> <div class="row-fluid"> <div id="wrapper" class="full lr-page span4 offset4"> <!-- start: Row --> <div class="row-fluid"> <div id="login-form" class="span12"> <div class="page-title-small"> <h3>找回密码</h3> </div> <h4>无效的用户名或邮箱</h4> <h4><a href="">重新操作</a></h4> </div> </div> <!-- end: Row --> </div> <!-- end: Wrapper --> </div> <!-- end: Container --> <!-- start: Under Footer --> <div id="under-footer" class="navbar-fixed-bottom"> <!-- start: Container --> <div class="container"> <!-- start: Row --> <div class="row-fluid"> <!-- start: Under Footer Logo --> <div class="span2"> <div id="under-footer-logo"> <a class="brand" href="/index.html">Better.com</a> </div> </div> <!-- end: Under Footer Logo --> <!-- start: Under Footer Copyright --> <div class="span9"> <div id="under-footer-copyright"> &copy; 2013, <a href="http://clabs.co">creativeLabs</a>. Designed by <a href="http://clabs.co">creativeLabs</a> in Poland <img src="img/poland.png" alt="Poland" style="margin-top:-4px" /> </div> </div> <!-- end: Under Footer Copyright --> <!-- start: Under Footer Back To Top --> <div class="span1"> <div id="under-footer-back-to-top"> <a href="#"></a> </div> </div> <!-- end: Under Footer Back To Top --> </div> <!-- end: Row --> </div> <!-- end: Container --> </div> <!-- end: Under Footer --> <!-- start: Java Script --> <!-- Placed at the end of the document so the pages load faster --> <script src="js/jquery/jquery-1.8.2.js"></script> <script src="js/bootstrap/bootstrap.js"></script> <!-- end: Java Script --> </body> </html>
Filix/dngu
statics/webpages/resetting_invalid.html
HTML
mit
4,798
--- layout: page title: 404 permalink: /404.html --- <section class="container full-width" role="main"> <div id="content" class="header-section font star-avenue"> <div style="font-family: 'Dosis'; font-size: 100px; line-height: 1;">404</div> </div> <div id="content" class="full-width font star-avenue"> <p class="text-center">What? There's nothing here. Please bring me <a href="{{ site.url }}">back</a>.</p> </div> </section>
yudhasetiawan/yudhasetiawan.github.io
404.html
HTML
mit
437
{% set page = { section: "work list", subsection: "Notes (1 new)" } %} {% extends currentApp.filePaths.layoutsDir + "case.html" %} {% block subsection_primary %} <h3 class="heading-large mt-0">Notes</h3> <p class="text">Case notes are a great way of adding extra information for a case, just remember keep it brief and notify the case owner if applicable.</p> <form> <fieldset> <div class="form-group"> <legend class="visually-hidden">Your note</legend> <label class="form-label" for="add-comment">Your note</label> <textarea class="form-control form-control-1-1 span-width" id="add-comment" rows="4"></textarea> </div> <div class="form-group"> <legend class="visuallyhidden">Form Navigation</legend> <input type="submit" value="Post note" class="button" id="submitButton" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"> </div> </fieldset> </form> <hr> <h4 class="heading-small">James wicker - 16 Nov 2016</h4> <p class=""> Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia </p> <hr> <h4 class="heading-small">Larissa wilson - 5 Nov 2016</h4> <p class=""> Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia </p> <hr> <h4 class="heading-small">Finley Davies - 30 Oct 2016</h4> <p class=""> Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia </p> {% endblock %}
paulmsmith/fes-work-management
app/views/apps/sprint-5/views/case/notes.html
HTML
mit
2,180
<div class="grid-row"> <div class="column-two-thirds js-hidden" id="amount"> <br/> <div class="highlighted-event" style="padding: 60px; background-color: #28a197; color: #fff; text-align: center;"> <div style="font-size: 24px; font-weight: bold; clear:both;">Your State Pension will be</div> <div style="font-size: 56px; font-weight: bold;">£113.10 a week</div> </div> <div> <h3 class="heading-small"> How your weekly State Pension is made up: </h3> <table> <tbody> <tr> <td class="heading-small no-border">New State Pension</td> <td class="heading-small no-border align-right">&pound;86.34</td> </tr> <tr> <td>New State Pension is the State Pension Scheme for people who reach State Pension age on or after 6 April 2016. New State Pension amount is the weekly amount you can get based on the National Insurance contributions you have paid or have been credited with up to the full rate of new State Pension.<br/> <br/>National Insurance contributions or credits on your National Insurance record before and after 6 April 2016 have counted towards your new State Pension.</td> <td></td> </tr> <tr> <td class="heading-small no-border">Protected Payment</td> <td class="heading-small no-border">&pound;20.00</td> </tr> <tr> <td>Your Protected Payment is an extra amount on top of the full rate of the new State Pension. You will have a Protected Payment if one of the following applies: <br/> <br/>• Your starting amount was more than the full rate of the new State Pension. Your National Insurance record before 6 April 2016 was used to calculate your starting amount in the new scheme. <br/> <br/>• You have inherited some of your late spouse or civil partner’s State Pension and because of this, the amount of your award is more than the full rate of the new State Pension. </td> <td></td> </tr> <tr> <td class="heading-small no-border">Extra State Pension</td> <td class="heading-small no-border">&pound;6.76</td> </tr> <tr> <td>Extra State Pension because you put off getting your State Pension.</td> <td></td> </tr> </tbody> </table> </div> <fieldset> <legend> <span class="form-label"> </span> </legend> </fieldset> <br/> <div class="form-group"> <input type="submit" class="button" value="Add payment details"> <!-- <a href="bank-details" class="button" value="Submit">Continue</a> --> </div> </div> <!-- </form> --> </div> <div id="waiting"> <center><div class="loader">Loading...</div></div> </div> </div>
gavinelliott/gysp
app/views/includes/pages/calculated-feature.html
HTML
mit
2,740
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>ComponentManger | Demo</title> <link href='https://fonts.googleapis.com/css?family=Crimson+Text' rel='stylesheet' type='text/css'> <style type="text/css"> * { font-family: 'Crimson Text', serif; } button { font-size: 1rem; } </style> <script src="https://code.jquery.com/jquery-3.1.0.slim.min.js" integrity="sha256-cRpWjoSOw5KcyIOaZNo4i6fZ9tKPhYYb6i5T9RSVJG8=" crossorigin="anonymous"></script> <script src="src/manager.js"></script> <script src="demo/jquery.loadKittens.js"></script> <script src="demo/jquery.fakeLatin.js"></script> </head> <body> <h1>Demo</h1> <button id="addComponent">Add random component</button> <button id="removeComponent">Remove last component</button> <div id="component-container"></div> <script type="text/javascript"> // Register the first component: a simple jQuery plugin that loads images of kittens ComponentManager.register( 'loadkittens', function(addedNode) { // If the plugins uses options, those can be passed to the plugin here $(addedNode).loadKittens(); }, function(removedNode) { // Call the destructor to allow the plugin to tear down $(removedNode).data('plugin_loadKittens').destroy(); } ); // Register the second component: a simple jQuery plugin that displays parts of "lorem ipsum" ComponentManager.register( 'fakelatin', function(addedNode) { $(addedNode).fakeLatin(); }, function(removedNode) { $(removedNode).data('plugin_fakeLatin').destroy(); } ); // Tell the component manager to start listening for changes to the DOM ComponentManager.init(); // UI code for this demo var addComponent = function() { var divElement = document.createElement('div'); var componentName = Math.round(Math.random()) === 1 ? 'loadkittens' : 'fakelatin'; divElement.innerHTML = '<div data-component-name="' + componentName + '"></div>'; document.body.querySelector('#component-container').appendChild(divElement); }; var removeComponent = function () { var container = document.body.querySelector('#component-container'); var components = container.childNodes; if (components.length) { container.removeChild(components[components.length - 1]); } }; document.querySelector('#addComponent').addEventListener('click', addComponent, false); document.querySelector('#removeComponent').addEventListener('click', removeComponent, false); </script> </body> </html>
jonathanweiss/component-manager
demo_simple.html
HTML
mit
2,952
<!DOCTYPE html > <html> <head> <title>InterpolationTag - threesixty.data.tags.InterpolationTag</title> <meta name="description" content="InterpolationTag - threesixty.data.tags.InterpolationTag" /> <meta name="keywords" content="InterpolationTag threesixty.data.tags.InterpolationTag" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <link href="../../../lib/template.css" media="screen" type="text/css" rel="stylesheet" /> <link href="../../../lib/diagrams.css" media="screen" type="text/css" rel="stylesheet" id="diagrams-css" /> <script type="text/javascript" src="../../../lib/jquery.js" id="jquery-js"></script> <script type="text/javascript" src="../../../lib/jquery-ui.js"></script> <script type="text/javascript" src="../../../lib/template.js"></script> <script type="text/javascript" src="../../../lib/tools.tooltip.js"></script> <script type="text/javascript"> if(top === self) { var url = '../../../index.html'; var hash = 'threesixty.data.tags.InterpolationTag'; var anchor = window.location.hash; var anchor_opt = ''; if (anchor.length >= 1) anchor_opt = '@' + anchor.substring(1); window.location.href = url + '#' + hash + anchor_opt; } </script> </head> <body class="type"> <div id="definition"> <img alt="Trait" src="../../../lib/trait_big.png" /> <p id="owner"><a href="../../package.html" class="extype" name="threesixty">threesixty</a>.<a href="../package.html" class="extype" name="threesixty.data">data</a>.<a href="package.html" class="extype" name="threesixty.data.tags">tags</a></p> <h1>InterpolationTag</h1><h3><span class="morelinks"><div>Related Doc: <a href="package.html" class="extype" name="threesixty.data.tags">package tags</a> </div></span></h3><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> </div> <h4 id="signature" class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">trait</span> </span> <span class="symbol"> <span class="name">InterpolationTag</span><span class="result"> extends <a href="Tag.html" class="extype" name="threesixty.data.tags.Tag">Tag</a></span> </span> </h4> <div id="comment" class="fullcommenttop"><div class="comment cmt"><p> Identifies whether data is interpolated data or from the original dataset </p></div><div class="toggleContainer block"> <span class="toggle">Linear Supertypes</span> <div class="superTypes hiddenContent"><a href="Tag.html" class="extype" name="threesixty.data.tags.Tag">Tag</a>, <span class="extype" name="scala.AnyRef">AnyRef</span>, <span class="extype" name="scala.Any">Any</span></div> </div><div class="toggleContainer block"> <span class="toggle">Known Subclasses</span> <div class="subClasses hiddenContent"><a href="Interpolated$.html" class="extype" name="threesixty.data.tags.Interpolated">Interpolated</a>, <a href="Original$.html" class="extype" name="threesixty.data.tags.Original">Original</a></div> </div></div> <div id="mbrsel"> <div id="textfilter"><span class="pre"></span><span class="input"><input id="mbrsel-input" type="text" accesskey="/" /></span><span class="post"></span></div> <div id="order"> <span class="filtertype">Ordering</span> <ol> <li class="alpha in"><span>Alphabetic</span></li> <li class="inherit out"><span>By inheritance</span></li> </ol> </div> <div id="ancestors"> <span class="filtertype">Inherited<br /> </span> <ol id="linearization"> <li class="in" name="threesixty.data.tags.InterpolationTag"><span>InterpolationTag</span></li><li class="in" name="threesixty.data.tags.Tag"><span>Tag</span></li><li class="in" name="scala.AnyRef"><span>AnyRef</span></li><li class="in" name="scala.Any"><span>Any</span></li> </ol> </div><div id="ancestors"> <span class="filtertype"></span> <ol> <li class="hideall out"><span>Hide All</span></li> <li class="showall in"><span>Show all</span></li> </ol> </div> <div id="visbl"> <span class="filtertype">Visibility</span> <ol><li class="public in"><span>Public</span></li><li class="all out"><span>All</span></li></ol> </div> </div> <div id="template"> <div id="allMembers"> <div id="values" class="values members"> <h3>Value Members</h3> <ol><li name="scala.AnyRef#!=" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="!=(x$1:Any):Boolean"></a> <a id="!=(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $bang$eq" class="name">!=</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@!=(x$1:Any):Boolean" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef###" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="##():Int"></a> <a id="##():Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $hash$hash" class="name">##</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@##():Int" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#==" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="==(x$1:Any):Boolean"></a> <a id="==(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $eq$eq" class="name">==</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@==(x$1:Any):Boolean" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.Any#asInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="asInstanceOf[T0]:T0"></a> <a id="asInstanceOf[T0]:T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">asInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Any.asInstanceOf.T0">T0</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@asInstanceOf[T0]:T0" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#clone" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="clone():Object"></a> <a id="clone():AnyRef"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">clone</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.AnyRef">AnyRef</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@clone():Object" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.CloneNotSupportedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#eq" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="eq(x$1:AnyRef):Boolean"></a> <a id="eq(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">eq</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@eq(x$1:AnyRef):Boolean" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#equals" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="equals(x$1:Any):Boolean"></a> <a id="equals(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">equals</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@equals(x$1:Any):Boolean" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#finalize" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="finalize():Unit"></a> <a id="finalize():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">finalize</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@finalize():Unit" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="symbol">classOf[java.lang.Throwable]</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#getClass" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="getClass():Class[_]"></a> <a id="getClass():Class[_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">getClass</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.Class">Class</span>[_]</span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@getClass():Class[_]" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#hashCode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="hashCode():Int"></a> <a id="hashCode():Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">hashCode</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@hashCode():Int" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.Any#isInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isInstanceOf[T0]:Boolean"></a> <a id="isInstanceOf[T0]:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@isInstanceOf[T0]:Boolean" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#ne" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ne(x$1:AnyRef):Boolean"></a> <a id="ne(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">ne</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@ne(x$1:AnyRef):Boolean" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notify" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notify():Unit"></a> <a id="notify():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notify</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@notify():Unit" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notifyAll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notifyAll():Unit"></a> <a id="notifyAll():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notifyAll</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@notifyAll():Unit" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a> <a id="synchronized[T0](⇒T0):T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@synchronized[T0](x$1:=&gt;T0):T0" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#toString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toString():String"></a> <a id="toString():String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">toString</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@toString():String" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait():Unit"></a> <a id="wait():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@wait():Unit" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long,x$2:Int):Unit"></a> <a id="wait(Long,Int):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>, <span name="arg1">arg1: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@wait(x$1:Long,x$2:Int):Unit" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long):Unit"></a> <a id="wait(Long):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#threesixty.data.tags.InterpolationTag@wait(x$1:Long):Unit" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li></ol> </div> </div> <div id="inheritedMembers"> <div class="parent" name="threesixty.data.tags.Tag"> <h3>Inherited from <a href="Tag.html" class="extype" name="threesixty.data.tags.Tag">Tag</a></h3> </div><div class="parent" name="scala.AnyRef"> <h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3> </div><div class="parent" name="scala.Any"> <h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3> </div> </div> <div id="groupedMembers"> <div class="group" name="Ungrouped"> <h3>Ungrouped</h3> </div> </div> </div> <div id="tooltip"></div> <div id="footer"> </div> </body> </html>
elordin/threesixty
doc/threesixty/data/tags/InterpolationTag.html
HTML
mit
25,620
{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Signup" %} wtf{% endblock %} {% block content %} <div class="panel panel-primary"> <div class="panel-heading">Sign up</div> <div class="panel-body"> <form action='' method="post" class="form-horizontal"> {% csrf_token %} {{ form.non_field_errors }} {% for field in form %} {{ field.errors }} {% comment %} Displaying checkboxes differently {% endcomment %} {% if field.name == 'tos' %} <p class="checkbox"> <label for="id_{{ field.name }}">{{ field }} {{ field.label }}</label> </p> {% else %} <div class="form-group"> <div class='col-md-3'> {{ field.label_tag }} </div> <div class="col-md-3"> {{ field }} </div> </div> {% endif %} {% endfor %} <input class="btn btn-info" type="submit" value="{% trans "Signup"%}" /> </form> </div> </div> {% endblock %}
texib/bitcoin-zoo
templates/signup_form.html
HTML
mit
1,361
<!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> Dalley Froggatt Heritage Conservation Services - 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=1492279328057&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=12837&V_SEARCH.docsStart=12836&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&amp;estblmntNo=234567041301&amp;profileId=61&amp;_evId=bck&amp;lang=eng&amp;V_SEARCH.showStricts=false&amp;prtl=1&amp;_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&amp;rstBtn.x=" class="btn btn-link">New Search</a>&nbsp;|</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>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=12835&amp;V_DOCUMENT.docRank=12836&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492279346568&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567106505&amp;profileId=&amp;key.newSearchLabel=">Previous Company</a></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=12837&amp;V_DOCUMENT.docRank=12838&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492279346568&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567002397&amp;profileId=&amp;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> Dalley Froggatt Heritage Conservation Services </h2> <div class="row"> <div class="col-md-5"> <h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2> <p>Dalley Froggatt Heritage Conservation Services</p> <div class="mrgn-tp-md"></div> <p class="mrgn-bttm-0" ><a href="http://www.dfhcs.com" target="_blank" title="Website URL">http://www.dfhcs.com</a></p> <p><a href="mailto:[email protected]" title="[email protected]">[email protected]</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"> 217 Lipton St<br/> WINNIPEG, Manitoba<br/> R3G 2G8 <br/> </address> <p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>: (204) 223-3056 </p> <p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>: (204) 261-4827</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> DFHCS provides expert conservation services and high quality products that assist in the preservation, display and accessibility of heritage, private, and archival collections.<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> Jane Dalley </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--> Director </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Management Executive. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (204) 223-3056 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Facsimile: </strong> </div> <div class="col-md-7"> (204) 261-4827 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> [email protected] </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 &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 541690 - Other Scientific and Technical Consulting Services </div> </div> <div class="row"> <div class="col-md-5"> <strong> Alternate Industries (NAICS): </strong> </div> <div class="col-md-7"> 541619 - Other Management Consulting Services<br> </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Services &nbsp; </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"> Storage and Display Products<br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Products for the preservation, display and accessibility of heritage, private and archival collections. <br> <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> Conservation of cultural heritage <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> The staff of DFHCS assist museum, archival and other heritage professionals in preserving buildings, sites, collections and holdings in a practical and cost-effective manner through planning and assessment. <br> •We offer environmental monitoring and control, pest management, disaster response and business resumption, and the conservation treatment of museum and archival collections. <br> <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> Jane Dalley </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--> Director </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Management Executive. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (204) 223-3056 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Facsimile: </strong> </div> <div class="col-md-7"> (204) 261-4827 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> [email protected] </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 &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 541690 - Other Scientific and Technical Consulting Services </div> </div> <div class="row"> <div class="col-md-5"> <strong> Alternate Industries (NAICS): </strong> </div> <div class="col-md-7"> 541619 - Other Management Consulting Services<br> </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Services &nbsp; </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"> Storage and Display Products<br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Products for the preservation, display and accessibility of heritage, private and archival collections. <br> <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> Conservation of cultural heritage <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> The staff of DFHCS assist museum, archival and other heritage professionals in preserving buildings, sites, collections and holdings in a practical and cost-effective manner through planning and assessment. <br> •We offer environmental monitoring and control, pest management, disaster response and business resumption, and the conservation treatment of museum and archival collections. <br> <br> <br> </div> </div> </section> </details> </div> </div> <div class="row"> <div class="col-md-12 text-right"> Last Update Date 2016-04-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&amp;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&amp;WT.js=No&amp;WT.tv=9.4.0&amp;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/234567146859.html
HTML
mit
38,557
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="shortcut icon" href="/static/img/ruby.ico" /> <title>笨方法学Ruby第二十七天 - LJZN</title> <meta name="author" content="LJZN" /> <meta name="description" content="笨方法学Ruby第二十七天" /> <meta name="keywords" content="笨方法学Ruby第二十七天, LJZN, LRTHW" /> <link rel="alternate" type="application/rss+xml" title="RSS" href="/feed.xml"> <!-- syntax highlighting CSS --> <link rel="stylesheet" href="/static/css/syntax.css"> <!-- Bootstrap core CSS --> <link href="/static/css/bootstrap.min.css" rel="stylesheet"> <!-- Custom CSS --> <link rel="stylesheet" href="/static/css/main.css"> </head> <body> <div class="container"> <div class="col-sm-3"> <a href="/"><img id="about" src="/static/img/ruby.png" height="75px" width="75px" /></a> <h1 class="author-name">LJZN</h1> <div id="about"> 每天更新Rails练习项目到Github~ </div> <hr size=2> &raquo; <a href="/">Home</a> <br /> &raquo; <a href="/category/original">Category</a> <br /> &raquo; <a class="about" href="/about/">About Me</a><br /> &raquo; <a class="about" href="https://github.com/ljzn">Github</a><br /> </div> <div class="col-sm-8 col-offset-1"> <h1>笨方法学Ruby第二十七天</h1> <span class="time">28 Jun 2016</span> <span class="categories"> &raquo; <a href="/category/LRTHW">LRTHW</a> </span> <div class="content"> <div class="post"> <figure class="highlight"><pre><code class="language-ruby" data-lang="ruby"><span class="c1"># 或非什么都不会才是真的</span> <span class="c1"># 与非什么都会才是假的</span></code></pre></figure> </div> </div> <div class="panel-body"> <h4>Related Posts</h4> <ul> <li class="relatedPost"> <a href="https://ljzn.github.io/lrthw/2016/07/10/lrhw-50.html">50sinatra建造网站</a> (Categories: <a href="/category/LRTHW">LRTHW</a>) </li> <li class="relatedPost"> <a href="https://ljzn.github.io/lrthw/2016/07/09/lrhw-49.html">49创建句子</a> (Categories: <a href="/category/LRTHW">LRTHW</a>) </li> <li class="relatedPost"> <a href="https://ljzn.github.io/lrthw/2016/07/08/lrhw-48.html">48进阶用户输入</a> (Categories: <a href="/category/LRTHW">LRTHW</a>) </li> <li class="relatedPost"> <a href="https://ljzn.github.io/lrthw/2016/07/08/lrhw-47.html">47自动化测试</a> (Categories: <a href="/category/LRTHW">LRTHW</a>) </li> <li class="relatedPost"> <a href="https://ljzn.github.io/lrthw/2016/07/06/lrhw-46.html">46项目骨架</a> (Categories: <a href="/category/LRTHW">LRTHW</a>) </li> <li class="relatedPost"> <a href="https://ljzn.github.io/lrthw/2016/07/05/lrhw-45.html">45制作一个游戏</a> (Categories: <a href="/category/LRTHW">LRTHW</a>) </li> </ul> </div> <div class="PageNavigation"> <a class="prev" href="/lrthw/2016/06/28/lrhw-26.html">&laquo; 笨方法学Ruby第二十六天</a> <a class="next" href="/lrthw/2016/06/28/lrhw-28.html">笨方法学Ruby第二十八天 &raquo;</a> </div> <div class="disqus-comments"> <div id="disqus_thread"></div> <script> (function() { // DON'T EDIT BELOW THIS LINE var d = document, s = d.createElement('script'); s.src = '//ljzn.disqus.com/embed.js'; s.setAttribute('data-timestamp', +new Date()); (d.head || d.body).appendChild(s); })(); </script> <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript> </div> <footer> &copy; LJZN - <a href="https://github.com/ljzn">https://github.com/ljzn</a> - Powered by Jekyll. </footer> </div><!-- end /.col-sm-8 --> </div><!-- end /.container --> <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> <script src="//cdn.bootcss.com/jquery/1.11.0/jquery.min.js"></script> <script src="/static/js/bootstrap.min.js"></script> <script id="dsq-count-scr" src="//ljzn.disqus.com/count.js" async></script> </body> </html>
Ljzn/ljzn.github.io
_site/lrthw/2016/06/28/lrhw-27.html
HTML
mit
9,688
{% include head.html %} {% include sidebar.html %} <div class="content"> <main id="main"> <header role="banner" class="header"> <h1 class="heading"><span class="heading__intro">{{ page.intro }}</span>{{ page.heading }}</h1> </header> {{ content }} </main> {% include footer.html %} </div> <!-- Script includes --> <script src="../assets/js/main.min.js"></script> <!-- Cookie banner JS --> <script> window.addEventListener("load", function(){ window.cookieconsent.initialise({})}); </script> <!-- <script> (function() { // DON'T EDIT BELOW THIS LINE var d = document, s = d.createElement('script'); s.src = '//cathyduttoncouk.disqus.com/embed.js'; s.setAttribute('data-timestamp', +new Date()); (d.head || d.body).appendChild(s); })(); </script> --> <!-- <script id="dsq-count-scr" src="//cathydutton.disqus.com/count.js" async></script> --> <!-- <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> --> <!-- New blog --> <!-- <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5080086399779144" data-ad-slot="8794319910" data-ad-format="auto"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> --> <script> if ('serviceWorker' in navigator) { window.addEventListener('load', function() { navigator.serviceWorker.register('/serviceWorker.js').then(function(registration) { }).catch(function(err) { }); }); } </script> </body> </html>
cathydutton/my-site
_layouts/blog.html
HTML
mit
1,497
<!DOCTYPE html> <html> {% include head.html %} <body> <header> {% include header.html %} </header> <main> <div id="main-content"> {{ content }} {% include footer.html %} </div> </main> <div class="ripple-wrapper"> <div class="ripple"></div> </div> {% include js.html %} </body> </html>
irontiga/materiyll
_layouts/base.html
HTML
mit
349
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width" /> <link rel="shortcut icon" type="image/x-icon" href="../../../../../../../favicon.ico" /> <title>DataBuffer | Android Developers</title> <!-- STYLESHEETS --> <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto+Condensed"> <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto:light,regular,medium,thin,italic,mediumitalic,bold" title="roboto"> <link href="../../../../../../../assets/css/default.css?v=5" rel="stylesheet" type="text/css"> <!-- FULLSCREEN STYLESHEET --> <link href="../../../../../../../assets/css/fullscreen.css" rel="stylesheet" class="fullscreen" type="text/css"> <!-- JAVASCRIPT --> <script src="http://www.google.com/jsapi" type="text/javascript"></script> <script src="../../../../../../../assets/js/android_3p-bundle.js" type="text/javascript"></script> <script type="text/javascript"> var toRoot = "../../../../../../../"; var metaTags = []; var devsite = false; </script> <script src="../../../../../../../assets/js/docs.js?v=3" type="text/javascript"></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-5831155-1', 'android.com'); ga('create', 'UA-49880327-2', 'android.com', {'name': 'universal'}); // New tracker); ga('send', 'pageview'); ga('universal.send', 'pageview'); // Send page view for new tracker. </script> </head> <body class="gc-documentation develop reference" itemscope itemtype="http://schema.org/Article"> <div id="doc-api-level" class="" style="display:none"></div> <a name="top"></a> <a name="top"></a> <!-- dialog to prompt lang pref change when loaded from hardcoded URL <div id="langMessage" style="display:none"> <div> <div class="lang en"> <p>You requested a page in English, would you like to proceed with this language setting?</p> </div> <div class="lang es"> <p>You requested a page in Spanish (Español), would you like to proceed with this language setting?</p> </div> <div class="lang ja"> <p>You requested a page in Japanese (日本語), would you like to proceed with this language setting?</p> </div> <div class="lang ko"> <p>You requested a page in Korean (한국어), would you like to proceed with this language setting?</p> </div> <div class="lang ru"> <p>You requested a page in Russian (Русский), would you like to proceed with this language setting?</p> </div> <div class="lang zh-cn"> <p>You requested a page in Simplified Chinese (简体中文), would you like to proceed with this language setting?</p> </div> <div class="lang zh-tw"> <p>You requested a page in Traditional Chinese (繁體中文), would you like to proceed with this language setting?</p> </div> <a href="#" class="button yes" onclick="return false;"> <span class="lang en">Yes</span> <span class="lang es">Sí</span> <span class="lang ja">Yes</span> <span class="lang ko">Yes</span> <span class="lang ru">Yes</span> <span class="lang zh-cn">是的</span> <span class="lang zh-tw">没有</span> </a> <a href="#" class="button" onclick="$('#langMessage').hide();return false;"> <span class="lang en">No</span> <span class="lang es">No</span> <span class="lang ja">No</span> <span class="lang ko">No</span> <span class="lang ru">No</span> <span class="lang zh-cn">没有</span> <span class="lang zh-tw">没有</span> </a> </div> </div> --> <!-- Header --> <div id="header-wrapper"> <div id="header"> <div class="wrap" id="header-wrap"> <div class="col-3 logo"> <a href="../../../../../../../index.html"> <img src="../../../../../../../assets/images/dac_logo.png" srcset="../../../../../../../assets/images/[email protected] 2x" width="123" height="25" alt="Android Developers" /> </a> <div class="btn-quicknav" id="btn-quicknav"> <a href="#" class="arrow-inactive">Quicknav</a> <a href="#" class="arrow-active">Quicknav</a> </div> </div> <ul class="nav-x col-9"> <li class="design"> <a href="../../../../../../../design/index.html" zh-tw-lang="設計" zh-cn-lang="设计" ru-lang="Проектирование" ko-lang="디자인" ja-lang="設計" es-lang="Diseñar" >Design</a></li> <li class="develop"><a href="../../../../../../../develop/index.html" zh-tw-lang="開發" zh-cn-lang="开发" ru-lang="Разработка" ko-lang="개발" ja-lang="開発" es-lang="Desarrollar" >Develop</a></li> <li class="distribute last"><a href="../../../../../../../distribute/googleplay/index.html" zh-tw-lang="發佈" zh-cn-lang="分发" ru-lang="Распространение" ko-lang="배포" ja-lang="配布" es-lang="Distribuir" >Distribute</a></li> </ul> <div class="menu-container"> <div class="moremenu"> <div id="more-btn"></div> </div> <div class="morehover" id="moremenu"> <div class="top"></div> <div class="mid"> <div class="header">Links</div> <ul> <li><a href="https://play.google.com/apps/publish/" target="_googleplay">Google Play Developer Console</a></li> <li><a href="http://android-developers.blogspot.com/">Android Developers Blog</a></li> <li><a href="../../../../../../../about/index.html">About Android</a></li> </ul> <div class="header">Android Sites</div> <ul> <li><a href="http://www.android.com">Android.com</a></li> <li class="active"><a>Android Developers</a></li> <li><a href="http://source.android.com">Android Open Source Project</a></li> </ul> <br class="clearfix" /> </div><!-- end 'mid' --> <div class="bottom"></div> </div><!-- end 'moremenu' --> <div class="search" id="search-container"> <div class="search-inner"> <div id="search-btn"></div> <div class="left"></div> <form onsubmit="return submit_search()"> <input id="search_autocomplete" type="text" value="" autocomplete="off" name="q" onfocus="search_focus_changed(this, true)" onblur="search_focus_changed(this, false)" onkeydown="return search_changed(event, true, '../../../../../../../')" onkeyup="return search_changed(event, false, '../../../../../../../')" /> </form> <div class="right"></div> <a class="close hide">close</a> <div class="left"></div> <div class="right"></div> </div><!-- end search-inner --> </div><!-- end search-container --> <div class="search_filtered_wrapper reference"> <div class="suggest-card reference no-display"> <ul class="search_filtered"> </ul> </div> </div> <div class="search_filtered_wrapper docs"> <div class="suggest-card dummy no-display">&nbsp;</div> <div class="suggest-card develop no-display"> <ul class="search_filtered"> </ul> <div class="child-card guides no-display"> </div> <div class="child-card training no-display"> </div> <div class="child-card samples no-display"> </div> </div> <div class="suggest-card design no-display"> <ul class="search_filtered"> </ul> </div> <div class="suggest-card distribute no-display"> <ul class="search_filtered"> </ul> </div> </div> </div><!-- end menu-container (search and menu widget) --> <!-- Expanded quicknav --> <div id="quicknav" class="col-13"> <ul> <li class="about"> <ul> <li><a href="../../../../../../../about/index.html">About</a></li> <li><a href="../../../../../../../wear/index.html">Wear</a></li> <li><a href="../../../../../../../tv/index.html">TV</a></li> <li><a href="../../../../../../../auto/index.html">Auto</a></li> </ul> </li> <li class="design"> <ul> <li><a href="../../../../../../../design/index.html">Get Started</a></li> <li><a href="../../../../../../../design/devices.html">Devices</a></li> <li><a href="../../../../../../../design/style/index.html">Style</a></li> <li><a href="../../../../../../../design/patterns/index.html">Patterns</a></li> <li><a href="../../../../../../../design/building-blocks/index.html">Building Blocks</a></li> <li><a href="../../../../../../../design/downloads/index.html">Downloads</a></li> <li><a href="../../../../../../../design/videos/index.html">Videos</a></li> </ul> </li> <li class="develop"> <ul> <li><a href="../../../../../../../training/index.html" zh-tw-lang="訓練課程" zh-cn-lang="培训" ru-lang="Курсы" ko-lang="교육" ja-lang="トレーニング" es-lang="Capacitación" >Training</a></li> <li><a href="../../../../../../../guide/index.html" zh-tw-lang="API 指南" zh-cn-lang="API 指南" ru-lang="Руководства по API" ko-lang="API 가이드" ja-lang="API ガイド" es-lang="Guías de la API" >API Guides</a></li> <li><a href="../../../../../../../reference/packages.html" zh-tw-lang="參考資源" zh-cn-lang="参考" ru-lang="Справочник" ko-lang="참조문서" ja-lang="リファレンス" es-lang="Referencia" >Reference</a></li> <li><a href="../../../../../../../sdk/index.html" zh-tw-lang="相關工具" zh-cn-lang="工具" ru-lang="Инструменты" ko-lang="도구" ja-lang="ツール" es-lang="Herramientas" >Tools</a> </li> <li><a href="../../../../../../../google/index.html">Google Services</a> </li> </ul> </li> <li class="distribute last"> <ul> <li><a href="../../../../../../../distribute/googleplay/index.html">Google Play</a></li> <li><a href="../../../../../../../distribute/essentials/index.html">Essentials</a></li> <li><a href="../../../../../../../distribute/users/index.html">Get Users</a></li> <li><a href="../../../../../../../distribute/engage/index.html">Engage &amp; Retain</a></li> <li><a href="../../../../../../../distribute/monetize/index.html">Monetize</a></li> <li><a href="../../../../../../../distribute/analyze/index.html">Analyze</a></li> <li><a href="../../../../../../../distribute/tools/index.html">Tools &amp; Reference</a></li> <li><a href="../../../../../../../distribute/stories/index.html">Developer Stories</a></li> </ul> </li> </ul> </div><!-- /Expanded quicknav --> </div><!-- end header-wrap.wrap --> </div><!-- end header --> <!-- Secondary x-nav --> <div id="nav-x"> <div class="wrap" style="position:relative;z-index:1"> <ul class="nav-x col-9 develop" style="width:100%"> <li class="training"><a href="../../../../../../../training/index.html" zh-tw-lang="訓練課程" zh-cn-lang="培训" ru-lang="Курсы" ko-lang="교육" ja-lang="トレーニング" es-lang="Capacitación" >Training</a></li> <li class="guide"><a href="../../../../../../../guide/index.html" zh-tw-lang="API 指南" zh-cn-lang="API 指南" ru-lang="Руководства по API" ko-lang="API 가이드" ja-lang="API ガイド" es-lang="Guías de la API" >API Guides</a></li> <li class="reference"><a href="../../../../../../../reference/packages.html" zh-tw-lang="參考資源" zh-cn-lang="参考" ru-lang="Справочник" ko-lang="참조문서" ja-lang="リファレンス" es-lang="Referencia" >Reference</a></li> <li class="tools"><a href="../../../../../../../sdk/index.html" zh-tw-lang="相關工具" zh-cn-lang="工具" ru-lang="Инструменты" ko-lang="도구" ja-lang="ツール" es-lang="Herramientas" >Tools</a></li> <li class="google"><a href="../../../../../../../google/index.html" >Google Services</a> </li> </ul> </div> </div> <!-- /Sendondary x-nav DEVELOP --> <div id="searchResults" class="wrap" style="display:none;"> <h2 id="searchTitle">Results</h2> <div id="leftSearchControl" class="search-control">Loading...</div> </div> </div> <!--end header-wrapper --> <div id="sticky-header"> <div> <a class="logo" href="#top"></a> <a class="top" href="#top"></a> <ul class="breadcrumb"> <li class="current">DataBuffer</li> </ul> </div> </div> <div class="wrap clearfix" id="body-content"> <div class="col-4" id="side-nav" itemscope itemtype="http://schema.org/SiteNavigationElement"> <div id="devdoc-nav"> <div id="api-nav-header"> <div id="api-level-toggle"> <label for="apiLevelCheckbox" class="disabled" title="Select your target API level to dim unavailable APIs">API level: </label> <div class="select-wrapper"> <select id="apiLevelSelector"> <!-- option elements added by buildApiLevelSelector() --> </select> </div> </div><!-- end toggle --> <div id="api-nav-title">Android APIs</div> </div><!-- end nav header --> <script> var SINCE_DATA = [ ]; buildApiLevelSelector(); </script> <div id="swapper"> <div id="nav-panels"> <div id="resize-packages-nav"> <div id="packages-nav" class="scroll-pane"> <ul> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/package-summary.html">com.google.android.gms</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/actions/package-summary.html">com.google.android.gms.actions</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/ads/package-summary.html">com.google.android.gms.ads</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/ads/doubleclick/package-summary.html">com.google.android.gms.ads.doubleclick</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/ads/identifier/package-summary.html">com.google.android.gms.ads.identifier</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/ads/mediation/package-summary.html">com.google.android.gms.ads.mediation</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/ads/mediation/admob/package-summary.html">com.google.android.gms.ads.mediation.admob</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/ads/mediation/customevent/package-summary.html">com.google.android.gms.ads.mediation.customevent</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/ads/purchase/package-summary.html">com.google.android.gms.ads.purchase</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/ads/search/package-summary.html">com.google.android.gms.ads.search</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/analytics/package-summary.html">com.google.android.gms.analytics</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/analytics/ecommerce/package-summary.html">com.google.android.gms.analytics.ecommerce</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/appindexing/package-summary.html">com.google.android.gms.appindexing</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/appstate/package-summary.html">com.google.android.gms.appstate</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/auth/package-summary.html">com.google.android.gms.auth</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/cast/package-summary.html">com.google.android.gms.cast</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/common/package-summary.html">com.google.android.gms.common</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/common/annotation/package-summary.html">com.google.android.gms.common.annotation</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/common/api/package-summary.html">com.google.android.gms.common.api</a></li> <li class="selected api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/common/data/package-summary.html">com.google.android.gms.common.data</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/common/images/package-summary.html">com.google.android.gms.common.images</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/drive/package-summary.html">com.google.android.gms.drive</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/drive/events/package-summary.html">com.google.android.gms.drive.events</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/drive/metadata/package-summary.html">com.google.android.gms.drive.metadata</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/drive/query/package-summary.html">com.google.android.gms.drive.query</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/drive/widget/package-summary.html">com.google.android.gms.drive.widget</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/fitness/package-summary.html">com.google.android.gms.fitness</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/fitness/data/package-summary.html">com.google.android.gms.fitness.data</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/fitness/request/package-summary.html">com.google.android.gms.fitness.request</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/fitness/result/package-summary.html">com.google.android.gms.fitness.result</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/fitness/service/package-summary.html">com.google.android.gms.fitness.service</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/games/package-summary.html">com.google.android.gms.games</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/games/achievement/package-summary.html">com.google.android.gms.games.achievement</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/games/event/package-summary.html">com.google.android.gms.games.event</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/games/leaderboard/package-summary.html">com.google.android.gms.games.leaderboard</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/games/multiplayer/package-summary.html">com.google.android.gms.games.multiplayer</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/games/multiplayer/realtime/package-summary.html">com.google.android.gms.games.multiplayer.realtime</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/games/multiplayer/turnbased/package-summary.html">com.google.android.gms.games.multiplayer.turnbased</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/games/quest/package-summary.html">com.google.android.gms.games.quest</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/games/request/package-summary.html">com.google.android.gms.games.request</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/games/snapshot/package-summary.html">com.google.android.gms.games.snapshot</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/gcm/package-summary.html">com.google.android.gms.gcm</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/identity/intents/package-summary.html">com.google.android.gms.identity.intents</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/identity/intents/model/package-summary.html">com.google.android.gms.identity.intents.model</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/location/package-summary.html">com.google.android.gms.location</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/location/places/package-summary.html">com.google.android.gms.location.places</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/location/places/ui/package-summary.html">com.google.android.gms.location.places.ui</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/maps/package-summary.html">com.google.android.gms.maps</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/maps/model/package-summary.html">com.google.android.gms.maps.model</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/nearby/package-summary.html">com.google.android.gms.nearby</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/nearby/connection/package-summary.html">com.google.android.gms.nearby.connection</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/panorama/package-summary.html">com.google.android.gms.panorama</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/plus/package-summary.html">com.google.android.gms.plus</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/plus/model/moments/package-summary.html">com.google.android.gms.plus.model.moments</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/plus/model/people/package-summary.html">com.google.android.gms.plus.model.people</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/safetynet/package-summary.html">com.google.android.gms.safetynet</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/security/package-summary.html">com.google.android.gms.security</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/tagmanager/package-summary.html">com.google.android.gms.tagmanager</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/wallet/package-summary.html">com.google.android.gms.wallet</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/wallet/fragment/package-summary.html">com.google.android.gms.wallet.fragment</a></li> <li class="api apilevel-"> <a href="../../../../../../../reference/com/google/android/gms/wearable/package-summary.html">com.google.android.gms.wearable</a></li> </ul><br/> </div> <!-- end packages-nav --> </div> <!-- end resize-packages --> <div id="classes-nav" class="scroll-pane"> <ul> <li><h2>Interfaces</h2> <ul> <li class="selected api apilevel-"><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBuffer.html">DataBuffer</a></li> <li class="api apilevel-"><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBufferObserver.html">DataBufferObserver</a></li> <li class="api apilevel-"><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBufferObserver.Observable.html">DataBufferObserver.Observable</a></li> <li class="api apilevel-"><a href="../../../../../../../reference/com/google/android/gms/common/data/Freezable.html">Freezable</a></li> </ul> </li> <li><h2>Classes</h2> <ul> <li class="api apilevel-"><a href="../../../../../../../reference/com/google/android/gms/common/data/AbstractDataBuffer.html">AbstractDataBuffer</a></li> <li class="api apilevel-"><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBufferObserverSet.html">DataBufferObserverSet</a></li> <li class="api apilevel-"><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBufferUtils.html">DataBufferUtils</a></li> <li class="api apilevel-"><a href="../../../../../../../reference/com/google/android/gms/common/data/FreezableUtils.html">FreezableUtils</a></li> </ul> </li> </ul><br/> </div><!-- end classes --> </div><!-- end nav-panels --> <div id="nav-tree" style="display:none" class="scroll-pane"> <div id="tree-list"></div> </div><!-- end nav-tree --> </div><!-- end swapper --> <div id="nav-swap"> <a class="fullscreen">fullscreen</a> <a href='#' onclick='swapNav();return false;'><span id='tree-link'>Use Tree Navigation</span><span id='panel-link' style='display:none'>Use Panel Navigation</span></a> </div> </div> <!-- end devdoc-nav --> </div> <!-- end side-nav --> <script type="text/javascript"> // init fullscreen based on user pref var fullscreen = readCookie("fullscreen"); if (fullscreen != 0) { if (fullscreen == "false") { toggleFullscreen(false); } else { toggleFullscreen(true); } } // init nav version for mobile if (isMobile) { swapNav(); // tree view should be used on mobile $('#nav-swap').hide(); } else { chooseDefaultNav(); if ($("#nav-tree").is(':visible')) { init_default_navtree("../../../../../../../"); } } // scroll the selected page into view $(document).ready(function() { scrollIntoView("packages-nav"); scrollIntoView("classes-nav"); }); </script> <div class="col-12" id="doc-col"> <div id="api-info-block"> <div class="sum-details-links"> Summary: <a href="#pubmethods">Methods</a> &#124; <a href="#inhmethods">Inherited Methods</a> &#124; <a href="#" onclick="return toggleAllClassInherited()" id="toggleAllClassInherited">[Expand All]</a> </div><!-- end sum-details-links --> <div class="api-level"> </div> </div><!-- end api-info-block --> <!-- ======== START OF CLASS DATA ======== --> <div id="jd-header"> public interface <h1 itemprop="name">DataBuffer</h1> implements <a href="http://developer.android.com/reference/java/lang/Iterable.html">Iterable</a>&lt;T&gt; <a href="../../../../../../../reference/com/google/android/gms/common/api/Releasable.html">Releasable</a> </div><!-- end header --> <div id="naMessage"></div> <div id="jd-content" class="api apilevel-"> <table class="jd-inheritance-table"> <tr> <td colspan="1" class="jd-inheritance-class-cell">com.google.android.gms.common.data.DataBuffer&lt;T&gt;</td> </tr> </table> <table class="jd-sumtable jd-sumtable-subclasses"><tr><td colspan="12" style="border:none;margin:0;padding:0;"> <a href="#" onclick="return toggleInherited(this, null)" id="subclasses-indirect" class="jd-expando-trigger closed" ><img id="subclasses-indirect-trigger" src="../../../../../../../assets/images/triangle-closed.png" class="jd-expando-trigger-img" /></a>Known Indirect Subclasses <div id="subclasses-indirect"> <div id="subclasses-indirect-list" class="jd-inheritedlinks" > <a href="../../../../../../../reference/com/google/android/gms/common/data/AbstractDataBuffer.html">AbstractDataBuffer</a>&lt;T&gt;, <a href="../../../../../../../reference/com/google/android/gms/games/achievement/AchievementBuffer.html">AchievementBuffer</a>, <a href="../../../../../../../reference/com/google/android/gms/appstate/AppStateBuffer.html">AppStateBuffer</a>, <a href="../../../../../../../reference/com/google/android/gms/location/places/AutocompletePredictionBuffer.html">AutocompletePredictionBuffer</a>, <a href="../../../../../../../reference/com/google/android/gms/wearable/DataEventBuffer.html">DataEventBuffer</a>, <a href="../../../../../../../reference/com/google/android/gms/wearable/DataItemBuffer.html">DataItemBuffer</a>, and <a href="#" onclick="return toggleInherited(document.getElementById('subclasses-indirect', null))">8 others.</a> </div> <div id="subclasses-indirect-summary" style="display: none;" > <table class="jd-sumtable-expando"> <tr class="alt-color api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/common/data/AbstractDataBuffer.html">AbstractDataBuffer</a>&lt;T&gt;</td> <td class="jd-descrcol" width="100%"> Default implementation of DataBuffer.&nbsp; </td> </tr> <tr class=" api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/games/achievement/AchievementBuffer.html">AchievementBuffer</a></td> <td class="jd-descrcol" width="100%"> Data structure providing access to a list of achievements.&nbsp; </td> </tr> <tr class="alt-color api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/appstate/AppStateBuffer.html">AppStateBuffer</a></td> <td class="jd-descrcol" width="100%"> Data structure providing access to a list of app states.&nbsp; </td> </tr> <tr class=" api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/location/places/AutocompletePredictionBuffer.html">AutocompletePredictionBuffer</a></td> <td class="jd-descrcol" width="100%"> A <code>DataBuffer</code> that represents a list of AutocompletePredictionEntitys.&nbsp; </td> </tr> <tr class="alt-color api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/wearable/DataEventBuffer.html">DataEventBuffer</a></td> <td class="jd-descrcol" width="100%"> Data structure holding references to a set of events.&nbsp; </td> </tr> <tr class=" api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/wearable/DataItemBuffer.html">DataItemBuffer</a></td> <td class="jd-descrcol" width="100%"> Data structure holding reference to a set of <code><a href="../../../../../../../reference/com/google/android/gms/wearable/DataItem.html">DataItem</a></code>s.&nbsp; </td> </tr> <tr class="alt-color api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/games/event/EventBuffer.html">EventBuffer</a></td> <td class="jd-descrcol" width="100%"> Data structure providing access to a list of events.&nbsp; </td> </tr> <tr class=" api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/games/GameBuffer.html">GameBuffer</a></td> <td class="jd-descrcol" width="100%"> Data structure providing access to a list of games.&nbsp; </td> </tr> <tr class="alt-color api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/games/request/GameRequestBuffer.html">GameRequestBuffer</a></td> <td class="jd-descrcol" width="100%"> EntityBuffer implementation containing Request details.&nbsp; </td> </tr> <tr class=" api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/games/multiplayer/InvitationBuffer.html">InvitationBuffer</a></td> <td class="jd-descrcol" width="100%"> EntityBuffer implementation containing Invitation data.&nbsp; </td> </tr> <tr class="alt-color api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/games/leaderboard/LeaderboardBuffer.html">LeaderboardBuffer</a></td> <td class="jd-descrcol" width="100%"> EntityBuffer containing Leaderboard data.&nbsp; </td> </tr> <tr class=" api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/games/leaderboard/LeaderboardScoreBuffer.html">LeaderboardScoreBuffer</a></td> <td class="jd-descrcol" width="100%"> <code><a href="../../../../../../../reference/com/google/android/gms/common/data/AbstractDataBuffer.html">AbstractDataBuffer</a></code> containing LeaderboardScore data.&nbsp; </td> </tr> <tr class="alt-color api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/drive/MetadataBuffer.html">MetadataBuffer</a></td> <td class="jd-descrcol" width="100%"> A data buffer that points to Metadata entries.&nbsp; </td> </tr> <tr class=" api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/games/quest/MilestoneBuffer.html">MilestoneBuffer</a></td> <td class="jd-descrcol" width="100%"> <code><a href="../../../../../../../reference/com/google/android/gms/common/data/AbstractDataBuffer.html">AbstractDataBuffer</a></code> implementation containing quest milestone data.&nbsp; </td> </tr> <tr class="alt-color api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/plus/model/moments/MomentBuffer.html">MomentBuffer</a></td> <td class="jd-descrcol" width="100%"> Data structure providing access to a list of <code><a href="../../../../../../../reference/com/google/android/gms/plus/model/moments/Moment.html">Moment</a></code> objects.&nbsp; </td> </tr> <tr class=" api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/games/multiplayer/ParticipantBuffer.html">ParticipantBuffer</a></td> <td class="jd-descrcol" width="100%"> <code><a href="../../../../../../../reference/com/google/android/gms/common/data/AbstractDataBuffer.html">AbstractDataBuffer</a></code> implementation containing match participant data.&nbsp; </td> </tr> <tr class="alt-color api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/plus/model/people/PersonBuffer.html">PersonBuffer</a></td> <td class="jd-descrcol" width="100%"> Data structure providing access to a list of <code><a href="../../../../../../../reference/com/google/android/gms/plus/model/people/Person.html">Person</a></code> objects.&nbsp; </td> </tr> <tr class=" api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/location/places/PlaceBuffer.html">PlaceBuffer</a></td> <td class="jd-descrcol" width="100%"> Data structure providing access to a list of <code><a href="../../../../../../../reference/com/google/android/gms/location/places/Place.html">Places</a></code>.&nbsp; </td> </tr> <tr class="alt-color api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/location/places/PlaceLikelihoodBuffer.html">PlaceLikelihoodBuffer</a></td> <td class="jd-descrcol" width="100%"> A <code>DataBuffer</code> that represents a list of <code>PlaceLikelihood</code>s.&nbsp; </td> </tr> <tr class=" api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/games/PlayerBuffer.html">PlayerBuffer</a></td> <td class="jd-descrcol" width="100%"> Data structure providing access to a list of players.&nbsp; </td> </tr> <tr class="alt-color api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/games/quest/QuestBuffer.html">QuestBuffer</a></td> <td class="jd-descrcol" width="100%"> EntityBuffer implementation containing Quest details.&nbsp; </td> </tr> <tr class=" api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/games/snapshot/SnapshotMetadataBuffer.html">SnapshotMetadataBuffer</a></td> <td class="jd-descrcol" width="100%"> Data structure providing access to a list of snapshots.&nbsp; </td> </tr> <tr class="alt-color api apilevel-" > <td class="jd-linkcol"><a href="../../../../../../../reference/com/google/android/gms/games/multiplayer/turnbased/TurnBasedMatchBuffer.html">TurnBasedMatchBuffer</a></td> <td class="jd-descrcol" width="100%"> EntityBuffer implementation containing TurnBasedMatch details.&nbsp; </td> </tr> </table> </div> </div> </td></tr></table> <div class="jd-descr"> <h2>Class Overview</h2> <p itemprop="articleBody">Interface for a buffer of typed data. </p> </div><!-- jd-descr --> <div class="jd-descr"> <h2>Summary</h2> <!-- ========== METHOD SUMMARY =========== --> <table id="pubmethods" class="jd-sumtable"><tr><th colspan="12">Public Methods</th></tr> <tr class="alt-color api apilevel-" > <td class="jd-typecol"><nobr> abstract void</nobr> </td> <td class="jd-linkcol" width="100%"><nobr> <span class="sympad"><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBuffer.html#close()">close</a></span>()</nobr> <div class="jd-descrdiv"> <em> This method is deprecated. use <code><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBuffer.html#release()">release()</a></code> instead </em> </div> </td></tr> <tr class=" api apilevel-" > <td class="jd-typecol"><nobr> abstract T</nobr> </td> <td class="jd-linkcol" width="100%"><nobr> <span class="sympad"><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBuffer.html#get(int)">get</a></span>(int position)</nobr> <div class="jd-descrdiv"> Returns an element on specified position. </div> </td></tr> <tr class="alt-color api apilevel-" > <td class="jd-typecol"><nobr> abstract int</nobr> </td> <td class="jd-linkcol" width="100%"><nobr> <span class="sympad"><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBuffer.html#getCount()">getCount</a></span>()</nobr> </td></tr> <tr class=" api apilevel-" > <td class="jd-typecol"><nobr> abstract boolean</nobr> </td> <td class="jd-linkcol" width="100%"><nobr> <span class="sympad"><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBuffer.html#isClosed()">isClosed</a></span>()</nobr> <div class="jd-descrdiv"> <em> This method is deprecated. <code><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBuffer.html#release()">release()</a></code> is idempotent, and so is safe to call multiple times </em> </div> </td></tr> <tr class="alt-color api apilevel-" > <td class="jd-typecol"><nobr> abstract <a href="http://developer.android.com/reference/java/util/Iterator.html">Iterator</a>&lt;T&gt;</nobr> </td> <td class="jd-linkcol" width="100%"><nobr> <span class="sympad"><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBuffer.html#iterator()">iterator</a></span>()</nobr> </td></tr> <tr class=" api apilevel-" > <td class="jd-typecol"><nobr> abstract void</nobr> </td> <td class="jd-linkcol" width="100%"><nobr> <span class="sympad"><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBuffer.html#release()">release</a></span>()</nobr> <div class="jd-descrdiv"> Releases resources used by the buffer. </div> </td></tr> <tr class="alt-color api apilevel-" > <td class="jd-typecol"><nobr> abstract <a href="http://developer.android.com/reference/java/util/Iterator.html">Iterator</a>&lt;T&gt;</nobr> </td> <td class="jd-linkcol" width="100%"><nobr> <span class="sympad"><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBuffer.html#singleRefIterator()">singleRefIterator</a></span>()</nobr> <div class="jd-descrdiv"> In order to use this iterator it should be supported by particular <code>DataBuffer</code>. </div> </td></tr> </table> <!-- ========== METHOD SUMMARY =========== --> <table id="inhmethods" class="jd-sumtable"><tr><th> <a href="#" class="toggle-all" onclick="return toggleAllInherited(this, null)">[Expand]</a> <div style="clear:left;">Inherited Methods</div></th></tr> <tr class="api apilevel-" > <td colspan="12"> <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-java.lang.Iterable" class="jd-expando-trigger closed" ><img id="inherited-methods-java.lang.Iterable-trigger" src="../../../../../../../assets/images/triangle-closed.png" class="jd-expando-trigger-img" /></a> From interface <a href="http://developer.android.com/reference/java/lang/Iterable.html">java.lang.Iterable</a> <div id="inherited-methods-java.lang.Iterable"> <div id="inherited-methods-java.lang.Iterable-list" class="jd-inheritedlinks"> </div> <div id="inherited-methods-java.lang.Iterable-summary" style="display: none;"> <table class="jd-sumtable-expando"> <tr class="alt-color api apilevel-" > <td class="jd-typecol"><nobr> abstract <a href="http://developer.android.com/reference/java/util/Iterator.html">Iterator</a>&lt;T&gt;</nobr> </td> <td class="jd-linkcol" width="100%"><nobr> <span class="sympad">iterator</span>()</nobr> </td></tr> </table> </div> </div> </td></tr> <tr class="api apilevel-" > <td colspan="12"> <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-com.google.android.gms.common.api.Releasable" class="jd-expando-trigger closed" ><img id="inherited-methods-com.google.android.gms.common.api.Releasable-trigger" src="../../../../../../../assets/images/triangle-closed.png" class="jd-expando-trigger-img" /></a> From interface <a href="../../../../../../../reference/com/google/android/gms/common/api/Releasable.html">com.google.android.gms.common.api.Releasable</a> <div id="inherited-methods-com.google.android.gms.common.api.Releasable"> <div id="inherited-methods-com.google.android.gms.common.api.Releasable-list" class="jd-inheritedlinks"> </div> <div id="inherited-methods-com.google.android.gms.common.api.Releasable-summary" style="display: none;"> <table class="jd-sumtable-expando"> <tr class="alt-color api apilevel-" > <td class="jd-typecol"><nobr> abstract void</nobr> </td> <td class="jd-linkcol" width="100%"><nobr> <span class="sympad"><a href="../../../../../../../reference/com/google/android/gms/common/api/Releasable.html#release()">release</a></span>()</nobr> </td></tr> </table> </div> </div> </td></tr> </table> </div><!-- jd-descr (summary) --> <!-- Details --> <!-- XML Attributes --> <!-- Enum Values --> <!-- Constants --> <!-- Fields --> <!-- Public ctors --> <!-- ========= CONSTRUCTOR DETAIL ======== --> <!-- Protected ctors --> <!-- ========= METHOD DETAIL ======== --> <!-- Public methdos --> <h2>Public Methods</h2> <A NAME="close()"></A> <div class="jd-details api apilevel-"> <h4 class="jd-details-title"> <span class="normal"> public abstract void </span> <span class="sympad">close</span> <span class="normal">()</span> </h4> <div class="api-level"> <div></div> </div> <div class="jd-details-descr"> <p> <p class="caution"><strong> This method is deprecated.</strong><br/> use <code><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBuffer.html#release()">release()</a></code> instead </p> <div class="jd-tagdata jd-tagdescr"><p></p></div> </div> </div> <A NAME="get(int)"></A> <div class="jd-details api apilevel-"> <h4 class="jd-details-title"> <span class="normal"> public abstract T </span> <span class="sympad">get</span> <span class="normal">(int position)</span> </h4> <div class="api-level"> <div></div> </div> <div class="jd-details-descr"> <div class="jd-tagdata jd-tagdescr"><p>Returns an element on specified position. </p></div> </div> </div> <A NAME="getCount()"></A> <div class="jd-details api apilevel-"> <h4 class="jd-details-title"> <span class="normal"> public abstract int </span> <span class="sympad">getCount</span> <span class="normal">()</span> </h4> <div class="api-level"> <div></div> </div> <div class="jd-details-descr"> <div class="jd-tagdata jd-tagdescr"><p></p></div> </div> </div> <A NAME="isClosed()"></A> <div class="jd-details api apilevel-"> <h4 class="jd-details-title"> <span class="normal"> public abstract boolean </span> <span class="sympad">isClosed</span> <span class="normal">()</span> </h4> <div class="api-level"> <div></div> </div> <div class="jd-details-descr"> <p> <p class="caution"><strong> This method is deprecated.</strong><br/> <code><a href="../../../../../../../reference/com/google/android/gms/common/data/DataBuffer.html#release()">release()</a></code> is idempotent, and so is safe to call multiple times </p> <div class="jd-tagdata jd-tagdescr"><p></p></div> </div> </div> <A NAME="iterator()"></A> <div class="jd-details api apilevel-"> <h4 class="jd-details-title"> <span class="normal"> public abstract <a href="http://developer.android.com/reference/java/util/Iterator.html">Iterator</a>&lt;T&gt; </span> <span class="sympad">iterator</span> <span class="normal">()</span> </h4> <div class="api-level"> <div></div> </div> <div class="jd-details-descr"> <div class="jd-tagdata jd-tagdescr"><p></p></div> </div> </div> <A NAME="release()"></A> <div class="jd-details api apilevel-"> <h4 class="jd-details-title"> <span class="normal"> public abstract void </span> <span class="sympad">release</span> <span class="normal">()</span> </h4> <div class="api-level"> <div></div> </div> <div class="jd-details-descr"> <div class="jd-tagdata jd-tagdescr"><p>Releases resources used by the buffer. This method is idempotent. </p></div> </div> </div> <A NAME="singleRefIterator()"></A> <div class="jd-details api apilevel-"> <h4 class="jd-details-title"> <span class="normal"> public abstract <a href="http://developer.android.com/reference/java/util/Iterator.html">Iterator</a>&lt;T&gt; </span> <span class="sympad">singleRefIterator</span> <span class="normal">()</span> </h4> <div class="api-level"> <div></div> </div> <div class="jd-details-descr"> <div class="jd-tagdata jd-tagdescr"><p>In order to use this iterator it should be supported by particular <code>DataBuffer</code>. Be careful: there will be single reference while iterating. If you are not sure - DO NOT USE this iterator. </p></div> </div> </div> <!-- ========= METHOD DETAIL ======== --> <!-- ========= END OF CLASS DATA ========= --> <A NAME="navbar_top"></A> <div id="footer" class="wrap" > <div id="copyright"> Except as noted, this content is licensed under <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache 2.0</a>. For details and restrictions, see the <a href="../../../../../../../license.html"> Content License</a>. </div> <div id="build_info"> Android GmsCore 1784785&nbsp;r &mdash; <script src="../../../../../../../timestamp.js" type="text/javascript"></script> <script>document.write(BUILD_TIMESTAMP)</script> </div> <div id="footerlinks"> <p> <a href="../../../../../../../about/index.html">About Android</a>&nbsp;&nbsp;|&nbsp; <a href="../../../../../../../legal.html">Legal</a>&nbsp;&nbsp;|&nbsp; <a href="../../../../../../../support.html">Support</a> </p> </div> </div> <!-- end footer --> </div> <!-- jd-content --> </div><!-- end doc-content --> </div> <!-- end body-content --> </body> </html>
CMPUT301W15T05/TrackerExpress
google-play-services_lib/docs/reference/com/google/android/gms/common/data/DataBuffer.html
HTML
mit
56,195
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"/> <title>+Ramboia</title> <link href="css/app.min.css" rel="stylesheet"/> <script src="/js/libs/modernizr.js"></script> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> </head> <body id="ramboia"> <header class="application-header"> <h1 class="application-title">+Ramboia</h1> </header> <main class="application"> <div class="video-container-wrapper"> <div class="video-container"> <div class="wrapper"> <div id="player" class="video-player"></div> </div> <div class="video-player-controls"> <button class="video-mute" id="video-mute">Mute</button> <p class="video-time"> <span class="video-time-current" id="video-time-current">0:00</span>/<span class="video-time-total" id="video-time-total">0:00</span> </p> </div> </div> </div> <ul class="playlist" id="playlist"> <!-- <li class="playlist-entry" title="Video Title (Requested by Username)"> <a href="http://youtube.com" target="_blank"> <img class="playlist-entry-background" src="http://placehold.it/854x480"/> <h1 class="playlist-entry-title">Video Title</h1> </a> </li> --> </ul> </main> <script src="/js/libs/polyfill.min.js"></script> <script src="/js/main.min.js"></script> <script> mais_ramboia.start(); </script> </body> </html>
d3x7r0/mais_ramboia
app/client/index.html
HTML
mit
1,710
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Function ReadMap | TPS Broadcast</title> <link rel="stylesheet" href="resources/style.css?e99947befd7bf673c6b43ff75e9e0f170c88a60e"> </head> <body> <div id="left"> <div id="menu"> <a href="index.html" title="Overview"><span>Overview</span></a> <div id="groups"> <h3>Namespaces</h3> <ul> <li class="active"> <a href="namespace-None.html"> None </a> </li> <li> <a href="namespace-PHP.html"> PHP </a> </li> <li> <a href="namespace-TPS.html"> TPS </a> </li> </ul> </div> <hr> <div id="elements"> <h3>Classes</h3> <ul> <li><a href="class-Barcode.html" class="invalid">Barcode</a></li> <li><a href="class-Barcode11.html" class="invalid">Barcode11</a></li> <li><a href="class-Barcode128.html" class="invalid">Barcode128</a></li> <li><a href="class-Barcode39.html" class="invalid">Barcode39</a></li> <li><a href="class-Barcode93.html" class="invalid">Barcode93</a></li> <li><a href="class-BarcodeCodabar.html" class="invalid">BarcodeCodabar</a></li> <li><a href="class-BarcodeDatamatrix.html" class="invalid">BarcodeDatamatrix</a></li> <li><a href="class-BarcodeEAN.html" class="invalid">BarcodeEAN</a></li> <li><a href="class-BarcodeI25.html" class="invalid">BarcodeI25</a></li> <li><a href="class-BarcodeMSI.html" class="invalid">BarcodeMSI</a></li> <li><a href="class-BarcodeUPC.html" class="invalid">BarcodeUPC</a></li> <li><a href="class-BCGBarcode.html">BCGBarcode</a></li> <li><a href="class-BCGBarcode1D.html">BCGBarcode1D</a></li> <li><a href="class-BCGcodabar.html">BCGcodabar</a></li> <li><a href="class-BCGcode11.html">BCGcode11</a></li> <li><a href="class-BCGcode128.html">BCGcode128</a></li> <li><a href="class-BCGcode39.html">BCGcode39</a></li> <li><a href="class-BCGcode39extended.html">BCGcode39extended</a></li> <li><a href="class-BCGcode93.html">BCGcode93</a></li> <li><a href="class-BCGColor.html">BCGColor</a></li> <li><a href="class-BCGDraw.html">BCGDraw</a></li> <li><a href="class-BCGDrawing.html">BCGDrawing</a></li> <li><a href="class-BCGDrawJPG.html">BCGDrawJPG</a></li> <li><a href="class-BCGDrawPNG.html">BCGDrawPNG</a></li> <li><a href="class-BCGean13.html">BCGean13</a></li> <li><a href="class-BCGean8.html">BCGean8</a></li> <li><a href="class-BCGFontFile.html">BCGFontFile</a></li> <li><a href="class-BCGFontPhp.html">BCGFontPhp</a></li> <li><a href="class-BCGgs1128.html">BCGgs1128</a></li> <li><a href="class-BCGi25.html">BCGi25</a></li> <li><a href="class-BCGintelligentmail.html">BCGintelligentmail</a></li> <li><a href="class-BCGisbn.html">BCGisbn</a></li> <li><a href="class-BCGLabel.html">BCGLabel</a></li> <li><a href="class-BCGmsi.html">BCGmsi</a></li> <li><a href="class-BCGothercode.html">BCGothercode</a></li> <li><a href="class-BCGpostnet.html">BCGpostnet</a></li> <li><a href="class-BCGs25.html">BCGs25</a></li> <li><a href="class-BCGupca.html">BCGupca</a></li> <li><a href="class-BCGupce.html">BCGupce</a></li> <li><a href="class-BCGupcext2.html">BCGupcext2</a></li> <li><a href="class-BCGupcext5.html">BCGupcext5</a></li> <li><a href="class-JoinDraw.html">JoinDraw</a></li> <li><a href="class-LibraryAPI.html">LibraryAPI</a></li> <li><a href="class-playing.html">playing</a></li> <li><a href="class-standardResult.html">standardResult</a></li> <li><a href="class-TPS_Cron.html">TPS_Cron</a></li> </ul> <h3>Interfaces</h3> <ul> <li><a href="class-BCGFont.html">BCGFont</a></li> </ul> <h3>Exceptions</h3> <ul> <li><a href="class-BCGArgumentException.html">BCGArgumentException</a></li> <li><a href="class-BCGDrawException.html">BCGDrawException</a></li> <li><a href="class-BCGParseException.html">BCGParseException</a></li> </ul> <h3>Functions</h3> <ul> <li><a href="function-absolute_include.html">absolute_include</a></li> <li><a href="function-ApplyUpdate.html">ApplyUpdate</a></li> <li><a href="function-baseCustomSetup.html">baseCustomSetup</a></li> <li><a href="function-checkbrute.html">checkbrute</a></li> <li><a href="function-CheckStorage.html">CheckStorage</a></li> <li><a href="function-CheckTTF.html" class="invalid">CheckTTF</a></li> <li><a href="function-CheckUpdate.html">CheckUpdate</a></li> <li><a href="function-CheckUpdateStatus.html">CheckUpdateStatus</a></li> <li><a href="function-convertTime.html" class="invalid">convertTime</a></li> <li><a href="function-customSetup.html" class="invalid">customSetup</a></li> <li><a href="function-DatabaseUpdateApply.html">DatabaseUpdateApply</a></li> <li><a href="function-DatabaseUpdateCheck.html">DatabaseUpdateCheck</a></li> <li><a href="function-DB_Auth.html">DB_Auth</a></li> <li><a href="function-db_close.html">db_close</a></li> <li><a href="function-db_conn.html">db_conn</a></li> <li><a href="function-decrypt.html">decrypt</a></li> <li><a href="function-drawCross.html" class="invalid">drawCross</a></li> <li><a href="function-easy_crypt.html">easy_crypt</a></li> <li><a href="function-easy_decrypt.html">easy_decrypt</a></li> <li><a href="function-encrypt.html">encrypt</a></li> <li><a href="function-esc_url.html">esc_url</a></li> <li><a href="function-Extensions.html">Extensions</a></li> <li><a href="function-file_put_contents.html" class="invalid">file_put_contents</a></li> <li><a href="function-findHOME.html">findHOME</a></li> <li><a href="function-findLocal.html">findLocal</a></li> <li><a href="function-findValueFromKey.html">findValueFromKey</a></li> <li><a href="function-gen_trivial_password.html">gen_trivial_password</a></li> <li><a href="function-getBrowser.html" class="invalid">getBrowser</a></li> <li><a href="function-getButton.html">getButton</a></li> <li><a href="function-getCheckboxHtml.html">getCheckboxHtml</a></li> <li><a href="function-getElementHtml.html">getElementHtml</a></li> <li><a href="function-getImageKeys.html">getImageKeys</a></li> <li><a href="function-getInputTextHtml.html">getInputTextHtml</a></li> <li><a href="function-GetLabelbyId.html" class="deprecated">GetLabelbyId</a></li> <li><a href="function-GetLibraryfull.html" class="deprecated">GetLibraryfull</a></li> <li><a href="function-GetLibraryRefcode.html" class="deprecated">GetLibraryRefcode</a></li> <li><a href="function-getOptionGroup.html">getOptionGroup</a></li> <li><a href="function-getOptionHtml.html">getOptionHtml</a></li> <li><a href="function-getRealIpAddr.html" class="invalid">getRealIpAddr</a></li> <li><a href="function-GetResponse.html">GetResponse</a></li> <li><a href="function-getSelectHtml.html">getSelectHtml</a></li> <li><a href="function-GetWebsitesbyRefCode.html" class="deprecated">GetWebsitesbyRefCode</a></li> <li><a href="function-is_session_started.html">is_session_started</a></li> <li><a href="function-LDAP_AUTH.html">LDAP_AUTH</a></li> <li><a href="function-listbarcodes.html">listbarcodes</a></li> <li><a href="function-listfonts.html">listfonts</a></li> <li><a href="function-ListLibrary.html" class="deprecated">ListLibrary</a></li> <li><a href="function-LoadStorage.html">LoadStorage</a></li> <li><a href="function-login.html">login</a></li> <li><a href="function-login_check.html">login_check</a></li> <li><a href="function-MakeFont.html" class="invalid">MakeFont</a></li> <li><a href="function-MakeFontDescriptor.html" class="invalid">MakeFontDescriptor</a></li> <li><a href="function-MakeFontEncoding.html" class="invalid">MakeFontEncoding</a></li> <li><a href="function-MakeWidthArray.html" class="invalid">MakeWidthArray</a></li> <li><a href="function-ReadAFM.html" class="invalid">ReadAFM</a></li> <li><a href="function-ReadLong.html" class="invalid">ReadLong</a></li> <li class="active"><a href="function-ReadMap.html" class="invalid">ReadMap</a></li> <li><a href="function-ReadShort.html" class="invalid">ReadShort</a></li> <li><a href="function-registerImageKey.html">registerImageKey</a></li> <li><a href="function-remove_utf8_bom.html">remove_utf8_bom</a></li> <li><a href="function-SaveStorage.html">SaveStorage</a></li> <li><a href="function-SaveToFile.html" class="invalid">SaveToFile</a></li> <li><a href="function-SearchLibrary.html">SearchLibrary</a></li> <li><a href="function-sec_session_start.html">sec_session_start</a></li> <li><a href="function-set_db_params.html">set_db_params</a></li> <li><a href="function-showError.html">showError</a></li> <li><a href="function-to12hour.html" class="invalid">to12hour</a></li> <li><a href="function-to24hour.html" class="invalid">to24hour</a></li> <li><a href="function-track_can_play.html">track_can_play</a></li> <li><a href="function-UPCAbarcode.html">UPCAbarcode</a></li> <li><a href="function-UpdateMeta.html">UpdateMeta</a></li> <li><a href="function-validate_EAN13Barcode.html">validate_EAN13Barcode</a></li> <li><a href="function-validate_UPCABarcode.html">validate_UPCABarcode</a></li> <li><a href="function-Versions.html">Versions</a></li> </ul> </div> </div> </div> <div id="splitter"></div> <div id="right"> <div id="rightInner"> <form id="search"> <input type="hidden" name="cx" value=""> <input type="hidden" name="ie" value="UTF-8"> <input type="text" name="q" class="text" placeholder="Search"> </form> <div id="navigation"> <ul> <li> <a href="index.html" title="Overview"><span>Overview</span></a> </li> <li> <a href="namespace-None.html" title="Summary of None"><span>Namespace</span></a> </li> <li class="active"> <span>Function</span> </li> </ul> <ul> <li> <a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a> </li> <li> <a href="annotation-group-todo.html" title="List of elements with todo annotation"> <span>Todo</span> </a> </li> </ul> <ul> </ul> </div> <div id="content" class="function"> <h1>Function ReadMap</h1> <div class="invalid"> <p> Documentation of this function could not be generated. </p> <p> Function was originally declared in oep/EPV3/PHP/font/makefont/makefont.php and is invalid because of: </p> <ul> </ul> </div> </div> <div id="footer"> TPS Broadcast API documentation generated by <a href="http://apigen.org">ApiGen</a> </div> </div> </div> <script src="resources/combined.js?f700aafc2c9e22e0635535bb7de0c40d6e0a03bf"></script> <script src="elementlist.js?a785c24267a6ce47f6feba5a12569f64f5b90772"></script> </body> </html>
TDXDigital/TPS
docs/function-ReadMap.html
HTML
mit
10,869
<div class="container"> <h5 style="display: inline">Remain energy </h5><h5 style="display: inline">{{remainEnergy| number:'1.2-2'}} watts</h5><h5 style="display: inline">, used energy </h5><h5 style="display: inline">{{usedEnergy| number:'1.2-2'}}</h5><h5 style="display: inline">, for day.</h5> </div> <div> <div class="container row"> <table class="table table-striped col s5" [mfData]="data" #mf="mfDataTable" [mfRowsOnPage]="5"> <thead> <tr> <th style="width: 80%"> <mfDefaultSorter by="name">Name</mfDefaultSorter> </th> <th style="width: 20%"> <mfDefaultSorter by="watts">Watts</mfDefaultSorter> </th> </tr> </thead> <tbody> <tr style="cursor: pointer;" *ngFor="let item of toDos" (click)="addTodo(item)"> <td>{{item.name}}</td> <td>{{item.watts}}</td> </tr> </tbody> <tfoot> <tr> <td colspan="4"> <mfBootstrapPaginator [rowsOnPageSet]="[5,10,25]"></mfBootstrapPaginator> </td> </tr> </tfoot> </table> <div class="col s1"></div> <table class="table table-striped col s5" [mfData]="data" #mf="mfDataTable" [mfRowsOnPage]="5"> <thead> <tr> <th style="width: 50%"> <mfDefaultSorter by="name">Name</mfDefaultSorter> </th> <th style="width: 22%"> <mfDefaultSorter by="minutes">Minutes</mfDefaultSorter> </th> <th style="width: 22%"> <mfDefaultSorter by="watts">Watts</mfDefaultSorter> </th> <th style="width: 6%"> <mfDefaultSorter>Remove</mfDefaultSorter> </th> </tr> </thead> <tbody> <tr *ngFor="let item of myTodos"> <td>{{item.name}}</td> <td><input style="margin:0;border-bottom: none; height: inherit;" [(ngModel)]="item.minutes" (change)="changeMyTodo(item)"></td> <td>{{item.sumWatts| number:'1.2-2'}}</td> <td style="float: right; color: red; cursor: pointer;" (click)="deleteTodo(item)">x</td> </tr> </tbody> <tfoot> <tr> <td colspan="4"> <mfBootstrapPaginator [rowsOnPageSet]="[5,10,25]"></mfBootstrapPaginator> </td> </tr> </tfoot> </table> </div> </div>
sunstriders/42degrees
src/app/about/about.component.html
HTML
mit
2,745
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>higman-s: 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 / extra-dev</a></li> <li class="active"><a href="">dev / higman-s - 8.5.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> higman-s <small> 8.5.0 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2019-11-30 21:22:11 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2019-11-30 21:22:11 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-m4 1 Virtual package relying on m4 coq dev Formal proof management system num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.09.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.09.0 Official release 4.09.0 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.8.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;[email protected]&quot; homepage: &quot;https://github.com/coq-contribs/higman-s&quot; license: &quot;LGPL&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/HigmanS&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.5&quot; &amp; &lt; &quot;8.6~&quot;} ] tags: [ &quot;keyword:higman&#39;s lemma&quot; &quot;keyword:well quasi ordering&quot; &quot;category:Mathematics/Combinatorics and Graph Theory&quot; &quot;date:2007-09-14&quot; ] authors: [ &quot;William Delobel &lt;[email protected]&gt;&quot; ] bug-reports: &quot;https://github.com/coq-contribs/higman-s/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/higman-s.git&quot; synopsis: &quot;Higman&#39;s lemma on an unrestricted alphabet&quot; description: &quot;This proof is more or less the proof given by Monika Seisenberger in \&quot;An Inductive Version of Nash-Williams&#39; Minimal-Bad-Sequence Argument for Higman&#39;s Lemma\&quot;.&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/higman-s/archive/v8.5.0.tar.gz&quot; checksum: &quot;md5=3f304e5b60fe9760b55d0d3ed2ca8d51&quot; } </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-higman-s.8.5.0 coq.dev</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is dev). The following dependencies couldn&#39;t be met: - coq-higman-s -&gt; coq &lt; 8.6~ -&gt; ocaml &lt; 4.06.0 base of this switch (use `--unlock-base&#39; to force) Your request can&#39;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-higman-s.8.5.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <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
clean/Linux-x86_64-4.09.0-2.0.5/extra-dev/dev/higman-s/8.5.0.html
HTML
mit
6,964
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>unimath-substitution-systems: 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.13.0 / unimath-substitution-systems - 0.1.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> unimath-substitution-systems <small> 0.1.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-02-11 02:59:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-11 02:59:41 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.13.0 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.13.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.13.1 Official release 4.13.1 ocaml-config 2 OCaml Switch Configuration ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled ocamlfind 1.9.3 A library manager for OCaml zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;[email protected]&quot; homepage: &quot;https://github.com/UniMath/UniMath&quot; dev-repo: &quot;git+https://github.com/UniMath/UniMath.git&quot; bug-reports: &quot;https://github.com/UniMath/UniMath/issues&quot; license: &quot;Kind of MIT&quot; authors: [&quot;The UniMath Development Team&quot;] build: [ [&quot;coq_makefile&quot; &quot;-f&quot; &quot;Make&quot; &quot;-o&quot; &quot;Makefile&quot;] [make &quot;-j%{jobs}%&quot;] ] install: [ [make &quot;install&quot;] ] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.5.0&quot; &amp; &lt; &quot;8.6&quot;} &quot;coq-unimath-category-theory&quot; &quot;coq-unimath-foundations&quot; ] synopsis: &quot;Aims to formalize a substantial body of mathematics using the univalent point of view&quot; extra-files: [&quot;Make&quot; &quot;md5=8606de3f7fc761f04872219361ba9c7d&quot;] url { src: &quot;https://github.com/UniMath/UniMath/archive/v0.1.tar.gz&quot; checksum: &quot;md5=1ed57c1028e227a309f428a6dc5f0866&quot; } </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-unimath-substitution-systems.0.1.0 coq.8.13.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.13.0). The following dependencies couldn&#39;t be met: - coq-unimath-substitution-systems -&gt; coq &lt; 8.6 -&gt; ocaml &lt; 4.06.0 base of this switch (use `--unlock-base&#39; to force) No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-unimath-substitution-systems.0.1.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.13.1-2.0.10/released/8.13.0/unimath-substitution-systems/0.1.0.html
HTML
mit
7,037
<html> <head> <title>基础搜索学习</title> <link rel="stylesheet" type="text/css" href="./prism.css"> <link rel="stylesheet" type="text/css" href="./button.css"> <meta charset="utf-8" /> <style> body { font-size: 20px; } .wall, .blink, .visited, .road, .tmp { width: 20px; height: 20px; overflow: hidden; } .wall { background: rgb(95, 99, 119); box-shadow: 2px 2px 3px #aaa; } tr:nth-child(odd) td:nth-child(odd) .wall { background: rgb(72, 89, 105) } #mazeBody { border-collapse: separate; font-size: 12px; margin:auto; } .test_box { min-width: 400px; height: 740px; display: flex; } pre { word-wrap: normal; height: 700px; width: 600px; border: 1px solid black; padding: 5px; overflow: auto; display: block; } #result { flex: 1; height: 100%; border: solid 1px #bbbbbb; justify-content: center; /* 水平居中 */ align-items: center; /* 垂直居中 */ } .blink { animation-iteration-count: 1; animation: blink 1s linear; } .visited { background: #fffd93; } @-webkit-keyframes blink { 0% { background: #f35626; } 50% { background: #feab3a; } 100% { background: #fffd93; } } div .highlight{ animation-iteration-count: 1; animation: highlight 2s linear; background: #44f6fc; } @-webkit-keyframes highlight { 0% { background: #fffd93; } 50% { background: #1ff8ff; } 100% { background: #44f6fc; } } </style> </head> <body> <div class="test_box line-numbers"> <div id="code"> <pre id="pre" contenteditable class="language-js"> </pre> </div> <div id="result"> <table id="mazeBody"> </table> </div> </div> <div class="settings"> <br/> 迷宫长:<input type="number" min = '5' max = '31' value='13' id='X' onchange="init()"> 迷宫宽:<input type="number" min = '5' max = '31' value='13' id='Y' onchange="init()"> 动画间隔: <input type="number" min = '10' max = '1000' value='50' id='speed'> <br/> <div class="button button-green" onClick="runCode()">运行</div> <div class="button button-blue" onclick="init()">重新生成</div> <div class="button button-red"onclick="reset()">清除路线</div> <div class="button" onclick="addDFSCode()">深搜框架</div> <div class="button" onclick="addBFSCode()">广搜框架</div> <div class="button" onclick="addDFSCode2()">深搜带路径显示</div> <div> 标记自己来到的坐标: visit(x,y);</br> 高亮搜索结果: highlight([{x,y},{x2,y2},...]);</br> 创建一个队列:var queue = new Queue();</br> queue可用方法:isEmpty dequeue enqueue(T)</br> </div> </div> </body> <script> var time = 0; var timer = []; init(); function dfs(x, y, wall) { let pos = [{ x: 1, y: 0 }, { x: 0, y: 1 }, { x: -1, y: 0 }, { x: 0, y: -1 }]; if (x < 0 || x > X || y < 0 || y > Y) { return; } var now = getP(x, y); if (!now || now.className === 'road') { return; } wall.className = now.className = 'road'; shuffleArray(pos); pos.forEach(p => { dfs(x + p.x * 2, y + p.y * 2, getP(x + p.x, y + p.y)); }); } function id(x, y) { return x + '_' + y; } function getP(x, y) { return document.getElementById(id(x, y)); } function shuffleArray(array) { for (let i = array.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)); [array[i], array[j]] = [array[j], array[i]]; } } function getType(x, y) { let el = getP(x,y); if(el)return getP(x, y).className; return 'null'; } function setType(x, y, type) { if(getP(x,y)) getP(x, y).className = type; } function visit(x, y) { getP(x, y).className = 'tmp'; time += parseInt(document.getElementById('speed').value); timer.push(setTimeout(() => { if(getType(x, y) !== 'hightlight') setType(x, y, 'blink'); }, time)); timer.push(setTimeout(() => { if(getType(x, y)!== 'hightlight') setType(x, y, 'visited'); } , time + 1000)); } function init() { let X = document.getElementById('X').value; let Y = document.getElementById('Y').value; X = Math.min(31 ,Math.max(X, 5)); Y = Math.min(31 ,Math.max(Y, 5)); if(X%2 == 0)X++; if(Y%2 == 0)Y++; reset(); var table = document.getElementById('mazeBody'); table.innerHTML = ''; for (var i = 0; i < X; i++) { var tr = document.createElement("tr"); for (var j = 0; j < Y; j++) { var td = document.createElement("td"); var btn = document.createElement("div"); btn.setAttribute('id', id(i, j)); btn.setAttribute('class', 'wall'); td.appendChild(btn); tr.appendChild(td); } table.appendChild(tr); } dfs(1, 1, getP(1, 1)) start = getP(1, 0); start.className = 'start'; start.innerHTML = '🙄'; end = getP(X - 2, Y - 1); end.className = 'end'; end.innerHTML = '⛳'; } function reset() { timer.forEach(t => { clearInterval(t); }); for (var i = 0; i < 31; i++) { for (var j = 0; j < 31; j++) { if (['wall', 'start', 'end'].indexOf(getType(i, j)) == -1) { setType(i, j, 'road'); } } } time = 0; timer = []; } function keyDown(el,keyCode){ event.initKeyboardEvent("keydown",true,true,document.defaultView,"a",0,keyCode,0); el.dispatchEvent(event); } function addDFSCode() { code = document.getElementById('pre'); code.innerHTML = '\ dfs(1,1);\n\ function dfs(x,y){\n\ if(getType(x,y)!==\'road\'){\n\ return;\n\ }\n\ visit(x,y);\n\ dfs(x-1,y);\n\ dfs(x+1,y);\n\ dfs(x,y-1);\n\ dfs(x,y+1);\n\ }'; bililiteRange.fancyText(ret._el, Prism.highlightElement); } function addBFSCode() { code = document.getElementById('pre'); code.innerHTML = '\ bfs(1,1);\n\ function bfs(x,y){\n\ var queue = new Queue();\n\ queue.enqueue({x:1,y:1});\n\ while(!queue.isEmpty()){\n\ var t = queue.dequeue();\n\ if(getType(t.x,t.y)!==\'road\'){\n\ continue;\n\ }\n\ visit(t.x,t.y);\n\ queue.enqueue({x:(t.x)-1,y:t.y});\n\ queue.enqueue({x:t.x+1,y:t.y});\n\ queue.enqueue({x:t.x,y:t.y-1});\n\ queue.enqueue({x:t.x,y:t.y+1});\n\ }\n\ }'; bililiteRange.fancyText(ret._el, Prism.highlightElement); } function addDFSCode2() { code = document.getElementById('pre'); code.innerHTML = '\ let path = [];\n\ let stop = false;\n\ dfs(1,1,path);\n\ function dfs(x,y,path){\n\ if(getType(x,y)===\'end\'){\n\ highlight(path);\n\ stop = true;\n\ }\n\ if(stop || getType(x,y)!==\'road\'){\n\ return;\n\ }\n\ path.push({x,y});\n\ visit(x,y);\n\ dfs(x-1,y,path);\n\ dfs(x+1,y,path);\n\ dfs(x,y-1,path);\n\ dfs(x,y+1,path);\n\ if(!stop)path.pop();\n\ }'; bililiteRange.fancyText(ret._el, Prism.highlightElement); } function runCode() { reset(); var code = document.querySelector('pre').innerText; console.log(code); eval(code); } // highlight some blocks, it only can use once when the algorithm finished because i havn't fix it. function highlight(pos) { //remove all highLight before next highlight for (var i = 0; i < 31; i++) { for (var j = 0; j < 31; j++) { if (getType(i, j) === 'visited highlight') { setType(i, j, 'visited'); } if (getType(i, j) === 'blink highlight') { setType(i, j, 'visited'); } if (getType(i, j) === 'road highlight') { setType(i, j, 'road'); } } } timer.push(setTimeout( ()=> { pos.forEach( p => { setType(p.x, p.y, getType(p.x, p.y) +' highlight'); }) }, time+1200)); } </script> <script src="./prism.js" data-manual=""></script> <script src="./Prism Editor_files/prism.linenumber.js"></script> <script src="./Prism Editor_files/bililiteRange.js"></script> <script src="./Prism Editor_files/bililiteRange.undo.js"></script> <script src="./Prism Editor_files/bililiteRange.util.js"></script> <script src="./Prism Editor_files/bililiteRange.fancytext.js"></script> <script src="./Queue.js"></script> <script> var editor = document.querySelector('pre'); const ret = bililiteRange(editor) bililiteRange.fancyText(ret._el, Prism.highlightElement); // add the undo's ret.undo(0).data().autoindent = true; // init ret._el.addEventListener('keydown', function (evt) { // control z if (evt.ctrlKey && evt.which == 90) bililiteRange.undo(evt); // control y if (evt.ctrlKey && evt.which == 89) bililiteRange.redo(evt); // tab if (evt.which == 9) { ret.sendkeys('{tab}'); var b = ret.bounds(); ret.bounds([b[0],b[1]]).select(); evt.returnValue = false; } }); </script> </html>
XiaoRr/XiaoRr.github.io
session/show.html
HTML
mit
10,577
<html> <head></head> <body> <center> <a href="{{next_page}}"> <img src="{{ prototypes_asset_path }}images/email.png"> </a> </center> </body> </html>
LlamaComedian/personal-cw-proto
app/templates/transfer-and-charge/citizen-1-email-2.0.html
HTML
mit
191
<!DOCTYPE html style="height:100%"> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> <meta name="viewport" content="width=100, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, minimal-ui"> <meta name="mobile-web-app-capable" content="yes"> <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> <link rel="icon" href="favicon.ico" type="image/x-icon"/> <link href='http://fonts.googleapis.com/css?family=Permanent+Marker' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/main.css"> <script src="js/vendor/jquery-1.10.2.min.js"></script> <script src="js/vendor/modernizr-2.6.2.min.js"></script> <script type="text/javascript" src="js/greensock/TweenMax.js"></script> <script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js"></script> <script type="text/javascript" src="js/createjs/easeljs-0.7.0.min.js"></script> <script type="text/javascript" src="js/createjs/preloadjs-0.4.0.min.js"></script> <script type="text/javascript" src="js/createjs/soundjs-0.5.0.min.js"></script> <script src="js/ads.js"></script> <script src="js/riff.js"></script> <script src="js/gamePlay.js"></script> <script src="js/AudioPunk.js"></script> <script src="js/loaderAudio.js"></script> <script src="js/assets.js"></script> <script src="js/Utils.js"></script> <script src="js/Pulso.js"></script> <script src="js/touchEvents.js"></script> <script src="js/main.js"></script> <script src="js/menu.js"></script> <script src="js/loader.js"></script> <script type="text/javascript"> function init2() { Loader.initLoad(); } </script> </head> <body onload="javascript:init2();"> <script type="text/javascript"> document.write('<div class="canvasHolder"><canvas id="mainCanvas" width="100px" height="100px"></canvas></div>'); </script> <script language="javascript" type="text/javascript"> var _sa = _sa || []; _sa.push(['initialize', 'e159be60-c55a-449e-9293-2aecca195237']); _sa.push(['displayAd']); </script> </body> </html>
alfonsofonso/anti
index.html
HTML
mit
2,792
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" /> <title>תהילים 28 (WLC)</title> <link href="../../../build/mobile.css" rel="stylesheet" /> <script src="../../../build/mobile.js"></script> </head> <body dir="rtl" class="section-document"> <div class="header"><div class="nav"> <a class="name" href="PS.html">Westminster Leningrad Codex</a><a class="location" href="PS.html">תהילים 28</a><a class="prev" href="PS27.html">&lt;</a> <a class="home" href="index.html">=</a> <a class="next" href="PS29.html">&gt;</a> </div></div> <div class="section chapter PS PS28 heb_wlc heb " dir="rtl" lang="he" data-id="PS28" data-nextid="PS29" data-previd="PS27"> <div class="c">28</div> <div class="p"> <span class="v-num v-1">1</span><span class="v PS28_1" data-id="PS28_1"> <l s="H1732">לְדָוִ֡ד</l> <l s="H413">אֵ֘לֶ֤יךָ</l> <l s="H3068">יְהוָ֨ה</l> ׀ <l s="H7121">אֶקְרָ֗א</l> <l s="H6697">צוּרִי֮</l> <l s="H408">אַֽל</l>־<l s="H2790">תֶּחֱרַ֪שׁ</l> <l s="H4480">מִ֫מֶּ֥נִּי</l> <l s="H6435">פֶּן</l>־<l s="H2814">תֶּֽחֱשֶׁ֥ה</l> <l s="H4480">מִמֶּ֑נִּי</l> <l s="H4911">וְ֝נִמְשַׁ֗לְתִּי</l> <l s="H5973">עִם</l>־<l s="H3381">י֥וֹרְדֵי</l> <l s="H953">בֽוֹר</l>׃ </span> <span class="v-num v-2">2</span><span class="v PS28_2" data-id="PS28_2"> <l s="H8085">שְׁמַ֤ע</l> <l s="H6963">ק֣וֹל</l> <l s="H8469">תַּ֭חֲנוּנַי</l> <l s="H7768">בְּשַׁוְּעִ֣י</l> <l s="H413">אֵלֶ֑יךָ</l> <l s="H5375">בְּנָשְׂאִ֥י</l> <l s="H3027">יָ֝דַ֗י</l> <l s="H413">אֶל</l>־<l s="H1687">דְּבִ֥יר</l> <l s="H6944">קָדְשֶֽׁךָ</l>׃ </span> <span class="v-num v-3">3</span><span class="v PS28_3" data-id="PS28_3"> <l s="H408">אַל</l>־<l s="H4900">תִּמְשְׁכֵ֣נִי</l> <l s="H5973">עִם</l>־<l s="H7563">רְשָׁעִים֮</l> <l s="H5973">וְעִם</l>־<l s="H6466">פֹּ֪עֲלֵ֫י</l> <l s="H205">אָ֥וֶן</l> <l s="H1696">דֹּבְרֵ֣י</l> <l s="H7965">שָׁ֭לוֹם</l> <l s="H5973">עִם</l>־<l s="H7453">רֵֽעֵיהֶ֑ם</l> <l s="H7451">וְ֝רָעָ֗ה</l> <l s="H3824">בִּלְבָבָֽם</l>׃ </span> <span class="v-num v-4">4</span><span class="v PS28_4" data-id="PS28_4"> <l s="H5414">תֶּן</l>־<l s="H1992">לָהֶ֣ם</l> <l s="H6467">כְּפָעֳלָם֮</l> <l s="H7455">וּכְרֹ֪עַ</l> <l s="H4611">מַֽעַלְלֵ֫יהֶ֥ם</l> <l s="H4639">כְּמַעֲשֵׂ֣ה</l> <l s="H3027">יְ֭דֵיהֶם</l> <l s="H5414">תֵּ֣ן</l> <l s="H1992">לָהֶ֑ם</l> <l s="H7725">הָשֵׁ֖ב</l> <l s="H1576">גְּמוּלָ֣ם</l> <l s="H1992">לָהֶֽם</l>׃ </span> <span class="v-num v-5">5</span><span class="v PS28_5" data-id="PS28_5"> <l s="H3588">כִּ֤י</l> <l s="H3808">לֹ֤א</l> <l s="H995">יָבִ֡ינוּ</l> <l s="H413">אֶל</l>־<l s="H6468">פְּעֻלֹּ֣ת</l> <l s="H3068">יְ֭הוָה</l> <l s="H413">וְאֶל</l>־<l s="H4639">מַעֲשֵׂ֣ה</l> <l s="H3027">יָדָ֑יו</l> <l s="H2040">יֶ֝הֶרְסֵ֗ם</l> <l s="H3808">וְלֹ֣א</l> <l s="H1129">יִבְנֵֽם</l>׃ </span> <span class="v-num v-6">6</span><span class="v PS28_6" data-id="PS28_6"> <l s="H1288">בָּר֥וּךְ</l> <l s="H3068">יְהוָ֑ה</l> <l s="H3588">כִּי</l>־<l s="H8085">שָׁ֝מַע</l> <l s="H6963">ק֣וֹל</l> <l s="H8469">תַּחֲנוּנָֽי</l>׃ </span> <span class="v-num v-7">7</span><span class="v PS28_7" data-id="PS28_7"> <l s="H3068">יְהוָ֤ה</l> ׀ <l s="H5797">עֻזִּ֥י</l> <l s="H4043">וּמָגִנִּי֮</l> <l s="H">בּ֤וֹ</l> <l s="H982">בָטַ֥ח</l> <l s="H3820">לִבִּ֗י</l> <l s="H5826">וְֽנֶ֫עֱזָ֥רְתִּי</l> <l s="H5937">וַיַּעֲלֹ֥ז</l> <l s="H3820">לִבִּ֑י</l> <l s="H7892">וּֽמִשִּׁירִ֥י</l> <l s="H3034">אֲהוֹדֶֽנּוּ</l>׃ </span> <span class="v-num v-8">8</span><span class="v PS28_8" data-id="PS28_8"> <l s="H3068">יְהוָ֥ה</l> <l s="H5797">עֹֽז</l>־<l s="H">לָ֑מוֹ</l> <l s="H4581">וּמָ֘ע֤וֹז</l> <l s="H3444">יְשׁוּע֖וֹת</l> <l s="H4899">מְשִׁיח֣וֹ</l> <l s="H1931">הֽוּא</l>׃ </span> <span class="v-num v-9">9</span><span class="v PS28_9" data-id="PS28_9"> <l s="H3467">הוֹשִׁ֤יעָה</l> ׀ <l s="H853">אֶת</l>־<l s="H5971">עַמֶּ֗ךָ</l> <l s="H1288">וּבָרֵ֥ךְ</l> <l s="H853">אֶת</l>־<l s="H5159">נַחֲלָתֶ֑ךָ</l> <l s="H7462">וּֽרְעֵ֥ם</l> <l s="H5375">וְ֝נַשְּׂאֵ֗ם</l> <l s="H5704">עַד</l>־<l s="H5769">הָעוֹלָֽם</l>׃ </span> </div> </div> <div class="footer"><div class="nav"> <a class="prev" href="PS27.html">&lt;</a> <a class="home" href="index.html">=</a> <a class="next" href="PS29.html">&gt;</a> </div></div> </body> </html>
khangpng/VietnameseBible
app/content/texts/heb_wlc/PS28.html
HTML
mit
5,929
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="theme-color" content="#000000" /> <meta name="description" content="Web site created using create-react-app" /> <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> <!-- manifest.json provides metadata used when your web app is installed on a user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ --> <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> <!-- Notice the use of %PUBLIC_URL% in the tags above. It will be replaced with the URL of the `public` folder during the build. Only files inside the `public` folder can be referenced from the HTML. Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> <title>My First React App With Create-React-App tool</title> </head> <body> <noscript>You need to enable JavaScript to run this app.</noscript> <div id="root"></div> <!-- This HTML file is a template. If you open it directly in the browser, you will see an empty page. You can add webfonts, meta tags, or analytics to this file. The build step will place the bundled scripts into the <body> tag. To begin the development, run `npm start` or `yarn start`. To create a production bundle, use `npm run build` or `yarn build`. --> </body> </html>
gauravrmazra/gauravbytes
my-first-react-app/public/index.html
HTML
mit
1,757
<div ng-if="pageCtrl.hasData"> <markdown data="pageCtrl.pageData"></markdown> </div>
LarsVonQualen/GitBlog
app/components/page.html
HTML
mit
87
<!doctype html> <!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> <!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]--> <!--[if (IE 8)&!(IEMobile)]><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"> <title>_personal</title> <meta name="description" content="Giovanni Belloni personal website"> <meta name="keywords" content="software, developer, belloni, blog, website"> <!-- Twitter Cards --> <meta name="twitter:title" content="_personal"> <meta name="twitter:description" content="Giovanni Belloni personal website"> <meta name="twitter:site" content="@gio_bll"> <meta name="twitter:creator" content="@gio_bll"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="http://giovanni-bb.github.io/images/image-bar-5.jpg"> <!-- Open Graph --> <meta property="og:locale" content="en_US"> <meta property="og:type" content="article"> <meta property="og:title" content="_personal"> <meta property="og:description" content="Giovanni Belloni personal website"> <meta property="og:url" content="http://giovanni-bb.github.io/"> <meta property="og:site_name" content="_personal"> <link rel="canonical" href="http://giovanni-bb.github.io/"> <link href="http://giovanni-bb.github.io/feed.xml" type="application/atom+xml" rel="alternate" title="_personal 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"> <!-- For all browsers --> <link rel="stylesheet" href="http://giovanni-bb.github.io/assets/css/main.css"> <meta http-equiv="cleartype" content="on"> <!-- HTML5 Shiv and Media Query Support --> <!--[if lt IE 9]> <script src="http://giovanni-bb.github.io/assets/js/vendor/html5shiv.min.js"></script> <script src="http://giovanni-bb.github.io/assets/js/vendor/respond.min.js"></script> <![endif]--> <!-- Modernizr --> <script src="http://giovanni-bb.github.io/assets/js/vendor/modernizr-2.7.1.custom.min.js"></script> <link href='//fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700%7CPT+Serif:400,700,400italic' rel='stylesheet' type='text/css'> <!-- Icons --> <!-- 16x16 --> <link rel="shortcut icon" href="http://giovanni-bb.github.io/favicon.ico"> <!-- 32x32 --> <link rel="shortcut icon" href="http://giovanni-bb.github.io/favicon.png"> <!-- 57x57 (precomposed) for iPhone 3GS, pre-2011 iPod Touch and older Android devices --> <link rel="apple-touch-icon-precomposed" href="http://giovanni-bb.github.io/images/apple-touch-icon-precomposed.png"> <!-- 72x72 (precomposed) for 1st generation iPad, iPad 2 and iPad mini --> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://giovanni-bb.github.io/images/apple-touch-icon-72x72-precomposed.png"> <!-- 114x114 (precomposed) for iPhone 4, 4S, 5 and post-2011 iPod Touch --> <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://giovanni-bb.github.io/images/apple-touch-icon-114x114-precomposed.png"> <!-- 144x144 (precomposed) for iPad 3rd and 4th generation --> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://giovanni-bb.github.io/images/apple-touch-icon-144x144-precomposed.png"> <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-61191254-1', 'auto'); ga('send', 'pageview'); </script> </head> <body class="home"> <!--[if lt IE 9]><div class="browser-upgrade alert alert-info">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="navigation-wrapper"> <div class="site-name"> <a href="http://giovanni-bb.github.io/">_personal</a> </div><!-- /.site-name --> <div class="top-navigation"> <nav role="navigation" id="site-nav" class="nav"> <ul> <li><a href="http://giovanni-bb.github.io/about/" >About</a></li> <li><a href="http://giovanni-bb.github.io/posts/" >Posts</a></li> <li><a href="http://giovanni-bb.github.io/projects/" >Projects</a></li> <li><a href="http://giovanni-bb.github.io/cv/" >C.V.</a></li> </ul> </nav> </div><!-- /.top-navigation --> </div><!-- /.navigation-wrapper --> <div class="image-wrap"> <img src= "http://giovanni-bb.github.io/images/image-bar-5.jpg" alt=" giovanni belloni"> </div><!-- /.image-wrap --> <div id="main" role="main"> <div class="article-author-side"> <div itemscope itemtype="http://schema.org/Person"> <img src="http://giovanni-bb.github.io/images/foto_l1.jpg" class="bio-photo" alt="Giovanni Belloni bio photo"> <h3 itemprop="name">Giovanni Belloni</h3> <p>Software Developer</p> <a href="mailto:[email protected]" class="author-social" target="_blank"><i class="fa fa-fw fa-envelope-square"></i> Email</a> <a href="http://twitter.com/gio_bll" class="author-social" target="_blank"><i class="fa fa-fw fa-twitter-square"></i> Twitter</a> <a href="http://facebook.com/giovanni.belloni.3990" class="author-social" target="_blank"><i class="fa fa-fw fa-facebook-square"></i> Facebook</a> <a href="http://plus.google.com/+GiovanniBB" class="author-social" target="_blank"><i class="fa fa-fw fa-google-plus-square"></i> Google+</a> <a href="http://linkedin.com/pub/giovanni-belloni/31/346/b83/it" class="author-social" target="_blank"><i class="fa fa-fw fa-linkedin-square"></i> LinkedIn</a> <a href="http://github.com/giovanni-bb" class="author-social" target="_blank"><i class="fa fa-fw fa-github"></i> Github</a> <a href="https://youtube.com/channel/UCgptGQQOxE_2pWBC7UpV0AQ" class="author-social" target="_blank"><i class="fa fa-fw fa-youtube-square"></i> Youtube</a> </div> </div> <div id="index"> <h3><a href="http://giovanni-bb.github.io/posts/">Recent Posts</a></h3> <article> <h2><a href="http://giovanni-bb.github.io/fuoco-egress/" title="Modello d'incendio ed evacuazione - un esempio">Modello d'incendio ed evacuazione - un esempio</a></h2> <p>Un semplice esempio di modellazione di fuoco ed evacuazione</p> </article> <article> <h2><a href="http://giovanni-bb.github.io/settimana-londra/" title="Fire Modeling training a Londra">Fire Modeling training a Londra</a></h2> <p>Una settimana di corsi su FDS, Pyrosim e Pathfinder</p> </article> <article> <h2><a href="http://giovanni-bb.github.io/first-post/" title="First post">First post</a></h2> <p>A little shout out</p> </article> </div><!-- /#index --> </div><!-- /#main --> <div class="footer-wrap"> <footer> <span>&copy; 2015 Giovanni Belloni. Powered by <a href="http://jekyllrb.com" rel="nofollow">Jekyll</a> using the <a href="http://mademistakes.com/minimal-mistakes/" rel="nofollow">Minimal Mistakes</a> theme.</span> </footer> </div><!-- /.footer-wrap --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <script>window.jQuery || document.write('<script src="http://giovanni-bb.github.io/assets/js/vendor/jquery-1.9.1.min.js"><\/script>')</script> <script src="http://giovanni-bb.github.io/assets/js/scripts.min.js"></script> </body> </html>
giovanni-bb/giovanni-bb.github.io
_site/index.html
HTML
mit
7,875
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <div class="container"> <div class="row margin-bottom-10"> <div class="col-md-4 col-sm-6"> <div class="servive-block servive-block-grey"> <i class="icon-2x color-light fa fa-bell-o"></i> <h2 class="heading-md">Grey Box</h2> <p>Donec id elit non mi porta gravida at eget metus id elit mi egetine. Fusce dapibus</p> </div> </div> <div class="col-md-4 col-sm-6"> <div class="servive-block servive-block-yellow"> <i class="icon-2x color-light fa fa-envelope"></i> <h2 class="heading-md">Yellow Box</h2> <p>Donec id elit non mi porta gravida at eget metus id elit mi egetine usce dapibus elit nondapibus</p> </div> </div> <div class="col-md-4 col-sm-12"> <div class="servive-block servive-block-dark-blue"> <i class="icon-2x color-light fa fa-gift"></i> <h2 class="heading-md">Dark Blue Box</h2> <p>Donec id elit non mi porta gravida at eget metus id elit mi egetine. Fusce dapibus</p> </div> </div> </div> <div class="row margin-bottom-10"> <div class="col-sm-6"> <div class="servive-block servive-block-purple"> <i class="icon-2x color-light fa fa-globe"></i> <h2 class="heading-md">Purple Box</h2> <p>Donec id elit non mi porta gravida at eget metus id elit mi egetine. Fusce dapibus. At vero eos et accusamus et iusto odio dignissimos ducimus qui.</p> </div> </div> <div class="col-sm-6"> <div class="servive-block rounded servive-block-aqua"> <i class="icon-2x color-light fa fa-taxi"></i> <h2 class="heading-md">Aqua Box</h2> <p>Donec id elit non mi porta gravida at eget metus id elit mi egetine. Fusce dapibus. At vero eos et accusamus et iusto odio dignissimos ducimus qui.</p> </div> </div> </div> </div>
oncebuilder/OnceBuilder
snippets/84/snippet.html
HTML
mit
2,213
<!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.9.1"/> <title>utf8rewind: Examples</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 style="padding-left: 0.5em;"> <div id="projectname">utf8rewind &#160;<span id="projectnumber">1.4.1</span> </div> <div id="projectbrief">System library for processing UTF-8 encoded text</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.9.1 --> <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>Overview</span></a></li> <li><a href="utf8rewind_8h.html"><span>Interface</span></a></li> <li><a href="examples.html"><span>Examples</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> <!-- 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><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">Examples </div> </div> </div><!--header--> <div class="contents"> <div class="toc"><h3>Table of Contents</h3> <ul><li class="level1"><a href="#example-changes">Changes to existing code</a></li> <li class="level1"><a href="#example-user-input">Dealing with user input</a></li> <li class="level1"><a href="#example-display">Displaying Unicode text</a></li> <li class="level1"><a href="#example-users">Comparing usernames in a case-insensitive manner</a></li> </ul> </div> <div class="textblock"><h1><a class="anchor" id="example-changes"></a> Changes to existing code</h1> <p>Suppose you maintain a client-server application written in C. The client connects to a central server and allows the user to manipulate the database in some way. In order for clients to login, the server needs to check their credentials. This is accomplished by the client hashing the specified password with a salt before sending it over to the server:</p> <div class="fragment"><div class="line">uint8_t Login_CheckCredentials(<span class="keyword">const</span> <span class="keywordtype">char</span>* username, <span class="keyword">const</span> <span class="keywordtype">char</span>* password)</div> <div class="line">{</div> <div class="line"> <span class="keyword">const</span> <span class="keywordtype">char</span>* salt;</div> <div class="line"> <span class="keyword">const</span> <span class="keywordtype">char</span>* hashed_password;</div> <div class="line"> <span class="keywordtype">char</span> verify_password[256];</div> <div class="line"> <span class="keywordtype">char</span> hashed_verify_password[256];</div> <div class="line"></div> <div class="line"> <span class="comment">// For the purposes of brevity, ignore the fact that this is a</span></div> <div class="line"> <span class="comment">// terrible way of generating a salt.</span></div> <div class="line"> memset(verify_password, 0, <span class="keyword">sizeof</span>(verify_password));</div> <div class="line"> strcpy(verify_password, md5(password));</div> <div class="line"> strcat(verify_password, md5(username));</div> <div class="line"></div> <div class="line"> memset(hashed_verify_password, 0, <span class="keyword">sizeof</span>(hashed_verify_password));</div> <div class="line"> strcpy(hashed_verify_password, md5(verify_password));</div> <div class="line"></div> <div class="line"> <span class="keywordflow">return</span> Database_CheckLogin(username, hashed_verify_password);</div> <div class="line">}</div> </div><!-- fragment --><p>We want to improve the security of the application by allowing the full range of Unicode code points in the passwords. We can accomplish this by encoding the code points using UTF-8. The beauty of this change is that the password algorithm does <em>not</em> have to be modified. Because all functions already work on <code>char</code> arrays, we can encode Unicode as UTF-8, but treat the string as valid ASCII.</p> <p>A password like "M&ocirc;ntiPyth&ocirc;nikdenH&ocirc;lieGr&acirc;ilen" would be encoded as </p><pre class="fragment">"M\xC3\xB4Pyth\xC3\xB4" "denH\xC3\xB4Gr\xC3\xA2" "en" </pre><p>which is backwards-compatible with ASCII. Calls to <code>strcpy</code> and <code>strcat</code> still work as expected, because the string does not contain NUL-terminators (<code>\0</code>), except to signify the end of data.</p> <p>When converting your project to work with UTF-8 encoded text, there are only two surface areas you will have to concern yourself with: input and display.</p> <p>We'll look at these individually.</p> <h1><a class="anchor" id="example-user-input"></a> Dealing with user input</h1> <p>Continuing with our previous example, the password field in the client application only accepted ASCII. This is how the password field is currently implemented:</p> <div class="fragment"><div class="line"><span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">size_t</span> g_PasswordInputMaximum = 255;</div> <div class="line"><span class="keyword">static</span> <span class="keywordtype">char</span> g_PasswordInput[256];</div> <div class="line"></div> <div class="line">uint8_t PasswordField_EnterCharacter(<span class="keywordtype">char</span> input)</div> <div class="line">{</div> <div class="line"> <span class="keywordtype">char</span> text_input[2];</div> <div class="line"></div> <div class="line"> <span class="keywordflow">if</span> ((strlen(g_PasswordInput) + 1) &gt; g_PasswordInputMaximum)</div> <div class="line"> {</div> <div class="line"> <span class="keywordflow">return</span> 0;</div> <div class="line"> }</div> <div class="line"></div> <div class="line"> text_input[0] = input;</div> <div class="line"> text_input[1] = 0;</div> <div class="line"></div> <div class="line"> strcat(g_PasswordInput, text_input);</div> <div class="line"></div> <div class="line"> <span class="keywordflow">return</span> 1;</div> <div class="line">}</div> </div><!-- fragment --><p>What we want to do is make sure the password field can accept Unicode input. To that end, we'll change the input type to <a class="el" href="utf8rewind_8h.html#ae128fe5bd9e57be736e64d3638229988" title="UTF-32 encoded code point. ">unicode_t</a>, which can encode every valid Unicode code point.</p> <div class="fragment"><div class="line">uint8_t PasswordField_EnterCharacter(<a class="code" href="utf8rewind_8h.html#ae128fe5bd9e57be736e64d3638229988">unicode_t</a>* input, <span class="keywordtype">size_t</span> inputSize)</div> </div><!-- fragment --><p>Something that surprises many people working with Unicode is that although UTF-32 can contain all possible valid code points, Unicode <em>itself</em> is a variable-length encoding! For instance, consider a string like "U+0399 U+0308" (GREEK CAPITAL LETTER IOTA and COMBINING DIAERESIS). Although each encodes a separate code point, they can be combined (normalized) into U+03AA (GREEK CAPITAL LETTER IOTA WITH DIALYTIKA). This means that splitting the string after U+0399 is not valid, as it would change the meaning of the encoded text.</p> <p>There are also many instances of code points that can be combined when rendering, but aren't explicitly listed in the Unicode code point. This allowed the Unicode Consortium to encode many more characters without taking up space in the database. The downside for developers is of course that it can be difficult to anticipate how much space will be required to store any particular amount of text.</p> <p>Back to our example.</p> <p>Every location that calls <code>PasswordField_EnterCharacter</code> will have to cast the parameter to <a class="el" href="utf8rewind_8h.html#ae128fe5bd9e57be736e64d3638229988" title="UTF-32 encoded code point. ">unicode_t</a>, but luckily this is backwards-compatible. All ASCII code points (0x00 to 0x7F) are valid in Unicode as well.</p> <p>Inside the function, we'll want to convert the UTF-32 code point to UTF-8. To that end, we'll use <a class="el" href="utf8rewind_8h.html#a325b2612f0a2afdacb81d5e6831bd43b" title="Convert a UTF-32 encoded string to a UTF-8 encoded string. ">utf32toutf8</a>.</p> <div class="fragment"><div class="line"><span class="keywordtype">char</span>* text_input = NULL;</div> <div class="line"><span class="keywordtype">size_t</span> text_input_size;</div> <div class="line"><span class="keywordtype">size_t</span> converted_size;</div> <div class="line">int32_t errors = <a class="code" href="utf8rewind_8h.html#ac7f8a18ca0ca9ebb357b2e7b9c527cc3">UTF8_ERR_NONE</a>;</div> <div class="line"></div> <div class="line">text_input_size = <a class="code" href="utf8rewind_8h.html#a325b2612f0a2afdacb81d5e6831bd43b">utf32toutf8</a>(input, inputSize, NULL, 0, &amp;errors);</div> <div class="line"><span class="keywordflow">if</span> (text_input_size == 0 ||</div> <div class="line"> errors != <a class="code" href="utf8rewind_8h.html#ac7f8a18ca0ca9ebb357b2e7b9c527cc3">UTF8_ERR_NONE</a>)</div> <div class="line">{</div> <div class="line"> <span class="keywordflow">goto</span> cleanup;</div> <div class="line">}</div> <div class="line"></div> <div class="line">text_input = (<span class="keywordtype">char</span>*)malloc(text_input_size + 1);</div> <div class="line"><span class="keywordflow">if</span> (text_input == NULL)</div> <div class="line">{</div> <div class="line"> <span class="keywordflow">goto</span> cleanup;</div> <div class="line">}</div> <div class="line">text_input[text_input_size] = 0;</div> <div class="line"></div> <div class="line"><a class="code" href="utf8rewind_8h.html#a325b2612f0a2afdacb81d5e6831bd43b">utf32toutf8</a>(input, inputSize, text_input, text_input_size, &amp;errors);</div> <div class="line"><span class="keywordflow">if</span> (errors != <a class="code" href="utf8rewind_8h.html#ac7f8a18ca0ca9ebb357b2e7b9c527cc3">UTF8_ERR_NONE</a>)</div> <div class="line">{</div> <div class="line"> <span class="keywordflow">goto</span> cleanup;</div> <div class="line">}</div> </div><!-- fragment --><p>We first determine the length of the input before we allocate memory for it. This way, we ensure that we're protected from buffer-overflow attacks. If you're not too keen on dynamic memory allocations, you could limit the input sequence to six code points, which would require a maximum of four bytes each to encode.</p> <p>It's good practice to always check the error code after each call. However, never explicitly check for any particular error code! <code>utf8rewind</code> may introduce new error codes on every release, so you should check if the error code does <em>not</em> equal <code>UTF8_ERR_NONE</code>.</p> <p>Because the converted string can now consist of more than one byte, we'll have to change the check to see if we're out of bounds of the password input array.</p> <div class="fragment"><div class="line"><span class="keywordflow">if</span> ((strlen(g_PasswordInput) + strlen(text_input)) &gt; g_PasswordInputMaximum)</div> <div class="line">{</div> <div class="line"> <span class="keywordflow">return</span> 0;</div> <div class="line">}</div> </div><!-- fragment --><p>The rewritten version is now fully compatible with Unicode.</p> <div class="fragment"><div class="line"><span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">size_t</span> g_PasswordInputMaximum = 255;</div> <div class="line"><span class="keyword">static</span> <span class="keywordtype">char</span> g_PasswordInput[256];</div> <div class="line"></div> <div class="line">uint8_t PasswordField_EnterCharacter(<a class="code" href="utf8rewind_8h.html#ae128fe5bd9e57be736e64d3638229988">unicode_t</a> input)</div> <div class="line">{</div> <div class="line"> uint8_t result = 1;</div> <div class="line"> <span class="keywordtype">char</span>* text_input = NULL;</div> <div class="line"> <span class="keywordtype">size_t</span> text_input_size;</div> <div class="line"> <span class="keywordtype">size_t</span> converted_size;</div> <div class="line"> int32_t errors = <a class="code" href="utf8rewind_8h.html#ac7f8a18ca0ca9ebb357b2e7b9c527cc3">UTF8_ERR_NONE</a>;</div> <div class="line"></div> <div class="line"> text_input_size = <a class="code" href="utf8rewind_8h.html#a325b2612f0a2afdacb81d5e6831bd43b">utf32toutf8</a>(input, inputSize, NULL, 0, &amp;errors);</div> <div class="line"> <span class="keywordflow">if</span> (text_input_size == 0 ||</div> <div class="line"> errors != <a class="code" href="utf8rewind_8h.html#ac7f8a18ca0ca9ebb357b2e7b9c527cc3">UTF8_ERR_NONE</a>)</div> <div class="line"> {</div> <div class="line"> result = 0;</div> <div class="line"></div> <div class="line"> <span class="keywordflow">goto</span> cleanup;</div> <div class="line"> }</div> <div class="line"></div> <div class="line"> text_input = (<span class="keywordtype">char</span>*)malloc(text_input_size + 1);</div> <div class="line"> <span class="keywordflow">if</span> (text_input == NULL)</div> <div class="line"> {</div> <div class="line"> result = 0;</div> <div class="line"></div> <div class="line"> <span class="keywordflow">goto</span> cleanup;</div> <div class="line"> }</div> <div class="line"> text_input[text_input_size] = 0;</div> <div class="line"></div> <div class="line"> <a class="code" href="utf8rewind_8h.html#a325b2612f0a2afdacb81d5e6831bd43b">utf32toutf8</a>(input, inputSize, text_input, text_input_size, &amp;errors);</div> <div class="line"> <span class="keywordflow">if</span> (errors != <a class="code" href="utf8rewind_8h.html#ac7f8a18ca0ca9ebb357b2e7b9c527cc3">UTF8_ERR_NONE</a>)</div> <div class="line"> {</div> <div class="line"> result = 0;</div> <div class="line"></div> <div class="line"> <span class="keywordflow">goto</span> cleanup;</div> <div class="line"> }</div> <div class="line"></div> <div class="line"> <span class="keywordflow">if</span> ((strlen(g_PasswordInput) + strlen(text_input)) &gt; g_PasswordInputMaximum)</div> <div class="line"> {</div> <div class="line"> result = 0;</div> <div class="line"></div> <div class="line"> <span class="keywordflow">goto</span> cleanup;</div> <div class="line"> }</div> <div class="line"></div> <div class="line"> strcat(g_PasswordInput, text_input);</div> <div class="line"></div> <div class="line">cleanup:</div> <div class="line"> <span class="keywordflow">if</span> (text_input != NULL)</div> <div class="line"> {</div> <div class="line"> free(text_input);</div> <div class="line"> }</div> <div class="line"></div> <div class="line"> <span class="keywordflow">return</span> result;</div> <div class="line">}</div> </div><!-- fragment --><p>With only a few changes, we've upgraded a text field that previously only accepted ASCII to accept the full range of Unicode. And we didn't even have to change the actual algorithm.</p> <h1><a class="anchor" id="example-display"></a> Displaying Unicode text</h1> <p>Even though the user is now able to enter Unicode text, it won't show up right on her screen. That's because the font rendering implementation expects ASCII instead of Unicode.</p> <p>Let's take a look at the offending function:</p> <div class="fragment"><div class="line"><span class="keywordtype">void</span> InputField_Draw(<span class="keywordtype">int</span> x, <span class="keywordtype">int</span> y, <span class="keyword">const</span> <span class="keywordtype">char</span>* text)</div> <div class="line">{</div> <div class="line"> <span class="keyword">const</span> <span class="keywordtype">char</span>* src = text;</div> <div class="line"> <span class="keywordtype">size_t</span> i;</div> <div class="line"></div> <div class="line"> FontBatch_Start(<span class="stringliteral">&quot;Arial20&quot;</span>);</div> <div class="line"></div> <div class="line"> <span class="keywordflow">for</span> (i = 0; i &lt; strlen(text); ++i)</div> <div class="line"> {</div> <div class="line"> FontBatch_AddCharacter(*src);</div> <div class="line"></div> <div class="line"> src++;</div> <div class="line"> }</div> <div class="line"></div> <div class="line"> FontBatch_End();</div> <div class="line"> FontBatch_Draw(x, y);</div> <div class="line">}</div> </div><!-- fragment --><p>The issue here is that <code>FontBatch_AddCharacter</code> expects code points encoded as one byte per code point. Because UTF-8 is a variable-length encoding, this isn't necessarily true anymore.</p> <p>In order for the font renderer to display Unicode text, we'll need to convert the UTF-8 encoded text to UTF-32. To that end, we'll use <a class="el" href="utf8rewind_8h.html#a353e5c4a977a630d154db221d6c36159" title="Convert a UTF-8 encoded string to a UTF-32 encoded string. ">utf8toutf32</a>.</p> <div class="fragment"><div class="line"><span class="keywordtype">void</span> InputField_Draw(<span class="keywordtype">int</span> x, <span class="keywordtype">int</span> y, <span class="keyword">const</span> <span class="keywordtype">char</span>* text)</div> <div class="line">{</div> <div class="line"> <span class="keywordtype">size_t</span> text_size = strlen(text);</div> <div class="line"> <a class="code" href="utf8rewind_8h.html#ae128fe5bd9e57be736e64d3638229988">unicode_t</a>* converted = NULL;</div> <div class="line"> <span class="keywordtype">size_t</span> converted_size;</div> <div class="line"> int32_t errors = <a class="code" href="utf8rewind_8h.html#ac7f8a18ca0ca9ebb357b2e7b9c527cc3">UTF8_ERR_NONE</a>;</div> <div class="line"> <span class="keywordtype">size_t</span> i;</div> <div class="line"> <a class="code" href="utf8rewind_8h.html#ae128fe5bd9e57be736e64d3638229988">unicode_t</a>* src;</div> <div class="line"></div> <div class="line"> converted_size = <a class="code" href="utf8rewind_8h.html#a353e5c4a977a630d154db221d6c36159">utf8toutf32</a>(text, text_size, NULL, 0, &amp;errors);</div> <div class="line"> <span class="keywordflow">if</span> (converted_size == 0 ||</div> <div class="line"> errors != <a class="code" href="utf8rewind_8h.html#ac7f8a18ca0ca9ebb357b2e7b9c527cc3">UTF8_ERR_NONE</a>)</div> <div class="line"> {</div> <div class="line"> <span class="keywordflow">goto</span> cleanup;</div> <div class="line"> }</div> <div class="line"></div> <div class="line"> converted = (<a class="code" href="utf8rewind_8h.html#ae128fe5bd9e57be736e64d3638229988">unicode_t</a>*)malloc(converted_size);</div> <div class="line"></div> <div class="line"> <a class="code" href="utf8rewind_8h.html#a353e5c4a977a630d154db221d6c36159">utf8toutf32</a>(text, text_size, converted, converted_size, &amp;errors);</div> <div class="line"> <span class="keywordflow">if</span> (errors != <a class="code" href="utf8rewind_8h.html#ac7f8a18ca0ca9ebb357b2e7b9c527cc3">UTF8_ERR_NONE</a>)</div> <div class="line"> {</div> <div class="line"> <span class="keywordflow">goto</span> cleanup;</div> <div class="line"> }</div> <div class="line"></div> <div class="line"> FontBatch_Start(<span class="stringliteral">&quot;Arial20&quot;</span>);</div> <div class="line"></div> <div class="line"> src = decoded;</div> <div class="line"></div> <div class="line"> <span class="keywordflow">for</span> (i = 0; i &lt; decoded_size / <span class="keyword">sizeof</span>(<a class="code" href="utf8rewind_8h.html#ae128fe5bd9e57be736e64d3638229988">unicode_t</a>); ++i)</div> <div class="line"> {</div> <div class="line"> FontBatch_AddCharacter(*src);</div> <div class="line"></div> <div class="line"> src++;</div> <div class="line"> }</div> <div class="line"></div> <div class="line"> FontBatch_End();</div> <div class="line"> FontBatch_Draw(x, y);</div> <div class="line"></div> <div class="line">cleanup:</div> <div class="line"> <span class="keywordflow">if</span> (converted != NULL)</div> <div class="line"> {</div> <div class="line"> free(converted);</div> <div class="line"> converted = NULL;</div> <div class="line"> }</div> <div class="line">}</div> </div><!-- fragment --><p>After this conversion, the <code>FontBatch_AddCharacter</code> function would have to be modified in order to handle Unicode code points. Fortunately this is a string handling library, not a font rendering one, so I can get away with saying I'm leaving it as an exercise to the reader.</p> <p>One thing to keep in mind is that even though we convert the entire input string to UTF-32 before rendering it in this example, it's equally valid to read only one codepoint at a time. However, you'll need to use <a class="el" href="utf8rewind_8h.html#ace07c42b3b5031414ceed1f78055242f" title="Seek into a UTF-8 encoded string. ">utf8seek</a> to move the cursor to the next codepoint.</p> <h1><a class="anchor" id="example-users"></a> Comparing usernames in a case-insensitive manner</h1> <p>After the user has entered their username and password, we'll need to verify their identity. This is done on the back-end, with a straightforward function:</p> <div class="fragment"><div class="line"><span class="keyword">typedef</span> <span class="keyword">struct </span>UserData_ {</div> <div class="line"> <span class="keyword">const</span> <span class="keywordtype">char</span>* username;</div> <div class="line"> <span class="keyword">const</span> <span class="keywordtype">char</span>* passwordHash;</div> <div class="line">} UserData;</div> <div class="line"></div> <div class="line"><span class="keyword">static</span> <span class="keyword">const</span> UserData Users[] = {</div> <div class="line"> { <span class="stringliteral">&quot;qlansu&quot;</span>, <span class="stringliteral">&quot;11111&quot;</span> },</div> <div class="line"> { <span class="stringliteral">&quot;Admin&quot;</span>, <span class="stringliteral">&quot;asfasdf&quot;</span> },</div> <div class="line"> { <span class="stringliteral">&quot;User1&quot;</span>, <span class="stringliteral">&quot;u99123&quot;</span> }</div> <div class="line">};</div> <div class="line"></div> <div class="line">uint8_t Database_IsUserValid(<span class="keyword">const</span> <span class="keywordtype">char</span>* username, <span class="keyword">const</span> <span class="keywordtype">char</span>* passwordHash)</div> <div class="line">{</div> <div class="line"> <span class="keywordtype">size_t</span> i;</div> <div class="line"></div> <div class="line"> <span class="keywordflow">for</span> (i = 0; i &lt; <span class="keyword">sizeof</span>(Users) / <span class="keyword">sizeof</span>(UserData); ++i)</div> <div class="line"> {</div> <div class="line"> <span class="keywordflow">if</span> (!strcmp(Users[i].username, username) &amp;&amp;</div> <div class="line"> !strcmp(Users[i].passwordHash, passwordHash))</div> <div class="line"> {</div> <div class="line"> <span class="keywordflow">return</span> 1;</div> <div class="line"> }</div> <div class="line"> }</div> <div class="line"></div> <div class="line"> <span class="keywordflow">return</span> 0;</div> <div class="line">}</div> </div><!-- fragment --><p>Unfortunately, users being users, they end up forgetting the exact combination of upper- and lowercase characters they used for their username.</p> <p>Luckily, we can use <a class="el" href="utf8rewind_8h.html#af60cc918c7dec97b3472b40fbafc8900" title="Remove case distinction from UTF-8 encoded text. ">utf8casefold</a> to do case-insensitive text comparison. Case folding is an operation that erases case distinction between code points. This process allows you to compare and match strings that wouldn't be considered equivalent otherwise.</p> <p>First, we ensure that the usernames stored in our "database" are casefolded:</p> <div class="fragment"><div class="line"><span class="keyword">static</span> <span class="keyword">const</span> Users[] = {</div> <div class="line"> { <span class="stringliteral">&quot;qlansu&quot;</span>, <span class="stringliteral">&quot;11111&quot;</span> },</div> <div class="line"> { <span class="stringliteral">&quot;admin&quot;</span>, <span class="stringliteral">&quot;asfasdf&quot;</span> },</div> <div class="line"> { <span class="stringliteral">&quot;user1&quot;</span>, <span class="stringliteral">&quot;u99123&quot;</span> }</div> <div class="line">};</div> </div><!-- fragment --><p>Next, we casefold the incoming string before we compare it to the username:</p> <div class="fragment"><div class="line">uint8_t Database_IsUserValid(<span class="keyword">const</span> <span class="keywordtype">char</span>* username, <span class="keyword">const</span> <span class="keywordtype">char</span>* passwordHash)</div> <div class="line">{</div> <div class="line"> uint8_t result;</div> <div class="line"> <span class="keywordtype">char</span>* compare_username = NULL;</div> <div class="line"> <span class="keywordtype">size_t</span> compare_username_size = 0;</div> <div class="line"> int32_t errors;</div> <div class="line"> <span class="keywordtype">size_t</span> i;</div> <div class="line"></div> <div class="line"> <span class="keywordflow">if</span> ((compare_username_size = <a class="code" href="utf8rewind_8h.html#af60cc918c7dec97b3472b40fbafc8900">utf8casefold</a>(username, strlen(username), NULL, 0, &amp;errors)) == 0 ||</div> <div class="line"> errors != <a class="code" href="utf8rewind_8h.html#ac7f8a18ca0ca9ebb357b2e7b9c527cc3">UTF8_ERR_NONE</a>)</div> <div class="line"> {</div> <div class="line"> result = 0;</div> <div class="line"></div> <div class="line"> <span class="keywordflow">goto</span> cleanup;</div> <div class="line"> }</div> <div class="line"></div> <div class="line"> compare_username = (<span class="keywordtype">char</span>*)malloc(compare_username_size + 1);</div> <div class="line"> <a class="code" href="utf8rewind_8h.html#af60cc918c7dec97b3472b40fbafc8900">utf8casefold</a>(username, strlen(username), compare_username, compare_username_size, &amp;errors);</div> <div class="line"> compare_username[compare_username_size] = 0;</div> <div class="line"></div> <div class="line"> <span class="keywordflow">for</span> (i = 0; i &lt; <span class="keyword">sizeof</span>(Users) / <span class="keyword">sizeof</span>(UserData); ++i)</div> <div class="line"> {</div> <div class="line"> <span class="keywordflow">if</span> (!strcmp(Users[i].username, compare_username) &amp;&amp;</div> <div class="line"> !strcmp(Users[i].passwordHash, passwordHash))</div> <div class="line"> {</div> <div class="line"> result = 1;</div> <div class="line"></div> <div class="line"> <span class="keywordflow">goto</span> cleanup;</div> <div class="line"> }</div> <div class="line"> }</div> <div class="line"></div> <div class="line">cleanup:</div> <div class="line"> <span class="keywordflow">if</span> (compare_username != NULL)</div> <div class="line"> {</div> <div class="line"> free(compare_username);</div> <div class="line"> }</div> <div class="line"></div> <div class="line"> <span class="keywordflow">return</span> result;</div> <div class="line">}</div> </div><!-- fragment --> </div></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.9.1 </small></address> </body> </html>
tkelman/utf8rewind
documentation/html/examples.html
HTML
mit
29,691
{% extends path2+"/_layout.html" %} {% block scoring_content %} <h3 class="heading-large mt10">Moving around and using steps</h3> <div class="evidence__box citizen"> <div class="evidence__label">Claimant statements</div> <div class="evidence__content"> <p>Tony says he can move safely and repeatedly on level ground without needing to stop for: <span class="bold-small">100 metres</span> </p> <h3 class="heading-small mt5 mb0">Moving around and using steps</h3> {# <p class="mb0"><span class="bold-small">Tony says:</span></p> #} <p class="mt0 quote">“I have arthritis in my right knee and hip, and also in both wrists. On a good day I can walk 100m slowly - I'd have to rest a couple of times though, as I'd be in pain. I can't use a stick or crutches or a wheelchair because the arthritis in my wrists means I can't grip and don't have much strength. On a bad day, I can just about get around my flat but would usually stay in bed so I don't have to move much.”</p> <h3 class="heading-small mt5 mb0">Going up or down 2 steps</h3> {# <p class="mb0"><span class="bold-small">Tony says:</span></p> #} <p class="mt0 quote mb0"> “I am not able to {{ 1 | lorum | safe }}” </p> </div> </div> <div class="evidence__box med_records"> <div class="evidence__label">Medical Records</div> <div class="evidence__content"> Automated records check confirmed that {{ firstname }} has: <span class="bold-small">Anxiety and depression</span>, <span class="bold-small">Autism</span> and <span class="bold-small">Fibromyalgia</span>. </div> </div> <div class="evidence__box gp_report"> <div class="evidence__label">GP Report</div> <div class="evidence__content"> <h4 class="heading-small mt5">Dr. Sheila Makeyouwell</h4> <p>Suronge Surgery, Wimbledon, Hertfordshire</p> <p class="mt0 quote mb0"> “I can confirm that the level and progression of {{ firstname }}'s arthritis is such that he cannot {{ 10 | lorumwords | safe }}” </p> </div> </div> {{ data | log }} {% if data.withdesc %} <div class="evidence__box assessment"> <div class="evidence__label">Medical assessment</div> <div class="evidence__content"> <h4 class="heading-small mt5 mb20">Mandy Potemkin (Tresco House Assessment Centre )</h4> {% set nuggets = data.nuggets | pickDescriptor('Moving around and using steps') %} <p>{% for item in nuggets | sortBy("time",false) %} {{ item.text }}.&nbsp; {% endfor %}</p> </div> </div> {% endif %} {# <div id="been_scored"> <hr /> <h2 class="heading-large">Moving around and using steps score: 9</h2> <p class="form-hint">You can change this is if you need to.</p> <button class="button" id="change_score">Change score</button> </div> #} {% include path2 + "/_mobility_score.html" %} <div class="form-group"> <p><label class="form-label" for="justificaiton">Justification</label> <textarea class="form-control form-control-3-4" name="justificaiton" id="justificaiton" rows="5"></textarea></p> </div><!-- .form-group --> <div class="form-group"> <input class="button" type="submit" value="Continue" /> </div><!-- form-group --> {# <div class="" id="rescore"> <h3 class="heading-large">Can you make a recommendation now?</h3> <form class="form" action="/{{path2}}/" method="get"> {% block case_form %} {% include path2+"/_form_ask.html" %} {% endblock %} <div class="js-hidden panel panel-indent mt20" id="scorenow"> {% include path2 + "/_mobility_score.html" %} </div><!-- #scorenow --> <div class="form-group"> <input class="button" type="submit" value="Continue" /> </div><!-- form-group --> </form> </div> #} {% endblock %} {% block page_scripts %} {{ super() }} <script type="text/javascript"> $(document).on('ready',function() { $('#change_score').on('click',function(e) { e.preventDefault(); console.log('got here') $('#been_scored').addClass('js-hidden'); $('#rescore').removeClass('js-hidden'); }); // highlight the right left nav link. $($(".nav")[0]).children(":nth-child(1)").addClass('active') }); </script> {% endblock %}
dwpdigitaltech/healthanddisability
app/views/assess/v5/victorcastillo/scoring/mobility.html
HTML
mit
4,281
<div class="modal-content"> <div class="modal-header"> <b>Results</b> </div> <div class="modal-body"> <table class="table"> <thead> <tr> <th>Title</th> <th>Description</th> <th>Category</th> <th>Tags</th> <th>Likes</th> <th>Dislikes</th> <th>Date created</th> <th>Author</th> </tr> </thead> <tbody> <tr ng-repeat="idea in response track by $index"> <td class="col-md-1">{{idea.title}}</td> <td class="col-md-2">{{idea.description}}</td> <td class="col-md-1">{{idea.category}}</td> <td class="col-md-2"><div class="tag category blue pull-left" ng-repeat="tag in idea.tags track by $index">{{tag}}</div></td> <td class="col-md-1">{{idea.rating.likes}}</td> <td class="col-md-1">{{idea.rating.dislikes}}</td> <td class="col-md-1">{{idea.parsedDate}}</td> <td class="col-md-1">{{idea.author.name}}</td> </tr> </tbody> </table> </div> </div>
g3aishih/csc309ip
src/html/modal_retrieve.html
HTML
mit
986
<hr /> <label> Id: <span class="idLabel"></span> <a class="theadLink">Open</a> </label> <label> Name: <span class="nameLabel"></span> </label> <label> Date: <span class="dateLabel"></span> </label>
SpaceDustTeapot/bunkerchan-fe
templates/cells/archiveCell.html
HTML
mit
205
<html ng-app="myDemo4"> <head> <script src="../../bower_components/angular/angular.min.js"></script> <script src="app.js"></script> </head> <body ng-controller="MyCtrl"> Technologies : <ul><li ng-repeat="techno in technos">{{techno}}</li></ul> Technologies Java* : <ul><li ng-repeat="techno in technos | filter:'Java'">{{techno}}</li></ul> </body> </html>
thebignet/talk-angularjs-introduction
demos/demo4/index.html
HTML
mit
363
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" name="viewport" /> <script> var Module = {}; var __cargo_web = {}; Object.defineProperty( Module, 'canvas', { get: function() { if( __cargo_web.canvas ) { return __cargo_web.canvas; } var canvas = document.createElement( 'canvas' ); document.querySelector( 'body' ).appendChild( canvas ); __cargo_web.canvas = canvas; return canvas; } }); </script> </head> <body> <script src="rummikub-solver.js"></script> </body> </html>
snoyberg/snoyman.com
static/static/rummikub/index.html
HTML
mit
821
<?xml version="1.0" encoding="ascii"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>ansible.compat.six.Module_six_moves_urllib_response</title> <link rel="stylesheet" href="epydoc.css" type="text/css" /> <script type="text/javascript" src="epydoc.js"></script> </head> <body bgcolor="white" text="black" link="blue" vlink="#204080" alink="#204080"> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="ansible-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <!-- Project homepage --> <th class="navbar" align="right" width="100%"> <table border="0" cellpadding="0" cellspacing="0"> <tr><th class="navbar" align="center" >ansible</th> </tr></table></th> </tr> </table> <table width="100%" cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="100%"> <span class="breadcrumbs"> <a href="ansible-module.html">Package&nbsp;ansible</a> :: <a href="ansible.compat-module.html">Package&nbsp;compat</a> :: <a href="ansible.compat.six-module.html">Package&nbsp;six</a> :: Class&nbsp;Module_six_moves_urllib_response </span> </td> <td> <table cellpadding="0" cellspacing="0"> <!-- hide/show private --> <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink" onclick="toggle_private();">hide&nbsp;private</a>]</span></td></tr> <tr><td align="right"><span class="options" >[<a href="frames.html" target="_top">frames</a >]&nbsp;|&nbsp;<a href="ansible.compat.six.Module_six_moves_urllib_response-class.html" target="_top">no&nbsp;frames</a>]</span></td></tr> </table> </td> </tr> </table> <!-- ==================== CLASS DESCRIPTION ==================== --> <h1 class="epydoc">Class Module_six_moves_urllib_response</h1><p class="nomargin-top"><span class="codelink"><a href="ansible.compat.six-pysrc.html#Module_six_moves_urllib_response">source&nbsp;code</a></span></p> <pre class="base-tree"> object --+ | ??.module-1 --+ | <a href="ansible.compat.six._LazyModule-class.html" onclick="show_private();">_LazyModule</a> --+ | <strong class="uidshort">Module_six_moves_urllib_response</strong> </pre> <hr /> <p>Lazy loading of moved objects in six.moves.urllib_response</p> <!-- ==================== INSTANCE METHODS ==================== --> <a name="section-InstanceMethods"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Instance Methods</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-InstanceMethods" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="ansible.compat.six._LazyModule-class.html" onclick="show_private();">_LazyModule</a></code></b>: <code><a href="ansible.compat.six._LazyModule-class.html#__dir__">__dir__</a></code>, <code><a href="ansible.compat.six._LazyModule-class.html#__init__">__init__</a></code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code><i>unreachable</i>.module</code></b>: <code>__delattr__</code>, <code>__getattribute__</code>, <code>__new__</code>, <code>__repr__</code>, <code>__setattr__</code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__format__</code>, <code>__hash__</code>, <code>__reduce__</code>, <code>__reduce_ex__</code>, <code>__sizeof__</code>, <code>__str__</code>, <code>__subclasshook__</code> </p> </td> </tr> </table> <!-- ==================== CLASS VARIABLES ==================== --> <a name="section-ClassVariables"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Class Variables</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-ClassVariables" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="ansible.compat.six.Module_six_moves_urllib_response-class.html#_moved_attributes" class="summary-name" onclick="show_private();">_moved_attributes</a> = <code title="[&lt;ansible.compat.six.MovedAttribute object at 0x7f2ca68319d0&gt;, &lt;ansible.compat.six.MovedAttribute object at 0x7f2ca6831a10&gt;, &lt;ansible.compat.six.MovedAttribute object at 0x7f2ca6831a50&gt;, &lt;ansible.compat.six.MovedAttribute object at 0x7f2ca6831a90&gt;]"><code class="variable-group">[</code>&lt;ansible.compat.six.MovedAttribute object<code class="variable-ellipsis">...</code></code> </td> </tr> </table> <!-- ==================== PROPERTIES ==================== --> <a name="section-Properties"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Properties</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Properties" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__class__</code> </p> </td> </tr> </table> <!-- ==================== CLASS VARIABLE DETAILS ==================== --> <a name="section-ClassVariableDetails"></a> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Class Variable Details</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-ClassVariableDetails" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> </table> <a name="_moved_attributes"></a> <div class="private"> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">_moved_attributes</h3> <dl class="fields"> </dl> <dl class="fields"> <dt>Value:</dt> <dd><table><tr><td><pre class="variable"> <code class="variable-group">[</code>&lt;ansible.compat.six.MovedAttribute object at 0x7f2ca68319d0&gt;<code class="variable-op">,</code> &lt;ansible.compat.six.MovedAttribute object at 0x7f2ca6831a10&gt;<code class="variable-op">,</code> &lt;ansible.compat.six.MovedAttribute object at 0x7f2ca6831a50&gt;<code class="variable-op">,</code> &lt;ansible.compat.six.MovedAttribute object at 0x7f2ca6831a90&gt;<code class="variable-group">]</code> </pre></td></tr></table> </dd> </dl> </td></tr></table> </div> <br /> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="ansible-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <!-- Project homepage --> <th class="navbar" align="right" width="100%"> <table border="0" cellpadding="0" cellspacing="0"> <tr><th class="navbar" align="center" >ansible</th> </tr></table></th> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="100%%"> <tr> <td align="left" class="footer"> Generated by Epydoc 3.0.1 on Fri Jul 29 13:11:38 2016 </td> <td align="right" class="footer"> <a target="mainFrame" href="http://epydoc.sourceforge.net" >http://epydoc.sourceforge.net</a> </td> </tr> </table> <script type="text/javascript"> <!-- // Private objects are initially displayed (because if // javascript is turned off then we want them to be // visible); but by default, we want to hide them. So hide // them unless we have a cookie that says to show them. checkCookie(); // --> </script> </body> </html>
alikins/alikins.github.io
epydoc/ansible.compat.six.Module_six_moves_urllib_response-class.html
HTML
mit
10,379
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>basic_datagram_socket::native_handle</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../basic_datagram_socket.html" title="basic_datagram_socket"> <link rel="prev" href="native.html" title="basic_datagram_socket::native"> <link rel="next" href="native_handle_type.html" title="basic_datagram_socket::native_handle_type"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td> <td align="center"><a href="../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="native.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_datagram_socket.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="native_handle_type.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="boost_asio.reference.basic_datagram_socket.native_handle"></a><a class="link" href="native_handle.html" title="basic_datagram_socket::native_handle">basic_datagram_socket::native_handle</a> </h4></div></div></div> <p> <span class="emphasis"><em>Inherited from basic_socket.</em></span> </p> <p> <a class="indexterm" name="idp58299240"></a> Get the native socket representation. </p> <pre class="programlisting"><span class="identifier">native_handle_type</span> <span class="identifier">native_handle</span><span class="special">();</span> </pre> <p> This function may be used to obtain the underlying representation of the socket. This is intended to allow access to native socket functionality that is not otherwise provided. </p> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2013 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="native.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_datagram_socket.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="native_handle_type.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
laborautonomo/poedit
deps/boost/doc/html/boost_asio/reference/basic_datagram_socket/native_handle.html
HTML
mit
3,612
<!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.9.1"/> <title>V8 API Reference Guide for node.js v0.10.46: Class Members</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 style="padding-left: 0.5em;"> <div id="projectname">V8 API Reference Guide for node.js v0.10.46 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.9.1 --> <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&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li><a href="examples.html"><span>Examples</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li> <li class="current"><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="navrow3" class="tabs2"> <ul class="tablist"> <li class="current"><a href="functions.html"><span>All</span></a></li> <li><a href="functions_func.html"><span>Functions</span></a></li> <li><a href="functions_vars.html"><span>Variables</span></a></li> <li><a href="functions_type.html"><span>Typedefs</span></a></li> <li><a href="functions_enum.html"><span>Enumerations</span></a></li> </ul> </div> <div id="navrow4" class="tabs3"> <ul class="tablist"> <li><a href="functions.html#index_a"><span>a</span></a></li> <li><a href="functions_b.html#index_b"><span>b</span></a></li> <li><a href="functions_c.html#index_c"><span>c</span></a></li> <li><a href="functions_d.html#index_d"><span>d</span></a></li> <li><a href="functions_e.html#index_e"><span>e</span></a></li> <li><a href="functions_f.html#index_f"><span>f</span></a></li> <li><a href="functions_g.html#index_g"><span>g</span></a></li> <li><a href="functions_h.html#index_h"><span>h</span></a></li> <li><a href="functions_i.html#index_i"><span>i</span></a></li> <li><a href="functions_k.html#index_k"><span>k</span></a></li> <li><a href="functions_l.html#index_l"><span>l</span></a></li> <li><a href="functions_m.html#index_m"><span>m</span></a></li> <li><a href="functions_n.html#index_n"><span>n</span></a></li> <li><a href="functions_o.html#index_o"><span>o</span></a></li> <li><a href="functions_p.html#index_p"><span>p</span></a></li> <li><a href="functions_r.html#index_r"><span>r</span></a></li> <li><a href="functions_s.html#index_s"><span>s</span></a></li> <li class="current"><a href="functions_t.html#index_t"><span>t</span></a></li> <li><a href="functions_u.html#index_u"><span>u</span></a></li> <li><a href="functions_v.html#index_v"><span>v</span></a></li> <li><a href="functions_w.html#index_w"><span>w</span></a></li> <li><a href="functions_~.html#index_~"><span>~</span></a></li> </ul> </div> </div><!-- top --> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="contents"> <div class="textblock">Here is a list of all documented class members with links to the class documentation for each member:</div> <h3><a class="anchor" id="index_t"></a>- t -</h3><ul> <li>TakeSnapshot() : <a class="el" href="classv8_1_1HeapProfiler.html#a39e6df3b54335e183ca57edae1dc78e7">v8::HeapProfiler</a> </li> <li>TerminateExecution() : <a class="el" href="classv8_1_1V8.html#af7d845e6f55eb76085d5ff3601780986">v8::V8</a> </li> <li>ToArrayIndex() : <a class="el" href="classv8_1_1Value.html#ab6b19a1e5aa5df50dfbb5d2ffa60bcdc">v8::Value</a> </li> <li>TryCatch() : <a class="el" href="classv8_1_1TryCatch.html#adc9b1b11e73b0325df727914c348053d">v8::TryCatch</a> </li> <li>TurnOnAccessCheck() : <a class="el" href="classv8_1_1Object.html#aa2299eda3240be1e76b7d5c2af7a6bbc">v8::Object</a> </li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.9.1 </small></address> </body> </html>
v8-dox/v8-dox.github.io
fcb9145/html/functions_t.html
HTML
mit
6,729
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div class="SRResult" id="SR_categories"> <div class="SREntry"> <a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../interface_book.html#a5d02b41a17f0bf3da50e4613762d3865" target="_parent">categories</a> <span class="SRScope">Book</span> </div> </div> <div class="SRResult" id="SR_collection"> <div class="SREntry"> <a id="Item1" onkeydown="return searchResults.Nav(event,1)" onkeypress="return searchResults.Nav(event,1)" onkeyup="return searchResults.Nav(event,1)" class="SRSymbol" href="../interface_criteria.html#a52906da275ae0744abeba6007790553f" target="_parent">collection</a> <span class="SRScope">Criteria</span> </div> </div> <div class="SRResult" id="SR_cover"> <div class="SREntry"> <a id="Item2" onkeydown="return searchResults.Nav(event,2)" onkeypress="return searchResults.Nav(event,2)" onkeyup="return searchResults.Nav(event,2)" class="SRSymbol" href="../interface_book.html#ab9a2eba00a1c12702737db9f315cb1e8" target="_parent">cover</a> <span class="SRScope">Book</span> </div> </div> <div class="SRResult" id="SR_criteria"> <div class="SREntry"> <a id="Item3" onkeydown="return searchResults.Nav(event,3)" onkeypress="return searchResults.Nav(event,3)" onkeyup="return searchResults.Nav(event,3)" class="SRSymbol" href="../interface_open_libra_client.html#afe8b3b6e59856c494c05b2967a0dffd2" target="_parent">criteria</a> <span class="SRScope">OpenLibraClient</span> </div> </div> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
vbergae/OpenLibraClient
OpenLibraClient/docs/html/search/properties_63.html
HTML
mit
2,360
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- Files --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Files</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" href="rdoc-style.css" type="text/css" /> <base target="docwin" /> </head> <body> <div id="index"> <h1 class="section-bar">Files</h1> <div id="index-entries"> <a href="files/app/controllers/application_rb.html">app/controllers/application.rb</a><br /> <a href="files/app/controllers/cart_controller_rb.html">app/controllers/cart_controller.rb</a><br /> <a href="files/app/controllers/items_controller_rb.html">app/controllers/items_controller.rb</a><br /> <a href="files/app/controllers/site_controller_rb.html">app/controllers/site_controller.rb</a><br /> <a href="files/app/controllers/user_controller_rb.html">app/controllers/user_controller.rb</a><br /> <a href="files/app/helpers/application_helper_rb.html">app/helpers/application_helper.rb</a><br /> <a href="files/app/helpers/cart_helper_rb.html">app/helpers/cart_helper.rb</a><br /> <a href="files/app/helpers/items_helper_rb.html">app/helpers/items_helper.rb</a><br /> <a href="files/app/helpers/site_helper_rb.html">app/helpers/site_helper.rb</a><br /> <a href="files/app/helpers/user_helper_rb.html">app/helpers/user_helper.rb</a><br /> <a href="files/app/models/item_rb.html">app/models/item.rb</a><br /> <a href="files/app/models/user_rb.html">app/models/user.rb</a><br /> <a href="files/doc/README_FOR_APP.html">doc/README_FOR_APP</a><br /> </div> </div> </body> </html>
Tataraovoleti/shop_on_rails
doc/app/fr_file_index.html
HTML
mit
1,786
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Telerik Software Academy 2015 CSS Course</title> <link href="ForumStyle.css" rel="stylesheet" /> <meta charset="UTF-8"> </head> <body> <header> <h1 id="main-header">The Header</h1> <nav> <ul> <li> <a href="#">Nav item</a> </li> <li> <a href="#" class="current">Nav item</a> </li> <li> <a href="#">Nav item</a> </li> <li> <a href="#">Nav item</a> </li> </ul> </nav> </header> <section> <article> <header> <h1>Sed nisl quam, rutrum eget commodo et, ullamcorper sed quam</h1> </header> <p>In posuere bibendum enim vel venenatis. Integer gravida, tortor quis gravida fermentum, libero orci hendrerit sapien, sed facilisis turpis mauris vitae turpis. Suspendisse nunc justo, dapibus in condimentum eget, rutrum id risus. Ut varius vulputate tortor. Suspendisse fermentum laoreet ante, ut placerat enim condimentum tristique. Sed gravida scelerisque enim at euismod. Integer aliquam vehicula purus quis accumsan. Nulla eu orci nec metus condimentum vestibulum sit amet quis lacus. Mauris tempor venenatis ultrices. Phasellus et leo a massa dapibus pharetra. Donec ut tellus vel mauris imperdiet ornare. Aliquam lacus purus, dictum et tristique id, ornare vitae arcu. Sed rutrum, neque sit amet euismod viverra, libero erat fermentum neque, a cursus libero urna eu erat. Pellentesque at tempor risus.</p> <footer> <p>posted on 12-dec-2012 by <a href="#">Minko Ivanov</a></p> </footer> </article> <article> <header> <h1>Duis lacus erat, tristique non pharetra ac, bibendum sit amet ante</h1> </header> <p>Quisque tortor mi, consequat eu volutpat in, convallis a turpis. Aenean neque mi, vehicula id sollicitudin hendrerit, posuere quis elit. Aliquam ultricies ante fringilla tortor scelerisque a pharetra orci ornare. Vivamus nec mi id lorem ullamcorper convallis. Maecenas ornare volutpat dui. Aliquam erat volutpat. Aliquam erat volutpat. Nulla gravida erat nec erat pulvinar sed rhoncus risus congue. Nulla vel dui elit.</p> <footer> <p>posted on 12-dec-2012 by <a href="#">Minko Ivanov</a></p> </footer> </article> <article> <header> <h1>Aliquam eleifend, nisi ut facilisis pharetra, mauris ipsum sagittis lacus</h1> </header> <p>Aliquam eleifend, nisi ut facilisis pharetra, mauris ipsum sagittis lacus, vel aliquam urna felis ac leo. Nullam massa odio, consequat ut posuere at, lacinia at nunc. Curabitur quam dolor, malesuada ac sodales eget, malesuada eu ipsum. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed in nibh vitae ante elementum pharetra hendrerit in ligula. Proin non leo lorem, in ultricies tortor. Donec in nibh non diam ultricies feugiat vitae quis arcu. Sed sit amet odio quis eros pharetra ullamcorper. Nam id erat et leo varius molestie vitae a est. Curabitur ornare orci at dolor cursus sagittis. Phasellus vitae bibendum enim. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae.</p> <footer> <p>posted on 12-dec-2012 by <a href="#">Minko Ivanov</a></p> </footer> </article> </section> <footer>Telerik Software Academy 2015 - CSS Course</footer> </body> </html>
clangelov/TelerikAcademyHomework
05_CSS/CSS-Overview-Homework/03.ForumPosts/ForumPosts.html
HTML
mit
3,753
<!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.0"> <meta name="generator" content="BloggerCMS" /> <meta name="description" content="BloggerCMS Official Blog"> <meta name="author" content="BloggerCMS"> <title>BloggerCMS Blog</title> <!-- rss feed url --> <link rel="alternate" type="application/rss+xml" title="BloggerCMS Blog" href="https://bloggercms.github.io/rss.xml"/> <!-- favicon --> <link rel="shortcut icon" href="/favicon.ico"/> <link rel="shortcut icon" href="https://bloggercms.github.io/favicon.ico"/> <!-- Bootstrap CSS file --> <link href="https://bloggercms.github.io/js/plugins/bootstrap-3.0.3/css/slate.min.css" rel="stylesheet"/> <link href="https://bloggercms.github.io/js/plugins/font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet"> <link href="https://bloggercms.github.io/js/plugins/bootstrap-3.0.3/plugins/social-buttons.css" rel="stylesheet"/> <!-- syntax highlighter css file --> <link href="https://bloggercms.github.io/js/plugins/highlight/styles/railscasts.css" rel="stylesheet" /> <!-- lightbox for images --> <link href="https://bloggercms.github.io/js/plugins/lightbox/ekko-lightbox.min.css" rel="stylesheet" /> <!-- blog custom CSS file --> <link href="https://bloggercms.github.io/css/style.css" rel="stylesheet"/> </head><body> <!-- Header --> <header class="navbar navbar-default navbar-fixed-top bs-docs-nav" role="banner"> <div class="container"> <div class="navbar-header"> <button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a href="https://bloggercms.github.io/index.html" class="navbar-brand"><i class="fa fa-edit"></i> BloggerCMS Blog</a> </div> <nav class="collapse navbar-collapse bs-navbar-collapse" role="navigation"> <div class="navbar-form navbar-right" role="search"> <div class="form-group"> <input type="text" class="searchQuery form-control" placeholder="Search Posts"> </div> <button type="button" class="searchButton btn btn-default"><i class="glyphicon glyphicon-search"></i> Submit </button> </div> <ul class="nav navbar-nav page-links"> <li><a href="https://bloggercms.github.io/page/get-started.html">Get Started</a></li> <li><a href="https://bloggercms.github.io/page/about.html">About</a></li> <li><a href="https://bloggercms.github.io/page/showcase.html">Showcase</a></li> <li><a href="https://bloggercms.github.io/page/support.html">Support</a></li> <li><a href="https://bloggercms.github.io/page/donations.html">Donations</a></li> </ul> </nav> </div> </header> <div class="container"> <div class="row"> <div class="col-md-8 main-content"> <h1>Category Posts</h1> <hr/> <br/> <h3><a href="https://bloggercms.github.io/post/how-to-use-specific-custom-value-in-layouts.html">How to Use Specific Custom Value in Layouts</a></h3> <span class="glyphicon glyphicon-time"></span> April 11, 2015 10:20 AM <h3><a href="https://bloggercms.github.io/post/how-to-add-pagination-feature-to-custom-bloggercms-layouts.html">How to Add Pagination Feature to Custom BloggerCMS Layouts</a></h3> <span class="glyphicon glyphicon-time"></span> April 10, 2015 10:40 AM <h3><a href="https://bloggercms.github.io/post/how-to-add-search-feature-to-custom-bloggercms-layouts.html">How to Add Search Feature to Custom BloggerCMS Layouts</a></h3> <span class="glyphicon glyphicon-time"></span> April 09, 2015 04:03 PM <h3><a href="https://bloggercms.github.io/post/new-layout-initializr.html">New Layout: Initializr</a></h3> <span class="glyphicon glyphicon-time"></span> April 09, 2015 12:05 AM </div> <div class="sidebar col-md-4"> <div class="well text-center"> <a href="https://github.com/sarfraznawaz2005/BloggerCMS" class="btn btn-success"><i class="fa fa-download"></i> Download BloggerCMS</a> </div> <!-- Follow Panel --> <div class="panel panel-primary text-center"> <div class="panel-heading"> <strong>Follow BloggerCMS Blog</strong> </div> <div class="panel-body"> <a target="_blank" href="https://bloggercms.github.io/rss.xml" class="btn btn-social-icon btn-outline"><i class="fa fa-rss"></i></a> <a target="_blank" href="https://github.com/bloggercms/bloggercms.github.io" class="btn btn-social-icon btn-github"><i class="fa fa-github"></i></a> </div> </div> <!-- Latest Posts --> <div class="panel panel-primary"> <div class="panel-heading"> <strong>Latest Posts</strong> </div> <ul class="list-group"> <li class="list-group-item"><a href="https://bloggercms.github.io/post/how-to-use-specific-custom-value-in-layouts.html">How to Use Specific Custom Value in Layouts</a></li> <li class="list-group-item"><a href="https://bloggercms.github.io/post/bloggercms-added-to-list-of-static-site-generators.html">BloggerCMS Added to List of Static Site Generators</a></li> <li class="list-group-item"><a href="https://bloggercms.github.io/post/how-to-add-pagination-feature-to-custom-bloggercms-layouts.html">How to Add Pagination Feature to Custom BloggerCMS Layouts</a></li> <li class="list-group-item"><a href="https://bloggercms.github.io/post/how-to-add-search-feature-to-custom-bloggercms-layouts.html">How to Add Search Feature to Custom BloggerCMS Layouts</a></li> <li class="list-group-item"><a href="https://bloggercms.github.io/post/how-to-create-a-layout-for-bloggercms.html">How to Create a Layout for BloggerCMS</a></li> </ul> </div> <!-- Categories --> <div class="panel panel-primary"> <div class="panel-heading"> <strong>Categories</strong> </div> <ul class="list-group"> <li class="list-group-item"><a href="https://bloggercms.github.io/category/bloggercms.html">BloggerCMS</a></li> <li class="list-group-item"><a href="https://bloggercms.github.io/category/layouts.html">Layouts</a></li> <li class="list-group-item"><a href="https://bloggercms.github.io/category/tutorial.html">Tutorial</a></li> </ul> </div> <!-- Archives --> <div class="panel panel-primary"> <div class="panel-heading"> <strong>Archives</strong> </div> <ul class="archives list-group"><li class="list-group-item archive_link"><a href="https://bloggercms.github.io/archive/april-2015">April 2015</a></li></ul> </div> <!-- Tags --> <div class="panel panel-primary"> <div class="panel-heading"> <strong>Tags Cloud</strong> </div> <div class="panel-body"> <ul class="list-inline"> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/admin.html" title="'admin' returned a count of 0">admin</a> <a style="font-size: 21px" class="tag_cloud" href="https://bloggercms.github.io/tag/bloggercms.html" title="'bloggercms' returned a count of 2">bloggercms</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/cms.html" title="'cms' returned a count of 0">cms</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/custom.html" title="'custom' returned a count of 0">custom</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/disqus.html" title="'disqus' returned a count of 0">disqus</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/image.html" title="'image' returned a count of 0">image</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/imagemanager.html" title="'imagemanager' returned a count of 0">imagemanager</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/initializr.html" title="'initializr' returned a count of 0">initializr</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/intro.html" title="'intro' returned a count of 0">intro</a> <a style="font-size: 30px" class="tag_cloud" href="https://bloggercms.github.io/tag/layout.html" title="'layout' returned a count of 4">layout</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/page.html" title="'page' returned a count of 0">page</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/pagination.html" title="'pagination' returned a count of 0">pagination</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/paging.html" title="'paging' returned a count of 0">paging</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/php.html" title="'php' returned a count of 0">php</a> <a style="font-size: 16px" class="tag_cloud" href="https://bloggercms.github.io/tag/post.html" title="'post' returned a count of 1">post</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/search.html" title="'search' returned a count of 0">search</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/settings.html" title="'settings' returned a count of 0">settings</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/template.html" title="'template' returned a count of 0">template</a> <a style="font-size: 25px" class="tag_cloud" href="https://bloggercms.github.io/tag/tutorial.html" title="'tutorial' returned a count of 3">tutorial</a> <a style="font-size: 12px" class="tag_cloud" href="https://bloggercms.github.io/tag/value.html" title="'value' returned a count of 0">value</a> </ul> </div> </div> </div> </div> </div> <!-- Footer --> <footer> <div class="container"> <hr/> <p class="text-center">Published by <strong><a target="_blank" href="https://github.com/sarfraznawaz2005/BloggerCMS">BloggerCMS</a></strong></p> </div> </footer> <!-- Jquery and Bootstrap Script files --> <script src="https://bloggercms.github.io/js/jquery-2.0.3.min.js"></script> <script src="https://bloggercms.github.io/js/plugins/bootstrap-3.0.3/js/bootstrap.min.js"></script> <script src="https://bloggercms.github.io/js/plugins/highlight/highlight.pack.js"></script> <script src="https://bloggercms.github.io/js/plugins/lightbox/ekko-lightbox.min.js"></script> <script> var __blogURL = 'https://bloggercms.github.io'; </script> <script src="https://bloggercms.github.io/js/blog.js"></script> <script src="https://bloggercms.github.io/js/search.js"></script> </body> </html>
bloggercms/bloggercms.github.io
category/layouts.html
HTML
mit
12,211
<!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_26) on Sun Sep 25 19:59:55 CEST 2011 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Package a_vcard.android.syncml.pim </TITLE> <META NAME="date" CONTENT="2011-09-25"> <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 Package a_vcard.android.syncml.pim"; } } </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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?a_vcard/android/syncml/pim/package-use.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<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 Package<br>a_vcard.android.syncml.pim</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../a_vcard/android/syncml/pim/package-summary.html">a_vcard.android.syncml.pim</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#a_vcard.android.syncml.pim"><B>a_vcard.android.syncml.pim</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#a_vcard.android.syncml.pim.vcard"><B>a_vcard.android.syncml.pim.vcard</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="a_vcard.android.syncml.pim"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Classes in <A HREF="../../../../a_vcard/android/syncml/pim/package-summary.html">a_vcard.android.syncml.pim</A> used by <A HREF="../../../../a_vcard/android/syncml/pim/package-summary.html">a_vcard.android.syncml.pim</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><B><A HREF="../../../../a_vcard/android/syncml/pim/class-use/PropertyNode.html#a_vcard.android.syncml.pim"><B>PropertyNode</B></A></B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><B><A HREF="../../../../a_vcard/android/syncml/pim/class-use/VBuilder.html#a_vcard.android.syncml.pim"><B>VBuilder</B></A></B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><B><A HREF="../../../../a_vcard/android/syncml/pim/class-use/VNode.html#a_vcard.android.syncml.pim"><B>VNode</B></A></B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="a_vcard.android.syncml.pim.vcard"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Classes in <A HREF="../../../../a_vcard/android/syncml/pim/package-summary.html">a_vcard.android.syncml.pim</A> used by <A HREF="../../../../a_vcard/android/syncml/pim/vcard/package-summary.html">a_vcard.android.syncml.pim.vcard</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><B><A HREF="../../../../a_vcard/android/syncml/pim/class-use/PropertyNode.html#a_vcard.android.syncml.pim.vcard"><B>PropertyNode</B></A></B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><B><A HREF="../../../../a_vcard/android/syncml/pim/class-use/VBuilder.html#a_vcard.android.syncml.pim.vcard"><B>VBuilder</B></A></B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><B><A HREF="../../../../a_vcard/android/syncml/pim/class-use/VDataBuilder.html#a_vcard.android.syncml.pim.vcard"><B>VDataBuilder</B></A></B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Store the parse result to custom datastruct: VNode, PropertyNode Maybe several vcard instance, so use vNodeList to store.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><B><A HREF="../../../../a_vcard/android/syncml/pim/class-use/VNode.html#a_vcard.android.syncml.pim.vcard"><B>VNode</B></A></B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?a_vcard/android/syncml/pim/package-use.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<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>
SafeSlingerProject/SafeSlinger-Android
android-vcard/javadoc/a_vcard/android/syncml/pim/package-use.html
HTML
mit
9,169
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ECharts</title> <!-- 引入 echarts.js --> <script src="//cdn.bootcss.com/echarts/3.6.2/echarts.min.js"></script> <script src="js/charts_loader.js" type="text/javascript"></script> </head> <body> <!-- 为ECharts准备一个具备大小(宽高)的Dom --> <div id="main" style="width: 800px;height:600px;"></div> <script> // 基于准备好的dom,初始化echarts实例 var myChart = echarts.init(document.getElementById('main')); // 使用刚指定的配置项和数据显示图表。 myChart.setOption(option); </script> x轴:年份 <br/> y轴:评分 <br/> 图元size: 票房 <br/> 图例:导演 <br/> VisualMap: 票房、评分 </body> </html>
rising-fallmoon/rising-fallmoon.github.io
charts.html
HTML
mit
762
<!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/> <title>What Sunrise Is It?</title> <meta name="description" content="What Sunrise Is It? See what our Sunrise looks like from Earth right now."/> <meta name="mobile-web-app-capable" content="yes"> <link rel="stylesheet" type="text/css" href="assets/style.css"/> <link rel="icon" sizes="128x128" href="assets/favicon.png"> <script src="assets/script.js" defer></script> </head> <body> <h2 class="not-centered" id="time">...</h2> <div id="image"></div> <div id="next-image"></div> <a href="https://github.com/rthbound/WhatSunriseIsIt" title="Fork this project on GitHub"><img id="github-badge" src="assets/fork.png" alt="Fork this project on GitHub" /></a> <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> try { var pageTracker = _gat._getTracker("UA-41441385-1"); pageTracker._trackPageview(); } catch(err) {} </script> </body> </html>
rthbound/WhatSunriseIsIt
index.html
HTML
mit
1,290
{% extends request.base_template %} {% load i18n %} {% block page_title %} {% trans "Privacy" %} - {% endblock %} {% block unsupported_browser_warning %}{% endblock %} {% block content %} <h1>{% trans "Privacy Policy" %}</h1> <p>{% trans "TODO: get content" %}</p> {% endblock %}
InfoAgeTech/django-starter
mysite/templates/privacy.html
HTML
mit
279
<!DOCTYPE html> <html> {% include head.html %} <body> <div class="page"> <div class="page-sidebar"> {% include sidebar.html %} </div> <div class="page-body"> <div class="page-main-bg container"> {{ content }} <div class="row"> <div class="col-12"> <hr> <p class="text-xs-right"> subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}"> <i class="fa fa-rss"></i> via RSS </a> | connect <a href="{{ site.github_url }}"> <i class="fab fa-github"></i> on gitbub </a> </p> </div> </div> </div> </div> </div> {% include footer.html %} </body> </html>
disjfa/glynn-admin
site/_layouts/default.html
HTML
mit
1,001
<!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.0"> <meta name="description" content=""> <meta name="author" content=""> <link rel="shortcut icon" href="../../docs-assets/ico/favicon.png"><title>Iversity Webblog</title> <!-- Bootstrap core CSS --> <link href="dist/css/bootstrap.css" rel="stylesheet"> <!-- Custom styles for this template --> <link href="jumbotron-narrow.css" rel="stylesheet"> <!-- Just for debugging purposes. Don't actually copy this line! --><!--[if lt IE 9]><script src="../../docs-assets/js/ie8-responsive-file-warning.js"></script><![endif]--><!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --><!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="header"> <ul class="nav nav-pills pull-right"> <li class="active"><a href="boot.html">Home</a></li> <li><a href="#">Impressum</a></li> </ul> <h3 class="text-muted">Webblog zum Onlinekurs</h3> </div> <div class="jumbotron"> <h1><img style="width: 90%; height: 90%;" alt="Iversity Logo" src="https://d1wshrh2fwv7ib.cloudfront.net/assets/logo-iversity-494f4c5e361ad68f629f320da9858677.png"></h1> MOOC &nbsp;| &nbsp;Web-Engineering I<br> Grundlagen der Webentwicklung<br> </div> <div class="row marketing"> <div class="col-lg-6"> <h4>Impressumsangaben</h4> <p> Daniel Ponath<br> &#112;&#111;&#110;&#97;&#116;&#104;&#64;&#103;&#109;&#120;&#46;&#100;&#101;</p> </div> </div> <div class="footer"> <p><a href="impress.html">Impressum</a> | © Daniel Ponath 2013 | Jumbotron Narrow Theme</p> </div> <!-- /container --><!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://code.jquery.com/jquery.js"></script><!-- Include all compiled plugins (below), or include individual files as needed --> <script src="../dist/js/bootstrap.min.js"></script></div> </body></html>
Stofffuchs/htmltag
impress.html
HTML
mit
2,126
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>W30725_text</title> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;"> <div style="float: left;"> <a href="page36.html">&laquo;</a> </div> <div style="float: right;"> </div> </div> <hr/> <div style="position: absolute; margin-left: 550px; margin-top: 192px;"> <p class="styleSans28.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p> </div> <div style="position: absolute; margin-left: 1009px; margin-top: 246px;"> <p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p> </div> <div style="position: absolute; margin-left: 247px; margin-top: 357px;"> <p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p> </div> <div style="position: absolute; margin-left: 517px; margin-top: 330px;"> <img src="images/tmpCrYitz.png" alt="tmpCrYitz.png" /> </div> <div style="position: absolute; margin-left: 1030px; margin-top: 330px;"> <p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p> </div> <div style="position: absolute; margin-left: 660px; margin-top: 577px;"> <p class="styleSans36.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"> <br/>Proppant Totals <br/>None 20/40 White Sand 90000 lb None 18/40 VersaProp 45000 lb <br/> </p> </div> <div style="position: absolute; margin-left: 247px; margin-top: 825px;"> <p class="styleSans144.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"> <br/>Treatmem EXQCUIIOH <br/>Volume Volume Mass Mass —-m--m--I-—n--m-“ “um..“mnn-m-am“..1. .1!- <br/>Pre Flush 1000 70000 -_ 135000 “.3- <br/> <br/> </p> </div> <div style="position: absolute; margin-left: 1650px; margin-top: 2915px;"> <p class="styleSans33.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Schlumherger </p> </div> <div style="position: absolute; margin-left: 1375px; margin-top: 219px;"> <img src="images/tmpeLOqd5.png" alt="tmpeLOqd5.png" /> </div> <div style="position: absolute; margin-left: 1861px; margin-top: 192px;"> <p class="styleSans44.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p> </div> </body> </html>
datamade/elpc_bakken
ocr_extracted/W30725_text/page37.html
HTML
mit
2,832
<!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.4.2_03) on Sat May 01 12:13:29 GMT-07:00 2004 --> <TITLE> MiiEditorViewportSizeLayout </TITLE> <META NAME="keywords" CONTENT="com.swfm.mica.MiiEditorViewportSizeLayout interface"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="MiiEditorViewportSizeLayout"; } </SCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= 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=3 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="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../com/swfm/mica/MiiDraggable.html" title="interface in com.swfm.mica"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../com/swfm/mica/MiiEditorWindowSemanticsManager.html" title="interface in com.swfm.mica"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MiiEditorViewportSizeLayout.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<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> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> com.swfm.mica</FONT> <BR> Interface MiiEditorViewportSizeLayout</H2> <DL> <DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../com/swfm/mica/MiEditorUniverseIncludesAllPartsLayout.html" title="class in com.swfm.mica">MiEditorUniverseIncludesAllPartsLayout</A>, <A HREF="../../../com/swfm/mica/MiEditorViewportSizeIsOneToOneLayout.html" title="class in com.swfm.mica">MiEditorViewportSizeIsOneToOneLayout</A></DD> </DL> <HR> <DL> <DT>public interface <B>MiiEditorViewportSizeLayout</B></DL> <P> <DL> <DT><B>Version:</B></DT> <DD>%I% %G%</DD> <DT><B>Author:</B></DT> <DD>Michael L. Davis</DD> </DL> <HR> <P> <!-- ======== NESTED CLASS SUMMARY ======== --> <!-- =========== FIELD SUMMARY =========== --> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Method Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../com/swfm/mica/MiiEditorViewportSizeLayout.html#getMinimumSizeOfDevice(com.swfm.mica.MiBounds)">getMinimumSizeOfDevice</A></B>(<A HREF="../../../com/swfm/mica/MiBounds.html" title="class in com.swfm.mica">MiBounds</A>&nbsp;minDevice)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../com/swfm/mica/MiiEditorViewportSizeLayout.html#getMinimumSizeOfUniverse(com.swfm.mica.MiBounds)">getMinimumSizeOfUniverse</A></B>(<A HREF="../../../com/swfm/mica/MiBounds.html" title="class in com.swfm.mica">MiBounds</A>&nbsp;minUniverse)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../com/swfm/mica/MiiEditorViewportSizeLayout.html#getMinimumSizeOfWorld(com.swfm.mica.MiBounds)">getMinimumSizeOfWorld</A></B>(<A HREF="../../../com/swfm/mica/MiBounds.html" title="class in com.swfm.mica">MiBounds</A>&nbsp;minWorld)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../com/swfm/mica/MiiEditorViewportSizeLayout.html#getPreferredSizeOfDevice(com.swfm.mica.MiBounds)">getPreferredSizeOfDevice</A></B>(<A HREF="../../../com/swfm/mica/MiBounds.html" title="class in com.swfm.mica">MiBounds</A>&nbsp;prefDevice)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../com/swfm/mica/MiiEditorViewportSizeLayout.html#getPreferredSizeOfUniverse(com.swfm.mica.MiBounds)">getPreferredSizeOfUniverse</A></B>(<A HREF="../../../com/swfm/mica/MiBounds.html" title="class in com.swfm.mica">MiBounds</A>&nbsp;prefUniverse)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../com/swfm/mica/MiiEditorViewportSizeLayout.html#getPreferredSizeOfWorld(com.swfm.mica.MiBounds)">getPreferredSizeOfWorld</A></B>(<A HREF="../../../com/swfm/mica/MiBounds.html" title="class in com.swfm.mica">MiBounds</A>&nbsp;prefWorld)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../com/swfm/mica/MiiEditorViewportSizeLayout.html#setTarget(com.swfm.mica.MiEditor)">setTarget</A></B>(<A HREF="../../../com/swfm/mica/MiEditor.html" title="class in com.swfm.mica">MiEditor</A>&nbsp;editor)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../com/swfm/mica/MiiEditorViewportSizeLayout.html#validateLayout()">validateLayout</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <!-- ============ FIELD DETAIL =========== --> <!-- ========= CONSTRUCTOR DETAIL ======== --> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Method Detail</B></FONT></TD> </TR> </TABLE> <A NAME="setTarget(com.swfm.mica.MiEditor)"><!-- --></A><H3> setTarget</H3> <PRE> public void <B>setTarget</B>(<A HREF="../../../com/swfm/mica/MiEditor.html" title="class in com.swfm.mica">MiEditor</A>&nbsp;editor)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="validateLayout()"><!-- --></A><H3> validateLayout</H3> <PRE> public void <B>validateLayout</B>()</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getPreferredSizeOfUniverse(com.swfm.mica.MiBounds)"><!-- --></A><H3> getPreferredSizeOfUniverse</H3> <PRE> public void <B>getPreferredSizeOfUniverse</B>(<A HREF="../../../com/swfm/mica/MiBounds.html" title="class in com.swfm.mica">MiBounds</A>&nbsp;prefUniverse)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getPreferredSizeOfDevice(com.swfm.mica.MiBounds)"><!-- --></A><H3> getPreferredSizeOfDevice</H3> <PRE> public void <B>getPreferredSizeOfDevice</B>(<A HREF="../../../com/swfm/mica/MiBounds.html" title="class in com.swfm.mica">MiBounds</A>&nbsp;prefDevice)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getPreferredSizeOfWorld(com.swfm.mica.MiBounds)"><!-- --></A><H3> getPreferredSizeOfWorld</H3> <PRE> public void <B>getPreferredSizeOfWorld</B>(<A HREF="../../../com/swfm/mica/MiBounds.html" title="class in com.swfm.mica">MiBounds</A>&nbsp;prefWorld)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getMinimumSizeOfUniverse(com.swfm.mica.MiBounds)"><!-- --></A><H3> getMinimumSizeOfUniverse</H3> <PRE> public void <B>getMinimumSizeOfUniverse</B>(<A HREF="../../../com/swfm/mica/MiBounds.html" title="class in com.swfm.mica">MiBounds</A>&nbsp;minUniverse)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getMinimumSizeOfDevice(com.swfm.mica.MiBounds)"><!-- --></A><H3> getMinimumSizeOfDevice</H3> <PRE> public void <B>getMinimumSizeOfDevice</B>(<A HREF="../../../com/swfm/mica/MiBounds.html" title="class in com.swfm.mica">MiBounds</A>&nbsp;minDevice)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getMinimumSizeOfWorld(com.swfm.mica.MiBounds)"><!-- --></A><H3> getMinimumSizeOfWorld</H3> <PRE> public void <B>getMinimumSizeOfWorld</B>(<A HREF="../../../com/swfm/mica/MiBounds.html" title="class in com.swfm.mica">MiBounds</A>&nbsp;minWorld)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <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=3 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="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../com/swfm/mica/MiiDraggable.html" title="interface in com.swfm.mica"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../com/swfm/mica/MiiEditorWindowSemanticsManager.html" title="interface in com.swfm.mica"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MiiEditorViewportSizeLayout.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<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> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
justacoder/mica
docs/javadocs/com/swfm/mica/MiiEditorViewportSizeLayout.html
HTML
mit
13,801
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Page Not Found :(</title> <style> ::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; } ::selection { background: #fe57a1; color: #fff; text-shadow: none; } html { padding: 30px 10px; font-size: 20px; line-height: 1.4; color: #737373; background: #f0f0f0; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } html, input { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } body { max-width: 500px; _width: 500px; padding: 30px 20px 50px; border: 1px solid #b3b3b3; border-radius: 4px; margin: 0 auto; box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff; background: #fcfcfc; } h1 { margin: 0 10px; font-size: 50px; text-align: center; } h1 span { color: #bbb; } h3 { margin: 1.5em 0 0.5em; } p { margin: 1em 0; } ul { padding: 0 0 0 40px; margin: 1em 0; } .container { max-width: 380px; _width: 380px; margin: 0 auto; } /* google search */ #goog-fixurl ul { list-style: none; padding: 0; margin: 0; } #goog-fixurl form { margin: 0; } #goog-wm-qt, #goog-wm-sb { border: 1px solid #bbb; font-size: 16px; line-height: normal; vertical-align: top; color: #444; border-radius: 2px; } #goog-wm-qt { width: 220px; height: 20px; padding: 5px; margin: 5px 10px 0 0; box-shadow: inset 0 1px 1px #ccc; } #goog-wm-sb { display: inline-block; height: 32px; padding: 0 10px; margin: 5px 0 0; white-space: nowrap; cursor: pointer; background-color: #f5f5f5; background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1); background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1); background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1); background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1); -webkit-appearance: none; -moz-appearance: none; appearance: none; *overflow: visible; *display: inline; *zoom: 1; } #goog-wm-sb:hover, #goog-wm-sb:focus { border-color: #aaa; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); background-color: #f8f8f8; } #goog-wm-qt:focus, #goog-wm-sb:focus { border-color: #105cb6; outline: 0; color: #222; } input::-moz-focus-inner { padding: 0; border: 0; } </style> </head> <body> <div class="container"> {{ template:body }} <script> var GOOG_FIXURL_LANG = (navigator.language || '').slice(0,2),GOOG_FIXURL_SITE = location.host; </script> <script src="http://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script> </div> </body> </html>
tottaz/yggdrasil
app/themes/bootstrap/views/layouts/404.html
HTML
mit
2,559
<!DOCTYPE html> <html class="light page-post"> <head> <meta charset="utf-8"> <title>产品岗面试题 | Cain</title> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="keywords" content="面试,产品,题目," /> <meta name="description" content="面试产品岗的问题 先介绍下自己,试着用别人能记住的方式。(考察PM抓重点的能力) 讲讲你做的这些项目,以及你在中间扮演的角色。 重点讲一个你最有成就的项目。 如果这个项目再复盘的话,你会怎么做? 你一般从哪里看数据?最近比较重要的数据变化是什么?有什么结论? 讲一下你每天从上班都下班的典型工作流程是什么样子的。(考察产品经理基础技能、表达能力、逻辑思维能力) 最近用哪个新的 App,讲讲这个 Ap"> <meta property="og:type" content="article"> <meta property="og:title" content="产品岗面试题"> <meta property="og:url" content="http://10000mile.com/2016/05/17/Interview Questions/index.html"> <meta property="og:site_name" content="Cain"> <meta property="og:description" content="面试产品岗的问题 先介绍下自己,试着用别人能记住的方式。(考察PM抓重点的能力) 讲讲你做的这些项目,以及你在中间扮演的角色。 重点讲一个你最有成就的项目。 如果这个项目再复盘的话,你会怎么做? 你一般从哪里看数据?最近比较重要的数据变化是什么?有什么结论? 讲一下你每天从上班都下班的典型工作流程是什么样子的。(考察产品经理基础技能、表达能力、逻辑思维能力) 最近用哪个新的 App,讲讲这个 Ap"> <meta property="og:updated_time" content="2017-01-11T03:18:30.000Z"> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="产品岗面试题"> <meta name="twitter:description" content="面试产品岗的问题 先介绍下自己,试着用别人能记住的方式。(考察PM抓重点的能力) 讲讲你做的这些项目,以及你在中间扮演的角色。 重点讲一个你最有成就的项目。 如果这个项目再复盘的话,你会怎么做? 你一般从哪里看数据?最近比较重要的数据变化是什么?有什么结论? 讲一下你每天从上班都下班的典型工作流程是什么样子的。(考察产品经理基础技能、表达能力、逻辑思维能力) 最近用哪个新的 App,讲讲这个 Ap"> <link rel="icon" href="/favicon.ico"> <link href="/css/styles.css?v=d671a41f" rel="stylesheet"> <link rel="stylesheet" href="/css/personal-style.css"> <script type="text/javascript"> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "//hm.baidu.com/hm.js?b09bba9c7c6bde427475af64a114525f"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script async src="https://dn-lbstatics.qbox.me/busuanzi/2.3/busuanzi.pure.mini.js"></script> <link rel="stylesheet" href="//cdn.bootcss.com/font-awesome/4.3.0/css/font-awesome.min.css"> </head> <body> <span id="toolbox-mobile" class="toolbox-mobile">魔方</span> <div class="post-header CENTER"> <div class="toolbox"> <a class="toolbox-entry" href="/"> <span class="toolbox-entry-text">魔方</span> <i class="icon-angle-down"></i> <i class="icon-home"></i> </a> <ul class="list-toolbox"> <li class="item-toolbox"> <a class="CIRCLE" href="/archives/" rel="noopener noreferrer" target="_self" > 博客 </a> </li> <li class="item-toolbox"> <a class="CIRCLE" href="/tag/" rel="noopener noreferrer" target="_self" > 标签 </a> </li> <li class="item-toolbox"> <a class="CIRCLE" href="/link/" rel="noopener noreferrer" target="_self" > 链接 </a> </li> <li class="item-toolbox"> <a class="CIRCLE" href="/about/" rel="noopener noreferrer" target="_self" > 关于 </a> </li> <li class="item-toolbox"> <a class="CIRCLE" href="/search/" rel="noopener noreferrer" target="_self" > 搜索 </a> </li> </ul> </div> </div> <div id="toc" class="toc-article"> <strong class="toc-title">Posts List</strong> <ol class="toc"><li class="toc-item toc-level-1"><a class="toc-link" href="#面试产品岗的问题"><span class="toc-text">面试产品岗的问题</span></a></li></ol> </div> <div class="content content-post CENTER"> <article id="post-Interview Questions" class="article article-type-post" itemprop="blogPost"> <header class="article-header"> <h1 class="post-title">产品岗面试题</h1> <div class="article-meta"> <span> <i class="icon-calendar"></i> <span>2016.05.17</span> </span> <span class="article-author"> <i class="icon-user"></i> <span>Cain</span> </span> <i class="fa fa-eye"></i> <span id="busuanzi_container_page_pv"> &nbsp热度 <span id="busuanzi_value_page_pv"> <i class="fa fa-spinner fa-spin"></i></span>℃ </span> <i class="icon-comment"></i> <span class="ds-thread-count" data-thread-key="post-Interview Questions"><i class="fa fa-spinner fa-spin"></i></span> 条评论 </div> </header> <div class="article-content"> <h1 id="面试产品岗的问题"><a href="#面试产品岗的问题" class="headerlink" title="面试产品岗的问题"></a>面试产品岗的问题</h1><ol> <li>先介绍下自己,试着用别人能记住的方式。(考察PM抓重点的能力)</li> <li>讲讲你做的这些项目,以及你在中间扮演的角色。</li> <li>重点讲一个你最有成就的项目。</li> <li>如果这个项目再复盘的话,你会怎么做?</li> <li>你一般从哪里看数据?最近比较重要的数据变化是什么?有什么结论?</li> <li>讲一下你每天从上班都下班的典型工作流程是什么样子的。(考察产品经理基础技能、表达能力、逻辑思维能力)</li> <li>最近用哪个新的 App,讲讲这个 App 的特点、逻辑、细节、模式等等</li> <li>说一下你理解的完整的产品流程是什么样子的?</li> <li>当你的意见和上级的意见不一致的时候,你会怎么做?</li> <li>介意看一下您手机上都装了什么 App 吗?(考察好奇心、产品视角,对产品完整流程的理解、执行力和向上的管理能力)</li> <li>说一个你自己接触或者知道的 PM,他身上有什么特质异于其他人,导致他在从事这个职业时显得出类拔萃。</li> <li>你认为产品经理的核心竞争力是什么?(考察好学习能力,对产品经理职业理解的深度)</li> <li>你的优势是什么?</li> <li>你有什么长期保持的兴趣爱好,可以深入聊聊?(考察对自己的认知程度,以及对某一个事情挖的深浅程度。</li> </ol> </div> </article> </div> <div class="text-center donation"> <div class="inner-donation"> <span class="btn-donation">支持一下</span> <div class="donation-body"> <div class="tip text-center">扫一扫,支持Cain</div> <ul class="theme.donation.items.length"> <li class="item"> <img src="/images/qr-wechat.png" alt=""> </li> <li class="item"> <img src="/images/qr-alipay.png" alt=""> </li> </ul> </div> </div> </div> <a id="backTop" class="back-top"> <i class="icon-angle-up"></i> </a> <div class="modal" id="modal"> <span id="cover" class="cover hide"></span> <div id="modal-dialog" class="modal-dialog hide-dialog"> <div class="modal-header"> <span id="close" class="btn-close">Close</span> </div> <hr> <div class="modal-body"> <ul class="list-toolbox"> <li class="item-toolbox"> <a class="CIRCLE" href="/archives/" rel="noopener noreferrer" target="_self" > 博客 </a> </li> <li class="item-toolbox"> <a class="CIRCLE" href="/tag/" rel="noopener noreferrer" target="_self" > 标签 </a> </li> <li class="item-toolbox"> <a class="CIRCLE" href="/link/" rel="noopener noreferrer" target="_self" > 链接 </a> </li> <li class="item-toolbox"> <a class="CIRCLE" href="/about/" rel="noopener noreferrer" target="_self" > 关于 </a> </li> <li class="item-toolbox"> <a class="CIRCLE" href="/search/" rel="noopener noreferrer" target="_self" > 搜索 </a> </li> </ul> </div> </div> </div> <div class="fexo-comments comments-post"> <section class="duoshuo-comments"> <!-- 多说评论框 start --> <div class="ds-thread" data-thread-key="post-Interview Questions" data-title="产品岗面试题" data-url="http://10000mile.com/2016/05/17/Interview Questions/index.html"></div> <!-- 多说评论框 end --> </section> <script type="text/javascript"> var duoshuoQuery = {short_name:"cain"}; (function() { var ds = document.createElement('script'); ds.type = 'text/javascript';ds.async = true; ds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js'; ds.charset = 'UTF-8'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ds); })(); </script> </div> <script type="text/javascript"> function loadScript(url, callback) { var script = document.createElement('script') script.type = 'text/javascript'; if (script.readyState) { //IE script.onreadystatechange = function() { if (script.readyState == 'loaded' || script.readyState == 'complete') { script.onreadystatechange = null; callback(); } }; } else { //Others script.onload = function() { callback(); }; } script.src = url; document.getElementsByTagName('head')[0].appendChild(script); } window.onload = function() { loadScript('/js/bundle.js?235683', function() { // load success }); } </script> </body> </html>
caincho/caincho.github.io
2016/05/17/Interview Questions/index.html
HTML
mit
11,596
<a href="/edit/{{_id}}" class="btn btn-success pull-right">Edit</a> <p><a href="/">&lt; Back to Calendar</a></p> <hgroup> <h2 data-ng-bind="details.title"></h2> <h3><span data-ng-repeat="user in details.lector"><a href="user/{{user}}" data-ng-bind="global.data.users[user].full_name"></a><i ng-if="!$last">, </i></span></h3> <h4><span data-ng-repeat="tag in details.tags"><a href="tag/{{tag}}" data-ng-bind="tag"></a><i ng-if="!$last">, </i></span></h4> </hgroup> <div data-ng-bind-html="details.description"></div> <div class="well"> <span data-ng-repeat="user in details.attendees"><a href="user/{{user}}">{{global.data.users[user].full_name}} </a><i ng-if="!$last">, </i></span> </div>
sandbox-team/techtalk-portal
views/details-page.html
HTML
mit
698
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <link rel="shortcut icon" href="img/favicon.png"> <title>FreeMarket</title> <!-- Bootstrap core CSS --> <link href="css/bootstrap.min.css" rel="stylesheet"> <link href="css/bootstrap-reset.css" rel="stylesheet"> <!--external css--> <link href="assets/font-awesome/css/font-awesome.min.css" rel="stylesheet" /> <!-- Custom styles for this template --> <link href="css/style.css" rel="stylesheet"> <link href="css/style-responsive.css" rel="stylesheet" /> <link href="css/spinner.css" rel="stylesheet"> <link href="assets/datatables/css/demo_page.css" rel="stylesheet" /> <link href="assets/datatables/css/demo_table.css" rel="stylesheet" /> <link href="assets/datatables/DT_bootstrap.css" rel="stylesheet" /> <!-- HTML5 shim and Respond.js IE8 support of HTML5 tooltips and media queries --> <!--[if lt IE 9]> <script src="js/html5shiv.js"></script> <script src="js/respond.min.js"></script> <![endif]--> </head> <script> // Redirect the user if the user is not already logged in function checkLogin() { var loginStatus = sessionStorage.getItem("loginStatus"); if (loginStatus == 'notloggedin') { localStorage.setItem("lastpage", "ViewYourActiveItems.html"); // set the page for the Continue button on Login Notice page var fmlang = localStorage.getItem("fmlang"); window.location.href = 'login_notice.html' + '?setLng=' + fmlang; } }; </script> <body class="full-width" onload="setAccountNumber(); checkLogin(); setLanguage(); setLanguageQueryStrings();"> <section id="container" class=""> <!--include main menu--> <script type="text/javascript" src="js/menu.js"> </script> <!--end include main menu--> <!--sidebar start--> <!--sidebar end--> <!--main content start--> <section id="main-content"> <section class="wrapper site-min-height"> <!-- page start--> <div class="row"> <div class="col-lg-12"> <section class="panel"> <header class="panel-heading"> <span data-i18n="header_all_your_active_items">All Your Active Items</span> </header> <div class="panel-body"> <div id="error-message"> <div class="adv-table"> <table class="display table table-bordered table-striped" id="example"> <thead> <tr> <th><span data-i18n="image">Image</span></th> <th><span data-i18n="item_id">Item ID</span></th> <th><span data-i18n="item_title">Title</span></th> <th class="hidden-phone"><span data-i18n="price">Price</span></th> <th class="hidden-phone"><span data-i18n="status">Status</span></th> </tr> </thead> <tfoot> <tr> <th><span data-i18n="image">Image</span></th> <th><span data-i18n="item_id">Item ID</span></th> <th><span data-i18n="item_title">Title</span></th> <th class="hidden-phone"><span data-i18n="price">Price</span></th> <th class="hidden-phone"><span data-i18n="status">Status</span></th> </tr> </tfoot> </table> </div> </div> </div> </section> </div> </div> <!-- page end--> </section> </section> <!--main content end--> <!-- js placed at the end of the document so the pages load faster --> <script src="js/jquery-1.11.1.min.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/jquery.dcjqaccordion.2.7.min.js"></script> <script src="js/bootstrap-hover-dropdown.min.js"></script> <script src="js/respond.min.js"></script> <!--common script for all pages--> <script src="js/constants.js"></script> <script src="js/freemarket_scripts.js"></script> <script src="js/common-scripts.js"></script> <script src="js/i18next-1.7.4.min.js"></script> <script src="js/freemarket_localization_scripts.js"></script> <script src="assets/datatables/jquery.dataTables2.min.js"></script> <script src="assets/datatables/DT_bootstrap.js"></script> <script src="assets/datatables/dataTables.fixedHeader.min.js"></script> <script src="js/moment.min.js"></script> <script src="js/pending_sales_notice.js"></script> <script> ///HACK: do not forget to have jquery and scripts above our calls $(document).ready(function() { var current_lang = getSearchMenuLocalised(); var loggedInAccount = sessionStorage.getItem("RSaccountNumber"); var table = $('#example').DataTable({ "language": current_lang, "aaSorting": [ [0, "asc"] ], "stateSave": true, "iDisplayLength": 50, "fnInitComplete": function() { $("#example_filter input").focus(); } }); $.post(Constants.nxtpassApiUrl, { requestType: 'ownListings', account: loggedInAccount }, function(data) { if (data.query_status == "bad") { document.getElementById("error-message").innerHTML = "<p class=\"validation_message\">Error: Please ensure that NXT is running.</p><p></p>"; } else { for (var i = 0; i < data['items'].length; i++) { // Gather some data about the item for calculation below var pending_count = data.items[i].pending_count; // The pending count var originalQuantity = parseInt(data.items[i].quantity); // The quantity initially available sessionStorage.setItem("startQuantity", originalQuantity); // In case we need this in session storage // Expired items do not belong in the Active Items view - there is a separate view for that, so exclude them // Calculate expired or not expired status, since the item_statuses API does not report expired status // Get end datestamp var endDate = escapeHtml(data.items[i].end_timestamp); // Get the current datestamp for comparison var currentTime = Date.now(); // Use moment library to convert current time to NXT timestamp var unixEpoch = moment("1970-01-01T00:00:00.0Z"); var nxtEpoch = moment(unixEpoch).add('seconds', 1385294400); var recalculatedEndDate = moment(nxtEpoch).add('seconds', endDate); // Compare the item's end date to the current time if (recalculatedEndDate < currentTime) { // Note this fact in the console, and that is it. console.log("This item is expired: " + data.items[i].listing_id); } else { // If item is NOT expired, continue on... // Now see if this item has any Pending sales, and if so, do some extra processing. // We only want to include an item in the Active Items view if it is still available. // So if the pending count is less than the original quantity available, then we display it. // Otherwise, if the all of the items are pending, we do not display it. if (pending_count >= originalQuantity) { // All items are pending, so no need to display as an Active Item // Yell at the console var listingid = data.items[i].listing_id; var quantityStillAvailable = (originalQuantity - pending_count); console.log("Pending item found: the listingid is " + listingid + " the quantity still for sale is " + quantityStillAvailable + "."); console.log("If the quantity still for sale is anything other than zero, then there is a bug. Please report."); } // End if all items are pending else { // Otherwise, check for Available status. If Available, list it; if not (Canceled), do not list it. // Clean listing id field var cleanListingID = escapeHtml(data.items[i].listing_id); $.post(Constants.nxtpassApiUrl, { requestType: 'getItemPublic', listing_id: cleanListingID }, function(item) { // This is to get the status, which should be either Available or Canceled at this point var itemID = item.listing_id; console.log("getItemPublic running for listing ID " + itemID + "."); var status = item.item_status; if (status === "Available") { console.log("Listing ID " + itemID + " has status of Available."); var displayStatus = 'Available'; // Set the currency var displayCurrency = 'NXT'; var displayPrice = item.price / 100000000 + " " + displayCurrency; if (item.currency == Constants.coinoUsdAssetName) { displayCurrency = 'CoinoUSD'; displayPrice = item.price / 100 + " " + displayCurrency; } var linkStatus = '<a href="ViewYourItemSingle.html'; // Clean title field var cleanTitle = escapeHtml(item.item_title); var fmlang = localStorage.getItem("fmlang"); var searchstorage = localStorage.setItem("searchpage", "ViewYourActiveItems.html"); var listImage = '<i class="fa fa-picture-o fa-3x"></i>'; if (item.main_image_url > "") { // Clean image URL var cleanURL = escapeHtml(item.main_image_url); listImage = '<img src="' + cleanURL + '" alt="Item Thumbnail Image" height="40" width="40">'; } table.rows.add([ [ listImage, linkStatus + '?setLng=' + fmlang + '&itemid=' + itemID + '">' + itemID + '</a>', linkStatus + '?setLng=' + fmlang + '&itemid=' + itemID + '">' + cleanTitle + '</a>', displayPrice, displayStatus, itemID ], ]).draw(); } else { // Yell at the console console.log("Canceled item found, listing ID: " + cleanListingID + "."); } }, "json"); // Specifies JSON as the expected result } // End of else for non-Pending items } // End of else for non-expired items }; // Close for loop var rows = table.rows({ page: "current" }).data(); if(rows.length > 0) { //fetch the status for initial page fetchStatuses(); } else { var oTable = $('#example').dataTable(); oTable.fnDestroy(); current_lang.sEmptyTable = current_lang.sZeroRecords; table = $('#example').DataTable({ "language": current_lang, "aaSorting": [ [0, "asc"] ], "stateSave": true, "iDisplayLength": 50, "fnInitComplete": function() { $("#example_filter input").focus(); } }); } } // Close else statement for non-bad query }, "json"); // Specifies JSON as the expected result }); </script> </body> </html>
blackyblack/freemarket-lite
public/ViewYourActiveItems.html
HTML
mit
12,352
{template '_header'} <div class="page-heading"> <span class='pull-right'> {ifp 'shop.nav.add'} <a class="btn btn-primary btn-sm" href="{php echo merchUrl('shop/nav/add')}">添加新首页导航</a> {/if} <a class="btn btn-default btn-sm" href="{php echo merchUrl('shop/nav')}">返回列表</a> </span> <h2>{if !empty($item['id'])}编辑{else}添加{/if}首页导航 <small>{if !empty($item['id'])}修改【{$item['navname']}】{/if}</small></h2> </div> <form {ife 'shop.nav' $item}action="" method="post"{/if} class="form-horizontal form-validate" enctype="multipart/form-data"> <input type="hidden" name="id" value="{$item['id']}" /> <div class="form-group"> <label class="col-sm-2 control-label">排序</label> <div class="col-sm-9 col-xs-12"> {ife 'shop.nav' $item} <input type="text" name="displayorder" class="form-control" value="{$item['displayorder']}" /> <span class='help-block'>数字越大,排名越靠前</span> {else} <div class='form-control-static'>{$item['displayorder']}</div> {/if} </div> </div> <div class="form-group"> <label class="col-sm-2 control-label must">首页导航标题</label> <div class="col-sm-9 col-xs-12 "> {ife 'shop.nav' $item} <input type="text" id='navname' name="navname" class="form-control" value="{$item['navname']}" data-rule-required="true" /> {else} <div class='form-control-static'>{$item['navname']}</div> {/if} </div> </div> <div class="form-group"> <label class="col-sm-2 control-label">首页导航图片</label> <div class="col-sm-9 col-xs-12"> {ife 'shop.nav' $item} {php echo tpl_form_field_image('icon', $item['icon'],'',array('dest_dir'=>'merch/'.$_W['merchid']))} <span class='help-block'>建议尺寸:100 * 100 , 请将所有首页导航图片尺寸保持一致</span> {else} {if !empty($item['icon'])} <a href='{php echo tomedia($item['icon'])}' target='_blank'> <img src="{php echo tomedia($item['icon'])}" style='width:100px;border:1px solid #ccc;padding:1px' /> </a> {/if} {/if} </div> </div> <div class="form-group"> <label class="col-sm-2 control-label">首页导航链接</label> <div class="col-sm-9 col-xs-12"> {ife 'shop.nav' $item} <div class="input-group form-group" style="margin: 0;"> <input type="text" value="{$item['url']}" class="form-control valid" name="url" placeholder="" id="navlink"> <span data-input="#navlink" data-toggle="selectUrlMerch" class="input-group-addon btn btn-default">选择链接</span> </div> {else} <div class='form-control-static'>{$item['url']}</div> {/if} </div> </div> <div class="form-group"> <label class="col-sm-2 control-label">状态</label> <div class="col-sm-9 col-xs-12"> {ife 'shop.nav' $item} <label class='radio-inline'> <input type='radio' name='status' value=1' {if $item['status']==1}checked{/if} /> 显示 </label> <label class='radio-inline'> <input type='radio' name='status' value=0' {if $item['status']==0}checked{/if} /> 隐藏 </label> {else} <div class='form-control-static'>{if empty($item['status'])}隐藏{else}显示{/if}</div> {/if} </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"></label> <div class="col-sm-9 col-xs-12"> {ife 'shop.nav' $item} <input type="submit" value="提交" class="btn btn-primary" /> {/if} <input type="button" name="back" onclick='history.back()' {ifp 'shop.nav.add|shop.nav.edit'}style='margin-left:10px;'{/if} value="返回列表" class="btn btn-default" /> </div> </div> </form> {template '_footer'}
Broomspun/shanque
addons/ewei_shopv2/plugin/merch/template/web/manage/shop/nav/post.html
HTML
mit
5,049
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"><!-- saved from url=(0014)about:internet --><html> <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Keyins API Documentation</title><link rel="stylesheet" href="style.css" type="text/css" media="screen"><link rel="stylesheet" href="print.css" type="text/css" media="print"><link rel="stylesheet" href="override.css" type="text/css"> </head> <frameset rows="40%,60%" border="2" framespacing="1" bordercolor="#AAAAAA"> <frame src="package-list.html" name="packageListFrame" scrolling="yes"> <frame src="all-classes.html" name="classListFrame" scrolling="yes"> <noframes> <body> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. <br> Link to<a href="package-summary.html">Non-frame version.</a> </p> </body> </noframes> </frameset> <!--<br/>Fri Sep 30 2011, 03:10 AM +09:00 --></html>
ton1517/Keyins
docs/package-frame.html
HTML
mit
1,129
<!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"> <!-- Mirrored from www.codeigniter.org.tw/user_guide/tutorial/index.html by HTTrack Website Copier/3.x [XR&CO'2013], Mon, 14 Oct 2013 15:25:28 GMT --> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>基本簡介 : CodeIgniter 使用手冊</title> <style type='text/css' media='all'>@import url('../userguide.css');</style> <link rel='stylesheet' type='text/css' media='all' href='../userguide.css' /> <script type="text/javascript" src="../nav/nav.js"></script> <script type="text/javascript" src="../nav/prototype.lite.js"></script> <script type="text/javascript" src="../nav/moo.fx.js"></script> <script type="text/javascript" src="../nav/user_guide_menu.js"></script> <meta http-equiv='expires' content='-1' /> <meta http-equiv= 'pragma' content='no-cache' /> <meta name='robots' content='all' /> <meta name='author' content='ExpressionEngine Dev Team' /> <meta name='description' content='CodeIgniter User Guide' /> </head> <body> <!-- START NAVIGATION --> <div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div> <div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div> <div id="masthead"> <table cellpadding="0" cellspacing="0" border="0" style="width:100%"> <tr> <td><h1>CodeIgniter 使用手冊版本 2.1.4</h1></td> <td id="breadcrumb_right"><a href="../toc.html">目錄</a></td> </tr> </table> </div> <!-- END NAVIGATION --> <!-- START BREADCRUMB --> <table cellpadding="0" cellspacing="0" border="0" style="width:100%"> <tr> <td id="breadcrumb"> <a href="http://www.codeigniter.org.tw/">CodeIgniter 首頁</a> &nbsp;&#8250;&nbsp; <a href="../index-2.html">使用手冊首頁</a> &nbsp;&#8250;&nbsp; <a href="index.html">指導手冊</a> &nbsp;&#8250;&nbsp; 基本簡介 </td> <td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="www.codeigniter.org.tw/user_guide/" />搜尋使用手冊&nbsp; <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" />&nbsp;<input type="submit" class="submit" name="sa" value="Go" /></form></td> </tr> </table> <!-- END BREADCRUMB --> <br clear="all" /> <!-- START CONTENT --> <div id="content"> <h1>指導手冊 &minus; 基本簡介</h1> <p>這篇教學旨在向你介紹 CodeIgniter 框架以及 MVC 架構的基本原則。它將一步步的告訴你一個基本的 CodeIgniter 程式是如何建構的。</p> <p>在這篇教學裡,你將會製作一個<strong>簡單的新聞程式</strong>。你將從使用程式來讀取靜態頁面開始。接著,你會製作一個新聞模組,可以從資料庫讀取新聞項目。最後你會增加一個表單,用來在資料庫中增加新聞項目。</p> <p>這篇教學主要會專注在:</p> <ul> <li>Model-View-Controller 基礎知識</li> <li>路由(Routing)基礎知識</li> <li>表單驗證</li> <li>使用 &quot;Active Record&quot; 來做簡單的資料庫查詢</li> </ul> <p>整篇教學被分為數個部份進行,每一部份解釋 CodeIgniter 框架的一小部份功能。祥列如下:</p> <ul> <li>簡介,也就是目前這一頁,給你一些概念讓你知道接下來會做些什麼。</li> <li><a href="static_pages.html">靜態頁面</a>,將會教你關於控制器(Controller),檢視(View)與路由的基礎知識。</li> <li><a href="news_section.html">新聞模組</a>,這邊你將開始使用模型(Model),並且進行一些簡單的資料庫操作。</li> <li><a href="create_news_items.html">新增新聞項目</a>,將會進行更進階的資料庫操作以及表單驗證。</li> <li><a href="conclusion.html">結論</a>,將會指引你一些未來的學習方向以及其它資源。</li> </ul> <p>祝你在 CodeIgniter 框架的探索中旅途愉快。</p> </div> <!-- END CONTENT --> <div id="footer"> <p> 上個主題:&nbsp;&nbsp;<a href="../overview/goals.html">架構目標</a> &nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp; <a href="#top">回到頂端</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp; <a href="../index-2.html">使用手冊首頁</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp; 下個主題:&nbsp;&nbsp;<a href="static_pages.html">靜態頁面</a> </p> <p><a href="http://www.codeigniter.org.tw/">CodeIgniter</a> &nbsp;&middot;&nbsp; Copyright &#169; 2006 - 2013 &nbsp;&middot;&nbsp; <a href="http://ellislab.com/">EllisLab, Inc.</a></p> </div> <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> try { var pageTracker = _gat._getTracker("UA-5766319-11"); pageTracker._trackPageview(); } catch(err) {}</script> </body> <!-- Mirrored from www.codeigniter.org.tw/user_guide/tutorial/index.html by HTTrack Website Copier/3.x [XR&CO'2013], Mon, 14 Oct 2013 15:25:28 GMT --> </html>
pulipulichen/php-file-converter
user_guide_zh_tw/CodeIgniter 2.1.4/www.codeigniter.org.tw/user_guide/tutorial/index.html
HTML
mit
5,409
<!doctype html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> <!--Designerd by: http://bootstrapthemes.co--> <head> <meta charset="utf-8"> <title>Sami Ellougani</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <!--Google Font link--> <link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Raleway:400,600,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet"> <link rel="stylesheet" href="assets/css/slick.css"> <link rel="stylesheet" href="assets/css/slick-theme.css"> <link rel="stylesheet" href="assets/css/animate.css"> <link rel="stylesheet" href="assets/css/icofont.css"> <link rel="stylesheet" href="assets/css/font-awesome.min.css"> <link rel="stylesheet" href="assets/css/bootstrap.css"> <link rel="stylesheet" href="assets/css/magnific-popup.css"> <link rel="stylesheet" href="assets/css/bootsnav.css"> <!--For Plugins external css--> <!--<link rel="stylesheet" href="assets/css/plugins.css" />--> <!--Theme custom css --> <link rel="stylesheet" href="assets/css/style.css"> <!--<link rel="stylesheet" href="assets/css/colors/maron.css">--> <!--Theme Responsive css--> <link rel="stylesheet" href="assets/css/responsive.css" /> <script src="assets/js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script> <script> if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) { window.location.href = "mobile/mobile.html"; } </script> </head> <body data-spy="scroll" data-target=".navbar-collapse"> <!-- Preloader --> <div id="loading"> <div id="loading-center"> <div id="loading-center-absolute"> <div class="object" id="object_one"></div> <div class="object" id="object_two"></div> <div class="object" id="object_three"></div> <div class="object" id="object_four"></div> </div> </div> </div><!--End off Preloader --> <div class="culmn"> <!--Home page style--> <nav class="navbar navbar-default navbar-fixed white no-background bootsnav"> <!-- Start Top Search --> <div class="top-search"> <div class="container"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-search"></i></span> <input type="text" class="form-control" placeholder="Search"> <span class="input-group-addon close-search"><i class="fa fa-times"></i></span> </div> </div> </div> <!-- End Top Search --> <div class="container"> <!-- Start Header Navigation --> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-menu"> <i class="fa fa-bars"></i> </button> </div> <!-- End Header Navigation --> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="navbar-menu"> <ul class="nav navbar-nav navbar-right" data-in="fadeInDown" data-out="fadeOutUp"> <li><a href="#hello">Hello</a></li> <li><a href="#about">About</a></li> <li><a href="#portfolio">Projects</a></li> <li><a href="#skill">Skills</a></li> <li><a href="#contact">Contact</a></li> <li><a href="index.html">Landing</a></li> </ul> </div><!-- /.navbar-collapse --> </div> </nav> <!--Home Sections--> <section id="hello" class="home bg-mega"> <div class="overlay"></div> <div class="container"> <div class="row"> <div class="main_home"> <img class="img-responsive" src="assets/images/profile.png" alt=""> <div class="home_text"> <h1 class="text-white"> Sami Ellougani </br > <small class="text-white">Student | Programmer | Problem Solver </small></h1> </div> </div> </div><!--End off row--> </div><!--End off container --> </section> <!--End off Home Sections--> <!--About Sections--> <section id="about" class="about roomy-100"> <div class="container"> <div class="row"> <div class="main_about"> <div class="col-md-6"> <div class="about_content"> <h2>ABOUT ME</h2> <div class="separator_left"></div> <p>I am a senior pursuing a Computer Science degree at Marist College located in Poughkeepsie, New York. I continue to learn by being an active member of Computer Society, a campus technology club, and I also practice my programming skills by working on personal projects. In terms of experience, I have interned at Express Scripts as a SQL Server DBA during the summer of 2016. I worked as a programming lab tutor for Marist College in an effort to help students learn several different programming languages. I have also worked as a Full Stack JavaScript Developer for the CCAC at Marist College. I spent a summer in San Antonio, Texas interning at USAA as a Software Developer. If you would like more technical details, be sure to download my resume below. Be sure to take a look at the extra content I added to see a more detailed description of my different experiences! </p> <div class="about_btns m-top-40"> <a href="assets/pdf/Ellougani,Sami-resume.pdf" class="btn btn-primary">DOWNLOAD RESUME</a> </div> </div> </div> <div class="col-md-6"> <div class="about_accordion wow fadeIn"> <div id="faq_main_content" class="faq_main_content"> <h6><i class="fa fa-angle-right"></i> USAA </h6> <div> <div class="content"> <p>Software Developer - Intern</p> <p>This internship was an incredible experience. This was actually the first time I spent being more than an hour away from home for a long period of time (I live in NJ, and worked in TX). USAA tought me a lot about Software Development, and even more about the hardship of the military lifestyle. Experiences like these will carry on with me throughout the rest of my career. Very thankful for the opportunities that were given to me during this summer!</p> </div> </div> <!-- End off accordion item-1 --> <h6><i class="fa fa-angle-right"></i> MARIST COLLEGE CLOUD COMPUTING AND ANALYTICS CENTER</h6> <div> <div class="content"> <p>Full Stack Software Developer</p> <p>At this point in my career, I had no interest in learning about Full Stack Development. I had an idea of what it was, but I thought that it would not be something that would ever interest me. My time working for the Marist CCAC taught me otherwise. I learned about a ton of cool JavaScript tools, and even had the oppurtunity to collaborate several times with the customer! </p> </div> </div> <!-- End off accordion item-2 --> <h6> <i class="fa fa-angle-right"></i> SCHOOL OF COMPUTER SCIENCE AND MATH AT MARIST COLLEGE </h6> <div> <div class="content"> <p>Programming Lab Tutor</p> <p>I used to go to my school's Programming Lab for help during my intro courses. However, I never thought that I would be in the position of being the tutor that helps others. My professor recommended me for this position going into my junior year, and I couldn't thank him enough. Not only was it a great way to test how well I knew the foundations of programming, but it was also so rewarding seeing my classmates succeed in their classes! </p> </div> </div> <!-- End off accordion item-3 --> <h6><i class="fa fa-angle-right"></i> EXPRESS SCRIPTS </h6> <div> <div class="content"> <p>SQL Server Database Administrator - Intern</p> <p>My first internship was at Express Scripts working as a SQL Server DBA. I left Express Scripts feeling proud of how well I performed. I contributed to my team's success by completing my intern project, and contributed to my own success by knocking my intern presentation out of the park. Express Scripts taught me to be brave and bold. </p> </div> </div> <!-- End off accordion item-4 --> </div> </div> </div> </div> </div><!--End off row--> </div><!--End off container --> <br /> <br /> <br /> <br /> <hr /> <br /> <br /> <div class="container"> <div class="row"> <div class="about_bottom_content"> <div class="col-md-4"> <div class="about_bottom_item m-top-20"> <div class="ab_head"> <div class="ab_head_icon"> <i class="icofont icofont-brain-alt"></i> </div> <h6 class="m-top-20"> PROGRAMMER </h6> </div> <p class="m-top-20">I started programming when I enrolled in AP Computer Science in high school. It has been a great experience seeing how much technology has changed throughout the years and how I am going to impact the future of technology as well.</p> </div> </div> <div class="col-md-4"> <div class="about_bottom_item m-top-20"> <div class="ab_head"> <div class="ab_head_icon"> <i class="icofont icofont-runner"></i> </div> <h6 class="m-top-20">STUDENT</h6> </div> <p class="m-top-20">I am student at Marist College pursuing a BS in Computer Science. Fun fact, I have participated in sports since I was a freshman in high school. I am going into my 8th year of being on a Cross Country/Track team because I am a Division 1 athlete for Marist. </p> </div> </div> <div class="col-md-4"> <div class="about_bottom_item m-top-20"> <div class="ab_head"> <div class="ab_head_icon"> <i class="icofont icofont-chat"></i> </div> <h6 class="m-top-20">PROBLEM SOLVER</h6> </div> <p class="m-top-20">Problem solving and programming go together like peanut butter and jelly. Programming is only a skill that is used to solve problems that people face day to day. Being able to contribute to a company's success in problem solving is the reason I enjoy programming.</p> </div> </div> </div><!--End off row--> </div><!--End off container --> </section> <!--End off About section --> <!--Portfolio Section--> <section id="portfolio" class="portfolio lightbg"> <div class="container"> <div class="row"> <div class="main_portfolio roomy-100"> <div class="col-md-8 col-md-offset-2"> <div class="head_title text-center"> <h2>MY PROJECTS</h2> <div class="separator_auto"></div> <p>Programming is only best when you get to make new things! Below I have some photos of the prevalent tools I used to make some of my projects, along with links to my <a href="https://github.com/sami10015">Github</a> repos! </p> </div> </div> <div class="portfolio_content"> <div class="col-md-6 m-top-30"> <div class="portfolio_item portfolio_item2"> <img src="assets/images/Portfolio/ts.jpg" alt="" /> <div class="portfolio_hover text-center"> <h6 class="text-uppercase text-white">6502 Operating System</h6> <p class=" text-white">Created an Operating System simulation using basic OS architecture and 6502 operation codes. Visuals are created with HTML5+CSS3 and back-end functionality was implemented with TypeScript(super-set of JavaScript)</p> <div class="portfolio_hover_icon"> <a href="https://github.com/sami10015/TS-OperatingSystem"><i class="fa fa-github"></i></a> </div> </div> </div> </div> <div class="col-md-6 m-top-30"> <div class="portfolio_item portfolio_item2"> <img src="assets/images/Portfolio/py.png" alt="" /> <div class="portfolio_hover text-center"> <h6 class="text-uppercase text-white">Twitter Clone</h6> <p class=" text-white">This program was created in a test driven environment that implements common Twitter functionalities such as sending a tweet, updating a profile, and looking through a timeline. This project was the final project of an online Advanced Python Programming bootcamp. </p> <div class="portfolio_hover_icon"> <a href="https://github.com/sami10015/pyp-w4-gw-twitter-clone"><i class="fa fa-github"></i></a> </div> </div> </div> </div> </div> <div class="col-md-4 m-top-30"> <div class="portfolio_item portfolio_item2"> <img src="assets/images/Portfolio/java.jpg" alt="" /> <div class="portfolio_hover text-center"> <h6 class="text-uppercase text-white">FlAmazon Shopping Cart</h6> <p class=" text-white">Created a desktop application that allows a user to keep track of their order on a fictional website called "flAmazon." The user's data is stored in an Access 2013 database, and the GUI was created with Java Swing.</p> <div class="portfolio_hover_icon"> <a href="https://github.com/sami10015/flAmazon_Project"><i class="fa fa-github"></i></a> </div> </div> </div> </div> <div class="col-md-4 m-top-30"> <div class="portfolio_item portfolio_item2"> <img src="assets/images/Portfolio/c++.png" alt="" /> <div class="portfolio_hover text-center"> <h6 class="text-uppercase text-white">No-Stairs</h6> <p class=" text-white">Wrote and built an event-driven game that utilizes the C++ language, and SFML library. Also, gained a grasp of game assets such as objects, sprites, sounds, and music.</p> <div class="portfolio_hover_icon"> <a href="https://github.com/sami10015/No-Stairs"><i class="fa fa-github"></i></a> </div> </div> </div> </div> <div class="col-md-4 m-top-30"> <div class="portfolio_item portfolio_item2"> <img src="assets/images/Portfolio/php.png" alt="" /> <div class="portfolio_hover text-center"> <h6 class="text-uppercase text-white">Limbo</h6> <p class=" text-white">Created a website that allows students, faculty, and staff to search through a database for lost items. The website also allows users to post findings of items that includes details such as where it was found, what time, etc. There is also admin functionality.</p> <div class="portfolio_hover_icon"> <a href="https://github.com/sami10015/limbo-marist-php"><i class="fa fa-github"></i></a> </div> </div> </div> </div> </div> </div> </div><!--End off row --> </div><!--End off container --> </section><!-- End off Portfolio section--> <!--Skill Sections--> <section id="skill" class="skill roomy-100"> <div class="container"> <div class="row"> <div class="main_skill"> <div class="col-md-6"> <div class="skill_content wow fadeIn"> <h2>My Skills</h2> <div class="separator_left"></div> <p>Marist College has taught me a broad range of skills that I will utilize throughout the rest of my career. I had several courses teach me about different back-end technologies, and also created several projects that showcase my skillset with them. I have also had several oppurtunities to learn about front-end development, and how important design is when creating any application. With the combination of a front-end and back-end skillset, I was hired by the Marist CCAC to work as a Full Stack Developer. In my free time, I enjoy learning about the field of game development, and took a couple game programming courses at Marist. </p> </div> </div> <div class="col-md-6"> <div class="skill_bar sm-m-top-50"> <div class="teamskillbar clearfix m-top-20" data-percent="70%"> <h6>Full Stack Development</h6> <div class="teamskillbar-bar"></div> </div> <!-- End Skill Bar --> <div class="teamskillbar clearfix m-top-50" data-percent="80%"> <h6>Back-End Development</h6> <div class="teamskillbar-bar"></div> </div> <!-- End Skill Bar --> <div class="teamskillbar clearfix m-top-50" data-percent="55%"> <h6>Game Development</h6> <div class="teamskillbar-bar"></div> </div> <!-- End Skill Bar --> <div class="teamskillbar clearfix m-top-50" data-percent="60%"> <h6>Front-End Development</h6> <div class="teamskillbar-bar"></div> </div> <!-- End Skill Bar --> </div> </div> </div> </div><!--End off row--> </div><!--End off container --> <br /> <br /> <br /> <hr /> <br /> <br /> <br /> <div class="container"> <div class="row"> <div class="skill_bottom_content text-center"> <div class="col-md-3"> <div class="skill_bottom_item"> <h2 class="statistic-counter">3468</h2> <div class="separator_small"></div> <h5><em>Questions Asked</em></h5> </div> </div> <div class="col-md-3"> <div class="skill_bottom_item"> <h2 class="statistic-counter">4638</h2> <div class="separator_small"></div> <h5><em>Bugs Found</em></h5> </div> </div> <div class="col-md-3"> <div class="skill_bottom_item"> <h2 class="statistic-counter">4321</h2> <div class="separator_small"></div> <h5><em>Cups of coffee</em></h5> </div> </div> <div class="col-md-3"> <div class="skill_bottom_item"> <h2 class="statistic-counter">9999</h2> <div class="separator_small"></div> <h5><em>Times I Felt Proud</em></h5> </div> </div> </div> </div><!--End off row--> </div><!--End off container --> </section> <!--End off Skill section --> <!--Contact Us Section--> <section id="contact" class="contact bg-mega fix"> <div class="container"> <div class="row"> <div class="main_contact roomy-100 text-white"> <div class="col-md-4"> <div class="rage_widget"> <div class="widget_head"> <h3 class="text-white">CONTACT ME</h3> <div class="separator_small"></div> </div> <p>I hope you enjoyed reading a little bit more about who I am, and what I do. If you would like to further connect with me, be sure to send me a message and/or add me on LinkedIn! Also, below is my GitHub if you would like to know more about how I created my several projects. Thanks so much for your time. </br ><small class="text-white">-Sami Ellougani</small></p> <div class="widget_socail m-top-30"> <ul class="list-inline"> <li><a href=""><i class="fa fa-github"></i></a></li> <li><a href=""><i class="fa fa-linkedin"></i></a></li> </ul> </div> </div> </div> <div class="col-md-8 sm-m-top-30"> <form method="POST" action="http://formspree.io/[email protected]"> <div class="row"> <div class="col-sm-12"> <div class="form-group"> <input type="text" name="email" class="form-control" placeholder="Your email"> </div> </div> <div class="col-sm-12"> <div class="form-group"> <textarea class="form-control" rows="6" placeholder="Message" name="message"></textarea> </div> <div class="form-group text-center"> <button type="submit" class="btn btn-primary">Send Message</button> </div> </div> </div> </form> </div> </div> </div><!--End off row --> </div><!--End off container --> </section><!--End off Contact Section--> <!--Maps Section--> <div class="main_maps text-center fix" > <div class="overlay"></div> <div class="maps_text"> <h3 class="text-white" onclick="showmap()">FIND ME ON THE MAP <i class="fa fa-angle-down"></i></h3> <div id="map_canvas" class="mapheight"></div> </div> </div><!-- End off Maps Section--> <!-- scroll up--> <div class="scrollup"> <a href="#"><i class="fa fa-chevron-up"></i></a> </div><!-- End off scroll up --> <footer id="footer" class="footer bg-black"> <div class="container"> <div class="row"> <div class="main_footer text-center p-top-40 p-bottom-30"> <p class="wow fadeInRight" data-wow-duration="1s"> Copyright © samiellougani.com 2016 </p> </div> </div> </div> </footer> </div> <!-- JS includes --> <script src="assets/js/vendor/jquery-1.11.2.min.js"></script> <script src="assets/js/vendor/bootstrap.min.js"></script> <script src="assets/js/jquery.magnific-popup.js"></script> <script src="assets/js/jquery.easing.1.3.js"></script> <script src="assets/js/slick.min.js"></script> <script src="assets/js/jquery.collapse.js"></script> <script src="assets/js/bootsnav.js"></script> <!-- paradise slider js --> <script src="http://maps.google.com/maps/api/js?key=AIzaSyD_tAQD36pKp9v4at5AnpGbvBUsLCOSJx8"></script> <script src="assets/js/gmaps.min.js"></script> <script> function showmap() { var mapOptions = { zoom: 14, scrollwheel: false, center: new google.maps.LatLng(41.047, -74.151), mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions); $('.mapheight').css('height', '350'); $('.maps_text h3').hide(); } </script> <script src="assets/js/plugins.js"></script> <script src="assets/js/main.js"></script> </body> </html>
sami10015/sami10015.github.io
portfolio.html
HTML
mit
32,112
<!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.6.0_27) on Thu Jan 23 20:13:40 EST 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class org.apache.lucene.util.fst.FSTTester (Lucene 4.6.1 API)</title> <meta name="date" content="2014-01-23"> <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 Class org.apache.lucene.util.fst.FSTTester (Lucene 4.6.1 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/apache/lucene/util/fst/FSTTester.html" title="class in org.apache.lucene.util.fst">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li>NEXT</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/lucene/util/fst//class-useFSTTester.html" target="_top">FRAMES</a></li> <li><a href="FSTTester.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 Class org.apache.lucene.util.fst.FSTTester" class="title">Uses of Class<br>org.apache.lucene.util.fst.FSTTester</h2> </div> <div class="classUseContainer">No usage of org.apache.lucene.util.fst.FSTTester</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/apache/lucene/util/fst/FSTTester.html" title="class in org.apache.lucene.util.fst">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li>NEXT</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/lucene/util/fst//class-useFSTTester.html" target="_top">FRAMES</a></li> <li><a href="FSTTester.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright &copy; 2000-2014 Apache Software Foundation. All Rights Reserved.</i> <script src='../../../../../../prettify.js' type='text/javascript'></script> <script type='text/javascript'> (function(){ var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = prettyPrint; } else { window.onload = function() { oldonload(); prettyPrint(); } } })(); </script> </small></p> </body> </html>
OrlandoLee/ForYou
lucene/lib/lucene-4.6.1/docs/test-framework/org/apache/lucene/util/fst/class-use/FSTTester.html
HTML
mit
4,793
<!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.6.0_27) on Thu Jan 23 20:13:12 EST 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>org.apache.lucene.search.highlight Class Hierarchy (Lucene 4.6.1 API)</title> <meta name="date" content="2014-01-23"> <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="org.apache.lucene.search.highlight Class Hierarchy (Lucene 4.6.1 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>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li><a href="../../../../../org/apache/lucene/search/postingshighlight/package-tree.html">NEXT</a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/lucene/search/highlight/package-tree.html" target="_top">FRAMES</a></li> <li><a href="package-tree.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 class="title">Hierarchy For Package org.apache.lucene.search.highlight</h1> <span class="strong">Package Hierarchies:</span> <ul class="horizontal"> <li><a href="../../../../../overview-tree.html">All Packages</a></li> </ul> </div> <div class="contentContainer"> <h2 title="Class Hierarchy">Class Hierarchy</h2> <ul> <li type="circle">java.lang.<a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="strong">Object</span></a> <ul> <li type="circle">java.util.<a href="http://download.oracle.com/javase/6/docs/api/java/util/AbstractMap.html?is-external=true" title="class or interface in java.util"><span class="strong">AbstractMap</span></a>&lt;K,V&gt; (implements java.util.<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;K,V&gt;) <ul> <li type="circle">java.util.<a href="http://download.oracle.com/javase/6/docs/api/java/util/HashMap.html?is-external=true" title="class or interface in java.util"><span class="strong">HashMap</span></a>&lt;K,V&gt; (implements java.lang.<a href="http://download.oracle.com/javase/6/docs/api/java/lang/Cloneable.html?is-external=true" title="class or interface in java.lang">Cloneable</a>, java.util.<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;K,V&gt;, java.io.<a href="http://download.oracle.com/javase/6/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>) <ul> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/WeightedSpanTermExtractor.PositionCheckingMap.html" title="class in org.apache.lucene.search.highlight"><span class="strong">WeightedSpanTermExtractor.PositionCheckingMap</span></a>&lt;K&gt;</li> </ul> </li> </ul> </li> <li type="circle">org.apache.lucene.util.<a href="../../../../../../core/org/apache/lucene/util/AttributeSource.html?is-external=true" title="class or interface in org.apache.lucene.util"><span class="strong">AttributeSource</span></a> <ul> <li type="circle">org.apache.lucene.analysis.<a href="../../../../../../core/org/apache/lucene/analysis/TokenStream.html?is-external=true" title="class or interface in org.apache.lucene.analysis"><span class="strong">TokenStream</span></a> (implements java.io.<a href="http://download.oracle.com/javase/6/docs/api/java/io/Closeable.html?is-external=true" title="class or interface in java.io">Closeable</a>) <ul> <li type="circle">org.apache.lucene.analysis.<a href="../../../../../../core/org/apache/lucene/analysis/TokenFilter.html?is-external=true" title="class or interface in org.apache.lucene.analysis"><span class="strong">TokenFilter</span></a> <ul> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/OffsetLimitTokenFilter.html" title="class in org.apache.lucene.search.highlight"><span class="strong">OffsetLimitTokenFilter</span></a></li> </ul> </li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/TokenStreamFromTermPositionVector.html" title="class in org.apache.lucene.search.highlight"><span class="strong">TokenStreamFromTermPositionVector</span></a></li> </ul> </li> </ul> </li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/DefaultEncoder.html" title="class in org.apache.lucene.search.highlight"><span class="strong">DefaultEncoder</span></a> (implements org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/Encoder.html" title="interface in org.apache.lucene.search.highlight">Encoder</a>)</li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/GradientFormatter.html" title="class in org.apache.lucene.search.highlight"><span class="strong">GradientFormatter</span></a> (implements org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/Formatter.html" title="interface in org.apache.lucene.search.highlight">Formatter</a>) <ul> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/SpanGradientFormatter.html" title="class in org.apache.lucene.search.highlight"><span class="strong">SpanGradientFormatter</span></a></li> </ul> </li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/Highlighter.html" title="class in org.apache.lucene.search.highlight"><span class="strong">Highlighter</span></a></li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/NullFragmenter.html" title="class in org.apache.lucene.search.highlight"><span class="strong">NullFragmenter</span></a> (implements org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/Fragmenter.html" title="interface in org.apache.lucene.search.highlight">Fragmenter</a>)</li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/PositionSpan.html" title="class in org.apache.lucene.search.highlight"><span class="strong">PositionSpan</span></a></li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/QueryScorer.html" title="class in org.apache.lucene.search.highlight"><span class="strong">QueryScorer</span></a> (implements org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/Scorer.html" title="interface in org.apache.lucene.search.highlight">Scorer</a>)</li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/QueryTermExtractor.html" title="class in org.apache.lucene.search.highlight"><span class="strong">QueryTermExtractor</span></a></li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/QueryTermScorer.html" title="class in org.apache.lucene.search.highlight"><span class="strong">QueryTermScorer</span></a> (implements org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/Scorer.html" title="interface in org.apache.lucene.search.highlight">Scorer</a>)</li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/SimpleFragmenter.html" title="class in org.apache.lucene.search.highlight"><span class="strong">SimpleFragmenter</span></a> (implements org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/Fragmenter.html" title="interface in org.apache.lucene.search.highlight">Fragmenter</a>)</li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/SimpleHTMLEncoder.html" title="class in org.apache.lucene.search.highlight"><span class="strong">SimpleHTMLEncoder</span></a> (implements org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/Encoder.html" title="interface in org.apache.lucene.search.highlight">Encoder</a>)</li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/SimpleHTMLFormatter.html" title="class in org.apache.lucene.search.highlight"><span class="strong">SimpleHTMLFormatter</span></a> (implements org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/Formatter.html" title="interface in org.apache.lucene.search.highlight">Formatter</a>)</li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/SimpleSpanFragmenter.html" title="class in org.apache.lucene.search.highlight"><span class="strong">SimpleSpanFragmenter</span></a> (implements org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/Fragmenter.html" title="interface in org.apache.lucene.search.highlight">Fragmenter</a>)</li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/TextFragment.html" title="class in org.apache.lucene.search.highlight"><span class="strong">TextFragment</span></a></li> <li type="circle">java.lang.<a href="http://download.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><span class="strong">Throwable</span></a> (implements java.io.<a href="http://download.oracle.com/javase/6/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>) <ul> <li type="circle">java.lang.<a href="http://download.oracle.com/javase/6/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang"><span class="strong">Exception</span></a> <ul> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/InvalidTokenOffsetsException.html" title="class in org.apache.lucene.search.highlight"><span class="strong">InvalidTokenOffsetsException</span></a></li> </ul> </li> </ul> </li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/TokenGroup.html" title="class in org.apache.lucene.search.highlight"><span class="strong">TokenGroup</span></a></li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/TokenSources.html" title="class in org.apache.lucene.search.highlight"><span class="strong">TokenSources</span></a></li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/WeightedSpanTermExtractor.html" title="class in org.apache.lucene.search.highlight"><span class="strong">WeightedSpanTermExtractor</span></a></li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/WeightedTerm.html" title="class in org.apache.lucene.search.highlight"><span class="strong">WeightedTerm</span></a> <ul> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/WeightedSpanTerm.html" title="class in org.apache.lucene.search.highlight"><span class="strong">WeightedSpanTerm</span></a></li> </ul> </li> </ul> </li> </ul> <h2 title="Interface Hierarchy">Interface Hierarchy</h2> <ul> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/Encoder.html" title="interface in org.apache.lucene.search.highlight"><span class="strong">Encoder</span></a></li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/Formatter.html" title="interface in org.apache.lucene.search.highlight"><span class="strong">Formatter</span></a></li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/Fragmenter.html" title="interface in org.apache.lucene.search.highlight"><span class="strong">Fragmenter</span></a></li> <li type="circle">org.apache.lucene.search.highlight.<a href="../../../../../org/apache/lucene/search/highlight/Scorer.html" title="interface in org.apache.lucene.search.highlight"><span class="strong">Scorer</span></a></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>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li><a href="../../../../../org/apache/lucene/search/postingshighlight/package-tree.html">NEXT</a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/lucene/search/highlight/package-tree.html" target="_top">FRAMES</a></li> <li><a href="package-tree.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright &copy; 2000-2014 Apache Software Foundation. All Rights Reserved.</i> <script src='../../../../../prettify.js' type='text/javascript'></script> <script type='text/javascript'> (function(){ var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = prettyPrint; } else { window.onload = function() { oldonload(); prettyPrint(); } } })(); </script> </small></p> </body> </html>
OrlandoLee/ForYou
lucene/lib/lucene-4.6.1/docs/highlighter/org/apache/lucene/search/highlight/package-tree.html
HTML
mit
16,040
<!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.4.2_05) on Thu Sep 30 22:16:17 GMT+01:00 2004 --> <TITLE> ServletContextAwareProcessor (Spring Framework) </TITLE> <META NAME="keywords" CONTENT="org.springframework.web.context.support.ServletContextAwareProcessor class"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="ServletContextAwareProcessor (Spring Framework)"; } </SCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= 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=3 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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ServletContextAwareProcessor.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/springframework/web/context/support/RequestHandledEvent.html" title="class in org.springframework.web.context.support"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/springframework/web/context/support/ServletContextResource.html" title="class in org.springframework.web.context.support"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ServletContextAwareProcessor.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<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> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.springframework.web.context.support</FONT> <BR> Class ServletContextAwareProcessor</H2> <PRE> java.lang.Object <IMG SRC="../../../../../resources/inherit.gif" ALT="extended by"><B>org.springframework.web.context.support.ServletContextAwareProcessor</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../../org/springframework/beans/factory/config/BeanPostProcessor.html" title="interface in org.springframework.beans.factory.config">BeanPostProcessor</A></DD> </DL> <HR> <DL> <DT>public class <B>ServletContextAwareProcessor</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../../org/springframework/beans/factory/config/BeanPostProcessor.html" title="interface in org.springframework.beans.factory.config">BeanPostProcessor</A></DL> <P> BeanPostProcessor implementation that passes the ServletContext to beans that implement the ApplicationContextAware or ResourceLoaderAware interfaces. If both are implemented, the latter is satisfied first. <p>Web application contexts will automatically register this with their underlying bean factory. Applications do not use this directly. <P> <P> <DL> <DT><B>Since:</B></DT> <DD>12.03.2004</DD> <DT><B>Author:</B></DT> <DD>Juergen Hoeller</DD> <DT><B>See Also:</B><DD><A HREF="../../../../../org/springframework/web/context/ServletContextAware.html" title="interface in org.springframework.web.context"><CODE>ServletContextAware</CODE></A>, <A HREF="../../../../../org/springframework/web/context/support/XmlWebApplicationContext.html#postProcessBeanFactory(org.springframework.beans.factory.config.ConfigurableListableBeanFactory)"><CODE>XmlWebApplicationContext.postProcessBeanFactory(org.springframework.beans.factory.config.ConfigurableListableBeanFactory)</CODE></A></DL> <HR> <P> <!-- ======== NESTED CLASS SUMMARY ======== --> <!-- =========== FIELD SUMMARY =========== --> <A NAME="field_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Field Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;org.apache.commons.logging.Log</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/springframework/web/context/support/ServletContextAwareProcessor.html#logger">logger</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../org/springframework/web/context/support/ServletContextAwareProcessor.html#ServletContextAwareProcessor(javax.servlet.ServletContext)">ServletContextAwareProcessor</A></B>(javax.servlet.ServletContext&nbsp;servletContext)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a new ServletContextAwareProcessor for the given context.</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Method Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;java.lang.Object</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/springframework/web/context/support/ServletContextAwareProcessor.html#postProcessAfterInitialization(java.lang.Object, java.lang.String)">postProcessAfterInitialization</A></B>(java.lang.Object&nbsp;bean, java.lang.String&nbsp;name)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Apply this BeanPostProcessor to the given new bean instance <i>after</i> any bean initialization callbacks (like InitializingBean's afterPropertiesSet or a custom init-method). </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;java.lang.Object</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/springframework/web/context/support/ServletContextAwareProcessor.html#postProcessBeforeInitialization(java.lang.Object, java.lang.String)">postProcessBeforeInitialization</A></B>(java.lang.Object&nbsp;bean, java.lang.String&nbsp;name)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Apply this BeanPostProcessor to the given new bean instance <i>before</i> any bean initialization callbacks (like InitializingBean's afterPropertiesSet or a custom init-method). </TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TD><B>Methods inherited from class java.lang.Object</B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ============ FIELD DETAIL =========== --> <A NAME="field_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Field Detail</B></FONT></TD> </TR> </TABLE> <A NAME="logger"><!-- --></A><H3> logger</H3> <PRE> protected final org.apache.commons.logging.Log <B>logger</B></PRE> <DL> <DL> </DL> </DL> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TD> </TR> </TABLE> <A NAME="ServletContextAwareProcessor(javax.servlet.ServletContext)"><!-- --></A><H3> ServletContextAwareProcessor</H3> <PRE> public <B>ServletContextAwareProcessor</B>(javax.servlet.ServletContext&nbsp;servletContext)</PRE> <DL> <DD>Create a new ServletContextAwareProcessor for the given context. <P> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Method Detail</B></FONT></TD> </TR> </TABLE> <A NAME="postProcessBeforeInitialization(java.lang.Object, java.lang.String)"><!-- --></A><H3> postProcessBeforeInitialization</H3> <PRE> public java.lang.Object <B>postProcessBeforeInitialization</B>(java.lang.Object&nbsp;bean, java.lang.String&nbsp;name) throws <A HREF="../../../../../org/springframework/beans/BeansException.html" title="class in org.springframework.beans">BeansException</A></PRE> <DL> <DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/springframework/beans/factory/config/BeanPostProcessor.html" title="interface in org.springframework.beans.factory.config">BeanPostProcessor</A></CODE></B></DD> <DD>Apply this BeanPostProcessor to the given new bean instance <i>before</i> any bean initialization callbacks (like InitializingBean's afterPropertiesSet or a custom init-method). The bean will already be populated with property values. The returned bean instance may be a wrapper around the original. <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/springframework/beans/factory/config/BeanPostProcessor.html#postProcessBeforeInitialization(java.lang.Object, java.lang.String)">postProcessBeforeInitialization</A></CODE> in interface <CODE><A HREF="../../../../../org/springframework/beans/factory/config/BeanPostProcessor.html" title="interface in org.springframework.beans.factory.config">BeanPostProcessor</A></CODE></DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>bean</CODE> - the new bean instance<DD><CODE>name</CODE> - the beanName of the bean <DT><B>Returns:</B><DD>the bean instance to use, either the original or a wrapped one <DT><B>Throws:</B> <DD><CODE><A HREF="../../../../../org/springframework/beans/BeansException.html" title="class in org.springframework.beans">BeansException</A></CODE> - in case of errors<DT><B>See Also:</B><DD><A HREF="../../../../../org/springframework/beans/factory/InitializingBean.html#afterPropertiesSet()"><CODE>InitializingBean.afterPropertiesSet()</CODE></A></DL> </DD> </DL> <HR> <A NAME="postProcessAfterInitialization(java.lang.Object, java.lang.String)"><!-- --></A><H3> postProcessAfterInitialization</H3> <PRE> public java.lang.Object <B>postProcessAfterInitialization</B>(java.lang.Object&nbsp;bean, java.lang.String&nbsp;name)</PRE> <DL> <DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/springframework/beans/factory/config/BeanPostProcessor.html" title="interface in org.springframework.beans.factory.config">BeanPostProcessor</A></CODE></B></DD> <DD>Apply this BeanPostProcessor to the given new bean instance <i>after</i> any bean initialization callbacks (like InitializingBean's afterPropertiesSet or a custom init-method). The bean will already be populated with property values. The returned bean instance may be a wrapper around the original. <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/springframework/beans/factory/config/BeanPostProcessor.html#postProcessAfterInitialization(java.lang.Object, java.lang.String)">postProcessAfterInitialization</A></CODE> in interface <CODE><A HREF="../../../../../org/springframework/beans/factory/config/BeanPostProcessor.html" title="interface in org.springframework.beans.factory.config">BeanPostProcessor</A></CODE></DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>bean</CODE> - the new bean instance<DD><CODE>name</CODE> - the beanName of the bean <DT><B>Returns:</B><DD>the bean instance to use, either the original or a wrapped one<DT><B>See Also:</B><DD><A HREF="../../../../../org/springframework/beans/factory/InitializingBean.html#afterPropertiesSet()"><CODE>InitializingBean.afterPropertiesSet()</CODE></A></DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <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=3 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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ServletContextAwareProcessor.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/springframework/web/context/support/RequestHandledEvent.html" title="class in org.springframework.web.context.support"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/springframework/web/context/support/ServletContextResource.html" title="class in org.springframework.web.context.support"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ServletContextAwareProcessor.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<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> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright (C) 2003-2004 The Spring Framework Project.</i> </BODY> </HTML>
dachengxi/spring1.1.1_source
docs/api/org/springframework/web/context/support/ServletContextAwareProcessor.html
HTML
mit
17,928
<!DOCTYPE html> <!-- Modification 08/02/2015 (omie w.): - Added foundation-icons.css - Installed Foundation Icons inside of /icons - Added drop-down menu HTML Modification 08/05/2015 (omie w.): - Changed Search icon to drop-down menu in mobile Design - Changed the event titles to orange with a 15% top radius - Updated main.CSS to reflect changes in drop-down menu - Revised and fixed drop-down menu HTML - Added Responsive Design for phone/tablet/desktop versions --> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width"> <title>NewDevATL</title> <!--Initialize Font--> <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css"> <!--Initialize Stylesheets--> <link rel='stylesheet' href='css/normalize.css' type='text/css'> <link rel='stylesheet' href='css/foundation.css' type='text/css'> <link rel='stylesheet' href='css/foundation-icons.css' type='text/css'> <link rel='stylesheet' href='css/main.css' type='text/css'> <!--Initialize JavaScript--> <script src="/js/vendor/modernizr.js"></script> </head> <body> <!--Navigation Top-Bar--> <div class="full-width navigation-area"> <div class="row"> <div class="large-12 columns"> <nav class="top-bar" data-topbar role="navigation"> <ul class="title-area"> <!-- Title Area --> <li class="name" id="NewDevATL">New<b>Dev</b>ATL</li> <!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone --> <li class="toggle-topbar menu-icon"> <a href="#"> <span></span> </a> </li> </ul> <!-- The Section wrap --> <section class="top-bar-section"> <!-- Left Nav Section --> <ul class="left"> <li class="active"><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Events</a></li> <li><a href="#">News</a></li> <li><a href="#">Contact</a></li> <li><a href="#">Projects</a></li> <li class="has-form"> <input id="event-search" type="text" placeholder="Search"> </li> </ul> <!-- Right Nav Section --> <ul class="right"></ul> </section> </nav> </div> </div> </div> <main> <h1 class="columns"> Upcoming Events</h2> <h2 class="columns"> <small>A resource guide for beginner-friendly tech events around Atlanta</small> </h2> <section class="events"> <div class="row event-row"> <div class="small-12 large-4 columns"> <div class="event row"> <div class="columns event-title"> <h3 class="event-title-text"> Free Code Camp Atlanta meetup </h3> </div> <div class="event-body small-12 columns"> <!-- Fill in upcoming Free Code Camp Atlanta meetup info below --> <p>The Free Code Camp Atlanta Group is for individuals participating Free Code Camp. We're learning to code online on our own time at our own pace! We also get to build things to help causes we believe in. It's a totally free volunteer supported resource provided by an awesome community. Check us out at <a href="http://www.freecodecamp.com/">Free Code Camp<a></p> <p class="date"></p> <p class="address"> <span class="name"></span> <span class="street-address"></span> <span class="region"></span> </p> </div> <div class="info columns"> <span class="more-info"><a href="https://www.facebook.com/groups/free.code.camp.atlanta/815262645189979/">more info</a></span> </div> </div> </div> <div class="small-12 large-4 columns"> <div class="event row"> <div class="columns event-title"> <h3 class="event-title-text">ConnectJS Conference (must purchase tickets for event)</h3> </div> <div class="event-body small-12 columns"> <p class="date">October 16 - 17, 2015</p> <p class="address"> <span class="name">Cobb Galleria Center</span> <span class="street-address">2 Galleria Pkwy SE</span> <span class="region">Atlanta, GA 30339</span> </p> </div> <div class="info columns"> <span class="more-info"><a href="http://connect-js.com/">more info</a></span> </div> </div> </div> <div class="small-12 large-4 columns end"> <div class="event row"> <div class="columns event-title"> <h3 class="event-title-text"> HackATL </h3> </div> <div class="event-body small-12 columns"> <p class="date">October 16-18</p> <p class="address"> <span class="name">Emory University's Goizueta Business School</span> <span class="street-address">1300 Clifton Rd</span> <span class="region">Atlanta, GA 30322</span> </p> </div> <div class="info columns"> <span class="more-info"><a href="http://hackatl.org/">more info</a></span> </div> </div> </div> </div> <div class="small-12 columns"> <p class="add-event"> Create an issue for <a href="https://github.com/LeahW/NewDevATL">NewDevATL</a> to list your event </p> </div> </section> </main> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> <script src="js/vendor/fastclick.js"> </script> <script src="js/main.js"></script> <script src="js/foundation.min.js"></script> <script> $(document).foundation(); </script> </body> </html>
LeahW/NewDevATL
index.html
HTML
mit
6,201
<p> comp-788 works! </p>
angular/angular-cli-stress-test
src/app/components/comp-788/comp-788.component.html
HTML
mit
27
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Test Page</title> </head> <body> <h1>Hello Bryan</h1> </body> </html>
bryanjswift/bryanjswift.com
src/main/webapp/index.html
HTML
mit
150
<!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>OpenISA Dynamic Binary Translator: 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="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="projectlogo"><img alt="Logo" src="oi.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">OpenISA Dynamic Binary Translator &#160;<span id="projectnumber">0.0.1</span> </div> <div id="projectbrief">This project implements the Dynamic Binary Translator for the OpenISA Instruction Set. Besides, it implement the Region Formation Techniques such as NET, MRET2, NETPLUS, ...</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&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;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&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;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('structspp___1_1cvt_3_01const_01std_1_1pair_3_01const_01_k_00_01_v_01_4_01_4.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="headertitle"> <div class="title">spp_::cvt&lt; const std::pair&lt; const K, V &gt; &gt; Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="structspp___1_1cvt_3_01const_01std_1_1pair_3_01const_01_k_00_01_v_01_4_01_4.html">spp_::cvt&lt; const std::pair&lt; const K, V &gt; &gt;</a>, including all inherited members.</p> <table class="directory"> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>type</b> typedef (defined in <a class="el" href="structspp___1_1cvt_3_01const_01std_1_1pair_3_01const_01_k_00_01_v_01_4_01_4.html">spp_::cvt&lt; const std::pair&lt; const K, V &gt; &gt;</a>)</td><td class="entry"><a class="el" href="structspp___1_1cvt_3_01const_01std_1_1pair_3_01const_01_k_00_01_v_01_4_01_4.html">spp_::cvt&lt; const std::pair&lt; const K, V &gt; &gt;</a></td><td class="entry"></td></tr> </table></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.11 </li> </ul> </div> </body> </html>
OpenISA/oi-dbt
doc/html/structspp___1_1cvt_3_01const_01std_1_1pair_3_01const_01_k_00_01_v_01_4_01_4-members.html
HTML
mit
5,992
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="shortcut icon" href="/static/img/favicon.ico" /> <title>Microsoft Student Partner - Tiago Espinha</title> <meta name="author" content="Tiago Espinha" /> <meta name="description" content="Microsoft Student Partner" /> <meta name="keywords" content="Microsoft Student Partner, Tiago Espinha, my life" /> <meta content="0" property="fb:app_id"> <meta content="Tiago Espinha" property="og:site_name"> <meta content="Microsoft Student Partner" property="og:title"> <meta content="article" property="og:type"> <meta content="My Personal Blog" property="og:description"> <meta content="http://localhost:4000/2008/08/microsoft-student-partner/" property="og:url"> <meta content="2008-08-08T15:59:00+01:00" property="article:published_time"> <meta content="http://localhost:4000/about/" property="article:author"> <meta content="http://aboutashu.com/static/img/logo-high-resolution.png" property="og:image"> <meta content="my life" property="article:section"> <meta name="twitter:card" content="summary"> <meta name="twitter:site" content="@\#"> <meta name="twitter:creator" content="@\#"> <meta name="twitter:title" content="Microsoft Student Partner"> <meta name="twitter:url" content="http://localhost:4000/2008/08/microsoft-student-partner/"> <meta name="twitter:description" content="My Personal Blog"> <link rel="alternate" type="application/rss+xml" title="RSS" href="/feed.xml"> <!-- Custom Fonts --> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css"> <!-- FontAwesome icons --> <link rel="stylesheet" href="https://use.fontawesome.com/74dfc6cf47.css"> <!-- Core BootStrap CSS --> <link rel="stylesheet" href="http://localhost:4000/static/css/bootstrap.min.css"> <!-- Material Design CSS --> <link rel="stylesheet" href="http://localhost:4000/static/css/bootstrap-material-design.min.css"> <!-- syntax highlighting CSS --> <link rel="stylesheet" href="http://localhost:4000/static/css/syntax.css"> <!-- Custom CSS --> <link rel="stylesheet" href="http://localhost:4000/static/css/thickbox.css"> <link rel="stylesheet" href="http://localhost:4000/static/css/main.css"> <link rel="stylesheet" href="http://localhost:4000/static/css/projects.css"> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-5075580-2', 'auto'); ga('send', 'pageview'); </script> </head> <body class="home overflow-hidden"> <!--[if lt IE 7]> <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <![endif]--> <div class="header-panel shadow-z-2"> <div class="container"> <div class="row"> <div class="col-md-3 col-sm-4 col-xs-12"> <div class="row-picture"> <img id="about" class="logo-img" src="https://www.tiagoespinha.net/static/img/avatar.png" height="75px" width="75px"> </div> <div class="row-details"> <h4 class="list-group-item-heading">Tiago Espinha</h4> <p class="list-group-item-text">Tiago's Tech Blog</p> <div class="social-icons"> <a class="icon" target="_blank" href="#"><i class="fa fa-facebook"></i></a> <a class="icon" target="_blank" href="#"><i class="fa fa-skype"></i></a> <a class="icon" target="_blank" href="#"><i class="fa fa-twitter"></i></a> <a class="icon" target="_blank" href="#"><i class="fa fa-linkedin"></i></a> <a class="icon" target="_blank" href="#"><i class="fa fa-stack-exchange"></i></a> </div> </div> <div class="navbar-header pull-right"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false"> <span class="sr-only">Toggle navigation</span> <i class="fa fa-2x fa-bars"></i> </button> </div> </div> <div class="col-md-9 col-sm-8 col-xs-12"> <h2 class="blog-title-pro">Microsoft Student Partner</h2> <p class="info"> <span class="time">08 Aug 2008</span> <span class="categories"> &raquo; <a href="/category/my life">my life</a> </span> </p> </div> </div> </div> </div> <div class="container main outer"> <div class="row"> <div class="col-md-3 col-xs-12"> <nav class="menu"> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="list-separator nav navbar-nav well well-primary post"> <li class="col-lg-12 col-md-12 col-sm-4 col-xs-12 current-menu-item microsoft-student-partner"><a href="/"><i class="fa fa-home"></i> Home</a></li> <li class="col-lg-12 col-md-12 col-sm-4 col-xs-12 microsoft-student-partner"><a href="/about/"><i class="fa fa-comments"></i> About</a></li> <li class="col-lg-12 col-md-12 col-sm-4 col-xs-12 microsoft-student-partner"><a href="/projects/"><i class="fa fa-desktop"></i> Projects</a></li> <li class="col-lg-12 col-md-12 col-sm-4 col-xs-12 microsoft-student-partner"><a href="#"><i class="fa fa-graduation-cap"></i> Resume</a></li> <li class="col-lg-12 col-md-12 col-sm-4 col-xs-12 microsoft-student-partner"><a href="https://github.com/etiago"><i class="fa fa-github"></i> GitHub</a></li> <li class="col-lg-12 col-md-12 col-sm-4 col-xs-12 microsoft-student-partner"><a href="/feed.xml"><i class="fa fa-feed"></i> XML Feed</a></li> </ul> </div> </nav> </div> <!-- end /.col-md-3 --> <div class="col-md-9 col-xs-12 full"> <div class="post-content well"> <article class="content"> <div class="post"><div style="text-align: justify;"> Hello my dear friends and readers in general,&lt;/p&gt; <p> I come here today with a subject of great happiness and ecstasy! I was called in by Microsoft to be «interviewed» for Microsoft&#8217;s Student Partner Program in Lisbon 😀 . So on August 13th there I shall go and attempt my best at getting the position. For the first time I will be even entering Microsoft&#8217;s building so that alone is already stomach-tickling. It&#8217;s set to be a great experience and I can but hope that I get a position as a MSP. </p> <p> As my best-friend would say: the plot thickens. 😉 </p> <p> I shall keep news coming on this blog so stay tuned! </p> </div> </div> <hr /> <div class="share-page"> Share this on &rarr; <a href="https://twitter.com/share" class="twitter-share-button" data-via="\#">Tweet</a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script> <!-- Google + --> <div class="g-plus" data-action="share" data-annotation="bubble"></div> <script src="https://apis.google.com/js/platform.js" async defer></script> <!-- Facebook --> <div class="fb-share-button" data-href="http://localhost:4000/2008/08/microsoft-student-partner/" data-layout="button_count" style="position: relative; top: -8px; left: 3px;"></div> </div> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.6&appId=0"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> </article> <hr /> <div class="panel-body"> <h4>Related Posts</h4> <ul> <li class="relatedPost"> <a href="http://localhost:4000/2010/08/tiago-is-now-officially-an-asf-committer/">Tiago is now officially an ASF committer!</a> <small>(Categories: <a href="/category/my life">my life</a>)</small> </li> <li class="relatedPost"> <a href="http://localhost:4000/2010/04/imagine-cup-and-volcano-ash/">Imagine Cup and volcano ash</a> <small>(Categories: <a href="/category/my life">my life</a>)</small> </li> <li class="relatedPost"> <a href="http://localhost:4000/2009/09/ay-up-me-duck/">&#8216;Ay up me duck!</a> <small>(Categories: <a href="/category/my life">my life</a>)</small> </li> <li class="relatedPost"> <a href="http://localhost:4000/2009/05/google-summer-of-code-payments-rolling-in/">Google Summer of Code &#8211; Payments Rolling In</a> <small>(Categories: <a href="/category/my life">my life</a>)</small> </li> <li class="relatedPost"> <a href="http://localhost:4000/2009/05/masters-degree/">Master&#8217;s Degree</a> <small>(Categories: <a href="/category/my life">my life</a>)</small> </li> <li class="relatedPost"> <a href="http://localhost:4000/2009/04/google-summer-of-code-2009/">Google Summer of Code 2009</a> <small>(Categories: <a href="/category/my life">my life</a>)</small> </li> </ul> </div> <div class="PageNavigation"> <a class="prev pull-left" href="/2008/08/update/">&laquo; Update</a> <a class="next pull-right" href="/2008/08/microsoft-student-partner-pt-2/">Microsoft Student Partner pt. 2 &raquo;</a> </div> <div class="disqus-comments"> <div id="disqus_thread"></div> <script type="text/javascript"> /* <![CDATA[ */ var disqus_shortname = "tiagostechblog"; var disqus_identifier = "http://localhost:4000_Microsoft Student Partner"; var disqus_title = "Microsoft Student Partner"; /* * * DON'T EDIT BELOW THIS LINE * * */ (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); /* ]]> */ </script> </div> </div> <div class="row"> <div class="col-md-12 col-xs-12 footer"> <footer> © Copyright text here - <a href="#">Privacy link</a> - Powered by Jekyll. </footer> <div align="center"> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- hcz-jekyll --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-0776433630785969" data-ad-slot="9690958902" data-ad-format="auto"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div> </div> <!-- end /.col-md-9 --> </div> <!-- end /.row --> </div> <!-- end /.container --> <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script> <script src="http://localhost:4000/static/js/bootstrap.min.js"></script> <script src="http://localhost:4000/static/js/thickbox-compressed.js"></script> <script src="http://localhost:4000/static/js/material.min.js"></script> <script src="http://localhost:4000/static/js/main.js"></script> <script src="http://localhost:4000/static/js/projects.js"></script> </body> </html>
etiago/etiago.github.io
_deploy/2008/08/microsoft-student-partner/index.html
HTML
mit
21,247
<div id="certifications" class="section"> <h3>Certifications</h3> <div class="certifications"> <div class="row"> {% for cert in site.certifications %} {% assign odd = forloop.index | modulo: 2 %} <div class="cert-wrapper col-sm-6 col-xs-12"> {% if cert.img %} <a href="{{ cert.link }}"> <img class="greyscale" src="{{ cert.img }}" alt="{{ cert.name }}"> </a> {% else %} <figure class="cert reveal"> <a href="{{ cert.link }}"> <div class="name">{{ cert.name }}</div> <i class="zmdi zmdi-badge-check"></i> <div>Issuer: {{ cert.issuer }}</div> </a> </figure> {% endif %} </div> {% if odd == 0 %} <div class="clearfix visible-lg visible-md visible-sm"></div> {% endif %} {% endfor %} </div> </div> </div>
FernandoDoming/yucca
_includes/certifications.html
HTML
mit
949
<!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>Zenrin Admin - Daily Report</title> <!-- Bootstrap Core CSS --> <link href="../vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <!-- MetisMenu CSS --> <link href="../vendor/metisMenu/metisMenu.min.css" rel="stylesheet"> <!-- Custom CSS --> <link href="../dist/css/sb-admin-2.css" rel="stylesheet"> <!-- Morris Charts CSS --> <link href="../vendor/morrisjs/morris.css" rel="stylesheet"> <!-- Custom Fonts --> <link href="../vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div id="wrapper"> <!-- Navigation --> <nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="index.html">SB Admin v2.0</a> </div> <!-- /.navbar-header --> <ul class="nav navbar-top-links navbar-right"> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#"> <i class="fa fa-envelope fa-fw"></i> <i class="fa fa-caret-down"></i> </a> <ul class="dropdown-menu dropdown-messages"> <li> <a href="#"> <div> <strong>John Smith</strong> <span class="pull-right text-muted"> <em>Yesterday</em> </span> </div> <div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eleifend...</div> </a> </li> <li class="divider"></li> <li> <a href="#"> <div> <strong>John Smith</strong> <span class="pull-right text-muted"> <em>Yesterday</em> </span> </div> <div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eleifend...</div> </a> </li> <li class="divider"></li> <li> <a href="#"> <div> <strong>John Smith</strong> <span class="pull-right text-muted"> <em>Yesterday</em> </span> </div> <div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eleifend...</div> </a> </li> <li class="divider"></li> <li> <a class="text-center" href="#"> <strong>Read All Messages</strong> <i class="fa fa-angle-right"></i> </a> </li> </ul> <!-- /.dropdown-messages --> </li> <!-- /.dropdown --> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#"> <i class="fa fa-tasks fa-fw"></i> <i class="fa fa-caret-down"></i> </a> <ul class="dropdown-menu dropdown-tasks"> <li> <a href="#"> <div> <p> <strong>Task 1</strong> <span class="pull-right text-muted">40% Complete</span> </p> <div class="progress progress-striped active"> <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%"> <span class="sr-only">40% Complete (success)</span> </div> </div> </div> </a> </li> <li class="divider"></li> <li> <a href="#"> <div> <p> <strong>Task 2</strong> <span class="pull-right text-muted">20% Complete</span> </p> <div class="progress progress-striped active"> <div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%"> <span class="sr-only">20% Complete</span> </div> </div> </div> </a> </li> <li class="divider"></li> <li> <a href="#"> <div> <p> <strong>Task 3</strong> <span class="pull-right text-muted">60% Complete</span> </p> <div class="progress progress-striped active"> <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%"> <span class="sr-only">60% Complete (warning)</span> </div> </div> </div> </a> </li> <li class="divider"></li> <li> <a href="#"> <div> <p> <strong>Task 4</strong> <span class="pull-right text-muted">80% Complete</span> </p> <div class="progress progress-striped active"> <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%"> <span class="sr-only">80% Complete (danger)</span> </div> </div> </div> </a> </li> <li class="divider"></li> <li> <a class="text-center" href="#"> <strong>See All Tasks</strong> <i class="fa fa-angle-right"></i> </a> </li> </ul> <!-- /.dropdown-tasks --> </li> <!-- /.dropdown --> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#"> <i class="fa fa-bell fa-fw"></i> <i class="fa fa-caret-down"></i> </a> <ul class="dropdown-menu dropdown-alerts"> <li> <a href="#"> <div> <i class="fa fa-comment fa-fw"></i> New Comment <span class="pull-right text-muted small">4 minutes ago</span> </div> </a> </li> <li class="divider"></li> <li> <a href="#"> <div> <i class="fa fa-twitter fa-fw"></i> 3 New Followers <span class="pull-right text-muted small">12 minutes ago</span> </div> </a> </li> <li class="divider"></li> <li> <a href="#"> <div> <i class="fa fa-envelope fa-fw"></i> Message Sent <span class="pull-right text-muted small">4 minutes ago</span> </div> </a> </li> <li class="divider"></li> <li> <a href="#"> <div> <i class="fa fa-tasks fa-fw"></i> New Task <span class="pull-right text-muted small">4 minutes ago</span> </div> </a> </li> <li class="divider"></li> <li> <a href="#"> <div> <i class="fa fa-upload fa-fw"></i> Server Rebooted <span class="pull-right text-muted small">4 minutes ago</span> </div> </a> </li> <li class="divider"></li> <li> <a class="text-center" href="#"> <strong>See All Alerts</strong> <i class="fa fa-angle-right"></i> </a> </li> </ul> <!-- /.dropdown-alerts --> </li> <!-- /.dropdown --> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#"> <i class="fa fa-user fa-fw"></i> <i class="fa fa-caret-down"></i> </a> <ul class="dropdown-menu dropdown-user"> <li><a href="#"><i class="fa fa-user fa-fw"></i> User Profile</a> </li> <li><a href="#"><i class="fa fa-gear fa-fw"></i> Settings</a> </li> <li class="divider"></li> <li><a href="login.html"><i class="fa fa-sign-out fa-fw"></i> Logout</a> </li> </ul> <!-- /.dropdown-user --> </li> <!-- /.dropdown --> </ul> <!-- /.navbar-top-links --> <div class="navbar-default sidebar" role="navigation"> <div class="sidebar-nav navbar-collapse"> <ul class="nav" id="side-menu"> <li class="sidebar-search"> <div class="input-group custom-search-form"> <input type="text" class="form-control" placeholder="Search..."> <span class="input-group-btn"> <button class="btn btn-default" type="button"> <i class="fa fa-search"></i> </button> </span> </div> <!-- /input-group --> </li> <li> <a href="index.html"><i class="fa fa-dashboard fa-fw"></i> Dashboard</a> </li> <li> <a href="#"><i class="fa fa-bar-chart-o fa-fw"></i> Charts<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li> <a href="flot.html">Flot Charts</a> </li> <li> <a href="morris.html">Morris.js Charts</a> </li> </ul> <!-- /.nav-second-level --> </li> <li> <a href="tables.html"><i class="fa fa-table fa-fw"></i> Tables</a> </li> <li> <a href="forms.html"><i class="fa fa-edit fa-fw"></i> Forms</a> </li> <li> <a href="#"><i class="fa fa-wrench fa-fw"></i> UI Elements<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li> <a href="panels-wells.html">Panels and Wells</a> </li> <li> <a href="buttons.html">Buttons</a> </li> <li> <a href="notifications.html">Notifications</a> </li> <li> <a href="typography.html">Typography</a> </li> <li> <a href="icons.html"> Icons</a> </li> <li> <a href="grid.html">Grid</a> </li> </ul> <!-- /.nav-second-level --> </li> <li> <a href="#"><i class="fa fa-sitemap fa-fw"></i> Multi-Level Dropdown<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li> <a href="#">Second Level Item</a> </li> <li> <a href="#">Second Level Item</a> </li> <li> <a href="#">Third Level <span class="fa arrow"></span></a> <ul class="nav nav-third-level"> <li> <a href="#">Third Level Item</a> </li> <li> <a href="#">Third Level Item</a> </li> <li> <a href="#">Third Level Item</a> </li> <li> <a href="#">Third Level Item</a> </li> </ul> <!-- /.nav-third-level --> </li> </ul> <!-- /.nav-second-level --> </li> <li> <a href="#"><i class="fa fa-files-o fa-fw"></i> Sample Pages<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li> <a href="blank.html">Blank Page</a> </li> <li> <a href="login.html">Login Page</a> </li> </ul> <!-- /.nav-second-level --> </li> </ul> </div> <!-- /.sidebar-collapse --> </div> <!-- /.navbar-static-side --> </nav> <div id="page-wrapper"> <div class="row"> <div class="col-lg-12"> <h1 class="page-header">Flot</h1> </div> <!-- /.col-lg-12 --> </div> <!-- /.row --> <div class="row"> <div class="col-lg-12"> <div class="panel panel-default"> <div class="panel-heading"> Line Chart Example </div> <!-- /.panel-heading --> <div class="panel-body"> <div class="flot-chart"> <div class="flot-chart-content" id="flot-line-chart"></div> </div> </div> <!-- /.panel-body --> </div> <!-- /.panel --> </div> <!-- /.col-lg-12 --> <div class="col-lg-6"> <div class="panel panel-default"> <div class="panel-heading"> Pie Chart Example </div> <!-- /.panel-heading --> <div class="panel-body"> <div class="flot-chart"> <div class="flot-chart-content" id="flot-pie-chart"></div> </div> </div> <!-- /.panel-body --> </div> <!-- /.panel --> </div> <!-- /.col-lg-6 --> <div class="col-lg-6"> <div class="panel panel-default"> <div class="panel-heading"> Multiple Axes Line Chart Example </div> <!-- /.panel-heading --> <div class="panel-body"> <div class="flot-chart"> <div class="flot-chart-content" id="flot-line-chart-multi"></div> </div> </div> <!-- /.panel-body --> </div> <!-- /.panel --> </div> <!-- /.col-lg-6 --> <div class="col-lg-6"> <div class="panel panel-default"> <div class="panel-heading"> Moving Line Chart Example </div> <!-- /.panel-heading --> <div class="panel-body"> <div class="flot-chart"> <div class="flot-chart-content" id="flot-line-chart-moving"></div> </div> </div> <!-- /.panel-body --> </div> <!-- /.panel --> </div> <!-- /.col-lg-6 --> <div class="col-lg-6"> <div class="panel panel-default"> <div class="panel-heading"> Bar Chart Example </div> <!-- /.panel-heading --> <div class="panel-body"> <div class="flot-chart"> <div class="flot-chart-content" id="flot-bar-chart"></div> </div> </div> <!-- /.panel-body --> </div> <!-- /.panel --> </div> <!-- /.col-lg-6 --> <div class="col-lg-12"> <div class="panel panel-default"> <div class="panel-heading"> Flot Charts Usage </div> <!-- /.panel-heading --> <div class="panel-body"> <p>Flot is a pure JavaScript plotting library for jQuery, with a focus on simple usage, attractive looks, and interactive features. In SB Admin, we are using the most recent version of Flot along with a few plugins to enhance the user experience. The Flot plugins being used are the tooltip plugin for hoverable tooltips, and the resize plugin for fully responsive charts. The documentation for Flot Charts is available on their website, <a target="_blank" href="http://www.flotcharts.org/">http://www.flotcharts.org/</a>.</p> <a target="_blank" class="btn btn-default btn-lg btn-block" href="http://www.flotcharts.org/">View Flot Charts Documentation</a> </div> <!-- /.panel-body --> </div> <!-- /.panel --> </div> <!-- /.col-lg-6 --> </div> <!-- /.row --> </div> <!-- /#page-wrapper --> </div> <!-- /#wrapper --> <!-- jQuery --> <script src="../vendor/jquery/jquery.min.js"></script> <!-- Bootstrap Core JavaScript --> <script src="../vendor/bootstrap/js/bootstrap.min.js"></script> <!-- Metis Menu Plugin JavaScript --> <script src="../vendor/metisMenu/metisMenu.min.js"></script> <!-- Flot Charts JavaScript --> <script src="../vendor/flot/excanvas.min.js"></script> <script src="../vendor/flot/jquery.flot.js"></script> <script src="../vendor/flot/jquery.flot.pie.js"></script> <script src="../vendor/flot/jquery.flot.resize.js"></script> <script src="../vendor/flot/jquery.flot.time.js"></script> <script src="../vendor/flot-tooltip/jquery.flot.tooltip.min.js"></script> <script src="../data/flot-data.js"></script> <!-- Custom Theme JavaScript --> <script src="../dist/js/sb-admin-2.js"></script> </body> </html>
phamminhtien305/demodailyreport.io
pages/flot.html
HTML
mit
24,567
<!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" /> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> <script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script> <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> <style type="text/css"> body{ font-family: 'source_sans_proregular'; } </style> <title>Source Sans Pro Regular Specimen</title> <script type="text/javascript" charset="utf-8"> $(document).ready(function() { $('#container').easyTabs({defaultContent:1}); }); </script> </head> <body> <div id="container"> <div id="header"> Source Sans Pro Regular </div> <ul class="tabs"> <li><a href="#specimen">Specimen</a></li> <li><a href="#layout">Sample Layout</a></li> <li><a href="#glyphs">Glyphs &amp; Languages</a></li> <li><a href="#installing">Installing Webfonts</a></li> </ul> <div id="main_content"> <div id="specimen"> <div class="section"> <div class="grid12 firstcol"> <div class="huge">AaBb</div> </div> </div> <div class="section"> <div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div> </div> <div class="section"> <div class="grid12 firstcol"> <table class="sample_table"> <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> </table> </div> </div> <div class="section" id="bodycomparison"> <div id="xheight"> <div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> <div class="fontbody" style="z-index:1"> body<span>Source Sans Pro Regular</span> </div> <div class="arialbody" style="z-index:1"> body<span>Arial</span> </div> <div class="verdanabody" style="z-index:1"> body<span>Verdana</span> </div> <div class="georgiabody" style="z-index:1"> body<span>Georgia</span> </div> </div> <div class="section psample psample_row1" id=""> <div class="grid2 firstcol"> <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="grid3"> <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="grid3"> <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="grid4"> <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="white_blend"></div> </div> <div class="section psample psample_row2" id=""> <div class="grid3 firstcol"> <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="grid4"> <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="grid5"> <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="white_blend"></div> </div> <div class="section psample psample_row3" id=""> <div class="grid5 firstcol"> <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="grid7"> <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="white_blend"></div> </div> <div class="section psample psample_row4" id=""> <div class="grid12 firstcol"> <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="white_blend"></div> </div> <div class="section psample psample_row1 fullreverse"> <div class="grid2 firstcol"> <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="grid3"> <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="grid3"> <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="grid4"> <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="black_blend"></div> </div> <div class="section psample psample_row2 fullreverse"> <div class="grid3 firstcol"> <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="grid4"> <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="grid5"> <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="black_blend"></div> </div> <div class="section psample fullreverse psample_row3" id=""> <div class="grid5 firstcol"> <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="grid7"> <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="black_blend"></div> </div> <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> <div class="grid12 firstcol"> <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> </div> <div class="black_blend"></div> </div> </div> <div id="layout"> <div class="section"> <div class="grid12 firstcol"> <h1>Lorem Ipsum Dolor</h1> <h2>Etiam porta sem malesuada magna mollis euismod</h2> <p class="byline">By <a href="#link">Aenean Lacinia</a></p> </div> </div> <div class="section"> <div class="grid8 firstcol"> <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> <h3>Pellentesque ornare sem</h3> <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> <h3>Cras mattis consectetur</h3> <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> </div> <div class="grid4 sidebar"> <div class="box reverse"> <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> </div> <p class="caption">Maecenas sed diam eget risus varius.</p> <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> </div> </div> </div> <div id="glyphs"> <div class="section"> <div class="grid12 firstcol"> <h1>Language Support</h1> <p>The subset of Source Sans Pro Regular in this kit supports the following languages:<br /> English </p> <h1>Glyph Chart</h1> <p>The subset of Source Sans Pro Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> <div id="glyph_chart"> <div><p>&amp;#13;</p>&#13;</div> <div><p>&amp;#32;</p>&#32;</div> <div><p>&amp;#33;</p>&#33;</div> <div><p>&amp;#35;</p>&#35;</div> <div><p>&amp;#36;</p>&#36;</div> <div><p>&amp;#38;</p>&#38;</div> <div><p>&amp;#39;</p>&#39;</div> <div><p>&amp;#40;</p>&#40;</div> <div><p>&amp;#41;</p>&#41;</div> <div><p>&amp;#42;</p>&#42;</div> <div><p>&amp;#43;</p>&#43;</div> <div><p>&amp;#44;</p>&#44;</div> <div><p>&amp;#45;</p>&#45;</div> <div><p>&amp;#46;</p>&#46;</div> <div><p>&amp;#47;</p>&#47;</div> <div><p>&amp;#48;</p>&#48;</div> <div><p>&amp;#49;</p>&#49;</div> <div><p>&amp;#50;</p>&#50;</div> <div><p>&amp;#51;</p>&#51;</div> <div><p>&amp;#52;</p>&#52;</div> <div><p>&amp;#53;</p>&#53;</div> <div><p>&amp;#54;</p>&#54;</div> <div><p>&amp;#55;</p>&#55;</div> <div><p>&amp;#56;</p>&#56;</div> <div><p>&amp;#57;</p>&#57;</div> <div><p>&amp;#60;</p>&#60;</div> <div><p>&amp;#62;</p>&#62;</div> <div><p>&amp;#63;</p>&#63;</div> <div><p>&amp;#64;</p>&#64;</div> <div><p>&amp;#65;</p>&#65;</div> <div><p>&amp;#66;</p>&#66;</div> <div><p>&amp;#67;</p>&#67;</div> <div><p>&amp;#68;</p>&#68;</div> <div><p>&amp;#69;</p>&#69;</div> <div><p>&amp;#70;</p>&#70;</div> <div><p>&amp;#71;</p>&#71;</div> <div><p>&amp;#72;</p>&#72;</div> <div><p>&amp;#73;</p>&#73;</div> <div><p>&amp;#74;</p>&#74;</div> <div><p>&amp;#75;</p>&#75;</div> <div><p>&amp;#76;</p>&#76;</div> <div><p>&amp;#77;</p>&#77;</div> <div><p>&amp;#78;</p>&#78;</div> <div><p>&amp;#79;</p>&#79;</div> <div><p>&amp;#80;</p>&#80;</div> <div><p>&amp;#81;</p>&#81;</div> <div><p>&amp;#82;</p>&#82;</div> <div><p>&amp;#83;</p>&#83;</div> <div><p>&amp;#84;</p>&#84;</div> <div><p>&amp;#85;</p>&#85;</div> <div><p>&amp;#86;</p>&#86;</div> <div><p>&amp;#87;</p>&#87;</div> <div><p>&amp;#88;</p>&#88;</div> <div><p>&amp;#89;</p>&#89;</div> <div><p>&amp;#90;</p>&#90;</div> <div><p>&amp;#91;</p>&#91;</div> <div><p>&amp;#92;</p>&#92;</div> <div><p>&amp;#93;</p>&#93;</div> <div><p>&amp;#94;</p>&#94;</div> <div><p>&amp;#95;</p>&#95;</div> <div><p>&amp;#97;</p>&#97;</div> <div><p>&amp;#98;</p>&#98;</div> <div><p>&amp;#99;</p>&#99;</div> <div><p>&amp;#100;</p>&#100;</div> <div><p>&amp;#101;</p>&#101;</div> <div><p>&amp;#102;</p>&#102;</div> <div><p>&amp;#103;</p>&#103;</div> <div><p>&amp;#104;</p>&#104;</div> <div><p>&amp;#105;</p>&#105;</div> <div><p>&amp;#106;</p>&#106;</div> <div><p>&amp;#107;</p>&#107;</div> <div><p>&amp;#108;</p>&#108;</div> <div><p>&amp;#109;</p>&#109;</div> <div><p>&amp;#110;</p>&#110;</div> <div><p>&amp;#111;</p>&#111;</div> <div><p>&amp;#112;</p>&#112;</div> <div><p>&amp;#113;</p>&#113;</div> <div><p>&amp;#114;</p>&#114;</div> <div><p>&amp;#115;</p>&#115;</div> <div><p>&amp;#116;</p>&#116;</div> <div><p>&amp;#117;</p>&#117;</div> <div><p>&amp;#118;</p>&#118;</div> <div><p>&amp;#119;</p>&#119;</div> <div><p>&amp;#120;</p>&#120;</div> <div><p>&amp;#121;</p>&#121;</div> <div><p>&amp;#122;</p>&#122;</div> <div><p>&amp;#123;</p>&#123;</div> <div><p>&amp;#124;</p>&#124;</div> <div><p>&amp;#125;</p>&#125;</div> <div><p>&amp;#126;</p>&#126;</div> <div><p>&amp;#160;</p>&#160;</div> <div><p>&amp;#161;</p>&#161;</div> <div><p>&amp;#162;</p>&#162;</div> <div><p>&amp;#163;</p>&#163;</div> <div><p>&amp;#164;</p>&#164;</div> <div><p>&amp;#165;</p>&#165;</div> <div><p>&amp;#166;</p>&#166;</div> <div><p>&amp;#167;</p>&#167;</div> <div><p>&amp;#169;</p>&#169;</div> <div><p>&amp;#172;</p>&#172;</div> <div><p>&amp;#174;</p>&#174;</div> <div><p>&amp;#176;</p>&#176;</div> <div><p>&amp;#177;</p>&#177;</div> <div><p>&amp;#181;</p>&#181;</div> <div><p>&amp;#182;</p>&#182;</div> <div><p>&amp;#191;</p>&#191;</div> <div><p>&amp;#198;</p>&#198;</div> <div><p>&amp;#208;</p>&#208;</div> <div><p>&amp;#215;</p>&#215;</div> <div><p>&amp;#216;</p>&#216;</div> <div><p>&amp;#222;</p>&#222;</div> <div><p>&amp;#223;</p>&#223;</div> <div><p>&amp;#230;</p>&#230;</div> <div><p>&amp;#240;</p>&#240;</div> <div><p>&amp;#247;</p>&#247;</div> <div><p>&amp;#248;</p>&#248;</div> <div><p>&amp;#254;</p>&#254;</div> <div><p>&amp;#305;</p>&#305;</div> <div><p>&amp;#338;</p>&#338;</div> <div><p>&amp;#339;</p>&#339;</div> <div><p>&amp;#768;</p>&#768;</div> <div><p>&amp;#769;</p>&#769;</div> <div><p>&amp;#770;</p>&#770;</div> <div><p>&amp;#771;</p>&#771;</div> <div><p>&amp;#772;</p>&#772;</div> <div><p>&amp;#776;</p>&#776;</div> <div><p>&amp;#778;</p>&#778;</div> <div><p>&amp;#807;</p>&#807;</div> <div><p>&amp;#7491;</p>&#7491;</div> <div><p>&amp;#7506;</p>&#7506;</div> <div><p>&amp;#8192;</p>&#8192;</div> <div><p>&amp;#8193;</p>&#8193;</div> <div><p>&amp;#8194;</p>&#8194;</div> <div><p>&amp;#8195;</p>&#8195;</div> <div><p>&amp;#8196;</p>&#8196;</div> <div><p>&amp;#8197;</p>&#8197;</div> <div><p>&amp;#8198;</p>&#8198;</div> <div><p>&amp;#8199;</p>&#8199;</div> <div><p>&amp;#8200;</p>&#8200;</div> <div><p>&amp;#8201;</p>&#8201;</div> <div><p>&amp;#8202;</p>&#8202;</div> <div><p>&amp;#8208;</p>&#8208;</div> <div><p>&amp;#8209;</p>&#8209;</div> <div><p>&amp;#8210;</p>&#8210;</div> <div><p>&amp;#8211;</p>&#8211;</div> <div><p>&amp;#8212;</p>&#8212;</div> <div><p>&amp;#8216;</p>&#8216;</div> <div><p>&amp;#8217;</p>&#8217;</div> <div><p>&amp;#8226;</p>&#8226;</div> <div><p>&amp;#8239;</p>&#8239;</div> <div><p>&amp;#8249;</p>&#8249;</div> <div><p>&amp;#8250;</p>&#8250;</div> <div><p>&amp;#8260;</p>&#8260;</div> <div><p>&amp;#8287;</p>&#8287;</div> <div><p>&amp;#8364;</p>&#8364;</div> <div><p>&amp;#8482;</p>&#8482;</div> <div><p>&amp;#8722;</p>&#8722;</div> <div><p>&amp;#9724;</p>&#9724;</div> </div> </div> </div> </div> <div id="specs"> </div> <div id="installing"> <div class="section"> <div class="grid7 firstcol"> <h1>Installing Webfonts</h1> <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> <h2>1. Upload your webfonts</h2> <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> <h2>2. Include the webfont stylesheet</h2> <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> <code> @font-face{ font-family: 'MyWebFont'; src: url('WebFont.eot'); src: url('WebFont.eot?#iefix') format('embedded-opentype'), url('WebFont.woff') format('woff'), url('WebFont.ttf') format('truetype'), url('WebFont.svg#webfont') format('svg'); } </code> <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> <code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code> <h2>3. Modify your own stylesheet</h2> <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> <code>p { font-family: 'WebFont', Arial, sans-serif; }</code> <h2>4. Test</h2> <p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> </div> <div class="grid5 sidebar"> <div class="box"> <h2>Troubleshooting<br />Font-Face Problems</h2> <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> <h3>Fonts not showing in any browser</h3> <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> <h3>Fonts not loading in iPhone or iPad</h3> <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> <h3>Fonts not loading in Firefox</h3> <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> <h3>Fonts not loading in IE</h3> <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> <h3>Fonts not loading in IE9</h3> <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> </div> </div> </div> </div> </div> <div id="footer"> <p>&copy;2010-2011 Font Squirrel. All rights reserved.</p> </div> </div> </body> </html>
darobin/group-hug
fonts/sourcesanspro-regular-demo.html
HTML
mit
33,674
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="theme-color" content="#000000" /> <meta name="description" content="Web site created using create-react-app" /> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" /> <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> <!-- manifest.json provides metadata used when your web app is installed on a user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ --> <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> <!-- Notice the use of %PUBLIC_URL% in the tags above. It will be replaced with the URL of the `public` folder during the build. Only files inside the `public` folder can be referenced from the HTML. Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> <title>Calculator</title> </head> <body> <noscript>You need to enable JavaScript to run this app.</noscript> <div id="root"></div> <!-- This HTML file is a template. If you open it directly in the browser, you will see an empty page. You can add webfonts, meta tags, or analytics to this file. The build step will place the bundled scripts into the <body> tag. To begin the development, run `npm start` or `yarn start`. To create a production bundle, use `npm run build` or `yarn build`. --> </body> </html>
cabaag/calculator
public/index.html
HTML
mit
1,835